/* ============================================================
   Come Home to Yourself
   Aesthetic: hand-painted watercolor calm meets soft Apple-style
   surfaces. Cream canvas, elegant airy serif, squircle panels with
   raised beveled edges, a living gradient hero, watercolor spiral motif.
   ============================================================ */

:root {
  /* Palette */
  --cream: #F7F1E7;
  --sand: #EFE6D6;
  --ink: #2E2A25;
  --muted: #5E574C;
  --blue: #6B8CAE;
  --teal: #2F5A63;
  --teal-deep: #274A52;
  --sage: #7BA88F;
  --gold: #C79A4E;
  --blush: #EAD8C7;
  --warm-glow: rgba(199, 154, 78, 0.16);

  /* Type */
  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body: 'Nunito Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-script: 'Sacramento', 'Fraunces', cursive;

  /* Motion */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);

  /* Squircle radii */
  --r-card: 24px;
  --r-btn: 16px;
  --r-input: 14px;
  --r-pill: 999px;

  /* Raised bevel (light surfaces on cream) */
  --bevel: 0 1px 2px rgba(46, 42, 37, 0.05),
           0 12px 30px -16px rgba(46, 42, 37, 0.35),
           inset 0 1px 0 rgba(255, 255, 255, 0.65);
  --bevel-hover: 0 4px 10px rgba(46, 42, 37, 0.08),
                 0 20px 42px -18px rgba(46, 42, 37, 0.42),
                 inset 0 1px 0 rgba(255, 255, 255, 0.75);

  /* Rhythm */
  --maxw: 1120px;
  --pad: clamp(1.25rem, 5vw, 4rem);
  --section-y: clamp(3.5rem, 9vw, 7rem);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(1rem, 0.95rem + 0.3vw, 1.125rem);
  line-height: 1.7;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  position: relative;
  overflow-x: hidden;
}

/* Subtle paper grain across the whole page */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.4;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.35'/%3E%3C/svg%3E");
}

img { max-width: 100%; display: block; }

/* ---------- Typography ---------- */
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 340;
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.script {
  font-family: var(--font-script);
  font-weight: 400;
  color: var(--teal);
  letter-spacing: 0.01em;
}

.eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold);
}

.section-title {
  font-size: clamp(1.9rem, 1.3rem + 2.6vw, 3.1rem);
  margin-bottom: 0.6em;
}
.section-title.center { text-align: center; }

.section-lede {
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 44ch;
}
.section-lede.center { margin-inline: auto; text-align: center; }

/* ---------- Layout helpers ---------- */
.section-inner {
  max-width: var(--maxw);
  margin-inline: auto;
  padding: var(--section-y) var(--pad);
}

/* ---------- Enso motif sizing ---------- */
.brand-enso { width: 30px; height: 30px; flex: none; }
.divider-enso { width: 60px; height: 60px; opacity: 0.85; }
.footer-enso { width: 52px; height: 52px; margin-inline: auto; }

/* ---------- Skip link ---------- */
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--teal);
  color: var(--cream);
  padding: 0.6rem 1rem;
  z-index: 100;
  border-radius: 0 0 var(--r-btn) 0;
}
.skip-link:focus { left: 0; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(247, 241, 231, 0.82);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(46, 42, 37, 0.08);
}
.nav {
  max-width: var(--maxw);
  margin-inline: auto;
  padding: 0.75rem var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  color: var(--ink);
}
.brand-icon {
  width: 34px;
  height: 34px;
  flex: none;
  object-fit: contain;
}
.brand-text {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
}
.nav-menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1.6rem;
}
.nav-menu a {
  text-decoration: none;
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 600;
  transition: color 0.2s var(--ease);
}
.nav-menu a:hover { color: var(--teal); }
.nav-cta {
  background: linear-gradient(180deg, #37727c, var(--teal));
  color: var(--cream) !important;
  padding: 0.55rem 1.15rem;
  border-radius: var(--r-btn);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22), 0 6px 16px -8px rgba(47, 90, 99, 0.5);
}
.nav-cta:hover { filter: brightness(1.06); }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: var(--r-btn);
}
.nav-toggle:hover { background: rgba(47, 90, 99, 0.08); }
.nav-toggle span {
  width: 26px;
  height: 2px;
  background: var(--ink);
  transition: transform 0.25s var(--ease), opacity 0.25s var(--ease);
}

/* ---------- Buttons (raised, beveled squircles) ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
  padding: 0.85rem 1.6rem;
  text-decoration: none;
  cursor: pointer;
  border: none;
  border-radius: var(--r-btn);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), filter 0.2s var(--ease), background 0.2s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }

.btn-primary {
  background: linear-gradient(180deg, #33707a 0%, var(--teal) 60%, var(--teal-deep) 100%);
  color: #ffffff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.24), 0 2px 5px rgba(40, 80, 88, 0.22), 0 12px 24px -10px rgba(47, 90, 99, 0.55);
}
.btn-primary:hover { filter: brightness(1.05); box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.32), 0 4px 10px rgba(40, 80, 88, 0.28), 0 18px 34px -12px rgba(47, 90, 99, 0.62); }

.btn-ghost {
  background: rgba(247, 241, 231, 0.5);
  color: var(--teal);
  box-shadow: inset 0 0 0 1.5px rgba(47, 90, 99, 0.55), 0 6px 16px -10px rgba(46, 42, 37, 0.4);
}
.btn-ghost:hover { background: rgba(47, 90, 99, 0.08); }
.btn-ghost.light {
  color: var(--cream);
  background: rgba(247, 241, 231, 0.08);
  box-shadow: inset 0 0 0 1.5px rgba(247, 241, 231, 0.6);
}
.btn-ghost.light:hover { background: rgba(247, 241, 231, 0.16); }

.btn-soft {
  background: linear-gradient(180deg, #ffffff 0%, var(--sand) 100%);
  color: var(--teal);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8), inset 0 0 0 1px rgba(47, 90, 99, 0.18), 0 8px 18px -12px rgba(46, 42, 37, 0.4);
}
.btn-soft:hover { filter: brightness(1.02); }

.btn-gold {
  background: linear-gradient(180deg, #d8ad63 0%, var(--gold) 60%, #b98b3f 100%);
  color: var(--ink);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), 0 2px 5px rgba(120, 88, 40, 0.25), 0 12px 24px -10px rgba(199, 154, 78, 0.6);
}
.btn-gold:hover { filter: brightness(1.05); }
.btn.full { width: 100%; text-align: center; }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; background: radial-gradient(130% 92% at 50% -12%, var(--warm-glow), transparent 55%), var(--cream); }
.hero-bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(52px);
  opacity: 0.55;
  will-change: transform;
}
.blob-1 { width: 46vw; max-width: 560px; aspect-ratio: 1; top: -12%; left: -8%;
  background: radial-gradient(circle, rgba(107, 140, 174, 0.8), transparent 70%); animation: drift1 27s ease-in-out infinite alternate; }
.blob-2 { width: 40vw; max-width: 480px; aspect-ratio: 1; top: 8%; right: -10%;
  background: radial-gradient(circle, rgba(123, 168, 143, 0.75), transparent 70%); animation: drift2 32s ease-in-out infinite alternate; }
.blob-3 { width: 38vw; max-width: 460px; aspect-ratio: 1; bottom: -18%; left: 22%;
  background: radial-gradient(circle, rgba(199, 154, 78, 0.6), transparent 70%); animation: drift3 24s ease-in-out infinite alternate; }
.blob-4 { width: 34vw; max-width: 420px; aspect-ratio: 1; bottom: -6%; right: 12%;
  background: radial-gradient(circle, rgba(47, 90, 99, 0.5), transparent 70%); animation: drift4 30s ease-in-out infinite alternate; }

@keyframes drift1 { from { transform: translate(0, 0) scale(1); } to { transform: translate(8%, 10%) scale(1.12); } }
@keyframes drift2 { from { transform: translate(0, 0) scale(1.05); } to { transform: translate(-10%, 6%) scale(0.92); } }
@keyframes drift3 { from { transform: translate(0, 0) scale(0.95); } to { transform: translate(6%, -12%) scale(1.1); } }
@keyframes drift4 { from { transform: translate(0, 0) scale(1); } to { transform: translate(-8%, -8%) scale(1.08); } }

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--maxw);
  margin-inline: auto;
  padding: clamp(2.5rem, 7vw, 5.5rem) var(--pad) clamp(3rem, 8vw, 6rem);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 4.5rem);
}
.hero-copy .eyebrow { margin-bottom: 1.1rem; }
#hero-title {
  font-size: clamp(2.9rem, 1.8rem + 6vw, 5.6rem);
  font-weight: 300;
  line-height: 1.02;
  margin-bottom: 0.5em;
}
#hero-title .script {
  display: block;
  font-size: clamp(3.1rem, 2rem + 6.5vw, 6rem);
  line-height: 0.9;
  margin-top: 0.05em;
}
.lede {
  font-size: clamp(1.1rem, 1rem + 0.5vw, 1.35rem);
  color: var(--ink);
  max-width: 34ch;
  margin-bottom: 1rem;
}
.hero-note { color: var(--muted); max-width: 38ch; margin-bottom: 2rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; }

/* ---------- Hero portrait: layered, edge-faded ---------- */
.hero-portrait { display: flex; justify-content: center; }
.portrait-stage {
  position: relative;
  width: min(88%, 430px);
  aspect-ratio: 4 / 5;
  margin-inline: auto;
}
.portrait-spiral {
  position: absolute;
  inset: -36%;
  z-index: 1;
  background: url("assets/img/spiral-icon.png") center/contain no-repeat;
  opacity: 0.6;
  animation: spin 100s linear infinite;
}
.portrait-bloom {
  position: absolute;
  inset: -6%;
  z-index: 0;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 60%, rgba(199, 154, 78, 0.42), rgba(123, 168, 143, 0.32) 46%, rgba(107, 140, 174, 0.22) 62%, transparent 76%);
  filter: blur(20px);
}
.portrait-frame {
  position: absolute;
  inset: 7% -5% -7% 7%;
  z-index: 1;
  border: 1.5px solid rgba(199, 154, 78, 0.65);
  border-radius: 28px;
  transform: rotate(-3deg);
}
.portrait-photo {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
}
.portrait-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 26px;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 4%, #000 96%, transparent), linear-gradient(to bottom, transparent, #000 4%, #000 96%, transparent);
  -webkit-mask-composite: source-in;
  mask-image: linear-gradient(to right, transparent, #000 4%, #000 96%, transparent), linear-gradient(to bottom, transparent, #000 4%, #000 96%, transparent);
  mask-composite: intersect;
}
.portrait-dot {
  position: absolute;
  z-index: 3;
  border-radius: 50%;
  filter: blur(1px);
}
.dot-a {
  width: 56px; height: 56px; top: -4%; right: 0;
  background: radial-gradient(circle, rgba(199, 154, 78, 0.9), transparent 70%);
  animation: floaty 9s ease-in-out infinite;
}
.dot-b {
  width: 40px; height: 40px; bottom: 3%; left: -5%;
  background: radial-gradient(circle, rgba(123, 168, 143, 0.9), transparent 70%);
  animation: floaty 11s ease-in-out infinite reverse;
}

@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* ---------- Scrolling ribbon ---------- */
.marquee {
  overflow: hidden;
  background: var(--sand);
  border-block: 1px solid rgba(46, 42, 37, 0.08);
  padding: 0.9rem 0;
  position: relative;
  z-index: 2;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 40s linear infinite;
  will-change: transform;
}
.marquee-group {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  padding-right: 1.6rem;
  flex: none;
}
.marquee-group span:not(.marquee-dot) {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 340;
  font-size: clamp(1.3rem, 1rem + 1.4vw, 2.1rem);
  color: var(--teal);
  white-space: nowrap;
}
.marquee-dot { width: 7px; height: 7px; flex: none; background: var(--gold); border-radius: 50%; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- Trust ---------- */
.trust { background: var(--sand); position: relative; z-index: 2; }
.trust-inner {
  max-width: 760px;
  margin-inline: auto;
  padding: clamp(2.5rem, 6vw, 4rem) var(--pad);
  text-align: center;
}
.divider-enso { display: block; margin: 0 auto 1.2rem; }
.trust-quote p {
  font-family: var(--font-display);
  font-weight: 340;
  font-style: italic;
  font-size: clamp(1.3rem, 1rem + 1.6vw, 1.9rem);
  line-height: 1.4;
  color: var(--ink);
}
.trust-quote cite {
  display: block;
  margin-top: 1rem;
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--gold);
}

/* ---------- For you ---------- */
.foryou { position: relative; z-index: 2; }
.foryou-list { list-style: none; display: grid; gap: 1.3rem; max-width: 760px; }
.foryou-list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  font-size: 1.12rem;
  color: var(--ink);
}
.mark { flex: none; width: 30px; height: 30px; }
.mark svg { width: 30px; height: 30px; }

/* ---------- About ---------- */
.about { background: var(--sand); position: relative; z-index: 2; }
.about-inner {
  max-width: var(--maxw);
  margin-inline: auto;
  padding: var(--section-y) var(--pad);
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.about-photo { display: flex; justify-content: center; }
.portrait-ring {
  position: relative;
  width: min(80%, 360px);
  aspect-ratio: 1 / 1;
}
.portrait-ring .portrait-enso {
  position: absolute;
  inset: -9%;
  width: 118%;
  height: 118%;
  z-index: 0;
}
.portrait-ring img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--r-card);
  box-shadow: var(--bevel);
}
.about-copy p { margin-bottom: 1rem; max-width: 54ch; }
.signature-line .script { font-size: 2rem; }
.about-inner--solo { grid-template-columns: 1fr; max-width: 760px; text-align: center; }
.about-inner--solo .about-copy p { margin-inline: auto; }

/* ---------- Work / offers ---------- */
.work { position: relative; z-index: 2; }

.method {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin: clamp(2rem, 5vw, 3.5rem) 0;
}
.method li { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 0.4rem; }
.method-mark { width: 46px; height: 46px; }
.method-mark svg { width: 46px; height: 46px; }
.method-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--teal);
}
.method-desc { font-size: 0.95rem; color: var(--muted); max-width: 22ch; }

.offer-feature {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  background: linear-gradient(155deg, #35646d 0%, var(--teal) 55%, var(--teal-deep) 100%);
  color: var(--cream);
  padding: clamp(1.75rem, 4vw, 2.75rem);
  position: relative;
  margin-bottom: 1.5rem;
  border-radius: var(--r-card);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14), 0 2px 6px rgba(40, 80, 88, 0.2), 0 26px 50px -22px rgba(39, 74, 82, 0.7);
  overflow: hidden;
}
.offer-feature-tag {
  position: absolute;
  top: 1.1rem;
  right: 1.1rem;
  background: linear-gradient(180deg, #d8ad63, var(--gold));
  color: var(--ink);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.4rem 0.9rem;
  border-radius: var(--r-pill);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), 0 4px 10px -4px rgba(120, 88, 40, 0.6);
}
.offer-feature h3 { color: var(--cream); font-size: clamp(1.7rem, 1.3rem + 1.4vw, 2.4rem); font-weight: 360; }
.offer-feature-desc { color: rgba(247, 241, 231, 0.9); margin: 0.6rem 0 1rem; max-width: 46ch; }
.offer-feature-points { list-style: none; display: grid; gap: 0.35rem; }
.offer-feature-points li { padding-left: 1.3rem; position: relative; color: rgba(247, 241, 231, 0.92); font-size: 0.98rem; }
.offer-feature-points li::before { content: ''; position: absolute; left: 0; top: 0.5em; width: 8px; height: 8px; border-radius: 50%; background: var(--gold); }
.offer-feature-price { text-align: center; display: flex; flex-direction: column; gap: 0.35rem; align-items: center; min-width: 190px; }
.offer-feature-price .price { font-family: var(--font-display); font-size: 3.2rem; line-height: 1; color: var(--cream); font-weight: 340; }
.offer-feature-price .price-sub { color: rgba(247, 241, 231, 0.75); font-size: 0.85rem; letter-spacing: 0.04em; margin-bottom: 0.6rem; }

.offer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}
.offer-card {
  background: linear-gradient(180deg, #ffffff 0%, var(--cream) 100%);
  padding: 1.6rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  border-radius: var(--r-card);
  box-shadow: var(--bevel);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.offer-card:hover { transform: translateY(-4px); box-shadow: var(--bevel-hover); }
.offer-thumb {
  width: 54px;
  height: 54px;
  margin-bottom: 0.5rem;
  background: url("assets/img/spiral-mark.png") center/contain no-repeat;
}
.thumb-first { background-image: url("assets/img/icons/icon-blue.png"); }
.thumb-coaching { background-image: url("assets/img/icons/icon-teal.png"); }
.thumb-reiki { background-image: url("assets/img/icons/icon-sage.png"); }
.thumb-combo { background-image: url("assets/img/icons/icon-gold.png"); }
.offer-card h3 { font-size: 1.4rem; font-weight: 380; }
.offer-meta { color: var(--muted); font-size: 0.85rem; letter-spacing: 0.03em; text-transform: uppercase; }
.offer-price { font-family: var(--font-display); font-size: 2.2rem; color: var(--teal); margin: 0.3rem 0; }
.offer-note { color: var(--muted); font-size: 0.95rem; flex: 1; margin-bottom: 1rem; }

.sliding-note {
  margin-top: 2rem;
  text-align: center;
  color: var(--muted);
  font-style: italic;
  max-width: 52ch;
  margin-inline: auto;
}

/* ---------- Expect ---------- */
.expect { position: relative; overflow: hidden; background: var(--sand); z-index: 2; }
.expect-wash {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(closest-side at 15% 20%, rgba(123, 168, 143, 0.22), transparent 70%),
    radial-gradient(closest-side at 90% 80%, rgba(107, 140, 174, 0.22), transparent 70%);
  filter: blur(4px);
}
.expect .section-inner { position: relative; z-index: 1; }
.expect-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}
.expect-col {
  background: linear-gradient(180deg, #ffffff 0%, var(--cream) 100%);
  padding: clamp(1.5rem, 3vw, 2.2rem);
  border-radius: var(--r-card);
  box-shadow: var(--bevel);
}
.expect-col h3 { font-size: 1.5rem; color: var(--teal); margin-bottom: 0.6rem; font-weight: 380; }
.expect-col p { color: var(--ink); }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.step { display: flex; gap: 1rem; align-items: flex-start; }
.step-num {
  flex: none;
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: linear-gradient(180deg, #ffffff, var(--sand));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8), inset 0 0 0 1.5px rgba(199, 154, 78, 0.6), 0 6px 14px -8px rgba(46, 42, 37, 0.4);
  color: var(--teal);
  font-family: var(--font-display);
  font-size: 1.3rem;
}
.step p { color: var(--ink); }

/* ---------- Reviews ---------- */
.reviews { position: relative; z-index: 2; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; margin-top: 2.5rem; }
.review {
  background: linear-gradient(180deg, #ffffff 0%, var(--sand) 100%);
  padding: 1.75rem 1.5rem;
  border-radius: var(--r-card);
  box-shadow: var(--bevel);
  position: relative;
}
.review::before {
  content: '';
  position: absolute;
  top: 0; left: 1.5rem; right: 1.5rem;
  height: 3px;
  border-radius: var(--r-pill);
  background: linear-gradient(90deg, var(--blue), var(--sage), var(--gold));
}
.review p { font-family: var(--font-display); font-style: italic; font-weight: 340; font-size: 1.15rem; line-height: 1.5; color: var(--ink); }
.review cite {
  display: block; margin-top: 1rem; font-style: normal; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase; font-size: 0.76rem; color: var(--teal);
}

/* ---------- Contact ---------- */
.contact { position: relative; overflow: hidden; background: linear-gradient(180deg, #1c3b42 0%, #12292f 100%); color: var(--cream); z-index: 2; }
.contact-wash {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background:
    linear-gradient(rgba(10, 24, 28, 0.42), rgba(10, 24, 28, 0.38)),
    radial-gradient(closest-side at 20% 30%, rgba(123, 168, 143, 0.20), transparent 70%),
    radial-gradient(closest-side at 85% 75%, rgba(199, 154, 78, 0.16), transparent 70%);
}
.fireflies {
  position: absolute; inset: 0; z-index: 1;
  width: 100%; height: 100%; object-fit: cover;
  pointer-events: none;
}
.starfield { position: absolute; inset: 0; z-index: 0; overflow: hidden; pointer-events: none; }
.starfield::before, .starfield::after {
  content: '';
  position: absolute;
  left: 0; right: 0; top: -60%;
  height: 220%;
  background-image:
    radial-gradient(1.5px 1.5px at 25px 40px, rgba(255, 255, 255, 0.9), transparent),
    radial-gradient(1px 1px at 90px 120px, rgba(255, 255, 255, 0.7), transparent),
    radial-gradient(1.5px 1.5px at 160px 70px, rgba(247, 241, 231, 0.85), transparent),
    radial-gradient(1px 1px at 210px 180px, rgba(255, 255, 255, 0.6), transparent),
    radial-gradient(2px 2px at 60px 200px, rgba(199, 154, 78, 0.75), transparent),
    radial-gradient(1px 1px at 130px 30px, rgba(255, 255, 255, 0.7), transparent);
  background-size: 240px 240px;
  animation: stars-drift 120s linear infinite;
}
.starfield::after { background-size: 320px 320px; animation-duration: 200s; opacity: 0.55; }
@keyframes stars-drift { from { transform: translateY(0); } to { transform: translateY(-33%); } }
.contact-inner {
  position: relative; z-index: 3;
  max-width: var(--maxw);
  margin-inline: auto;
  padding: var(--section-y) var(--pad);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.contact-copy .section-title { color: var(--cream); }
.contact-copy p { color: rgba(247, 241, 231, 0.9); max-width: 42ch; margin-bottom: 1.5rem; }
.divider-enso.light { margin: 0 0 1.2rem; }
.divider-spiral { display: block; width: 64px; height: 64px; margin: 0 0 1.2rem; }
.contact-direct { display: flex; gap: 0.9rem; flex-wrap: wrap; margin-bottom: 1.1rem; }
.contact-phone { font-size: 0.95rem; }
.contact-phone a { color: var(--cream); font-weight: 700; }

.contact-form {
  background: linear-gradient(180deg, #ffffff 0%, var(--cream) 100%);
  color: var(--ink);
  padding: clamp(1.75rem, 4vw, 2.5rem);
  border-radius: var(--r-card);
  box-shadow: 0 2px 6px rgba(20, 40, 44, 0.2), 0 30px 60px -28px rgba(20, 40, 44, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.8);
}
.contact-form h3 { font-size: 1.6rem; margin-bottom: 1.2rem; font-weight: 380; }
.field { margin-bottom: 1.1rem; display: flex; flex-direction: column; gap: 0.35rem; }
.field label { font-weight: 700; font-size: 0.9rem; color: var(--ink); }
.field input, .field textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.75rem 0.9rem;
  border: 1px solid rgba(46, 42, 37, 0.22);
  border-radius: var(--r-input);
  background: #fff;
  color: var(--ink);
  box-shadow: inset 0 2px 4px rgba(46, 42, 37, 0.05);
}
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(47, 90, 99, 0.15);
}
.form-hint { margin-top: 0.9rem; font-size: 0.85rem; color: var(--muted); }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: var(--cream); position: relative; z-index: 2; }
.footer-inner { max-width: 640px; margin-inline: auto; padding: clamp(3rem, 6vw, 4.5rem) var(--pad); text-align: center; }
.footer-enso { display: block; margin-bottom: 1rem; }
.footer-brand { font-family: var(--font-display); font-size: 1.5rem; margin-bottom: 0.2rem; }
.footer-tag { font-size: 1.6rem; color: var(--sage); margin-bottom: 1.2rem; }
.footer-contact a { color: var(--cream); font-weight: 700; font-size: 1.1rem; text-decoration: none; }
.footer-fine { color: rgba(247, 241, 231, 0.55); font-size: 0.8rem; max-width: 46ch; margin: 1.2rem auto 0.8rem; }
.footer-copy { color: rgba(247, 241, 231, 0.5); font-size: 0.8rem; }

/* ---------- Sticky mobile bar ---------- */
.mobile-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 45;
  display: none;
  background: rgba(247, 241, 231, 0.94);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(46, 42, 37, 0.12);
  padding: 0.55rem;
  gap: 0.5rem;
}
.mobile-bar-btn {
  flex: 1;
  text-align: center;
  padding: 0.85rem 0.5rem;
  min-height: 46px;
  text-decoration: none;
  font-weight: 700;
  color: var(--teal);
  border-radius: var(--r-btn);
  background: linear-gradient(180deg, #ffffff, var(--sand));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8), inset 0 0 0 1px rgba(47, 90, 99, 0.18);
}
.mobile-bar-btn.primary {
  background: linear-gradient(180deg, #3a757f, var(--teal));
  color: var(--cream);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22), 0 4px 10px -4px rgba(47, 90, 99, 0.5);
}

/* ---------- Discovery-call popup ---------- */
.cta-pop {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 50;
  width: min(320px, calc(100vw - 3rem));
  background: linear-gradient(180deg, #ffffff, var(--cream));
  border-radius: var(--r-card);
  box-shadow: 0 2px 8px rgba(46, 42, 37, 0.1), 0 24px 50px -20px rgba(46, 42, 37, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.8);
  padding: 1.5rem 1.4rem;
  opacity: 0;
  transform: translateY(20px) scale(0.98);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}
.cta-pop.show { opacity: 1; transform: none; }
.cta-pop[hidden] { display: none; }
.cta-pop-mark { width: 42px; height: 42px; margin-bottom: 0.5rem; }
.cta-pop-title { font-family: var(--font-display); font-size: 1.3rem; font-weight: 360; color: var(--ink); margin-bottom: 0.2rem; }
.cta-pop-text { font-size: 0.92rem; color: var(--muted); margin-bottom: 1rem; }
.cta-pop .btn { width: 100%; text-align: center; }
.cta-pop-close {
  position: absolute;
  top: 0.5rem;
  right: 0.6rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--muted);
  cursor: pointer;
  padding: 0.2rem 0.45rem;
}
.cta-pop-close:hover { color: var(--ink); }
@media (max-width: 900px) { .cta-pop { display: none !important; } }
@media (prefers-reduced-motion: reduce) { .cta-pop { transform: none; } }

/* ---------- Atmosphere band ---------- */
.atmosphere {
  position: relative;
  min-height: 46vh;
  display: grid;
  place-items: center;
  padding: clamp(3rem, 8vw, 6rem) var(--pad);
  background: url("assets/img/img-light.jpg") center/cover no-repeat;
  z-index: 2;
}
.atmosphere-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(30, 52, 58, 0.62), rgba(28, 24, 20, 0.62));
}
.atmosphere-quote {
  position: relative;
  z-index: 1;
  max-width: 22ch;
  text-align: center;
}
.atmosphere-quote p {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 340;
  font-size: clamp(1.6rem, 1.1rem + 2.4vw, 2.8rem);
  line-height: 1.32;
  color: var(--cream);
  text-shadow: 0 2px 24px rgba(20, 30, 30, 0.45);
}

/* ---------- Expect banner image ---------- */
.expect-banner {
  display: block;
  width: 100%;
  max-width: 900px;
  height: clamp(200px, 30vw, 360px);
  margin: 0 auto clamp(1.5rem, 4vw, 2.5rem);
  object-fit: cover;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent), linear-gradient(to bottom, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-composite: source-in;
  mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent), linear-gradient(to bottom, transparent, #000 8%, #000 92%, transparent);
  mask-composite: intersect;
}

/* ---------- Trust band watercolor wash ---------- */
.trust-wash {
  background: linear-gradient(rgba(247, 241, 231, 0.74), rgba(247, 241, 231, 0.8)), url("assets/img/img-wash.jpg") center/cover no-repeat;
}

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .nav-menu {
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--cream);
    border-bottom: 1px solid rgba(46, 42, 37, 0.1);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s var(--ease);
  }
  .nav-menu.open { max-height: 420px; }
  .nav-menu li { border-top: 1px solid rgba(46, 42, 37, 0.08); }
  .nav-menu a { display: block; padding: 0.95rem var(--pad); }
  .nav-cta { text-align: center; border-radius: 0; }

  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-copy { order: 2; }
  .hero-portrait { order: 1; margin-bottom: 1rem; }
  .lede, .hero-note { margin-inline: auto; }
  .hero-actions { justify-content: center; }
  .foryou-list li { text-align: left; }

  .about-inner { grid-template-columns: 1fr; text-align: center; }
  .about-copy p { margin-inline: auto; }
  .about-photo { order: -1; }

  .contact-inner { grid-template-columns: 1fr; }

  .method { grid-template-columns: repeat(2, 1fr); }
  .offer-grid { grid-template-columns: repeat(2, 1fr); }
  .expect-cols { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }

  .offer-feature { grid-template-columns: 1fr; text-align: center; }
  .offer-feature-tag { position: static; align-self: center; margin-bottom: 0.5rem; }
  .offer-feature-points { justify-items: center; }
  .offer-feature-points li { text-align: left; }
  .offer-feature-price { min-width: 0; }

  .mobile-bar { display: flex; }
  .site-footer { padding-bottom: calc(74px + env(safe-area-inset-bottom) + 1.5rem); }
}

@media (max-width: 520px) {
  .method { grid-template-columns: 1fr 1fr; }
  .offer-grid { grid-template-columns: 1fr; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn:hover, .offer-card:hover { transform: none; }
  .blob, .portrait-spiral, .portrait-dot, .marquee-track { animation: none !important; }
  .starfield::before, .starfield::after { animation: none !important; }
}
