/* ═══════════════════════════════════════════════════════════════
   Third Eye Consultancy — style.css (Full rebuild)
   Design system: warm ivory, deep espresso, terracotta, sparing gold.
   Typography: Source Serif 4 (display) + Sora (body).
   ═══════════════════════════════════════════════════════════════ */

/* ── Design tokens ────────────────────────────────────────────── */
:root {
  /* Surfaces */
  --ivory:       #F7F4EE;   /* primary background */
  --ivory-deep:  #EFE9DD;   /* alternating band */
  --ivory-wash:  #FBF9F4;   /* card surface */
  --soft-line:   #E5DECF;   /* hairline / dividers */
  --soft-line-2: #D8CFBB;

  /* Ink (dominant text) → deep espresso brown */
  --espresso:    #2B2118;
  --espresso-2:  #4A3C30;
  --muted-on-ivory: #6E6152;
  --faint:       #8B7E6E;

  /* Primary accent → terracotta */
  --terra:       #B5502F;
  --terra-deep:  #933C21;
  --terra-tint:  #F3E2D8;
  --terra-tint-2:#F7E9E0;

  /* Secondary accents → muted teal & sage (controlled color variety) */
  --teal:        #3E7C7A;
  --teal-deep:   #2C5C5A;
  --teal-tint:   #DCE9E7;
  --sage:        #75854F;
  --sage-deep:   #5A683A;
  --sage-tint:   #E4E8D5;

  /* Secondary accent → gold (sparing use) */
  --gold:        #C9A24B;
  --gold-deep:   #A67E2D;
  --gold-tint:   #EFE4C8;

  /* Navy reserved exclusively for the logo artwork */
  --navy-logo:   #0B1F3A;

  /* Type */
  --font-display: "Source Serif 4", Georgia, "Times New Roman", serif;
  --font-body:    "Sora", "Helvetica Neue", Arial, sans-serif;

  /* Shadows & radii */
  --shadow-1: 0 1px 2px rgba(43,33,24,.05), 0 10px 30px -18px rgba(43,33,24,.35);
  --shadow-2: 0 2px 4px rgba(43,33,24,.06), 0 22px 48px -20px rgba(43,33,24,.40);
  --radius-sm: 6px;
  --radius-md: 14px;
}

/* ── Reset ────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--espresso);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.locked { overflow: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
p { margin: 0 0 1rem; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.12;
  margin: 0 0 .5em;
  letter-spacing: -0.015em;
  color: var(--espresso);
}
h1 { font-size: clamp(2.6rem, 6vw, 4.3rem); font-weight: 500; }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.45rem); }
::selection { background: var(--terra); color: var(--ivory); }

/* ── Layout primitives ────────────────────────────────────────── */
.wrap { width: min(1200px, 92vw); margin: 0 auto; }
.wrap--narrow { width: min(940px, 92vw); }
.wrap--flush { width: min(1200px, 100vw); }

.section { padding: clamp(4.5rem, 9vw, 7.5rem) 0; }
.section--band-ivory  { background: var(--ivory); }
.section--band-deep   { background: var(--ivory-deep); border-block: 1px solid var(--soft-line); }
.section--band-wash   { background: var(--ivory-wash); border-block: 1px solid var(--soft-line); }
.section--two-tone    { background: linear-gradient(180deg, var(--ivory) 0 50%, var(--ivory-deep) 50% 100%); }

.sec-head { max-width: 46rem; margin-bottom: clamp(2.5rem, 5vw, 3.5rem); }
.sec-head--center { margin-inline: auto; text-align: center; }
.sec-head p { font-size: 1.06rem; color: var(--muted-on-ivory); }
.sec-head .lede { font-size: 1.14rem; }

/* Eyebrow with gold tick */
.kick {
  display: inline-flex; align-items: center; gap: .7rem;
  font-family: var(--font-body);
  font-size: .8rem; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 1.1rem;
}
.kick::before { content: ""; width: 26px; height: 2px; background: var(--gold); display: inline-block; }
.kick--center { justify-content: center; }
.kick--center::after { content: ""; width: 26px; height: 2px; background: var(--gold); display: inline-block; }

/* ── Buttons ──────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: var(--font-body);
  font-weight: 600; font-size: .94rem;
  padding: .95rem 1.6rem;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background .25s ease, color .25s ease, border-color .25s ease, transform .15s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn--terra   { background: var(--terra); color: #FFF9F2; }
.btn--terra:hover { background: var(--terra-deep); color: #fff; }
.btn--ink     { background: var(--espresso); color: var(--ivory); }
.btn--ink:hover { background: #17110B; }
.btn--gold    { background: var(--gold); color: #2B2118; }
.btn--gold:hover { background: var(--gold-deep); color: #fff; }
.btn--ghost   { background: transparent; border-color: var(--espresso); color: var(--espresso); }
.btn--ghost:hover { background: var(--espresso); color: var(--ivory); }
.btn--ghost-light { background: transparent; border-color: rgba(247,244,238,.7); color: var(--ivory); }
.btn--ghost-light:hover { background: rgba(247,244,238,.12); border-color: var(--ivory); color: var(--ivory); }
.btn--paper   { background: var(--ivory); color: var(--terra-deep); }
.btn--paper:hover { background: #fff; }
.btn--sm      { padding: .62rem 1.15rem; font-size: .85rem; }

/* ── Header ───────────────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(247,244,238,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--soft-line);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 2rem;
  padding: .8rem 0;
}
.brand img { height: 44px; width: auto; }
.main-nav { display: flex; gap: 2rem; }
.main-nav a {
  font-size: .92rem; font-weight: 500; color: var(--espresso-2);
  padding: .3rem 0; position: relative;
  transition: color .2s ease;
}
.main-nav a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -2px;
  height: 2px; background: var(--terra); transition: right .25s ease;
}
.main-nav a:hover, .main-nav a.active { color: var(--espresso); }
.main-nav a:hover::after, .main-nav a.active::after { right: 0; }
.header-cta { display: flex; align-items: center; gap: 1.1rem; }
.header-phone {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .9rem; font-weight: 600; color: var(--espresso);
}
.header-phone svg { width: 16px; height: 16px; color: var(--terra); }
.hamburger {
  display: none; align-items: center; justify-content: center;
  width: 44px; height: 44px; border: 1px solid var(--soft-line);
  background: var(--ivory-wash); border-radius: var(--radius-sm); cursor: pointer;
}
.hamburger svg { width: 22px; height: 22px; }

/* ── Mobile drawer ────────────────────────────────────────────── */
.mobile-drawer {
  position: fixed; inset: 0; z-index: 80;
  background: rgba(43,33,24,.5);
  opacity: 0; pointer-events: none; transition: opacity .3s ease;
}
.mobile-drawer.open { opacity: 1; pointer-events: auto; }
.drawer-inner {
  position: absolute; top: 0; right: 0; bottom: 0; width: min(86vw, 380px);
  background: var(--ivory); border-left: 1px solid var(--soft-line);
  padding: 1.4rem 1.8rem 2rem; display: flex; flex-direction: column;
  transform: translateX(100%); transition: transform .35s cubic-bezier(.4,0,.2,1);
}
.mobile-drawer.open .drawer-inner { transform: translateX(0); }
.drawer-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 2rem; }
.drawer-head img { height: 30px; width: auto; }
.drawer-close { background: none; border: none; cursor: pointer; padding: .4rem; }
.drawer-close svg { width: 24px; height: 24px; }
.drawer-nav { display: flex; flex-direction: column; gap: .2rem; }
.drawer-nav a {
  font-family: var(--font-display); font-size: 1.5rem;
  padding: .7rem 0; border-bottom: 1px solid var(--soft-line);
  color: var(--espresso); font-weight: 500;
}
.drawer-nav a.active { color: var(--terra); }
.drawer-foot { margin-top: auto; display: grid; gap: .8rem; }

/* ── HERO (home) — asymmetric split ───────────────────────────── */
.front-hero {
  position: relative;
  overflow: clip;
  background:
    radial-gradient(1100px 520px at 85% -10%, rgba(201,162,75,.10), transparent 60%),
    linear-gradient(180deg, var(--ivory-deep), var(--ivory) 46%);
}
.front-hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(rgba(43,33,24,.05) 1px, transparent 1.2px);
  background-size: 26px 26px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,.55), transparent 55%);
}
.home-hero-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.05fr .95fr;
  gap: clamp(2rem, 5vw, 4.5rem); align-items: center;
  min-height: clamp(540px, 74vh, 720px);
  padding: clamp(2rem, 4vw, 3.5rem) 0;
}
.home-hero-copy { max-width: 34rem; }
.home-hero-copy h1 { font-size: clamp(2.8rem, 5.6vw, 4.6rem); line-height: 1.05; }
.home-hero-copy h1 .accent { color: var(--terra); }
.home-hero-copy h1 .accent { position: relative; }
.intro {
  font-size: clamp(1.02rem, 1.6vw, 1.18rem);
  color: var(--muted-on-ivory); margin: 1.4rem 0 0; max-width: 32rem;
}
.action-row { display: flex; flex-wrap: wrap; gap: .9rem; }
.home-hero-copy .action-row, .band-espresso .action-row { margin-top: 2rem; }

/* Stats — compact single-row strip under CTAs */
.stats-row {
  display: flex; flex-wrap: nowrap; align-items: stretch;
  margin-top: 2.6rem; padding-top: 1.6rem;
  border-top: 1px solid var(--soft-line);
}
.stat-item {
  flex: 1 1 0; min-width: 0;
  padding: 0 .55rem;
}
.stat-item:first-of-type { padding-left: 0; }
.stat-item:last-of-type { padding-right: 0; }
.stat-item + .stat-item { border-left: 1px solid var(--soft-line-2); }
.stat-item strong {
  font-family: var(--font-display); font-size: clamp(1.25rem, 2.1vw, 1.7rem);
  display: block; line-height: 1.15; color: var(--espresso); letter-spacing: -0.01em;
  white-space: nowrap;
}
.stat-item strong em { font-style: normal; color: var(--terra); }
.stat-item span {
  display: block; margin-top: .3rem;
  font-size: .64rem; letter-spacing: .015em; text-transform: uppercase; color: var(--faint);
  line-height: 1.35;
}

/* Hero portrait — bleeds to viewport edge */
.portrait-wrap { position: relative; justify-self: end; }
.portrait {
  border-radius: var(--radius-md);
  overflow: hidden;
  rotate: 1.2deg;
  box-shadow: var(--shadow-2);
}
.portrait img { width: min(440px, 34vw); aspect-ratio: 2 / 3; object-fit: cover; }
.portrait::after {
  content: ""; position: absolute; inset: 0;
  border: 1px solid rgba(247,244,238,.35);
  border-radius: var(--radius-md);
  pointer-events: none;
}
.portrait-tag {
  position: absolute; left: 1rem; bottom: 1.05rem;
  background: var(--ivory); border: 1px solid var(--soft-line);
  padding: .75rem 1.25rem; border-radius: var(--radius-sm);
  box-shadow: var(--shadow-1);
}
.portrait-tag strong { font-family: var(--font-display); font-size: 1.05rem; display: block; color: var(--espresso); }
.portrait-tag span { font-size: .78rem; color: var(--faint); letter-spacing: .04em; }

/* Gold corner marks on hero frame */
.corner { position: absolute; width: 30px; height: 30px; z-index: 2; pointer-events: none; }
.corner b { position: absolute; background: var(--gold); display: block; }
.corner--tl { top: -8px; left: -8px; }
.corner--tl b { width: 26px; height: 2px; top: 0; left: 0; }
.corner--tl b:last-child { width: 2px; height: 26px; }
.corner--br { bottom: -8px; right: -8px; }
.corner--br b { width: 26px; height: 2px; right: 0; bottom: 0; }
.corner--br b:last-child { width: 2px; height: 26px; right: 0; bottom: 0; }

/* Hero portrait — a contained crawl toward the viewport edge */
@media (min-width: 1080px) {
  .portrait-wrap { margin-right: -1.5rem; }
}

/* ── Service index — editorial numbered list (home) ───────────── */
.svc-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0 clamp(2rem,5vw,4rem); }
.ledger-row {
  display: grid; grid-template-columns: 3.2rem 1fr;
  gap: 0 1.1rem; padding: 1.35rem 0;
  border-bottom: 1px solid var(--soft-line);
  transition: background .2s ease;
}
.ledger-row:hover { background: var(--ivory-wash); }
.ledger-row .svc-no {
  font-family: var(--font-display); font-style: italic;
  font-size: 1.15rem; color: var(--gold-deep); padding-top: .35rem;
}
.ledger-row h3 { font-size: 1.22rem; margin-bottom: .3rem; }
.ledger-row p { margin: 0; color: var(--muted-on-ivory); font-size: .95rem; max-width: 32rem; }
.svc-more {
  grid-column: 1 / -1; display: inline-flex; align-items: center; gap: .45rem;
  font-size: .82rem; font-weight: 600; color: var(--terra); margin-top: .55rem;
  letter-spacing: .06em; text-transform: uppercase;
}
.svc-more svg { width: 15px; height: 15px; transition: transform .2s ease; }
.ledger-row:hover .svc-more svg { transform: translateX(4px); }

/* ── Two-column editorial split ───────────────────────────────── */
.duo { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.2rem,5vw,4.5rem); align-items: center; }
.duo--start { align-items: start; }
.duo .duo-text .lede { font-size: 1.15rem; color: var(--espresso-2); font-family: var(--font-display); }
.duo p { color: var(--muted-on-ivory); }

/* Framed image w/ gold corner accents */
.pane {
  position: relative; border-radius: var(--radius-md); overflow: hidden;
  box-shadow: var(--shadow-2); margin-top: 10px;
}
.pane::before, .pane::after {
  content: ""; position: absolute; width: 44px; height: 44px; z-index: 2; pointer-events: none;
}
.pane::before { top: 10px; left: 10px; border-top: 2px solid var(--gold); border-left: 2px solid var(--gold); }
.pane::after { bottom: 10px; right: 10px; border-bottom: 2px solid var(--gold); border-right: 2px solid var(--gold); }
.pane img { aspect-ratio: 3 / 3.6; object-fit: cover; }
.pane--wide img { aspect-ratio: 4 / 3; }
.pane--wide { max-width: 560px; }
.pane-tag {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(180deg, transparent, rgba(43,33,24,.82));
  padding: 2.4rem 1.4rem 1.1rem 1.5rem; color: var(--ivory);
  font-size: .82rem; letter-spacing: .05em;
}
.pane-tag strong { font-size: .95rem; }

/* ── Card grids (trust, principles, advisory) ─────────────────── */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.card {
  background: var(--ivory-wash); border: 1px solid var(--soft-line);
  border-radius: var(--radius-md); padding: 1.8rem 1.6rem;
  position: relative; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-1); border-color: var(--soft-line-2); }
.card.bd-a { border-top: 3px solid var(--terra); }
.card.bd-b { border-top: 3px solid var(--teal); }
.card.bd-c { border-top: 3px solid var(--gold); }
.card.bd-d { border-top: 3px solid var(--sage); }
.card .card-icon {
  width: 44px; height: 44px; border-radius: 50%;
  display: grid; place-items: center; margin-bottom: 1.1rem;
  background: var(--terra-tint); color: var(--terra);
}
.card .card-icon svg { width: 20px; height: 20px; }
.card h3 { font-size: 1.25rem; margin-bottom: .5rem; }
.card p { color: var(--muted-on-ivory); font-size: .95rem; margin: 0; }

/* ── Principles — numbered editorial list ─────────────────────── */
.cred-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.credo {
  padding: 2rem 2.2rem 2.6rem 0;
  position: relative;
}
.credo:not(:nth-child(3n+1)) { padding-left: 2.2rem; }
.credo:not(:nth-child(3n+1))::before { content: ""; position: absolute; left: 0; top: 10%; bottom: 15%; width: 1px; background: var(--soft-line); }
.credo .credo-no {
  font-family: var(--font-display); font-style: italic;
  font-size: 2.2rem; color: var(--gold-deep); line-height: 1; display: block; margin-bottom: 1rem;
  transition: color .3s ease;
}
.credo.cr-a .credo-no { color: var(--terra-deep); }
.credo.cr-b .credo-no { color: var(--teal-deep); }
.credo.cr-c .credo-no { color: var(--gold-deep); }
.credo.cr-d .credo-no { color: var(--sage-deep); }
.credo h3 { font-size: 1.25rem; margin-bottom: .5rem; }
.credo p { color: var(--muted-on-ivory); font-size: .95rem; margin: 0; }

/* ── Segment chips (who we serve) ─────────────────────────────── */
.chip-field {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: .9rem;
}
.chip {
  display: flex; align-items: center; gap: .6rem;
  background: var(--ivory-wash); border: 1px solid var(--soft-line);
  border-radius: 999px; padding: .5rem 1rem;
  font-size: .88rem; font-weight: 500; color: var(--espresso-2);
  transition: border-color .2s ease, color .2s ease, background .2s ease;
}
.chip:hover { border-color: var(--gold); background: var(--gold-tint); color: var(--espresso); }
.chip .chip-ico {
  width: 30px; height: 30px; flex: 0 0 auto; border-radius: 9px;
  display: grid; place-items: center; font-size: 1rem; line-height: 1;
  background: var(--terra-tint);
}
.chip.c-a .chip-ico { background: var(--terra-tint); }
.chip.c-b .chip-ico { background: var(--teal-tint); }
.chip.c-c .chip-ico { background: var(--gold-tint); }
.chip.c-d .chip-ico { background: var(--sage-tint); }

/* ── Steps rail (how it works) ────────────────────────────────── */
.timeline { position: relative; margin-top: 2.2rem; }
.timeline::before {
  content: ""; position: absolute; top: 22px; left: 8%; right: 8%;
  height: 1px; background: repeating-linear-gradient(90deg, var(--gold) 0 8px, transparent 8px 18px);
}
.timeline-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.timeline-step { position: relative; padding-top: 0; }
.timeline-dot {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--ivory); border: 1px solid var(--gold);
  display: grid; place-items: center;
  font-family: var(--font-display); font-style: italic; color: var(--terra);
  margin-bottom: 1.2rem; position: relative; z-index: 1;
}
.timeline-step .time-kick { font-size: .76rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--terra); }
.timeline-step h3 { font-size: 1.25rem; margin: .35rem 0 .5rem; }
.timeline-step p { color: var(--muted-on-ivory); font-size: .92rem; margin: 0; }

/* ── Pull quote ───────────────────────────────────────────────── */
.quote {
  border: 0; margin: 2rem 0; padding: 1.6rem 1.8rem;
  border-left: 3px solid var(--gold);
  background: var(--gold-tint);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.quote q {
  font-family: var(--font-display); font-size: 1.25rem; line-height: 1.45;
  color: var(--espresso); display: block;
}
.quote cite { display: block; margin-top: .8rem; font-style: normal; font-size: .85rem; color: var(--terra); font-weight: 600; }

/* ── Dark espresso band (advisory / founder) ──────────────────── */
.band-espresso {
  background:
    radial-gradient(900px 420px at 12% -10%, rgba(201,162,75,.10), transparent 55%),
    var(--espresso);
  color: var(--ivory);
  border-block: 1px solid #201811;
}
.band-espresso h2, .band-espresso h3 { color: var(--ivory); }
.band-espresso .kick { color: var(--gold); }
.band-espresso .lede, .band-espresso p { color: #C9BCAA; }
.band-espresso .kick::before { background: var(--gold); }
.band-espresso .duo p { color: #C9BCAA; }

/* Advisory cards (on dark) */
.adv-card {
  border: 1px solid rgba(201,162,75,.28);
  border-radius: var(--radius-md);
  padding: 1.7rem 1.7rem 1.9rem;
  background: rgba(247,244,238,.03);
  position: relative;
  transition: background .25s ease, transform .25s ease;
}
.adv-card:hover { background: rgba(247,244,238,.07); transform: translateY(-3px); }
.adv-card .num { font-family: var(--font-display); font-style: italic; font-size: 1.5rem; color: var(--gold); display: block; margin-bottom: .7rem; }
.adv-card h3 { font-size: 1.22rem; margin-bottom: .55rem; }
.adv-card p { color: #B9AA96; font-size: .94rem; margin: 0; }
.adv-card a { color: var(--gold); font-weight: 600; font-size: .88rem; display: inline-flex; align-items: center; gap: .4rem; margin-top: 1rem; }
.adv-card a svg { width: 14px; height: 14px; }

/* ── Final CTA band (terracotta) ──────────────────────────────── */
.closing {
  background:
    radial-gradient(720px 360px at 85% 130%, rgba(201,162,75,.30), transparent 55%),
    var(--terra);
  color: #FFF3EA;
  padding: clamp(2.4rem, 4vw, 3.6rem) 0;
}
.closing .wrap { text-align: center; }
.closing h2 { color: #FFF6EE; max-width: 34rem; margin-inline: auto; margin-bottom: .4rem; }
.closing p { max-width: 30rem; margin: 0 auto; color: #F6DCCB; }
.closing .action-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; margin-top: 1.5rem; }

/* ── Footer ───────────────────────────────────────────────────── */
.site-footer { background: var(--espresso); color: #B9AA96; }
.footer-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1.4fr 1.1fr;
  gap: clamp(1.6rem, 3vw, 3rem);
  padding: clamp(2.4rem, 4vw, 3.4rem) 0 2rem;
}
.footer-brand img { height: 38px; width: auto; margin-bottom: .9rem; }
.footer-brand .footer-tag { font-family: var(--font-display); font-size: 1.05rem; color: var(--ivory); margin-bottom: .7rem; }
.footer-brand p { font-size: .9rem; line-height: 1.6; }
.site-footer h4 {
  color: var(--ivory); font-family: var(--font-body);
  font-size: .76rem; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; margin-bottom: 1rem;
}
.footer-nav li { margin-bottom: .5rem; font-size: .9rem; }
.footer-list li { margin-bottom: .55rem; }
.f-row { display: flex; align-items: center; gap: .6rem; font-size: .9rem; line-height: 1.45; }
.f-row strong { color: var(--ivory); font-weight: 600; white-space: nowrap; }
.f-row svg { width: 16px; height: 16px; flex: 0 0 auto; color: var(--gold); }
.site-footer a { color: inherit; transition: color .2s ease; }
.footer-nav a:hover, .footer-list a:hover { color: var(--gold); }
.social-links { display: flex; gap: .6rem; }
.social-links a {
  width: 38px; height: 38px; border: 1px solid rgba(201,162,75,.35);
  border-radius: 50%; display: grid; place-items: center; color: var(--gold);
}
.social-links a:hover { background: var(--gold); color: var(--espresso); }
.social-links svg { width: 17px; height: 17px; }
.footer-bottom {
  border-top: 1px solid rgba(201,162,75,.22);
  padding: 1.1rem 0; display: flex; flex-wrap: wrap; justify-content: space-between; gap: .5rem;
  font-size: .8rem; color: #8F8372;
}
.footer-bottom a { color: var(--gold); }

/* ── WhatsApp float ───────────────────────────────────────────── */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 60;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 8px 24px -6px rgba(37,211,102,.55);
  transition: transform .2s ease;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 28px; height: 28px; }
.wa-ring {
  position: absolute; inset: -6px; border-radius: 50%;
  border: 2px solid rgba(37,211,102,.45); animation: wa-pulse 2.6s infinite;
}
@keyframes wa-pulse { 0% { transform: scale(.92); opacity: 1; } 70%, 100% { transform: scale(1.18); opacity: 0; } }

/* ── Page hero (subpages) ─────────────────────────────────────── */
.page-banner {
  padding: clamp(3.5rem, 6vw, 6rem) 0 clamp(2.5rem, 5vw, 4rem);
  background:
    radial-gradient(900px 380px at 88% -20%, rgba(201,162,75,.14), transparent 60%),
    var(--ivory-deep);
  border-bottom: 1px solid var(--soft-line);
  position: relative; overflow: hidden;
}
.page-banner::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(rgba(43,33,24,.045) 1px, transparent 1.2px);
  background-size: 28px 28px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,.5), transparent 60%);
}
.page-banner .wrap { position: relative; z-index: 1; }
.crumbs { display: flex; align-items: center; gap: .5rem; font-size: .82rem; color: var(--faint); margin-bottom: 1rem; }
.crumbs a { color: var(--terra); }
.crumbs svg { width: 13px; height: 13px; }
.page-banner h1 { max-width: 22ch; }
.page-banner .intro { max-width: 44ch; margin-top: 1rem; color: var(--muted-on-ivory); font-size: 1.1rem; }

.map-wrap {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--soft-line);
  box-shadow: var(--shadow-1);
  background: var(--ivory-wash);
  line-height: 0;
}
.map-wrap iframe { display: block; }

/* ── Services page ────────────────────────────────────────────── */
.svc-layout { display: grid; grid-template-columns: 250px 1fr; gap: 2.5rem; align-items: start; }
.svc-nav {
  position: sticky; top: 96px;
  border-left: 1px solid var(--soft-line);
  padding-left: 1.4rem; display: flex; flex-direction: column; gap: .15rem;
}
.svc-nav a {
  font-size: .86rem; color: var(--muted-on-ivory); padding: .4rem .6rem;
  border-radius: var(--radius-sm); border-left: 2px solid transparent; margin-left: -1.4rem;
  transition: color .2s ease, background .2s ease, border-color .2s ease;
}
.svc-nav a:hover { color: var(--espresso); }
.svc-nav a.active { color: var(--terra); background: var(--terra-tint); border-left-color: var(--terra); font-weight: 600; }
.svc-detail {
  border: 1px solid var(--soft-line); background: var(--ivory-wash);
  border-radius: var(--radius-md); padding: 2rem;
  margin-bottom: 1.6rem; scroll-margin-top: 110px;
  transition: border-color .2s ease;
}
.svc-detail:hover { border-color: var(--gold); }
.svc-detail.flow, .svc-detail.flow-rev {
  display: grid; grid-template-columns: .92fr 1.08fr;
  gap: clamp(1.4rem, 3vw, 2.2rem); align-items: center;
}
.svc-detail.flow-rev .svc-photo { order: 2; }
.svc-photo {
  border-radius: var(--radius-md); overflow: hidden;
  border: 1px solid var(--soft-line); box-shadow: var(--shadow-1);
}
.svc-photo img { aspect-ratio: 4 / 3; width: 100%; height: 100%; object-fit: cover; }
.svc-body { min-width: 0; }
.svc-detail-head { display: flex; align-items: center; gap: 1.1rem; margin-bottom: 1.3rem; }
.svc-mono {
  width: 52px; height: 52px; flex: 0 0 auto;
  border-radius: var(--radius-sm);
  color: var(--espresso); font-family: var(--font-display); font-style: italic;
  font-size: 1.5rem; display: grid; place-items: center;
}
.svc-mono--terra { background: var(--terra-tint); color: var(--terra-deep); }
.svc-mono--teal  { background: var(--teal-tint);  color: var(--teal-deep); }
.svc-detail h2 { font-size: clamp(1.5rem, 2.4vw, 1.8rem); margin: 0; }
.svc-detail h3.kick { font-family: var(--font-body); font-size: .78rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--terra); margin: 1.4rem 0 .8rem; }
.ticks { display: grid; grid-template-columns: 1fr 1fr; gap: .6rem 1.6rem; }
.ticks li { display: flex; gap: .6rem; align-items: baseline; font-size: .95rem; color: var(--espresso-2); }
.ticks li::before { content: "✓"; color: var(--terra); font-weight: 700; font-size: .9rem; }
.fits-for {
  margin-top: 1.5rem; background: var(--terra-tint);
  border-left: 3px solid var(--terra);
  padding: .9rem 1.2rem; border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: .92rem; color: var(--espresso-2);
}
.fits-for strong { color: var(--espresso); }
.svc-detail .btn { margin-top: 1.4rem; }

.branch-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.8rem;
  align-items: start;
}
.branch {
  background: var(--ivory-wash); border: 1px solid var(--soft-line);
  border-radius: var(--radius-md); padding: 1.6rem 1.6rem 1.6rem;
}
.branch-name { font-size: 1.2rem; margin-bottom: .3rem; }
.branch-addr { color: var(--muted-on-ivory); font-size: .95rem; margin: 0 0 1.2rem; }

/* ── Contact page ─────────────────────────────────────────────── */
.contacts { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(2.5rem,5vw,4.5rem); align-items: start; }
.c-item { display: flex; gap: 1rem; padding: 1.2rem 0; border-bottom: 1px solid var(--soft-line); }
.c-item .c-ico {
  flex: 0 0 auto; width: 46px; height: 46px; border-radius: 12px;
  background: var(--terra-tint); color: var(--terra);
  display: grid; place-items: center;
}
.c-item .c-ico svg { width: 20px; height: 20px; }
.c-item h3 { font-size: 1.08rem; margin-bottom: .25rem; }
.c-item p { margin: 0; color: var(--muted-on-ivory); font-size: .92rem; }
.c-item a.block { font-weight: 600; color: var(--espresso); }
.c-item a.block:hover { color: var(--terra); }
.hours { width: 100%; font-size: .92rem; border-collapse: collapse; margin-top: .2rem; }
.hours td { padding: .35rem 0; color: var(--muted-on-ivory); }
.hours td:last-child { text-align: right; font-weight: 600; color: var(--espresso); }

.panel {
  background: var(--ivory-wash); border: 1px solid var(--soft-line);
  border-radius: var(--radius-md); padding: 2rem 2.1rem;
  box-shadow: var(--shadow-1);
}
.form-group { margin-bottom: 1.2rem; }
.form-group label { display: block; font-size: .84rem; font-weight: 600; color: var(--espresso); margin-bottom: .45rem; }
.form-control {
  width: 100%; font-family: var(--font-body); font-size: .95rem;
  padding: .85rem 1rem; color: var(--espresso);
  background: #fff; border: 1.5px solid var(--soft-line-2);
  border-radius: var(--radius-sm);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.form-control:focus { outline: none; border-color: var(--terra); box-shadow: 0 0 0 3px var(--terra-tint); }
textarea.form-control { min-height: 130px; resize: vertical; }
.btn-block { width: 100%; }
.form-note { font-size: .82rem; color: var(--faint); }
.field-error { color: var(--terra-deep); font-size: .82rem; margin-top: .4rem; }
#form-status { font-size: .92rem; }

/* ── Book consultation page ───────────────────────────────────── */
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.p-step {
  background: var(--ivory-wash); border: 1px solid var(--soft-line);
  border-radius: var(--radius-md); padding: 1.7rem 1.6rem;
}
.p-step .step-no { font-family: var(--font-display); font-style: italic; color: var(--gold-deep); font-size: 1.3rem; display: block; margin-bottom: .6rem; }
.p-step h3 { font-size: 1.15rem; margin-bottom: .4rem; }
.p-step p { color: var(--muted-on-ivory); font-size: .92rem; margin: 0; }

.booking-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.8rem; }
.tier-card {
  background: var(--ivory-wash); border: 1px solid var(--soft-line);
  border-radius: var(--radius-md); padding: 2rem 2.1rem;
  display: flex; flex-direction: column; height: 100%;
}
.tier-card h2 { margin: .9rem 0 .8rem; }
.tier-card .tier-sub { color: var(--muted-on-ivory); font-size: .97rem; }
.tier-card ul { margin: 1.2rem 0 1.6rem; }
.tier-card ul li { display: flex; gap: .55rem; align-items: baseline; font-size: .93rem; color: var(--espresso-2); margin-bottom: .45rem; }
.tier-card ul li::before { content: "—"; color: var(--gold-deep); font-weight: 700; }
.tier-badge {
  display: inline-block; font-size: .72rem; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; padding: .4rem 1rem; border-radius: 999px;
}
.tier-badge--general { background: var(--gold-tint); color: var(--gold-deep); }
.tier-badge--paid { background: var(--espresso); color: var(--gold); }

.calendar-slot {
  margin-top: auto; background: #fff;
  border: 1.5px dashed var(--soft-line-2);
  border-radius: var(--radius-md); padding: 1.5rem 1.5rem 1.7rem;
  text-align: center;
}
.calendar-slot h3 { font-size: 1.1rem; margin-bottom: .4rem; }
.calendar-slot p { font-size: .88rem; color: var(--muted-on-ivory); }
.calendar-slot .slot-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: .7rem; margin-top: 1rem; }
.slot-badge {
  display: inline-grid; place-items: center; width: 40px; height: 40px;
  background: var(--terra-tint); color: var(--terra); border-radius: 12px;
  font-size: 1.2rem; margin-bottom: .7rem;
}

/* ── Advisory page ────────────────────────────────────────────── */
.adv-vs { display: grid; grid-template-columns: 1fr auto 1fr; gap: 1.4rem; align-items: stretch; }
.vs-col {
  background: var(--ivory-wash); border: 1px solid var(--soft-line);
  border-radius: var(--radius-md); padding: 1.8rem 1.8rem;
}
.vs-col h3 { font-size: 1.15rem; margin-bottom: 1rem; }
.vs-col ul li { display: flex; gap: .55rem; font-size: .93rem; color: var(--espresso-2); margin-bottom: .55rem; }
.vs-col ul li::before { content: "·"; color: var(--terra); font-weight: 800; font-size: 1.2rem; line-height: 1; }
.vs-divider {
  display: flex; align-items: center; justify-content: center;
}
.vs-divider span {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--espresso); color: var(--gold);
  display: grid; place-items: center;
  font-family: var(--font-body); font-size: .78rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  border: 1px solid var(--gold);
  box-shadow: var(--shadow-1);
}
.pricing-note {
  max-width: 700px; margin-inline: auto; text-align: center;
  background: var(--ivory-wash); border: 1px solid var(--soft-line);
  border-radius: var(--radius-md); padding: 2.2rem 2rem;
}

/* ── GSAP reveal wiring ───────────────────────────────────────── */
.gs-reveal { will-change: transform, opacity; }
.no-motion .gs-reveal, .gs-reveal.is-visible { opacity: 1 !important; transform: none !important; visibility: visible !important; }

/* ── Responsive ───────────────────────────────────────────────── */
@media (max-width: 1080px) {
  .svc-list { grid-template-columns: 1fr; }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .cred-grid { grid-template-columns: repeat(2, 1fr); }
  .chip-field { grid-template-columns: repeat(4, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .svc-layout { grid-template-columns: 1fr; }
  .svc-nav { position: static; flex-direction: row; flex-wrap: wrap; border-left: 0; padding-left: 0; gap: .4rem; margin-bottom: 1.5rem; }
  .svc-nav a { border-left: 0; margin-left: 0; border: 1px solid var(--soft-line); }
  .svc-nav a.active { border-color: var(--terra); }
  .booking-grid { grid-template-columns: 1fr; }
}

@media (max-width: 880px) {
  .main-nav, .header-phone { display: none; }
  .hamburger { display: inline-flex; }
  .home-hero-grid { grid-template-columns: 1fr; }
  .portrait-wrap { justify-self: start; margin-right: 0; }
  .portrait img { width: min(360px, 84vw); }
  .portrait-wrap { margin-top: 3rem; }
  .duo { grid-template-columns: 1fr; }
  .duo--flip .duo-text { order: 2; }
  .timeline-grid { grid-template-columns: repeat(2, 1fr); gap: 1.8rem; }
  .timeline::before { display: none; }
  .process-grid { grid-template-columns: 1fr; }
  .contacts { grid-template-columns: 1fr; }
  .branch-grid { grid-template-columns: 1fr; }
  .adv-vs { grid-template-columns: 1fr; gap: 1rem; }
  .vs-divider { order: -1; align-self: center; padding: .4rem 0; }
  .svc-detail.flow, .svc-detail.flow-rev { grid-template-columns: 1fr; }
  .svc-detail.flow-rev .svc-photo { order: 0; }
  .svc-photo img { aspect-ratio: 3 / 2; }
}

@media (max-width: 640px) {
  body { font-size: 15.5px; }
  .card-grid { grid-template-columns: 1fr; }
  .cred-grid { grid-template-columns: 1fr; }
  .cred-grid > .credo { padding: 1.4rem 0; }
  .cred-grid > .credo::before { display: none; }
  .chip-field { grid-template-columns: repeat(2, 1fr); }
  .timeline-grid { grid-template-columns: 1fr; }
  .ticks { grid-template-columns: 1fr; }
  .stats-row { flex-wrap: wrap; border-top: 0; margin-top: 2rem; padding-top: 0; }
  .stat-item { flex: 1 1 100%; padding: .7rem 0; }
  .stat-item + .stat-item { border-left: 0; border-top: 1px solid var(--soft-line); }
  .footer-grid { grid-template-columns: 1fr; gap: 2.2rem; }
  .home-hero-copy h1 { font-size: clamp(2.3rem, 9vw, 3rem); }
  .portrait-tag { left: .9rem; bottom: 1rem; }
}