/* ============================================================
   STĀ Solutions Med Spa — design system
   Palette: bone / espresso / bark / sage / clay  (earth, warm)
   Type: Fraunces (display) + Inter Tight (body)
   Signature motif: the macron (Ā) — short horizontal bar
   ============================================================ */

:root {
  --bone: #F4EEE0;
  --cream: #FAF6EF;
  --sand: #E2D7BF;
  --espresso: #26180B;
  --coffee: #382512;
  --bark: #5E4A33;
  --sage: #5F7F49;
  --clay: #A9663F;
  --clay-deep: #8F5330;
  --gold: #C99A4E;
  --champagne: #E9DCC2;
  --sage-light: #9BBA76;

  /* accent tokens retired 2026-08-28 (client: stick to original brand) */
  --crimson: var(--espresso);
  --crimson-deep: var(--coffee);
  --crimson-tint: var(--champagne);

  --font-display: "Fraunces", "Georgia", serif;
  --font-body: "Inter Tight", -apple-system, "Helvetica Neue", sans-serif;

  --w-max: 1240px;
  --gutter: clamp(20px, 4vw, 48px);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bone);
  color: var(--espresso);
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 420; line-height: 1.08; margin: 0; letter-spacing: -0.01em; }
p { margin: 0 0 1em; }
:focus-visible { outline: 2px solid var(--clay); outline-offset: 3px; border-radius: 2px; }
::selection { background: var(--clay); color: var(--cream); }

.container { max-width: var(--w-max); margin: 0 auto; padding-inline: var(--gutter); }

/* ---------- utilities ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--bark); margin-bottom: 22px;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--clay); }
.on-dark .eyebrow { color: var(--gold); }

.rule { height: 1px; background: var(--sand); border: 0; margin: 0; transform-origin: left; }
html.js .reveal-rule { transform: scaleX(0); transition: transform 1.1s var(--ease-out); }
html.js .reveal-rule.is-in { transform: scaleX(1); }

.serif-i { font-family: var(--font-display); font-style: italic; font-weight: 400; }

/* macron accent — draws the STĀ bar over a letter/word (Fraunces lacks a clean Ā) */
.macron { position: relative; white-space: nowrap; display: inline-block; }
.macron::after {
  content: ""; position: absolute; left: 0.06em; right: 0.06em; top: -0.02em;
  height: 0.07em; background: var(--clay); border-radius: 1px;
}
.band-dark .macron::after, .site-footer .macron::after, .chat-fab .macron::after,
.chat-head .macron::after, .booking-head .macron::after { background: var(--gold); }

/* reveal-on-scroll (scoped to html.js so content is never hidden without JS) */
html.js .reveal { opacity: 0; transform: translateY(14px); transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out); }
html.js .reveal.is-in { opacity: 1; transform: none; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body); font-size: 14px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 17px 30px; border-radius: 2px; text-decoration: none; cursor: pointer;
  border: 1px solid transparent; transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.25s;
}
.btn-solid { background: var(--espresso); color: var(--cream); }
.btn-solid:hover { background: var(--clay-deep); }
.btn-light { background: var(--cream); color: var(--espresso); }
.btn-light:hover { background: var(--gold); color: var(--espresso); }
.btn-line { border-color: var(--espresso); color: var(--espresso); background: transparent; }
.btn-line:hover { background: var(--espresso); color: var(--cream); }
.btn .arr { transition: transform 0.25s var(--ease-out); }
.btn:hover .arr { transform: translateX(4px); }

.text-link {
  display: inline-flex; align-items: baseline; gap: 8px;
  font-size: 13.5px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--espresso); text-decoration: none; position: relative; padding-top: 6px;
}
.text-link::before { content: ""; position: absolute; top: 0; left: 0; width: 22px; height: 2px; background: var(--clay); transition: width 0.3s var(--ease-out); }
.text-link:hover::before { width: 100%; }

/* ---------- announcement bar ---------- */
.announce {
  background: var(--espresso); color: var(--bone);
  font-size: 12.5px; letter-spacing: 0.08em;
}
.announce .container { display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: 40px; min-width: 0; }
.announce-msg { opacity: 1; transition: opacity 0.4s; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; min-width: 0; flex: 1 1 auto; }
.announce-msg.is-fading { opacity: 0; }
.announce a { color: var(--cream); font-weight: 600; text-decoration: none; white-space: nowrap; }
.announce a:hover { text-decoration: underline; }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(244, 238, 224, 0.92); backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, background 0.3s;
}
.site-header.is-scrolled { border-bottom-color: var(--sand); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; height: 82px; }

.wordmark { display: flex; align-items: center; text-decoration: none; line-height: 1; }
.logo-img { height: 52px; width: auto; }
.logo-img-footer { height: 96px; width: auto; margin-left: -8px; }

.main-nav { display: flex; align-items: center; gap: 34px; }
.main-nav a:not(.btn) {
  font-size: 13.5px; font-weight: 500; letter-spacing: 0.04em; text-decoration: none; color: var(--espresso);
  position: relative; padding: 6px 0;
}
.main-nav a:not(.btn)::after {
  content: ""; position: absolute; left: 0; top: 0; width: 0; height: 2px; background: var(--clay);
  transition: width 0.3s var(--ease-out);
}
.main-nav a:not(.btn):hover::after, .main-nav a[aria-current="page"]::after { width: 100%; }
.main-nav .btn { padding: 13px 22px; }

.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 10px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--espresso); margin: 5px 0; transition: transform 0.3s, opacity 0.3s; }

/* mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 80; background: var(--espresso); color: var(--bone);
  display: flex; flex-direction: column; justify-content: center; padding: var(--gutter);
  opacity: 0; pointer-events: none; transition: opacity 0.35s;
}
.mobile-menu.is-open { opacity: 1; pointer-events: auto; }
.mobile-menu a { font-family: var(--font-display); font-size: clamp(30px, 8vw, 44px); color: var(--bone); text-decoration: none; padding: 12px 0; border-bottom: 1px solid rgba(233,220,194,0.12); }
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu .mm-meta { margin-top: 30px; font-size: 14px; color: var(--gold); }
.mobile-close { position: absolute; top: 26px; right: 26px; background: none; border: 0; color: var(--bone); font-size: 30px; cursor: pointer; line-height: 1; }

/* ---------- hero ---------- */
.hero { position: relative; min-height: min(88svh, 860px); display: flex; align-items: flex-end; overflow: hidden; background: var(--espresso); }
.hero-media { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: 34% 26%; }
@keyframes heroZoom { from { transform: scale(1.07); } to { transform: scale(1); } }
.hero-media img { animation: heroZoom 9s var(--ease-out) both; }
.hero-scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(21,15,9,0.86) 0%, rgba(21,15,9,0.62) 38%, rgba(21,15,9,0.16) 70%),
    linear-gradient(0deg, rgba(21,15,9,0.62) 0%, rgba(21,15,9,0.12) 44%),
    linear-gradient(180deg, rgba(21,15,9,0.3) 0%, rgba(21,15,9,0) 24%);
}
/* film grain — one quiet layer of texture over the hero */
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none; opacity: 0.055;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.hero-content { position: relative; z-index: 2; color: var(--bone); padding-block: clamp(56px, 9vh, 110px); max-width: 720px; }
.hero-eyebrow { font-size: 12px; font-weight: 600; letter-spacing: 0.26em; text-transform: uppercase; color: var(--gold); display: flex; align-items: center; gap: 12px; margin-bottom: 26px; text-shadow: 0 1px 14px rgba(21,15,9,0.65); }
.hero-eyebrow::before { content: ""; width: 30px; height: 2px; background: var(--gold); }
.hero h1 { font-size: clamp(44px, 6.4vw, 84px); font-weight: 380; color: var(--cream); }
.hero h1 em { font-style: italic; font-weight: 350; color: var(--gold); }
.hero-lede { font-size: clamp(16px, 1.6vw, 19px); line-height: 1.65; color: rgba(233,220,194,0.85); max-width: 520px; margin: 26px 0 36px; }
.hero-cta-row { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; }

/* lead hero — copy left, consult-request card right (direct-response layout) */
.hero-lead { align-items: center; min-height: min(94svh, 900px); }
.hero-grid {
  position: relative; z-index: 2; width: 100%;
  display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(36px, 5vw, 80px);
  align-items: center; padding-block: clamp(48px, 7vh, 96px);
}
.hero-copy { color: var(--bone); }
.hero-lead h1 { font-size: clamp(40px, 5vw, 70px); }
.hero-cred {
  display: flex; align-items: center; gap: 12px; margin-top: 30px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(233,220,194,0.8); text-shadow: 0 1px 12px rgba(21,15,9,0.6); max-width: 460px; line-height: 1.7;
}
.hero-cred::before { content: ""; flex-shrink: 0; width: 26px; height: 2px; background: var(--gold); }
.hero-form-card {
  justify-self: end; width: 100%; max-width: 404px;
  background: var(--cream); border: 1px solid var(--sand); border-radius: 4px;
  padding: 30px 28px 22px;
  box-shadow: 0 36px 80px -30px rgba(10,6,2,0.6);
}
.hfc-title { font-size: 26px; }
.hfc-sub { font-size: 14px; color: var(--bark); margin: 10px 0 22px; }
.hf-submit { width: 100%; justify-content: center; }
.hf-fineprint { font-size: 11.5px; letter-spacing: 0.03em; color: var(--sage); text-align: center; margin: 12px 0 0; }
.hfc-success { text-align: center; padding: 26px 4px 18px; }
.hfc-success .ok-mark { width: 54px; height: 54px; border-radius: 50%; border: 2px solid var(--clay); color: var(--clay-deep); font-size: 24px; display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; }
.hfc-success h3 { font-size: 23px; margin-bottom: 8px; }
.hfc-success p { font-size: 14px; color: var(--bark); margin: 0 auto 6px; max-width: 300px; }
.hfc-success .hf-fineprint { margin-top: 14px; }
.bk-input:invalid:not(:placeholder-shown) { border-color: var(--clay); }

/* staggered hero reveal */
html.js .hero [data-stagger] { opacity: 0; transform: translateY(22px); animation: heroLine 0.9s var(--ease-out) forwards; }
.hero [data-stagger="1"] { animation-delay: 0.15s; }
.hero [data-stagger="2"] { animation-delay: 0.3s; }
.hero [data-stagger="3"] { animation-delay: 0.45s; }
.hero [data-stagger="4"] { animation-delay: 0.6s; }
@keyframes heroLine { to { opacity: 1; transform: none; } }

/* placard strip under hero */
.placard { border-bottom: 1px solid var(--sand); }
.placard-row { display: grid; grid-template-columns: repeat(3, 1fr); }
.placard-item { padding: 26px 28px; border-left: 1px solid var(--sand); font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--bark); display: flex; align-items: center; gap: 14px; }
.placard-item:first-child { border-left: 0; padding-left: 0; }
.placard-item strong { color: var(--espresso); font-weight: 600; }
.placard-num { font-family: var(--font-display); font-size: 30px; font-weight: 350; color: var(--clay); letter-spacing: 0; }

/* ---------- section scaffolding ---------- */
.section { padding-block: clamp(72px, 10vw, 128px); }
.section-head { max-width: 640px; margin-bottom: clamp(40px, 6vw, 72px); }
.section-head h2 { font-size: clamp(32px, 4vw, 52px); }
.section-head p { color: var(--bark); margin-top: 18px; font-size: 17px; }
.section-head .text-link { margin-top: 20px; }

/* ---------- lane tiles (home) ---------- */
.lanes { display: grid; grid-template-columns: 1.25fr 1fr 1fr; gap: 22px; }
.lane { position: relative; display: block; text-decoration: none; overflow: hidden; border-radius: 3px; aspect-ratio: 3 / 3.6; background: var(--espresso); }
.lane img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease-out), filter 0.6s; }
.lane:hover img { transform: scale(1.045); }
.lane::after { content: ""; position: absolute; inset: 0; background: linear-gradient(185deg, rgba(21,15,9,0) 38%, rgba(21,15,9,0.78) 88%); }
.lane::before {
  content: "01"; position: absolute; top: 22px; left: 24px; z-index: 3;
  font-family: var(--font-display); font-style: italic; font-size: 15px; letter-spacing: 0.08em;
  color: rgba(233,220,194,0.95); border-bottom: 1px solid rgba(233,220,194,0.45); padding-bottom: 4px;
  text-shadow: 0 1px 10px rgba(21,15,9,0.7);
}
.lanes .lane:nth-of-type(2)::before { content: "02"; }
.lanes .lane:nth-of-type(3)::before { content: "03"; }
.lane-body { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 30px 28px; color: var(--bone); }
.lane-kicker { font-size: 11px; font-weight: 600; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.lane h3 { font-size: clamp(24px, 2.2vw, 32px); color: var(--cream); }
.lane p { font-size: 14.5px; line-height: 1.55; color: rgba(233,220,194,0.82); margin: 10px 0 14px; max-width: 400px; }
.lane-go { display: inline-flex; align-items: center; gap: 8px; font-size: 12.5px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); }
.lane-go::after { content: "→"; transition: transform 0.3s var(--ease-out); }
.lane:hover .lane-go::after { transform: translateX(5px); }

/* ---------- dark feature band (TED) ---------- */
.band-dark { background: var(--espresso); color: var(--bone); }
.band-dark .section-head p { color: rgba(233,220,194,0.78); }
.split { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(40px, 6vw, 88px); align-items: center; }
.split > *, .ledger > *, .visit-grid > *, .lanes > * { min-width: 0; }
.split-media { position: relative; }
.split-media img { border-radius: 3px; width: 100%; }
.media-caption { margin-top: 14px; font-size: 12.5px; letter-spacing: 0.06em; color: var(--sage); }
.band-dark .media-caption { color: rgba(233,220,194,0.55); }
.feature-points { list-style: none; margin: 30px 0 38px; padding: 0; display: grid; gap: 0; }
.feature-points li { padding: 17px 0; border-top: 1px solid var(--sand); display: grid; grid-template-columns: 44px 1fr; gap: 14px; font-size: 16px; color: var(--bark); }
.feature-points li:last-child { border-bottom: 1px solid var(--sand); }
.band-dark .feature-points li { border-color: rgba(233,220,194,0.14); color: rgba(233,220,194,0.92); }
.feature-points .fp-num { font-family: var(--font-display); font-style: italic; color: var(--gold); font-size: 18px; }
.band-dark h2 { color: var(--cream); }
.band-dark h2 em { font-style: italic; color: var(--gold); }

/* ---------- process ledger ---------- */
.ledger { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(40px, 6vw, 96px); align-items: start; }
.ledger-media { position: sticky; top: 120px; }
.ledger-media img { border-radius: 3px; }
.ledger-steps { counter-reset: step; }
.ledger-step { padding: 30px 0; border-top: 1px solid var(--sand); display: grid; grid-template-columns: 84px 1fr; gap: 20px; }
.ledger-step:last-child { border-bottom: 1px solid var(--sand); }
.ledger-num { font-family: var(--font-display); font-size: 40px; font-weight: 300; color: var(--clay); line-height: 1; }
.ledger-step h3 { font-size: 23px; margin-bottom: 8px; }
.ledger-step p { color: var(--bark); font-size: 15.5px; margin: 0; max-width: 480px; }

/* ---------- quotes ---------- */
.quotes { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 72px); }
.quote { border-top: 2px solid var(--espresso); padding-top: 28px; }
.quote blockquote { margin: 0; font-family: var(--font-display); font-size: clamp(20px, 2vw, 25px); font-weight: 380; line-height: 1.4; }
.quote blockquote em { font-style: italic; color: var(--clay); }
.quote figcaption { margin-top: 20px; font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--bark); }

/* ---------- service menu rows ---------- */
.menu-block { margin-bottom: clamp(48px, 6vw, 80px); }
.menu-block-head { display: flex; align-items: baseline; justify-content: space-between; gap: 20px; margin-bottom: 8px; flex-wrap: wrap; }
.menu-block-head h2, .menu-block-head h3 { font-size: clamp(26px, 3vw, 38px); }
.menu-block-head .note { font-size: 13.5px; color: var(--sage); font-style: italic; font-family: var(--font-display); }
.menu-list { list-style: none; margin: 0; padding: 0; }
.menu-row {
  display: grid; grid-template-columns: 1fr auto; gap: 8px 34px; align-items: baseline;
  padding: 24px 14px; margin-inline: -14px; border-top: 1px solid var(--sand);
  position: relative; transition: background 0.3s;
}
.menu-list .menu-row:last-child { border-bottom: 1px solid var(--sand); }
.menu-row:hover { background: var(--cream); }
.menu-row::before { content: ""; position: absolute; left: 14px; top: -1px; height: 2px; width: 0; background: var(--clay); transition: width 0.45s var(--ease-out); }
.menu-row:hover::before { width: 56px; }
.menu-name { font-family: var(--font-display); font-size: 21px; font-weight: 450; }
.menu-desc { grid-column: 1; font-size: 14.5px; color: var(--bark); max-width: 560px; margin: 0; }
.menu-tail { grid-column: 2; grid-row: 1 / span 2; display: flex; align-items: center; gap: 26px; justify-self: end; }
.menu-price { font-family: var(--font-display); font-size: 18px; font-style: italic; color: var(--espresso); white-space: nowrap; }
.menu-book {
  font-size: 12px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; text-decoration: none;
  color: var(--clay-deep); border: 1px solid var(--sand); padding: 10px 18px; border-radius: 2px;
  transition: background 0.25s, color 0.25s, border-color 0.25s; white-space: nowrap;
}
.menu-book:hover { background: var(--crimson); border-color: var(--crimson); color: var(--cream); }

/* sticky sub-nav (services page) */
.subnav { position: sticky; top: 78px; z-index: 40; background: rgba(233,220,194,0.94); backdrop-filter: blur(10px); border-bottom: 1px solid var(--sand); }
.subnav-row { display: flex; gap: 28px; overflow-x: auto; scrollbar-width: none; }
.subnav-row::-webkit-scrollbar { display: none; }
.subnav a { padding: 16px 0; font-size: 13px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--bark); text-decoration: none; border-bottom: 2px solid transparent; white-space: nowrap; }
.subnav a:hover, .subnav a.is-active { color: var(--espresso); border-bottom-color: var(--clay); }

/* ---------- page hero (interior pages) ---------- */
.page-hero { padding: clamp(56px, 8vw, 100px) 0 clamp(40px, 5vw, 64px); }
.page-hero h1, .page-hero-dark h1 { font-size: clamp(40px, 5.6vw, 72px); max-width: 800px; }
.page-hero h1 em { font-style: italic; color: var(--clay); }
.page-hero .lede, .page-hero-dark .lede { margin-top: 24px; max-width: 620px; font-size: 18px; color: var(--bark); }

.page-hero-dark { position: relative; background: var(--espresso); color: var(--bone); overflow: hidden; }
.page-hero-dark .ph-media { position: absolute; inset: 0; opacity: 0.3; }
.page-hero-dark .ph-media img { width: 100%; height: 100%; object-fit: cover; }
.page-hero-dark::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(21,15,9,0.55) 0%, rgba(21,15,9,0) 70%); }
.page-hero-dark .ph-inner { position: relative; z-index: 2; padding: clamp(80px, 11vw, 150px) 0; }
.page-hero-dark h1 { color: var(--cream); }
.page-hero-dark .lede { color: rgba(233,220,194,0.85); }

/* ---------- before / after ---------- */
.ba-frame { background: var(--cream); border: 1px solid var(--sand); border-radius: 3px; padding: clamp(18px, 3vw, 34px); }
.ba-frame img { border-radius: 2px; }
.ba-meta { display: flex; justify-content: space-between; gap: 16px; margin-top: 16px; font-size: 12.5px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--bark); flex-wrap: wrap; }

/* ---------- FAQ ---------- */
.faq { max-width: 780px; }
.faq details { border-top: 1px solid var(--sand); }
.faq details:last-child { border-bottom: 1px solid var(--sand); }
.faq summary {
  cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 20px;
  padding: 24px 4px; font-family: var(--font-display); font-size: 20px; font-weight: 450;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 24px; color: var(--clay); transition: transform 0.3s; flex-shrink: 0; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq .faq-a { padding: 0 4px 26px; color: var(--bark); max-width: 640px; }

/* ---------- visit band ---------- */
.visit-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(40px, 6vw, 90px); align-items: start; }
.visit-list { list-style: none; margin: 0; padding: 0; }
.visit-list li { display: grid; grid-template-columns: 130px 1fr; gap: 18px; padding: 16px 0; border-top: 1px solid var(--sand); font-size: 15.5px; }
.visit-list li:last-child { border-bottom: 1px solid var(--sand); }
.visit-list .vk { font-size: 12px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--sage); padding-top: 3px; }
.band-dark .visit-list .vk { color: var(--gold); }
.visit-list a { color: var(--espresso); text-decoration: none; border-bottom: 1px solid var(--sand); }
.visit-list a:hover { border-bottom-color: var(--clay); }

/* ---------- footer ---------- */
.site-footer { background: var(--espresso); color: rgba(233,220,194,0.82); }
.footer-top { display: grid; grid-template-columns: 1.35fr 0.9fr 0.9fr 1.05fr 0.6fr; gap: clamp(28px, 4vw, 56px); padding-block: clamp(56px, 8vw, 88px); }
.footer-brand .wm-top { font-family: var(--font-display); font-size: 26px; color: var(--cream); }
.footer-brand .wm-sub { font-size: 9.5px; letter-spacing: 0.38em; text-transform: uppercase; color: var(--gold); margin-top: 6px; }
.footer-brand p { margin-top: 22px; font-size: 14.5px; max-width: 300px; color: rgba(233,220,194,0.6); }
.footer-col h4 { font-family: var(--font-body); font-size: 11.5px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.footer-col a { color: rgba(233,220,194,0.82); text-decoration: none; font-size: 14.5px; }
.footer-col a:hover { color: var(--gold); }
.footer-col li { font-size: 14.5px; }
.footer-bottom { border-top: 1px solid rgba(233,220,194,0.14); padding-block: 22px; display: flex; justify-content: space-between; gap: 16px; font-size: 12.5px; color: rgba(233,220,194,0.5); flex-wrap: wrap; }
.footer-bottom a { color: inherit; text-decoration: none; }
.footer-bottom a:hover { color: var(--gold); }

.social-row { display: flex; gap: 14px; align-items: center; }
.social-row a { color: rgba(233,220,194,0.72); display: inline-flex; transition: color 0.25s, transform 0.25s var(--ease-out); }
.social-row a:hover { color: var(--gold); transform: translateY(-2px); }

/* ---------- booking widget (GHL placeholder) ---------- */
.booking-shell { background: var(--cream); border: 1px solid var(--sand); border-radius: 4px; overflow: hidden; box-shadow: 0 24px 60px -30px rgba(38,24,11,0.25); }
.booking-head { background: var(--espresso); color: var(--bone); padding: 22px 26px; display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.booking-head .bh-title { font-family: var(--font-display); font-size: 19px; }
.booking-head .bh-sub { font-size: 11.5px; letter-spacing: 0.08em; color: var(--gold); text-transform: uppercase; }
.booking-body { padding: 26px; }
.bk-field { margin-bottom: 20px; }
.bk-label { display: block; font-size: 11.5px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--bark); margin-bottom: 9px; }
.bk-select, .bk-input {
  width: 100%; min-width: 0; max-width: 100%; padding: 14px 15px; font-family: var(--font-body); font-size: 15px; color: var(--espresso);
  background: #fff; border: 1px solid var(--sand); border-radius: 3px; appearance: none;
}
.bk-select { background-image: linear-gradient(45deg, transparent 50%, var(--bark) 50%), linear-gradient(135deg, var(--bark) 50%, transparent 50%); background-position: calc(100% - 20px) 55%, calc(100% - 15px) 55%; background-size: 5px 5px; background-repeat: no-repeat; }
.bk-select:focus, .bk-input:focus { outline: none; border-color: var(--clay); }
.bk-cal-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.bk-cal-head .bk-month { font-family: var(--font-display); font-size: 17px; }
.bk-cal-nav { display: flex; gap: 6px; }
.bk-cal-nav button { width: 34px; height: 34px; border: 1px solid var(--sand); background: #fff; border-radius: 3px; cursor: pointer; font-size: 15px; color: var(--espresso); }
.bk-cal-nav button:hover:not(:disabled) { border-color: var(--clay); color: var(--clay-deep); }
.bk-cal-nav button:disabled { opacity: 0.35; cursor: default; }
.bk-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 5px; }
.bk-dow { font-size: 10.5px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--sage); text-align: center; padding-bottom: 6px; }
.bk-day { aspect-ratio: 1; display: flex; align-items: center; justify-content: center; font-size: 14px; border: 1px solid transparent; border-radius: 3px; background: #fff; cursor: pointer; color: var(--espresso); transition: border-color 0.2s, background 0.2s; }
.bk-day:hover:not(:disabled) { border-color: var(--clay); }
.bk-day:disabled { background: transparent; color: #C9BFAF; cursor: default; }
.bk-day.is-selected { background: var(--espresso); color: var(--cream); border-color: var(--espresso); }
.bk-day.is-appt-only:not(:disabled):not(.is-selected) { color: var(--clay-deep); }
.bk-slots { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.bk-slots.bk-hair { grid-template-columns: repeat(4, 1fr); }
.bk-hair .bk-slot:last-child { font-size: 12px; }
.bk-slot { padding: 12px 6px; font-size: 13.5px; font-weight: 500; text-align: center; background: #fff; border: 1px solid var(--sand); border-radius: 3px; cursor: pointer; transition: border-color 0.2s, background 0.2s, color 0.2s; }
.bk-slot:hover { border-color: var(--clay); color: var(--clay-deep); }
.bk-slot.is-selected { background: var(--espresso); border-color: var(--espresso); color: var(--cream); }
.bk-note { font-size: 12.5px; color: var(--sage); margin-top: 4px; }
.bk-cta { width: 100%; justify-content: center; margin-top: 6px; }
.bk-cta:disabled { opacity: 0.45; cursor: default; }
.booking-foot { padding: 14px 26px; border-top: 1px dashed var(--sand); font-size: 11.5px; letter-spacing: 0.04em; color: var(--sage); display: flex; align-items: center; gap: 8px; }
.booking-foot .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--clay); flex-shrink: 0; }
.bk-success { text-align: center; padding: 34px 10px 22px; }
.bk-success .ok-mark { width: 58px; height: 58px; border-radius: 50%; border: 2px solid var(--clay); color: var(--clay-deep); font-size: 26px; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.bk-success h3 { font-size: 25px; margin-bottom: 10px; }
.bk-success p { color: var(--bark); font-size: 14.5px; max-width: 380px; margin: 0 auto 8px; }
.bk-hidden { display: none !important; }

/* two-step area transitions */
.bk-step { animation: bkFade 0.35s var(--ease-out); }
@keyframes bkFade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

/* ============================================================
   THE PHONE — floating "text us" FAB + iPhone texting agent
   ============================================================ */
.fab-wrap { position: fixed; right: 24px; bottom: 24px; z-index: 90; }
.chat-fab {
  position: relative; display: flex; align-items: center; gap: 12px;
  background: var(--espresso); color: var(--champagne, #E9DCC2); border: 0; cursor: pointer;
  padding: 15px 22px 15px 16px; border-radius: 999px; box-shadow: 0 16px 40px -12px rgba(38,24,11,0.55);
  font-family: var(--font-body); font-size: 13.5px; font-weight: 600; letter-spacing: 0.08em;
  transition: transform 0.25s var(--ease-out), background 0.25s;
}
.chat-fab:hover { transform: translateY(-2px); background: var(--coffee); }
.chat-fab .fab-flame { width: 26px; height: 26px; object-fit: contain; }
.chat-fab .fab-dot { position: absolute; top: 4px; right: 6px; width: 11px; height: 11px; border-radius: 50%; background: #34C759; border: 2px solid var(--espresso); }
.fab-badge {
  position: absolute; top: -6px; left: -6px; min-width: 22px; height: 22px; padding: 0 6px;
  display: flex; align-items: center; justify-content: center;
  background: #FF3B30; color: #fff; font-size: 12px; font-weight: 700; border-radius: 999px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3); opacity: 0; transform: scale(0.4);
  transition: opacity 0.3s, transform 0.3s var(--ease-out);
}
.fab-badge.is-on { opacity: 1; transform: none; }
/* ringing: wiggle + expanding ripples */
@keyframes fabRing {
  0%, 100% { transform: rotate(0); }
  10% { transform: rotate(-7deg); } 20% { transform: rotate(6deg); }
  30% { transform: rotate(-5deg); } 40% { transform: rotate(4deg); }
  50% { transform: rotate(-2deg); } 60% { transform: rotate(0); }
}
html.js .chat-fab.is-ringing { animation: fabRing 0.9s ease-in-out; }
.fab-ripple { position: absolute; inset: 0; border-radius: 999px; border: 2px solid var(--gold); opacity: 0; pointer-events: none; }
html.js .is-ringing .fab-ripple { animation: ripple 1s var(--ease-out); }
html.js .is-ringing .fab-ripple:nth-child(2) { animation-delay: 0.25s; }
@keyframes ripple { 0% { opacity: 0.7; transform: scale(1); } 100% { opacity: 0; transform: scale(1.55); } }

/* primary book buttons get a ringing hint */
@keyframes btnBuzz {
  0%, 100% { transform: translateX(0); }
  15% { transform: translateX(-2px) rotate(-0.4deg); } 30% { transform: translateX(2px) rotate(0.4deg); }
  45% { transform: translateX(-2px); } 60% { transform: translateX(2px); } 75% { transform: translateX(-1px); }
}
html.js .btn-ringable:hover { animation: btnBuzz 0.45s ease-in-out; }

/* --- the iPhone --- */
.phone-wrap {
  position: fixed; right: 20px; bottom: 20px; z-index: 95;
  width: min(392px, calc(100vw - 24px));
  opacity: 0; transform: translateY(60px) scale(0.96); pointer-events: none;
  transition: opacity 0.4s var(--ease-out), transform 0.45s var(--ease-out);
  filter: drop-shadow(0 40px 80px rgba(10,6,2,0.5));
}
.phone-wrap.is-open { opacity: 1; transform: none; pointer-events: auto; }
@keyframes phoneBuzz {
  0%, 100% { transform: translateX(0); }
  10% { transform: translateX(-3px); } 20% { transform: translateX(3px); }
  30% { transform: translateX(-3px); } 40% { transform: translateX(3px); }
  50% { transform: translateX(-2px); } 60% { transform: translateX(2px); } 70% { transform: translateX(-1px); }
}
html.js .phone-wrap.is-buzzing .phone { animation: phoneBuzz 0.6s ease-in-out; }
.phone {
  background: #1a1a1c; border-radius: 54px; padding: 11px;
  border: 1px solid #3a3a3d;
}
.phone-screen {
  position: relative; background: #fff; border-radius: 44px; overflow: hidden;
  height: min(680px, calc(100svh - 120px));
  display: flex; flex-direction: column;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", Roboto, sans-serif;
}
.ph-island { position: absolute; top: 11px; left: 50%; transform: translateX(-50%); width: 118px; height: 34px; background: #000; border-radius: 20px; z-index: 5; }
.ph-status { display: flex; justify-content: space-between; align-items: center; padding: 16px 30px 6px; font-size: 15px; font-weight: 600; color: #000; }
.ph-status svg { display: inline-block; vertical-align: middle; }
.ph-status .ph-icons { display: flex; gap: 7px; align-items: center; }
.ph-nav {
  display: grid; grid-template-columns: 44px 1fr 44px; align-items: center;
  padding: 4px 10px 10px; border-bottom: 0.5px solid rgba(60,60,67,0.2);
  background: rgba(249,249,251,0.94); backdrop-filter: blur(10px);
}
.ph-back { color: #0A7CFF; font-size: 26px; line-height: 1; background: none; border: 0; cursor: pointer; padding: 0 8px; }
.ph-contact { display: flex; flex-direction: column; align-items: center; gap: 3px; }
.ph-avatar { width: 46px; height: 46px; border-radius: 50%; background: var(--espresso); display: flex; align-items: center; justify-content: center; }
.ph-avatar img { width: 26px; height: 26px; object-fit: contain; }
.ph-contact .ph-name { font-size: 12px; color: #000; display: flex; align-items: center; gap: 2px; }
.ph-contact .ph-name::after { content: "›"; color: #A9A9AE; font-size: 13px; }
.ph-thread { flex: 1; overflow-y: auto; padding: 12px 14px 6px; background: #fff; display: flex; flex-direction: column; gap: 3px; }
.ph-daystamp { text-align: center; font-size: 11.5px; color: #8E8E93; margin: 8px 0 10px; }
.ph-daystamp strong { font-weight: 600; }
.ph-bubble {
  max-width: 76%; padding: 9px 13px; border-radius: 19px; font-size: 15.5px; line-height: 1.35;
  animation: bkFade 0.3s var(--ease-out); word-wrap: break-word; letter-spacing: -0.01em;
}
.ph-bubble.in { background: #E9E9EB; color: #000; align-self: flex-start; border-bottom-left-radius: 6px; margin-top: 5px; }
.ph-bubble.out { background: linear-gradient(180deg, #35C759 0%, #2AB14C 100%); color: #fff; align-self: flex-end; border-bottom-right-radius: 6px; margin-top: 5px; }
.ph-bubble a { color: inherit; text-decoration: underline; }
.ph-meta { font-size: 10.5px; color: #8E8E93; align-self: flex-end; margin: 3px 4px 0; }
.ph-typing { display: inline-flex; gap: 4px; align-items: center; min-height: 20px; }
.ph-typing i { width: 8px; height: 8px; border-radius: 50%; background: #B0B0B5; animation: blink 1.2s infinite; }
.ph-typing i:nth-child(2) { animation-delay: 0.2s; }
.ph-typing i:nth-child(3) { animation-delay: 0.4s; }
@keyframes blink { 0%, 80%, 100% { opacity: 0.35; } 40% { opacity: 1; } }
.ph-chips { display: flex; gap: 8px; overflow-x: auto; padding: 10px 14px 4px; scrollbar-width: none; background: #fff; }
.ph-chips::-webkit-scrollbar { display: none; }
.ph-chip {
  flex-shrink: 0; background: #fff; border: 1px solid #C7C7CC; color: #0A7CFF;
  font-family: inherit; font-size: 14px; padding: 8px 15px; border-radius: 17px; cursor: pointer;
  transition: background 0.2s;
}
.ph-chip:hover { background: #F2F2F7; }
.ph-inputbar { display: flex; align-items: center; gap: 10px; padding: 8px 12px 6px; background: #fff; }
.ph-plus { width: 32px; height: 32px; border-radius: 50%; background: #E9E9EB; color: #7C7C82; font-size: 20px; line-height: 1; border: 0; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ph-field { flex: 1; display: flex; align-items: center; border: 1px solid #C7C7CC; border-radius: 18px; padding: 6px 6px 6px 14px; gap: 6px; }
.ph-field input { flex: 1; border: 0; outline: none; font-family: inherit; font-size: 15.5px; background: transparent; color: #000; min-width: 0; }
.ph-field input::placeholder { color: #8E8E93; }
.ph-send { width: 27px; height: 27px; border-radius: 50%; border: 0; background: #35C759; color: #fff; font-size: 15px; font-weight: 700; cursor: pointer; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: opacity 0.2s, transform 0.2s; }
.ph-send:disabled { opacity: 0.35; }
.ph-home { width: 130px; height: 5px; border-radius: 3px; background: #000; opacity: 0.85; margin: 6px auto 8px; flex-shrink: 0; }
.ph-disclaimer { text-align: center; font-size: 9.5px; letter-spacing: 0.02em; color: #B4B4B9; padding: 2px 0 4px; background: #fff; }

/* ---------- product band ---------- */
.product-band { background: var(--cream); border-block: 1px solid var(--sand); }
.product-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(28px, 4vw, 56px); }
.product-col { border-top: 2px solid var(--espresso); padding-top: 22px; }
.product-col h3 { font-size: 21px; margin-bottom: 10px; }
.product-col p { font-size: 14.5px; color: var(--bark); margin: 0; }

/* ---------- responsive ---------- */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-form-card { justify-self: stretch; max-width: 560px; }
  .hero-lead { min-height: 0; }
  .lanes { grid-template-columns: 1fr 1fr; }
  .lane:first-child { grid-column: 1 / -1; aspect-ratio: 16 / 8.5; }
  .split, .ledger, .visit-grid { grid-template-columns: 1fr; }
  .ledger-media { position: static; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-social { grid-column: 1 / -1; }
  .quotes { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 768px) {
  .main-nav { display: none; }
  .nav-toggle { display: block; }
  .placard-row { grid-template-columns: 1fr; }
  .placard-item { border-left: 0; padding-inline: 0; border-top: 1px solid var(--sand); }
  .placard-item:first-child { border-top: 0; }
  .lanes { grid-template-columns: 1fr; }
  .lane, .lane:first-child { aspect-ratio: 4 / 3.4; }
  .menu-row { grid-template-columns: 1fr; }
  .menu-tail { grid-column: 1; grid-row: auto; justify-self: start; margin-top: 12px; }
  .hero { min-height: min(80svh, 660px); }
  .hero-media img { object-position: 44% 20%; }
  .announce .announce-phone { display: none; }
  .footer-top { grid-template-columns: 1fr; }
  .fab-wrap { right: 14px; bottom: 14px; }
  .chat-fab { padding: 14px 16px; }
  .chat-fab .fab-label { display: none; }
  .phone-wrap { right: 12px; bottom: 12px; }
  .phone { border-radius: 46px; padding: 9px; }
  .phone-screen { border-radius: 38px; height: min(640px, calc(100svh - 90px)); }
  .logo-img { height: 42px; }
  .logo-img-footer { height: 76px; }
  .bk-slots, .bk-slots.bk-hair { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-media img, .hero [data-stagger] { animation: none !important; opacity: 1 !important; transform: none !important; }
  .reveal, .reveal-rule { opacity: 1 !important; transform: none !important; transition: none !important; }
  .lane img, .btn .arr { transition: none !important; }
  .chat-fab.is-ringing, .fab-ripple, .phone-wrap.is-buzzing .phone, .btn-ringable:hover { animation: none !important; }
  .phone-wrap { transition: opacity 0.2s !important; transform: none !important; }
}

/* ---------- centerfold band ---------- */
.centerfold {
  position: relative;
  min-height: clamp(420px, 62vh, 680px);
  display: flex; align-items: flex-end;
  overflow: hidden;
}
.centerfold > img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: 50% 30%; z-index: 0;
}
.centerfold-scrim {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(38,24,11,0) 30%, rgba(38,24,11,0.55) 68%, rgba(38,24,11,0.88) 100%);
}
.centerfold-copy { position: relative; z-index: 2; color: var(--bone); padding-block: clamp(38px, 6vw, 72px); max-width: 720px; }
.centerfold-copy .eyebrow { color: var(--gold); }
.centerfold-copy h2 {
  font-family: var(--font-display); font-weight: 400; color: var(--bone);
  font-size: clamp(30px, 5.4vw, 56px); line-height: 1.06; margin: 10px 0 14px;
}
.centerfold-copy h2 em { font-style: italic; color: var(--gold); }
.centerfold-copy > p { color: rgba(244,238,224,0.86); max-width: 54ch; margin-bottom: 26px; }
@media (max-width: 768px) {
  .centerfold { min-height: 0; display: block; }
  .centerfold > img { position: relative; height: auto; aspect-ratio: 3 / 2; }
  .centerfold-scrim { display: none; }
  .centerfold-copy { background: var(--espresso); max-width: none; padding-block: 34px; }
}

/* ---------- phase 2/3: warmth, motion, 4-up categories ---------- */
.lanes { grid-template-columns: repeat(4, 1fr); gap: 18px; }
.lanes .lane:nth-of-type(4)::before { content: "04"; }
.lane { transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out); }
.lane:hover { transform: translateY(-6px); box-shadow: 0 26px 54px rgba(38,24,11,0.24); }
.lane-go { position: relative; display: inline-block; padding-bottom: 3px; }
.lane-go::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1.5px; width: 100%;
  background: var(--gold); transform: scaleX(0); transform-origin: left;
  transition: transform 0.45s var(--ease-out), background-color 0.45s;
}
.lane:hover .lane-go::after { transform: scaleX(1); background: var(--gold); }

/* warmer alternating grounds */
.placard { background: var(--bone); }
.section-warm { background: linear-gradient(180deg, var(--cream) 0%, var(--bone) 100%); }

/* before & after gallery */
.ba-gallery { background: var(--bone); border-block: 1px solid var(--sand); }
.ba-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; margin-top: 34px; }
.ba-card {
  background: var(--cream); border: 1px solid var(--sand); border-radius: 3px; padding: 18px;
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out);
}
.ba-card:hover { transform: translateY(-4px); box-shadow: 0 20px 44px rgba(38,24,11,0.16); }
.ba-card img { width: 100%; height: auto; display: block; border-radius: 2px; }
.ba-card figcaption {
  display: flex; justify-content: space-between; gap: 14px; margin-top: 14px;
  font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--bark);
}
.ba-card figcaption strong { color: var(--clay-deep); font-weight: 600; }
@media (max-width: 1024px) { .lanes { grid-template-columns: 1fr 1fr; } .lanes .lane:first-child { grid-column: auto; aspect-ratio: 3 / 3.6; } }
@media (max-width: 768px) { .lanes { grid-template-columns: 1fr; } .ba-grid { grid-template-columns: 1fr; } }

/* ---------- phase 4: memberships + beauty bank ---------- */
.btn-outline { background: transparent; color: var(--espresso); border-color: var(--espresso); }
.btn-outline:hover { background: var(--espresso); color: var(--cream); }

.tier-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; align-items: stretch; }
.tier {
  position: relative; display: flex; flex-direction: column;
  background: var(--cream); border: 1px solid var(--sand); border-radius: 3px;
  padding: 30px 26px 26px;
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out), border-color 0.4s;
}
.tier:hover { transform: translateY(-6px); box-shadow: 0 24px 50px rgba(38,24,11,0.18); border-color: var(--champagne); }
.tier-featured { background: var(--espresso); border-color: var(--espresso); }
.tier-featured h3, .tier-featured .tp-amt { color: var(--cream); }
.tier-featured .tier-line, .tier-featured .tier-list li { color: rgba(233,220,194,0.82); }
.tier-featured .tier-list li::before { color: var(--gold); }
.tier-featured .tier-num, .tier-featured .tier-tag { color: var(--gold); }
.tier-featured .tp-per { color: rgba(233,220,194,0.6); }
.tier-flag {
  position: absolute; top: -11px; left: 26px; background: var(--crimson); color: var(--cream);
  font-size: 10.5px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 2px;
}
.tier-num { font-family: var(--font-display); font-size: 13px; letter-spacing: 0.2em; color: var(--crimson); margin: 0; }
.tier h3 { font-family: var(--font-display); font-weight: 400; font-size: 27px; margin: 6px 0 2px; }
.tier-tag { font-size: 12px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--clay-deep); margin: 0 0 14px; }
.tier-price { margin: 0 0 6px; display: flex; align-items: baseline; gap: 6px; }
.tp-amt { font-family: var(--font-display); font-size: 40px; line-height: 1; }
.tp-per { font-size: 13px; color: var(--bark); }
.tier-line { font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--bark); margin: 0 0 18px; line-height: 1.5; }
.tier-list { list-style: none; margin: 0 0 24px; padding: 18px 0 0; border-top: 1px solid var(--sand); flex: 1; }
.tier-featured .tier-list { border-color: rgba(233,220,194,0.18); }
.tier-list li { position: relative; padding-left: 20px; margin-bottom: 9px; font-size: 14px; line-height: 1.5; color: var(--bark); }
.tier-list li::before { content: "\2726"; position: absolute; left: 0; color: var(--crimson); font-size: 11px; top: 2px; }
.tier .btn { width: 100%; justify-content: center; text-align: center; }

.bank-band { background: linear-gradient(180deg, var(--bone) 0%, var(--champagne) 100%); border-block: 1px solid var(--sand); }
.bank-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin: 40px 0 44px; }
.bank-step { background: rgba(250,246,239,0.72); border: 1px solid var(--sand); border-radius: 3px; padding: 24px 22px; }
.bs-n { font-family: var(--font-display); font-size: 13px; letter-spacing: 0.18em; color: var(--crimson); }
.bank-step h4 { font-family: var(--font-display); font-weight: 400; font-size: 19px; margin: 8px 0 8px; }
.bank-step p { font-size: 14px; line-height: 1.55; color: var(--bark); margin: 0; }

.bank-bonus { display: flex; justify-content: center; gap: clamp(20px, 5vw, 64px); flex-wrap: wrap; margin-bottom: 44px; }
.bb-tier { text-align: center; }
.bb-pct { display: block; font-family: var(--font-display); font-size: clamp(34px, 5vw, 52px); color: var(--crimson); line-height: 1; }
.bb-when { display: block; font-size: 11.5px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--bark); margin-top: 8px; }

.bank-math { background: var(--espresso); color: var(--bone); border-radius: 3px; padding: 32px clamp(22px, 4vw, 44px); text-align: center; margin-bottom: 40px; }
.bank-math .eyebrow { color: var(--gold); }
.bm-line { font-family: var(--font-display); font-size: clamp(19px, 2.6vw, 27px); margin: 14px 0 10px; line-height: 1.5; }
.bm-line strong { font-weight: 400; color: var(--cream); }
.bm-line span { color: rgba(233,220,194,0.5); margin: 0 6px; }
.bm-total { color: var(--gold) !important; }
.bm-note { font-size: 14px; color: rgba(233,220,194,0.72); margin: 0; }

.bank-perks { text-align: center; }
.bank-perks ul { list-style: none; padding: 0; margin: 16px 0 26px; display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 12px; }
.bank-perks li { background: var(--cream); border: 1px solid var(--sand); border-radius: 999px; padding: 9px 18px; font-size: 13.5px; color: var(--bark); }
.bank-terms { font-size: 12px; line-height: 1.65; color: var(--bark); max-width: 780px; margin: 34px auto 0; text-align: center; }

.priv-row { list-style: none; padding: 0; margin: 30px 0 0; display: flex; flex-wrap: wrap; gap: 12px; }
.priv-row li {
  background: var(--cream); border: 1px solid var(--sand); border-radius: 999px;
  padding: 11px 22px; font-size: 14px; color: var(--bark);
  transition: border-color 0.35s, color 0.35s, transform 0.35s var(--ease-out);
}
.priv-row li:hover { border-color: var(--crimson); color: var(--espresso); transform: translateY(-2px); }

@media (max-width: 1024px) { .tier-grid { grid-template-columns: 1fr 1fr; } .bank-steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 768px) { .tier-grid, .bank-steps { grid-template-columns: 1fr; } }

/* ---------- calm pass: welcome, hero ctas, consult band ---------- */
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 30px; }
.welcome-band { background: var(--cream); border-bottom: 1px solid var(--sand); }
.welcome-line {
  font-family: var(--font-display); font-style: italic; font-weight: 300;
  font-size: clamp(19px, 2.6vw, 27px); line-height: 1.55; color: var(--coffee);
  text-align: center; max-width: 780px; margin: 0 auto;
  padding-block: clamp(36px, 5vw, 58px);
}
.consult-band { background: linear-gradient(180deg, var(--bone), var(--cream)); border-block: 1px solid var(--sand); }
.consult-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 70px); align-items: center; }
.consult-band .hero-form-card { position: static; width: 100%; max-width: 520px; justify-self: end; box-shadow: 0 18px 44px rgba(38,24,11,0.10); }
@media (max-width: 900px) { .consult-grid { grid-template-columns: 1fr; } .consult-band .hero-form-card { justify-self: stretch; max-width: none; } }


/* ---------- DA-concept pass, original palette ---------- */
.btn-ghost { background: transparent; color: var(--espresso); border-color: var(--espresso); }
.btn-ghost:hover { background: var(--espresso); color: var(--cream); }
@media (max-width: 1240px) { .main-nav .btn-ghost { display: none; } }

/* taller, editorial category cards */
.lane, .lanes .lane:first-child { aspect-ratio: 3 / 4.1; }
.lane h3 { font-size: clamp(26px, 2.3vw, 34px); }

/* persistent promotions band */
.promo-band { background: var(--champagne); border-block: 1px solid var(--sand); }
.promo-band .container { display: flex; align-items: center; justify-content: space-between; gap: 22px; flex-wrap: wrap; padding-block: 22px; }
.promo-copy { display: flex; align-items: baseline; gap: 16px; flex-wrap: wrap; }
.promo-kicker { font-size: 11px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--clay-deep); white-space: nowrap; }
.promo-line { font-family: var(--font-display); font-size: clamp(17px, 2vw, 21px); color: var(--espresso); }
.promo-line em { font-style: italic; color: var(--clay-deep); }
.promo-line s { color: var(--bark); margin-right: 4px; }

/* richer testimonial cards */
.quote { position: relative; padding-top: 34px; }
.quote::before { content: "\201C"; position: absolute; top: -6px; left: -4px; font-family: var(--font-display); font-size: 74px; line-height: 1; color: var(--gold); opacity: 0.85; }

/* before/after gentle zoom */
.ba-card { overflow: hidden; }
.ba-card img { transition: transform 0.8s var(--ease-out); }
.ba-card:hover img { transform: scale(1.02); }
@media (max-width: 768px) { .lane, .lanes .lane:first-child { aspect-ratio: 3 / 3.4; } }

/* ---------- light portrait hero (L&D concept) ---------- */
.hero-light { background: var(--cream); border-bottom: 1px solid var(--sand); }
.hero-light .container {
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(34px, 5vw, 74px); align-items: center;
  padding-block: clamp(46px, 7vw, 92px);
}
.hero-light h1 {
  font-family: var(--font-display); font-weight: 400; color: var(--espresso);
  font-size: clamp(40px, 5.4vw, 66px); line-height: 1.04; margin: 14px 0 18px;
}
.hero-light h1 em { font-style: italic; color: var(--gold); }
.hl-lede { font-size: clamp(16px, 1.4vw, 18px); line-height: 1.65; color: var(--bark); max-width: 54ch; margin: 0 0 16px; }
.hl-cred { font-size: 12px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--clay-deep); margin: 0 0 8px; }
.hl-photo { position: relative; }
.hl-photo img { width: 100%; height: auto; display: block; border-radius: 2px; box-shadow: 0 26px 64px rgba(38,24,11,0.18); }
.hl-photo::after {
  content: ""; position: absolute; top: 16px; left: 16px; right: -16px; bottom: -16px;
  border: 1px solid var(--gold); border-radius: 2px; z-index: -1;
}
@media (max-width: 900px) {
  .hero-light .container { grid-template-columns: 1fr; }
  .hl-photo { order: -1; max-width: 560px; }
  .hl-photo::after { right: -10px; bottom: -10px; top: 10px; left: 10px; }
}

/* ============ L&D-pattern identity: utility bar + centered split header ============ */
.util-bar { background: var(--cream); color: var(--bark); border-bottom: 1px solid var(--sand); font-size: 12px; letter-spacing: 0.06em; }
.util-inner { display: flex; align-items: center; justify-content: space-between; gap: 18px; min-height: 42px; }
.util-bar .announce-msg { color: var(--bark); }
.util-right { display: flex; align-items: center; gap: 16px; white-space: nowrap; }
.util-social { color: var(--clay-deep); text-decoration: none; font-weight: 600; font-size: 11px; letter-spacing: 0.12em; }
.util-social:hover { color: var(--espresso); }
.util-bar .announce-phone { color: var(--espresso); font-weight: 600; text-decoration: none; }
.util-book {
  background: var(--gold); color: var(--espresso); text-decoration: none;
  font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 8px 16px; border-radius: 2px;
}
.util-book:hover { background: var(--espresso); color: var(--cream); }

.header-split { background: rgba(250,246,239,0.96); }
.header-grid {
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
  gap: clamp(16px, 3vw, 44px); min-height: 92px;
}
.nav-side { display: flex; align-items: center; gap: clamp(14px, 2vw, 30px); }
.nav-left { justify-content: flex-end; }
.nav-right { justify-content: flex-start; }
.nav-side a {
  color: var(--espresso); text-decoration: none;
  font-size: 12px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
}
.nav-side a:hover, .nav-side a[aria-current="page"] { color: var(--clay-deep); }
.nav-side .btn-gold { color: var(--espresso); }
.header-grid .wordmark { justify-self: center; }
.header-grid .logo-img { height: 62px; width: auto; }
.header-grid .nav-toggle { display: none; position: absolute; right: 20px; }
@media (max-width: 1100px) {
  .nav-side { display: none; }
  .header-grid { grid-template-columns: 1fr; justify-items: center; position: relative; min-height: 76px; }
  .header-grid .nav-toggle { display: block; }
}

.btn-gold { background: var(--gold); color: var(--espresso); border-color: var(--gold); }
.btn-gold:hover { background: var(--espresso); border-color: var(--espresso); color: var(--cream); }

/* ============ full-bleed duo hero ============ */
.hero-duo { position: relative; min-height: clamp(440px, 74vh, 760px); overflow: hidden; display: flex; align-items: center; }
.hero-duo-img {
  position: absolute; top: 0; bottom: 0; left: 0; width: 136%; max-width: none; height: 100%;
  object-fit: cover; object-position: 50% 26%;
}
.hero-duo-copy { position: relative; width: 100%; }
.hero-duo h1 {
  font-family: var(--font-body); font-weight: 300; text-transform: none;
  font-size: clamp(38px, 5vw, 74px); line-height: 1.08; color: var(--espresso);
  max-width: 12ch; margin: 0 0 14px;
}
.hero-duo-sub { font-size: 13px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--espresso); opacity: 0.85; margin-top: 18px; }
@media (max-width: 820px) {
  .hero-duo { min-height: 0; display: block; }
  .hero-duo-img { position: relative; height: auto; aspect-ratio: 4 / 3; object-position: 45% 20%; }
  .hero-duo-copy { padding-block: 30px 8px; }
  .hero-duo h1 { color: var(--espresso); max-width: none; }
}

/* ============ WELCOME TO THE NEW YOU band ============ */
.welcome-xl { background: var(--cream); border-block: 1px solid var(--sand); text-align: center; padding-block: clamp(54px, 8vw, 100px); }
.wx-title {
  font-family: var(--font-body); font-weight: 300; letter-spacing: 0.12em; text-transform: uppercase;
  font-size: clamp(26px, 3.6vw, 48px); color: var(--espresso); margin: 0 0 22px;
}
.wx-body { max-width: 760px; margin: 0 auto 18px; font-size: clamp(15.5px, 1.3vw, 17.5px); line-height: 1.75; color: var(--bark); }
.wx-cred { font-size: 11.5px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--clay-deep); margin: 0 0 26px; }

/* ============ Loom pass: tighter hero, blended bands, tabs, founder ============ */
.hero-duo { min-height: clamp(380px, 58vh, 600px); }
.hero-duo-img { width: 118%; }
.welcome-xl { border: 0; background: linear-gradient(180deg, var(--cream) 0%, var(--bone) 100%); }

.book-row { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; margin-top: 34px; padding-top: 28px; border-top: 1px solid var(--sand); }
.book-row p { font-family: var(--font-display); font-size: clamp(17px, 1.8vw, 21px); color: var(--espresso); margin: 0; }
.book-row span { display: flex; gap: 12px; flex-wrap: wrap; }

.offer-card {
  margin-top: 26px; padding: 22px clamp(18px, 3vw, 34px);
  background: linear-gradient(120deg, var(--champagne), var(--bone));
  border: 1px solid var(--gold); border-radius: 3px;
  display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap;
}
.offer-copy { display: flex; flex-direction: column; gap: 6px; }

.tricho-wrap { display: grid; grid-template-columns: 300px 1fr; gap: clamp(24px, 4vw, 54px); align-items: start; }
.tricho-rail { display: flex; flex-direction: column; gap: 12px; position: sticky; top: 120px; }
.tricho-tab {
  text-align: left; background: var(--cream); border: 1px solid var(--sand); border-radius: 3px;
  padding: 20px 22px; cursor: pointer; transition: border-color .3s, background .3s, transform .3s var(--ease-out);
}
.tricho-tab:hover { transform: translateX(4px); }
.tricho-tab.is-active { border-color: var(--gold); background: var(--bone); box-shadow: inset 3px 0 0 var(--gold); }
.tt-kicker { display: block; font-size: 10.5px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--clay-deep); margin-bottom: 6px; }
.tt-title { display: block; font-family: var(--font-display); font-size: 19px; color: var(--espresso); }
.tricho-panel { display: none; grid-template-columns: 1.05fr 1fr; gap: clamp(22px, 3.5vw, 46px); align-items: center; }
.tricho-panel.is-active { display: grid; animation: panelIn .5s var(--ease-out); }
@keyframes panelIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.tricho-panel img { width: 100%; height: clamp(300px, 34vw, 480px); object-fit: cover; border-radius: 3px; box-shadow: 0 20px 50px rgba(38,24,11,.16); }
.tp-copy h3 { font-family: var(--font-display); font-weight: 400; font-size: clamp(22px, 2.4vw, 30px); margin: 0 0 12px; }
.tp-copy > p { color: var(--bark); line-height: 1.7; margin: 0 0 16px; }
.tp-points { list-style: none; padding: 0; margin: 0 0 22px; }
.tp-points li { position: relative; padding-left: 22px; margin-bottom: 9px; color: var(--bark); font-size: 14.5px; }
.tp-points li::before { content: "\2726"; position: absolute; left: 0; top: 2px; color: var(--gold); font-size: 11px; }

.meet-dawn { background: linear-gradient(180deg, var(--bone), var(--cream)); border-block: 1px solid var(--sand); }
.md-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(28px, 5vw, 64px); align-items: center; }
.md-photo img { width: 100%; height: auto; border-radius: 3px; box-shadow: 0 24px 56px rgba(38,24,11,.18); }
.md-copy h2 { font-size: clamp(34px, 4vw, 52px); margin: 8px 0 4px; }
.md-role { font-size: 12px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--clay-deep); margin: 0 0 16px; }
.dawn-quotes { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(20px, 4vw, 44px); margin-top: clamp(34px, 5vw, 54px); }
@media (max-width: 960px) {
  .tricho-wrap { grid-template-columns: 1fr; }
  .tricho-rail { position: static; flex-direction: row; }
  .tricho-tab { flex: 1; }
  .tricho-panel, .md-grid, .dawn-quotes { grid-template-columns: 1fr; }
  .md-photo { max-width: 480px; }
}

/* ---- STĀ collection: home shelf (product spotlight) ---- */
.home-shelf { background: linear-gradient(180deg, #1B1007 0%, #0F0903 52%, #160D06 100%); padding-bottom: clamp(64px, 8vw, 104px); }
.home-shelf .section-head h2 { color: var(--bone); }
.home-shelf .section-head h2 em { color: var(--champagne); }
.home-shelf .section-head p { color: rgba(233, 220, 194, 0.75); }
.shelf-hero { position: relative; max-width: 1360px; margin: clamp(8px, 2vw, 20px) auto 0; }
.shelf-hero img { display: block; width: 100%; height: auto; }
.shelf-hero-copy { text-align: center; max-width: 620px; margin: clamp(22px, 3vw, 34px) auto 0; padding: 0 24px; }
.shelf-hero-copy .eyebrow { color: var(--gold); }
.shelf-line { font-family: var(--font-display, Georgia, serif); font-style: italic; font-weight: 400; font-size: clamp(21px, 2.4vw, 33px); line-height: 1.3; color: var(--champagne); margin-top: 10px; }
.shelf-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2.6vw, 30px); margin-top: clamp(40px, 5vw, 64px); }
.shelf-card { margin: 0; background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(233, 220, 194, 0.14); }
.shelf-card img { display: block; width: 100%; height: auto; }
.shelf-card figcaption { padding: 20px 22px 24px; }
.shelf-step { font-size: 11px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin: 0 0 8px; }
.shelf-name { font-size: 16.5px; font-weight: 600; letter-spacing: 0.02em; color: var(--bone); margin: 0 0 7px; }
.shelf-card figcaption p:last-child { font-size: 14px; line-height: 1.6; color: rgba(233, 220, 194, 0.66); margin: 0; }
.shelf-note { margin-top: clamp(28px, 4vw, 40px); text-align: center; font-size: 14.5px; color: rgba(233, 220, 194, 0.72); }
.shelf-note a { color: var(--champagne); text-decoration: none; border-bottom: 1px solid rgba(233, 220, 194, 0.4); padding-bottom: 1px; transition: color 0.2s ease, border-color 0.2s ease; }
.shelf-note a:hover { color: var(--bone); border-color: var(--bone); }
@media (max-width: 900px) {
  .shelf-grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  
}

/* ---- Back to School banner (self-removes via #offer expiry in main.js) ---- */
.bts-banner { position: relative; display: block; overflow: hidden; background: linear-gradient(110deg, #241608, #33210e 50%, #241608); color: var(--bone); text-decoration: none; border-bottom: 1px solid rgba(201, 154, 78, 0.35); }
.bts-banner::after { content: ""; position: absolute; inset: 0; background: linear-gradient(115deg, transparent 30%, rgba(233, 220, 194, 0.13) 48%, rgba(201, 154, 78, 0.22) 52%, transparent 68%); transform: translateX(-100%); animation: btsSweep 5.5s ease-in-out infinite; pointer-events: none; }
@keyframes btsSweep { 0% { transform: translateX(-100%); } 55%, 100% { transform: translateX(100%); } }
.bts-inner { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; padding: 13px 20px; text-align: center; }
.bts-kicker { font-size: 10.5px; font-weight: 700; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold); border: 1px solid rgba(201, 154, 78, 0.5); padding: 5px 10px; white-space: nowrap; }
.bts-copy { font-size: 14.5px; letter-spacing: 0.01em; color: var(--champagne); }
.bts-copy em { font-style: italic; color: var(--gold); }
.bts-copy s { opacity: 0.55; margin: 0 2px; }
.bts-copy strong { color: var(--bone); font-size: 16px; }
.bts-cta { font-size: 12px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--espresso); background: var(--gold); padding: 9px 16px; white-space: nowrap; transition: background 0.25s ease, transform 0.25s ease; }
.bts-banner:hover .bts-cta { background: var(--champagne); transform: translateX(2px); }
.bts-ends { font-size: 11.5px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(233, 220, 194, 0.6); white-space: nowrap; }

/* ---- Animated Book Now band ---- */
.cta-band { position: relative; overflow: hidden; margin-top: clamp(40px, 6vw, 72px); background: radial-gradient(120% 160% at 20% 0%, #33210e 0%, var(--espresso) 55%, #170d05 100%); padding: clamp(44px, 6vw, 76px) clamp(24px, 4vw, 64px); text-align: center; color: var(--bone); }
.cta-glow { position: absolute; width: 540px; height: 540px; border-radius: 50%; background: radial-gradient(circle, rgba(201, 154, 78, 0.26), transparent 60%); top: -270px; left: 50%; animation: ctaFloat 7s ease-in-out infinite alternate; pointer-events: none; }
@keyframes ctaFloat { from { transform: translateX(-64%) translateY(0); } to { transform: translateX(-36%) translateY(28px); } }
.cta-line { font-family: var(--font-display, Georgia, serif); font-weight: 400; font-size: clamp(30px, 4.4vw, 54px); line-height: 1.1; margin: 0; position: relative; }
.cta-line em { font-style: italic; color: var(--gold); }
.cta-sub { margin: 14px 0 28px; color: rgba(233, 220, 194, 0.75); font-size: 15.5px; position: relative; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; }
.btn-xl { padding: 18px 46px; font-size: 15px; }
.btn-shine { position: relative; overflow: hidden; }
.btn-shine::after { content: ""; position: absolute; inset: 0; background: linear-gradient(115deg, transparent 35%, rgba(255, 255, 255, 0.35) 50%, transparent 65%); transform: translateX(-120%); animation: btnShine 3.2s ease-in-out infinite; pointer-events: none; }
@keyframes btnShine { 0% { transform: translateX(-120%); } 60%, 100% { transform: translateX(120%); } }
.cta-band .btn-gold { transition: transform 0.25s ease, background 0.25s ease; }
.cta-band .btn-gold:hover { transform: translateY(-2px); }
.cta-band .btn-ghost { border-color: rgba(233, 220, 194, 0.45); color: var(--champagne); }
.cta-band .btn-ghost:hover { border-color: var(--champagne); color: var(--bone); }

/* ---- Real clients, real timelines: expanded ---- */
.ba-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin: 0 0 clamp(32px, 4vw, 52px); }
.ba-stat { border: 1px solid var(--sand); background: var(--cream); padding: 24px 26px; }
.ba-stat strong { display: block; font-family: var(--font-display, Georgia, serif); font-weight: 400; font-size: clamp(30px, 3.2vw, 44px); color: var(--espresso); margin-bottom: 8px; }
.ba-stat span { font-size: 13.5px; color: var(--bark); line-height: 1.55; }
.ba-case { display: grid; grid-template-columns: 1.35fr 1fr; gap: clamp(24px, 3.5vw, 48px); align-items: center; margin-bottom: clamp(34px, 4vw, 56px); }
.ba-case-flip { grid-template-columns: 1fr 1.35fr; }
.ba-case-flip .ba-card-xl { order: 2; }
.ba-card-xl { margin: 0; border: 1px solid var(--sand); background: #fff; padding: 10px; }
.ba-card-xl img { display: block; width: 100%; height: auto; }
.ba-case-copy h3 { font-size: clamp(20px, 2.2vw, 27px); margin: 10px 0 12px; }
.ba-case-copy p:last-child { color: var(--bark); font-size: 15px; line-height: 1.68; }
.ba-note { text-align: center; color: var(--bark); font-size: 14.5px; }

/* welcome caption carried into lanes head */
.section-head .wx-cred { font-size: 12.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-top: 14px; }

@media (max-width: 860px) {
  .ba-stats { grid-template-columns: 1fr; }
  .ba-case, .ba-case-flip { grid-template-columns: 1fr; }
  .ba-case-flip .ba-card-xl { order: 0; }
  .bts-inner { gap: 10px; padding: 12px 16px; }
  .bts-ends { flex-basis: 100%; }
}
@media (prefers-reduced-motion: reduce) {
  .bts-banner::after, .btn-shine::after, .cta-glow { animation: none; }
}

/* ---- nav dropdown ---- */
.site-header, .header-grid { overflow: visible; }
.has-drop { position: relative; display: inline-block; }
.has-drop .caret { font-size: 9px; opacity: 0.6; }
.drop { position: absolute; top: calc(100% + 12px); left: 50%; transform: translate(-50%, 6px); background: var(--cream); border: 1px solid var(--sand); box-shadow: 0 18px 44px rgba(38, 24, 11, 0.14); min-width: 232px; padding: 8px 0; opacity: 0; visibility: hidden; transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s; z-index: 80; text-align: left; }
.drop::before { content: ""; position: absolute; top: -14px; left: 0; right: 0; height: 15px; }
.has-drop:hover .drop, .has-drop:focus-within .drop { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.drop a { display: block; padding: 11px 22px; font-size: 12px; letter-spacing: 0.09em; text-transform: uppercase; color: var(--bark); white-space: nowrap; }
.drop a:hover { color: var(--espresso); background: var(--bone); }

/* ---- education band + video ---- */
button.btn { cursor: pointer; font: inherit; border: 0; }
.edu-band { background: var(--cream); }
.edu-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(28px, 4.5vw, 64px); align-items: center; }
.edu-copy h2 { font-size: clamp(30px, 3.6vw, 46px); }
.edu-copy > p { color: var(--bark); margin-top: 16px; font-size: 16.5px; max-width: 560px; }
.edu-actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-top: 26px; }
.edu-poster { position: relative; display: block; width: 100%; padding: 0; border: 1px solid var(--sand); background: #000; cursor: pointer; }
.edu-poster img { display: block; width: 100%; height: auto; opacity: 0.92; transition: opacity 0.3s ease; }
.edu-poster:hover img { opacity: 1; }
.play-badge { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 72px; height: 72px; border-radius: 50%; background: rgba(38, 24, 11, 0.82); color: var(--champagne); display: flex; align-items: center; justify-content: center; font-size: 22px; padding-left: 5px; border: 1px solid rgba(233, 220, 194, 0.5); transition: transform 0.25s ease, background 0.25s ease; }
.edu-poster:hover .play-badge { transform: translate(-50%, -50%) scale(1.07); background: rgba(201, 154, 78, 0.92); color: var(--espresso); }
.video-modal, .img-modal { border: 0; padding: 0; background: transparent; max-width: min(940px, 94vw); width: 100%; }
.video-modal::backdrop, .img-modal::backdrop { background: rgba(14, 8, 3, 0.85); }
.vm-wrap { position: relative; }
.video-modal video, .img-modal img { width: 100%; display: block; background: #000; box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55); }
.vm-close { position: absolute; top: -44px; right: 0; background: none; border: 0; color: #F4EEE0; font-size: 32px; line-height: 1; cursor: pointer; padding: 4px 8px; }

/* ---- cause graphics & TED cases ---- */
.cause-img { display: block; width: 100%; height: auto; border: 1px solid var(--sand); margin-bottom: 16px; }
.ted-cases { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 18px; }
.ted-case { padding: 0; border: 1px solid rgba(233, 220, 194, 0.16); background: rgba(233, 220, 194, 0.06); cursor: zoom-in; }
.ted-case img { display: block; width: 100%; height: auto; }
.ted-cases-note { margin-top: 10px; font-size: 12.5px; color: rgba(233, 220, 194, 0.6); }

/* ---- FAQ grid ---- */
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(22px, 3vw, 40px); }
.faq-item { border-top: 1px solid var(--sand); padding-top: 22px; }
.faq-item h3 { font-size: clamp(19px, 2vw, 23px); margin-bottom: 10px; }
.faq-item p, .faq-item li { color: var(--bark); font-size: 15px; line-height: 1.7; }
.faq-item p + p { margin-top: 10px; }

/* ---- What to Expect cards ---- */
.wte-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(20px, 3vw, 36px); }
.wte-3 { grid-template-columns: repeat(3, 1fr); }
.wte-card { border: 1px solid var(--sand); background: var(--cream); padding: clamp(24px, 3vw, 36px); }
.wte-card h3 { font-size: clamp(20px, 2.1vw, 25px); margin: 6px 0 14px; }
.wte-card > p { color: var(--bark); font-size: 15px; line-height: 1.65; }
.wte-price { font-family: var(--font-display, Georgia, serif); font-size: clamp(24px, 2.4vw, 32px); color: var(--espresso); margin: 0 0 10px; }

/* ---- forms band ---- */
.forms-band { background: var(--cream); }
.forms-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.form-card { display: flex; flex-direction: column; gap: 10px; border: 1px solid var(--sand); background: var(--bone); padding: 24px 24px 22px; text-decoration: none; transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease; }
.form-card:hover { transform: translateY(-3px); box-shadow: 0 16px 38px rgba(38, 24, 11, 0.1); border-color: var(--gold); }
.fc-kicker { font-size: 10.5px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); }
.fc-name { font-size: 16.5px; font-weight: 600; color: var(--espresso); line-height: 1.35; }
.fc-dl { margin-top: auto; font-size: 12px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--bark); border-bottom: 1px solid var(--sand); padding-bottom: 3px; width: fit-content; }
.form-card:hover .fc-dl { color: var(--espresso); border-color: var(--gold); }

@media (max-width: 980px) { .forms-grid { grid-template-columns: 1fr 1fr; } .wte-3 { grid-template-columns: 1fr; } }
@media (max-width: 860px) {
  .edu-grid, .faq-grid, .wte-grid { grid-template-columns: 1fr; }
  .forms-grid { grid-template-columns: 1fr; }
  .vm-close { top: -40px; }
}

/* ============================================================
   v3 professional type pass (2026-08-30)
   Darker ink, weightier serif, Figtree body, no thin display
   ============================================================ */
:root {
  --font-body: "Figtree", -apple-system, "Helvetica Neue", sans-serif;
  --ink: #3B2C1B;
}
body { font-size: 17px; line-height: 1.7; }
h1, h2, h3, h4 { font-weight: 560; letter-spacing: -0.015em; line-height: 1.12; }
.section-head h2 { font-weight: 580; }
.section-head p { color: var(--ink); font-size: 16.5px; line-height: 1.7; }
.page-hero .lede { color: var(--ink); font-size: 18.5px; line-height: 1.75; }
.menu-desc { color: var(--ink); font-size: 15px; line-height: 1.6; }
.faq-item p, .faq-item li, .wte-card > p, .ba-case-copy p:last-child,
.edu-copy > p, .ba-stat span, .lane-body p { color: var(--ink); }
.tp-points li { color: var(--ink); }
.eyebrow { font-size: 11.5px; letter-spacing: 0.26em; font-weight: 700; }

/* hero: classic serif statement instead of thin sans */
.hero-duo h1 {
  font-family: var(--font-display);
  font-weight: 560;
  font-size: clamp(38px, 4.8vw, 72px);
  letter-spacing: -0.012em;
  line-height: 1.06;
  max-width: 13ch;
}
.hero-duo-sub { letter-spacing: 0.2em; font-size: 12.5px; }

/* keep dark-section body text warm, not muddy */
.band-dark .section-head p, .home-shelf .section-head p { color: rgba(233, 220, 194, 0.82); }
.cta-sub { color: rgba(233, 220, 194, 0.82); }

/* quotes & notes read editorial, not decorative */
.quote blockquote { color: var(--ink); }
.ba-note { color: var(--ink); }

/* ============================================================
   Phase 1: trust & conversion layer (2026-08-30)
   ============================================================ */
/* hero CTAs */
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }

/* credentials bar (Peachy-pattern trust strip) */
.cred-bar { background: var(--cream); border-bottom: 1px solid var(--sand); }
.cred-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 10px 0; padding-block: 13px; }
.cred-inner span { font-size: 10.5px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--bark); white-space: nowrap; }
.cred-inner span + span::before { content: ""; display: inline-block; width: 4px; height: 4px; border-radius: 50%; background: var(--gold); margin: 0 14px; vertical-align: 2px; }
@media (max-width: 700px) { .cred-inner span { font-size: 9.5px; } .cred-inner span + span::before { margin: 0 9px; } }

/* client reviews strip */
.reviews-band { background: var(--cream); }
.rev-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2.4vw, 26px); }
.rev-card { margin: 0; background: var(--bone); border: 1px solid var(--sand); padding: 26px 26px 24px; display: flex; flex-direction: column; }
.rev-stars { color: var(--gold); font-size: 15px; letter-spacing: 4px; margin-bottom: 14px; }
.rev-card blockquote { margin: 0 0 18px; font-size: 15.5px; line-height: 1.65; color: var(--ink); }
.rev-card figcaption { margin-top: auto; display: flex; flex-direction: column; gap: 2px; }
.rev-card figcaption strong { font-size: 14.5px; color: var(--espresso); }
.rev-card figcaption span { font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--bark); }
@media (max-width: 860px) { .rev-grid { grid-template-columns: 1fr; } }

/* map embed */
.map-embed { margin-top: 22px; border: 1px solid rgba(233, 220, 194, 0.22); }
.map-embed iframe { display: block; width: 100%; height: 230px; border: 0; }

/* sticky mobile action bar */
.sticky-book { display: none; }
@media (max-width: 820px) {
  .sticky-book { position: fixed; bottom: 0; left: 0; right: 0; z-index: 96; display: grid; grid-template-columns: 1fr 1fr 1.5fr; background: var(--espresso); border-top: 1px solid rgba(201, 154, 78, 0.45); padding-bottom: env(safe-area-inset-bottom); }
  .sticky-book a { display: flex; align-items: center; justify-content: center; padding: 15px 8px; font-family: var(--font-body); font-size: 12.5px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--champagne); text-decoration: none; }
  .sticky-book a + a { border-left: 1px solid rgba(233, 220, 194, 0.15); }
  .sticky-book .sb-book { background: var(--gold); color: var(--espresso); }
  body { padding-bottom: 52px; }
}

/* motion calming: animation on intent, never on loop */
.bts-banner::after { animation: none; }
.bts-banner:hover::after { animation: btsSweep 1.1s ease-in-out 1; }
.btn-shine::after { animation: none; transform: translateX(-120%); }
.btn-shine:hover::after { animation: btnShine 0.9s ease-in-out 1; }
.cta-glow { animation: none; transform: translateX(-50%); }

/* ============================================================
   v4 REDESIGN (2026-08-31)
   Reference language: Tribeca / Healing Cypress / ROG
   Centered masthead, mega nav, fixed-height cinematic hero
   ============================================================ */

/* ---- top utility bar ---- */
.topbar { background: var(--espresso); color: rgba(233,220,194,.82); font-size: 11.5px; letter-spacing: .06em; }
.topbar-in { display: flex; align-items: center; justify-content: space-between; gap: 18px; min-height: 38px; flex-wrap: wrap; }
.tb-group { display: inline-flex; align-items: center; gap: 12px; }
.topbar a { color: var(--champagne); text-decoration: none; }
.topbar a:hover { color: #fff; }
.tb-quiet { color: rgba(233,220,194,.6); }
.tb-dot { width: 3px; height: 3px; border-radius: 50%; background: var(--gold); display: inline-block; }
@media (max-width: 860px) { .topbar { display: none; } }

/* ---- masthead: centered logo + nav rail ---- */
.masthead { position: sticky; top: 0; z-index: 90; background: var(--bone); border-bottom: 1px solid var(--sand); }
.mast-top { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; padding: 16px var(--gutter) 12px; }
.mast-logo { justify-self: center; grid-column: 2; display: block; }
.mast-logo img { height: 58px; width: auto; display: block; }
.mast-book { grid-column: 3; justify-self: end; font-size: 11.5px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--espresso); background: var(--gold); padding: 11px 22px; text-decoration: none; transition: background .2s, color .2s; }
.mast-book:hover { background: var(--espresso); color: var(--cream); }
.masthead .nav-toggle { grid-column: 1; justify-self: start; display: none; background: none; border: 0; width: 30px; height: 22px; padding: 0; cursor: pointer; flex-direction: column; justify-content: space-between; }
.masthead .nav-toggle span { display: block; height: 1.5px; width: 100%; background: var(--espresso); }

.mainnav { border-top: 1px solid var(--sand); }
.mn { list-style: none; margin: 0; padding: 0; display: flex; justify-content: center; flex-wrap: wrap; }
.mn-i { position: relative; }
.mn-i > a { display: block; padding: 13px 17px; font-size: 11.5px; font-weight: 600; letter-spacing: .17em; text-transform: uppercase; color: var(--bark); text-decoration: none; transition: color .2s; }
.mn-i > a:hover, .mn-i:hover > a { color: var(--espresso); }
.mn-i.has-mega > a::after, .mn-i.has-drop2 > a::after { content: "\25BE"; font-size: 8px; margin-left: 6px; opacity: .5; }
.mn-cta > a { color: var(--espresso); font-weight: 700; }
.mn-cta > a::before { content: ""; position: absolute; left: 12px; right: 12px; bottom: 8px; height: 1px; background: var(--gold); }

/* mega panel */
.mega { position: absolute; left: 50%; transform: translateX(-50%) translateY(6px); top: 100%; width: max-content; max-width: 92vw; background: var(--cream); border: 1px solid var(--sand); box-shadow: 0 22px 50px rgba(38,24,11,.13); padding: 26px 30px; opacity: 0; visibility: hidden; transition: opacity .2s ease, transform .2s ease, visibility .2s; z-index: 95; }
.mn-i:hover .mega, .mn-i:focus-within .mega { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.mega-in { display: flex; gap: 44px; padding: 0; max-width: none; }
.mega-col { display: flex; flex-direction: column; gap: 9px; min-width: 178px; }
.mega-h { font-size: 10px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: 3px; }
.mega-col a { font-size: 13.5px; color: var(--bark); text-decoration: none; transition: color .18s; }
.mega-col a:hover { color: var(--espresso); }

/* small dropdown */
.drop2 { position: absolute; left: 50%; transform: translateX(-50%) translateY(6px); top: 100%; background: var(--cream); border: 1px solid var(--sand); box-shadow: 0 18px 40px rgba(38,24,11,.12); padding: 10px 0; min-width: 216px; opacity: 0; visibility: hidden; transition: opacity .2s, transform .2s, visibility .2s; z-index: 95; }
.mn-i:hover .drop2, .mn-i:focus-within .drop2 { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.drop2 a { display: block; padding: 9px 22px; font-size: 13.5px; color: var(--bark); text-decoration: none; white-space: nowrap; }
.drop2 a:hover { background: var(--bone); color: var(--espresso); }

/* ---- HERO: fixed cinematic height, never "long" ---- */
.hero { position: relative; height: clamp(460px, 74vh, 680px); overflow: hidden; display: flex; align-items: center; justify-content: center; text-align: center; }
.hero-img { position: absolute; inset: 0; width: 100%; height: 100%; max-width: none; object-fit: cover; object-position: 50% 22%; }
.hero-scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(28,17,8,.42) 0%, rgba(28,17,8,.50) 45%, rgba(28,17,8,.72) 100%); }
.hero-body { position: relative; max-width: 780px; }
.hero-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: .28em; text-transform: uppercase; color: var(--champagne); margin: 0 0 18px; }
.hero h1 { font-family: var(--font-display); font-weight: 500; font-size: clamp(34px, 5.4vw, 62px); line-height: 1.08; color: #fff; margin: 0; text-shadow: 0 2px 26px rgba(20,12,4,.42); }
.hero-sub { margin: 16px auto 0; max-width: 46ch; font-size: 16.5px; line-height: 1.6; color: rgba(255,255,255,.9); text-shadow: 0 1px 14px rgba(20,12,4,.5); }
.hero-pills { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 30px; }
.hero-pills a { font-size: 11.5px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: #fff; text-decoration: none; padding: 13px 22px; border: 1px solid rgba(255,255,255,.55); backdrop-filter: blur(3px); background: rgba(255,255,255,.08); transition: background .22s, color .22s, border-color .22s; }
.hero-pills a:hover { background: #fff; color: var(--espresso); border-color: #fff; }
.hero-pills .pill-solid { background: var(--gold); border-color: var(--gold); color: var(--espresso); font-weight: 700; }
.hero-pills .pill-solid:hover { background: #fff; border-color: #fff; }

/* ---- intro ---- */
.intro { padding: clamp(52px, 7vw, 84px) 0 clamp(30px, 4vw, 44px); text-align: center; }
.intro-in { max-width: 660px; }
.intro .eyebrow { justify-content: center; }
.intro .eyebrow::before { display: none; }
.intro h2 { font-size: clamp(30px, 4vw, 46px); margin-bottom: 16px; }
.intro p { color: var(--ink); font-size: 17px; line-height: 1.7; margin: 0; }

/* ---- service tiles ---- */
.tiles-sec { padding-top: clamp(38px, 5vw, 58px); }
.tiles { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(14px, 1.8vw, 22px); }
.tile { display: block; text-decoration: none; color: inherit; }
.tile-media { display: block; position: relative; overflow: hidden; background: var(--sand); aspect-ratio: 4 / 5; }
.tile-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease-out); }
.tile:hover .tile-media img { transform: scale(1.045); }
.tile-body { display: block; padding: 16px 2px 0; }
.tile-kicker { display: block; font-size: 10px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: 7px; }
.tile-name { display: block; font-family: var(--font-display); font-size: 20px; font-weight: 560; color: var(--espresso); margin-bottom: 6px; }
.tile-desc { display: block; font-size: 14px; line-height: 1.55; color: var(--ink); }

/* ---- mobile menu: accordion ---- */
.mobile-menu { position: fixed; inset: 0; z-index: 120; background: var(--espresso); display: block; padding: 0; opacity: 0; pointer-events: none; transition: opacity .28s; overflow-y: auto; }
.mobile-menu.is-open { opacity: 1; pointer-events: auto; }
.mobile-close { position: absolute; top: 14px; right: 18px; background: none; border: 0; color: var(--champagne); font-size: 34px; line-height: 1; cursor: pointer; z-index: 2; }
.mm-scroll { padding: 68px 26px 44px; display: flex; flex-direction: column; }
.mm-sec { border-bottom: 1px solid rgba(233,220,194,.14); }
.mm-sec > summary { list-style: none; cursor: pointer; padding: 15px 0; font-family: var(--font-display); font-size: 23px; font-weight: 500; color: var(--bone); display: flex; justify-content: space-between; align-items: center; }
.mm-sec > summary::-webkit-details-marker { display: none; }
.mm-sec > summary::after { content: "+"; font-family: var(--font-body); font-size: 20px; color: var(--gold); font-weight: 400; }
.mm-sec[open] > summary::after { content: "\2013"; }
.mm-sec a { display: block; padding: 9px 0 9px 14px; font-size: 14.5px; color: rgba(233,220,194,.78); text-decoration: none; border: 0; }
.mm-sec a:hover { color: #fff; }
.mm-sec:last-of-type { margin-bottom: 4px; }
.mm-link { display: block; padding: 15px 0; font-family: var(--font-display); font-size: 23px; font-weight: 500; color: var(--bone); text-decoration: none; border-bottom: 1px solid rgba(233,220,194,.14); }
.mm-book { display: block; margin-top: 22px; text-align: center; background: var(--gold); color: var(--espresso); font-size: 13px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; padding: 16px; text-decoration: none; }
.mm-meta { margin-top: 26px; font-size: 13px; color: rgba(233,220,194,.6); line-height: 1.7; }
.mm-meta a { color: var(--gold); text-decoration: none; }

/* ---- responsive ---- */
@media (max-width: 1080px) { .mn-i > a { padding: 13px 12px; font-size: 11px; letter-spacing: .13em; } }
@media (max-width: 900px) {
  .mainnav { display: none; }
  .masthead .nav-toggle { display: flex; }
  .mast-top { padding: 13px var(--gutter); }
  .mast-logo img { height: 46px; }
  .mast-book { padding: 9px 15px; font-size: 10.5px; letter-spacing: .12em; }
  .tiles { grid-template-columns: 1fr 1fr; gap: 14px; }
  .tile-media { aspect-ratio: 1 / 1; }
  .tile-name { font-size: 17px; }
  .tile-desc { font-size: 13px; }
  .hero { height: clamp(420px, 66vh, 560px); }
  .hero-pills a { padding: 11px 16px; font-size: 10.5px; letter-spacing: .12em; }
}
@media (max-width: 560px) {
  .tiles { grid-template-columns: 1fr; }
  .tile-media { aspect-ratio: 16 / 10; }
  .hero { height: 62vh; min-height: 400px; }
  .hero-img { object-position: 52% 18%; }
  .hero h1 { font-size: clamp(29px, 8.4vw, 40px); }
  .hero-sub { font-size: 15px; }
  .hero-pills { gap: 8px; }
  .hero-pills a { flex: 1 1 44%; text-align: center; }
}

/* v4 overrides: clear legacy rules that fight the redesign */
.hero-eyebrow { display: block; gap: 0; }
.hero-eyebrow::before { content: none; display: none; }
.masthead .nav-toggle span { margin: 0; width: 100%; height: 2px; }
.masthead .nav-toggle { height: 18px; }

/* v4 fix: full-width mega bar anchored to the nav, not the item */
.mainnav { position: relative; }
.mega { left: 0; right: 0; width: auto; max-width: none; transform: translateY(6px); border-left: 0; border-right: 0; padding: 30px 0 34px; }
.mn-i:hover .mega, .mn-i:focus-within .mega { transform: translateY(0); }
.mega-in { justify-content: center; max-width: var(--w-max); margin: 0 auto; padding-inline: var(--gutter); gap: clamp(36px, 6vw, 88px); }
.mn-i.has-mega { position: static; }

/* ============================================================
   v5 SECTION RHYTHM (2026-09-02)
   Alternating white / tan bands, dark bands stay as accents.
   .surf-w and .surf-t are stamped in document order per page.
   ============================================================ */
:root{
  --surf-w: #FFFFFF;
  --surf-t: #EEE3D0;          /* brand tan, clearly distinct from white */
  --card-on-w: #F6EFE2;       /* tan-tinted card so it reads on white */
  --card-on-t: #FFFFFF;       /* white card so it reads on tan */
  --hair: rgba(94,74,51,.14); /* soft rule that works on both grounds */
}
body { background: var(--surf-w); }
.masthead { background: var(--surf-w); border-bottom-color: var(--hair); }

/* the two bands (element-qualified so they beat legacy band classes) */
section.surf-w, div.surf-w, .surf-w { background: var(--surf-w); }
section.surf-t, div.surf-t, .surf-t { background: var(--surf-t); }
/* colour now does the separating, so drop the legacy divider rules */
section.surf-w, section.surf-t, div.surf-w, div.surf-t { border-block: 0; }
div.cred-bar.surf-t, div.cred-bar.surf-w { border-bottom: 1px solid var(--hair); }

/* cards must contrast with whichever band they sit on */
.surf-w .rev-card, .surf-w .form-card, .surf-w .wte-card, .surf-w .ba-stat,
.surf-w .ba-frame, .surf-w .ba-card-xl, .surf-w .tricho-tab, .surf-w .placard,
.surf-w .bank-perks li, .surf-w .panel { background: var(--card-on-w); }

.surf-t .rev-card, .surf-t .form-card, .surf-t .wte-card, .surf-t .ba-stat,
.surf-t .ba-frame, .surf-t .ba-card-xl, .surf-t .tricho-tab, .surf-t .placard,
.surf-t .bank-perks li, .surf-t .panel { background: var(--card-on-t); }

.surf-w .tricho-tab.is-active, .surf-t .tricho-tab.is-active { background: var(--surf-w); box-shadow: inset 3px 0 0 var(--gold); }
.surf-t .menu-row:hover { background: rgba(255,255,255,.55); }
.surf-w .menu-row:hover { background: var(--card-on-w); }

/* gold labels need a touch more weight on the tan ground */
.surf-t .tile-kicker, .surf-t .fc-kicker, .surf-t .shelf-step { color: #9A6E2C; }

/* keep hairlines consistent across both grounds */
.surf-w .menu-row, .surf-t .menu-row,
.surf-w .faq-item, .surf-t .faq-item { border-color: var(--hair); }

/* ============================================================
   v6 HERO (2026-09-02)
   Logo left with a one-time draw-in + shine + sparkle reveal,
   Dawn & Victoria right, hard-cropped below the shoulders,
   no scrim. Crop is baked into the file so the cutoff is
   identical at every viewport.
   ============================================================ */
.hero { position: static; height: auto; min-height: 0; display: block; overflow: visible;
        padding-block: clamp(30px, 4.5vw, 62px) 0; text-align: left; }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: clamp(24px, 4vw, 60px); }

/* --- logo mark --- */
.hero-mark { position: relative; width: 100%; max-width: 520px; margin-inline: auto; }
.hero-mark-img { display: block; width: 100%; height: auto; }
.hero-mark-shine { position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(115deg, transparent 40%, rgba(255,255,255,.92) 50%, transparent 60%);
  -webkit-mask-image: url(../img/brand/header-light-2x.png); mask-image: url(../img/brand/header-light-2x.png);
  -webkit-mask-size: 100% 100%; mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat; }
.spark { position: absolute; width: 15px; height: 15px; background: var(--gold); opacity: 0; pointer-events: none;
  clip-path: polygon(50% 0, 58% 42%, 100% 50%, 58% 58%, 50% 100%, 42% 58%, 0 50%, 42% 42%); }
.sp1 { left: 3%;  top: 6%; }
.sp2 { left: 17%; top: 62%; width: 11px; height: 11px; }
.sp3 { left: 26%; top: -6%; width: 9px;  height: 9px; }
.sp4 { right: 8%; top: 14%; width: 12px; height: 12px; }
.sp5 { right: 22%; bottom: -4%; width: 10px; height: 10px; }

/* --- portrait: hard cutoff, no overlay --- */
.hero-portrait { position: relative; }
.hero-portrait img { display: block; width: 100%; height: auto; }

/* --- one-time reveal --- */
@keyframes markDraw  { from { clip-path: inset(0 100% 0 0); } to { clip-path: inset(0 0 0 0); } }
@keyframes markShine { from { transform: translateX(-115%); } to { transform: translateX(115%); } }
@keyframes twinkle   { 0% { opacity: 0; transform: scale(.2) rotate(0deg); }
                       45% { opacity: 1; transform: scale(1) rotate(40deg); }
                       100% { opacity: 0; transform: scale(.35) rotate(80deg); } }
@keyframes portraitIn { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }

html.js .hero-mark-img { animation: markDraw 1.45s cubic-bezier(.22,1,.36,1) .2s both; }
html.js .hero-mark-shine { transform: translateX(-115%); animation: markShine 1.5s ease-in-out 1.45s 1 both; }
html.js .spark { animation: twinkle 1.5s ease-in-out 1 both; }
html.js .sp1 { animation-delay: 1.55s; }
html.js .sp2 { animation-delay: 1.8s; }
html.js .sp3 { animation-delay: 2.0s; }
html.js .sp4 { animation-delay: 2.15s; }
html.js .sp5 { animation-delay: 2.35s; }
html.js .hero-portrait { animation: portraitIn .9s cubic-bezier(.22,1,.36,1) .15s both; }

@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; gap: 26px; }
  .hero-mark { max-width: 360px; }
  .hero-portrait { order: 2; }
}
@media (prefers-reduced-motion: reduce) {
  html.js .hero-mark-img, html.js .hero-mark-shine, html.js .spark, html.js .hero-portrait { animation: none; }
  html.js .hero-mark-shine { opacity: 0; }
  html.js .spark { opacity: 0; }
}

/* v6 hero: full-bleed right panel, logo aligned to the container gutter */
.hero { padding-block: 0; }
.hero-grid { grid-template-columns: 1fr 1fr; align-items: center; gap: 0; }
.hero-left { padding-block: clamp(36px, 5vw, 76px);
             padding-inline: max(var(--gutter), calc((100vw - var(--w-max)) / 2)) clamp(20px, 3.5vw, 56px); }
.hero-mark { max-width: 100%; margin-inline: 0; }
.hero-portrait { align-self: stretch; }
.hero-portrait img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 0; }
@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-left { padding-inline: var(--gutter); padding-block: 30px 26px; text-align: center; }
  .hero-mark { max-width: 340px; margin-inline: auto; }
  .hero-portrait img { height: auto; }
}
/* v6 hero: clear legacy .hero-grid padding so the portrait fills the band edge to edge */
.hero-grid { padding: 0; width: 100%; }

/* ============================================================
   v7 HERO (2026-09-02)
   One continuous dark field. The gold lockup and the cut-out of
   Dawn & Victoria both sit ON that field, so there is no photo
   box and no separately sized panel. Hard cutoff below the
   shoulders is baked into the cut-out file.
   ============================================================ */
.hero { position: relative; display: block; height: auto; min-height: 0; overflow: hidden;
  background: radial-gradient(118% 132% at 74% 4%, #30200F 0%, #1D1208 44%, #120B04 100%); }
.hero-inner { position: relative; z-index: 2; display: flex; align-items: center;
  max-width: var(--w-max); margin-inline: auto; padding-inline: var(--gutter);
  min-height: clamp(360px, 42vw, 520px); }
.hero-mark { position: relative; width: min(100%, 460px); max-width: none; margin-inline: 0; }
.hero-mark-img { display: block; width: 100%; height: auto; }
.hero-mark-shine { -webkit-mask-image: url(../img/brand/logo-gold-dark.png); mask-image: url(../img/brand/logo-gold-dark.png); }
.hero-cut { position: absolute; right: 2%; bottom: -5%; z-index: 1;
  height: 112%; width: auto; max-width: none; object-fit: contain; object-position: right center; }

@media (max-width: 1180px) { .hero-cut { height: 94%; } }
@media (max-width: 980px)  { .hero-cut { height: 86%; opacity: .95; } .hero-mark { width: min(100%, 380px); } }
@media (max-width: 860px) {
  .hero-inner { min-height: 0; padding-block: 38px 12px; justify-content: center; }
  .hero-mark { width: min(100%, 320px); margin-inline: auto; }
  .hero-cut { position: static; height: auto; width: 100%; opacity: 1; display: block; }
}

/* v7 fixes: shine sweeps inside a stationary mask (no ghost logo),
   and the hero stacks logo-first on small screens */
.hero-mark-shine { transform: none;
  background: linear-gradient(115deg, transparent 42%, rgba(255,255,255,.9) 50%, transparent 58%);
  background-size: 280% 100%; background-repeat: no-repeat; background-position: 130% 0; }
@keyframes markShine { from { background-position: 130% 0; } to { background-position: -50% 0; } }
html.js .hero-mark-shine { transform: none; animation: markShine 1.5s ease-in-out 1.45s 1 both; }
@media (max-width: 860px) {
  .hero { display: flex; flex-direction: column; }
  .hero-inner { display: none; }
  .hero-cut { order: 2; width: 130%; max-width: none; margin-left: -15%; }
}

/* v7b: intro section removed; tiles now sit directly under the credential strip,
   so give them the full section rhythm top and bottom */
.tiles-sec { padding-top: clamp(72px, 10vw, 128px); }

/* v7c: editorial retouch of Dawn & Victoria carries its own studio backdrop.
   The hero field is matched to that backdrop's edge tone (#0E0A07) and the
   image feathers into it, so the section reads as one continuous ground. */
.hero { background: radial-gradient(58% 92% at 21% 52%, rgba(64,43,24,.62) 0%, rgba(64,43,24,0) 72%), #0E0A07; }
.hero-cut { opacity: 1;
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 24%), linear-gradient(to bottom, transparent 0, #000 18%);
  mask-image: linear-gradient(to right, transparent 0, #000 24%), linear-gradient(to bottom, transparent 0, #000 18%);
  -webkit-mask-composite: source-in; mask-composite: intersect; }
@media (max-width: 980px) { .hero-cut { opacity: 1; } }
@media (max-width: 860px) {
  .hero { background: radial-gradient(70% 46% at 50% 16%, rgba(64,43,24,.6) 0%, rgba(64,43,24,0) 75%), #0E0A07; }
  .hero-cut {
    -webkit-mask-image: linear-gradient(to right, transparent 0, #000 12%, #000 88%, transparent 100%), linear-gradient(to bottom, transparent 0, #000 16%);
    mask-image: linear-gradient(to right, transparent 0, #000 12%, #000 88%, transparent 100%), linear-gradient(to bottom, transparent 0, #000 16%); }
}

/* v7c: credential strip sits directly under the hero now; when it wraps on phones,
   drop the separator dots so it reads as a centered stack, not a broken list */
@media (max-width: 700px) {
  .cred-inner { gap: 7px 0; padding-block: 16px; }
  .cred-inner span + span::before { display: none; }
}

/* Retouched 4K team portraits are delivered as true circular assets. */
.founder-circle { display: block; width: 100%; height: auto; aspect-ratio: 1; object-fit: contain; border-radius: 50%; }
.md-photo img.founder-circle { border-radius: 50%; box-shadow: 0 24px 56px rgba(38,24,11,.18); }
.split-media img.founder-circle { width: min(100%, 520px); margin-inline: auto; border-radius: 50%; }

/* ============================================================
   v8 HERO (2026-09-03)
   Espresso portrait treatment with a quiet champagne shimmer
   between the founders and a more dimensional STĀ lockup.
   ============================================================ */
.hero {
  isolation: isolate;
  background:
    radial-gradient(52% 110% at 76% 48%, rgba(109,72,31,.20) 0%, rgba(109,72,31,0) 70%),
    radial-gradient(48% 92% at 18% 48%, rgba(76,48,22,.55) 0%, rgba(34,20,10,.18) 62%, rgba(14,10,7,0) 100%),
    #0E0A07;
}
.hero-cut {
  z-index: 1;
  filter: saturate(.96) contrast(1.025);
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 19%), linear-gradient(to bottom, transparent 0, #000 9%);
  mask-image: linear-gradient(to right, transparent 0, #000 19%), linear-gradient(to bottom, transparent 0, #000 9%);
}
.hero-duo-glow {
  position: absolute;
  z-index: 3;
  left: 74%;
  top: 12%;
  width: clamp(42px, 5.5vw, 86px);
  height: 72%;
  pointer-events: none;
  opacity: .52;
  transform: translateX(-50%);
  background:
    radial-gradient(ellipse at center, rgba(255,240,191,.72) 0%, rgba(212,167,90,.26) 26%, rgba(183,126,47,0) 72%);
  filter: blur(12px);
  mix-blend-mode: screen;
  animation: duoGlow 5.8s ease-in-out infinite;
}
.hero-duo-glow::before,
.hero-duo-glow::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 10px;
  height: 10px;
  background: #F5D995;
  clip-path: polygon(50% 0, 58% 42%, 100% 50%, 58% 58%, 50% 100%, 42% 58%, 0 50%, 42% 42%);
  filter: drop-shadow(0 0 8px rgba(246,213,137,.85));
}
.hero-duo-glow::before { top: 27%; animation: duoSpark 5.8s ease-in-out .4s infinite; }
.hero-duo-glow::after  { top: 58%; width: 7px; height: 7px; animation: duoSpark 5.8s ease-in-out 2.9s infinite; }
.hero-inner { z-index: 4; }
.hero-mark::before {
  content: "";
  position: absolute;
  inset: -28% -20%;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(ellipse, rgba(193,139,58,.18) 0%, rgba(193,139,58,.07) 38%, transparent 72%);
  filter: blur(12px);
  animation: logoAura 5.8s ease-in-out infinite;
}
.hero-mark-img {
  filter:
    drop-shadow(0 2px 1px rgba(255,240,190,.16))
    drop-shadow(0 9px 24px rgba(183,126,47,.24))
    drop-shadow(0 0 34px rgba(206,157,78,.10));
}
.hero-mark-shine {
  background: linear-gradient(112deg, transparent 43%, rgba(255,247,220,.98) 49%, rgba(242,204,125,.72) 51%, transparent 57%);
  background-size: 320% 100%;
  animation: logoSweep 6.8s ease-in-out 1.2s infinite !important;
}
html.js .spark { animation: logoTwinkle 6.8s ease-in-out infinite; }
html.js .sp1 { animation-delay: .8s; }
html.js .sp2 { animation-delay: 1.35s; }
html.js .sp3 { animation-delay: 2.1s; }
html.js .sp4 { animation-delay: 3.1s; }
html.js .sp5 { animation-delay: 4.05s; }

@keyframes duoGlow {
  0%, 100% { opacity: .32; transform: translateX(-50%) scale(.92); }
  50% { opacity: .62; transform: translateX(-50%) scale(1.06); }
}
@keyframes duoSpark {
  0%, 34%, 100% { opacity: 0; transform: translate(-50%, 10px) scale(.25) rotate(0); }
  42% { opacity: .9; transform: translate(-50%, 0) scale(1) rotate(35deg); }
  52% { opacity: 0; transform: translate(-50%, -9px) scale(.45) rotate(72deg); }
}
@keyframes logoAura {
  0%, 100% { opacity: .62; transform: scale(.96); }
  50% { opacity: 1; transform: scale(1.035); }
}
@keyframes logoSweep {
  0%, 58% { background-position: 135% 0; opacity: 0; }
  63% { opacity: 1; }
  78% { background-position: -48% 0; opacity: 1; }
  82%, 100% { background-position: -48% 0; opacity: 0; }
}
@keyframes logoTwinkle {
  0%, 76%, 100% { opacity: 0; transform: scale(.25) rotate(0); }
  82% { opacity: .9; transform: scale(1) rotate(42deg); }
  88% { opacity: 0; transform: scale(.4) rotate(78deg); }
}

@media (max-width: 860px) {
  .hero { min-height: 0; }
  .hero-cut {
    width: 138%;
    margin-left: -19%;
    -webkit-mask-image: linear-gradient(to bottom, transparent 0, #000 10%);
    mask-image: linear-gradient(to bottom, transparent 0, #000 10%);
  }
  .hero-inner {
    display: none;
  }
  .hero-mark { width: min(64vw, 260px); }
  .hero-duo-glow { left: 50%; top: 20%; height: 62%; opacity: .40; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-duo-glow, .hero-duo-glow::before, .hero-duo-glow::after,
  .hero-mark::before, .hero-mark-shine, html.js .spark { animation: none !important; }
  .hero-mark-shine, .hero-duo-glow::before, .hero-duo-glow::after { opacity: 0; }
}
