/* ============================================================
   THE SCALP CLINIC — STAFFORD
   Monochrome · editorial · sharp. No colour, no soft edges.
   ============================================================ */

:root {
  --ink:    #0a0a0b;   /* page */
  --ink-2:  #0e0e10;   /* alt band */
  --panel:  #141416;   /* raised */
  --panel-2:#1a1a1d;

  --white:  #f5f5f6;
  --grey:   #a4a4aa;   /* muted body */
  --dim:    #6a6a70;   /* captions */
  --faint:  #45454a;

  --line:   rgba(255,255,255,.14);
  --line-2: rgba(255,255,255,.07);

  --maxw: 1280px;
  --nav-h: 72px;
  --util-h: 34px;

  --ease: cubic-bezier(.16,.84,.3,1);

  --display: "Archivo", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
}

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--body);
  background: var(--ink);
  color: var(--white);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  -webkit-tap-highlight-color: transparent;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; color: inherit; }
::selection { background: var(--white); color: var(--ink); }

/* ---------- framed editorial container ---------- */
.frame {
  max-width: var(--maxw);
  margin-inline: auto;
  border-inline: 1px solid var(--line);
}
.pad {
  padding-inline: clamp(20px, 4vw, 56px);
  padding-left: max(clamp(20px,4vw,56px), env(safe-area-inset-left));
  padding-right: max(clamp(20px,4vw,56px), env(safe-area-inset-right));
}
.divide { border-bottom: 1px solid var(--line); }

/* keep anchor targets clear of the fixed nav */
section[id], span#top { scroll-margin-top: calc(var(--nav-h) + var(--util-h) + 8px); }

/* ---------- type ---------- */
.mono {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--dim);
  font-weight: 500;
}
h1,h2,h3,h4 {
  font-family: var(--display);
  font-weight: 800;
  line-height: .98;
  letter-spacing: -.02em;
  text-transform: uppercase;
}
.display { font-size: clamp(34px, 6vw, 64px); }
.lede { color: var(--grey); font-size: clamp(15px, 1.6vw, 18px); line-height: 1.6; max-width: 56ch; }

/* section header block */
.shead { display: flex; align-items: baseline; gap: 18px; padding-block: clamp(40px,5vw,64px) clamp(28px,3vw,40px); }
.shead .idx { font-family: var(--mono); font-size: 12px; color: var(--white); letter-spacing: .1em; padding-top: 6px; }
.shead .st { flex: 1; }
.shead .label { display: block; margin-bottom: 14px; }
.shead h2 { font-size: clamp(28px, 4.5vw, 52px); }
.shead .lede { margin-top: 16px; }

/* ---------- buttons (square, hard) ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--display);
  font-weight: 700; font-size: 13px; letter-spacing: .08em; text-transform: uppercase;
  height: 54px; padding: 0 28px;
  border: 1px solid var(--white);
  background: var(--white); color: var(--ink);
  transition: background .25s var(--ease), color .25s var(--ease), border-color .25s, transform .15s;
}
.btn svg { width: 16px; height: 16px; }
.btn-out { background: transparent; color: var(--white); border-color: var(--line); }
.btn-block { width: 100%; }
@media (hover: hover) {
  .btn:hover { background: transparent; color: var(--white); border-color: var(--white); }
  .btn-out:hover { background: var(--white); color: var(--ink); border-color: var(--white); }
}
.btn:active { transform: translateY(1px); }
.btn-sm { height: 44px; padding: 0 20px; font-size: 12px; }

/* ============================================================
   NAV
   ============================================================ */
.topbar {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  background: var(--ink);
  border-bottom: 1px solid var(--line);
  transition: transform .35s var(--ease);
  padding-top: env(safe-area-inset-top);
}
/* utility line */
.util {
  height: var(--util-h);
  border-bottom: 1px solid var(--line-2);
  display: flex; align-items: center;
}
.util .frame { display: flex; align-items: center; justify-content: space-between; height: 100%; width: 100%; border-bottom: none; }
.util .mono { color: var(--dim); }
.util .mono b { color: var(--grey); font-weight: 500; }
.util a.mono:hover { color: var(--white); }

.topbar.is-scrolled { box-shadow: 0 10px 30px -18px rgba(0,0,0,.9); }
.nav { height: var(--nav-h); }
.nav .frame { display: flex; align-items: center; justify-content: space-between; height: 100%; width: 100%; border-bottom: none; gap: 24px; }

.brand { display: flex; align-items: center; gap: 13px; }
.brand img { width: 34px; height: 34px; }
.brand .wm { display: flex; align-items: center; gap: 11px; }
.brand .wm b {
  font-family: var(--display); font-weight: 800; font-size: 16px;
  letter-spacing: .04em; text-transform: uppercase; white-space: nowrap;
}
.brand .wm i { width: 1px; height: 16px; background: var(--line); display: inline-block; }
.brand .wm span { font-family: var(--mono); font-size: 10px; letter-spacing: .26em; color: var(--grey); text-transform: uppercase; }

.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a {
  font-family: var(--mono); font-size: 12px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--grey); transition: color .2s; position: relative; padding: 4px 0;
}
@media (hover: hover) { .nav-links a:hover { color: var(--white); } }
.nav-links a::after { content:""; position:absolute; left:0; bottom:-2px; height:1px; width:0; background: var(--white); transition: width .25s var(--ease); }
@media (hover: hover) { .nav-links a:hover::after { width:100%; } }

.nav-cta { display: flex; align-items: center; gap: 12px; }

.burger {
  display: none; width: 46px; height: 46px; border: 1px solid var(--line);
  background: transparent; position: relative;
}
.burger span { position:absolute; left:13px; right:13px; height:1.5px; background: var(--white); transition: transform .3s var(--ease), opacity .2s; }
.burger span:nth-child(1){ top:17px; } .burger span:nth-child(2){ top:22px; } .burger span:nth-child(3){ top:27px; }
body.menu-open .burger span:nth-child(1){ transform: translateY(5px) rotate(45deg); }
body.menu-open .burger span:nth-child(2){ opacity:0; }
body.menu-open .burger span:nth-child(3){ transform: translateY(-5px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 99; background: var(--ink);
  display: flex; flex-direction: column;
  padding: calc(var(--nav-h) + var(--util-h) + env(safe-area-inset-top) + 8px) 24px calc(28px + env(safe-area-inset-bottom));
  opacity: 0; visibility: hidden; transition: opacity .3s, visibility .3s;
}
body.menu-open .mobile-menu { opacity: 1; visibility: visible; }
.mobile-menu a.m-link {
  display: flex; align-items: baseline; gap: 16px;
  font-family: var(--display); font-weight: 800; font-size: 32px; text-transform: uppercase; letter-spacing: -.01em;
  padding: 18px 0; border-bottom: 1px solid var(--line-2);
}
.mobile-menu a.m-link em { font-family: var(--mono); font-size: 12px; font-style: normal; color: var(--dim); }
.mobile-menu .m-actions { margin-top: auto; display: flex; flex-direction: column; gap: 10px; padding-top: 24px; }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; padding-top: calc(var(--nav-h) + var(--util-h)); }
.hero .frame { position: relative; }
#dots { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; pointer-events: none; }

.hero-main { position: relative; z-index: 2; padding-block: clamp(48px, 9vw, 120px) clamp(40px,5vw,72px); }
.hero .eyebrow { display:flex; align-items:center; gap:14px; margin-bottom: clamp(26px,4vw,44px); }
.hero .eyebrow .ln { flex: none; width: 48px; height: 1px; background: var(--line); }
.hero h1 {
  font-size: clamp(46px, 11vw, 132px);
  line-height: .9; letter-spacing: -.035em;
  margin-bottom: clamp(22px,3vw,32px);
}
.hero h1 .o { -webkit-text-stroke: 1.5px var(--grey); color: transparent; }
.hero-sub {
  display: grid; grid-template-columns: 1.4fr 1fr; gap: clamp(24px,4vw,56px); align-items: end;
}
.hero-sub .lede { font-size: clamp(16px,1.8vw,19px); max-width: 48ch; }
.hero-sub .cta { display: flex; flex-direction: column; gap: 10px; }

/* spec strip */
.spec { display: grid; grid-template-columns: repeat(4, 1fr); }
.spec .cell { padding: 22px clamp(16px,2vw,28px); border-left: 1px solid var(--line); }
.spec .cell:first-child { border-left: none; }
.spec .cell b { font-family: var(--display); font-weight: 800; font-size: clamp(22px,2.6vw,32px); display: block; line-height: 1; }
.spec .cell .k { font-family: var(--mono); font-size: 10.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--dim); margin-top: 9px; display: block; }
.spec .cell .stars { letter-spacing: 2px; font-size: 18px; }

/* ============================================================
   TICKER
   ============================================================ */
.ticker { overflow: hidden; background: var(--ink-2); }
.ticker .row { display: flex; white-space: nowrap; }
.ticker .seg { display: flex; align-items: center; gap: 0; padding: 16px 0; animation: tick 38s linear infinite; }
.ticker .seg span {
  font-family: var(--mono); font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: var(--grey);
  padding: 0 26px; display: inline-flex; align-items: center;
}
.ticker .seg span::after { content:"/"; color: var(--faint); margin-left: 26px; }
@keyframes tick { from{transform:translateX(0)} to{transform:translateX(-50%)} }
@media (prefers-reduced-motion: reduce){ .ticker .seg{ animation:none } }

/* ============================================================
   RESULTS
   ============================================================ */
.results-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.ba {
  position: relative; aspect-ratio: 4/5; overflow: hidden;
  border-left: 1px solid var(--line); border-top: 1px solid var(--line);
  background: var(--panel); user-select: none; cursor: ew-resize;
}
.results-grid .ba:first-child { border-left: none; }
.ba .half { position: absolute; inset: 0; background-size: cover; background-position: center; }
.ba .before { clip-path: inset(0 50% 0 0); }
.ba .tag {
  position: absolute; top: 14px; z-index: 4;
  font-family: var(--mono); font-size: 10px; letter-spacing: .16em; text-transform: uppercase;
  padding: 5px 9px; background: var(--ink); border: 1px solid var(--line); color: var(--grey);
}
.ba .tag.l { left: 14px; } .ba .tag.r { right: 14px; color: var(--white); }
.ba .divider { position: absolute; top:0; bottom:0; left:50%; width: 1px; z-index: 5; background: var(--white); transform: translateX(-50%); }
.ba .divider::after {
  content: "↔"; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 34px; height: 34px; background: var(--white); color: var(--ink);
  display: flex; align-items: center; justify-content: center; font-size: 15px;
}
.ba .meta { position: absolute; left: 14px; bottom: 14px; z-index: 4; }
.ba .meta .mono { color: var(--grey); }
.results-foot { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding-block: 22px; }
.results-foot .note { font-family: var(--mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--faint); }

/* ============================================================
   TREATMENTS — editorial list
   ============================================================ */
.tlist { border-top: 1px solid var(--line); }
.trow {
  display: grid; grid-template-columns: 64px 1fr auto; align-items: center; gap: clamp(16px,3vw,40px);
  padding: clamp(22px,3vw,34px) clamp(20px,4vw,56px);
  border-bottom: 1px solid var(--line); position: relative; overflow: hidden;
  transition: background .3s var(--ease), color .3s var(--ease);
}
.trow .tn { font-family: var(--mono); font-size: 12px; color: var(--dim); transition: color .3s; }
.trow .tc h3 { font-size: clamp(22px,3vw,34px); }
.trow .tc p { color: var(--grey); font-size: 14.5px; margin-top: 7px; max-width: 64ch; transition: color .3s; }
.trow .tx { font-size: 22px; color: var(--dim); transition: transform .35s var(--ease), color .3s; }
@media (hover: hover) {
  .trow:hover { background: var(--white); color: var(--ink); }
  .trow:hover .tn { color: var(--ink); }
  .trow:hover .tc p { color: #333; }
  .trow:hover .tx { color: var(--ink); transform: translateX(8px); }
}
.tlist + .tfoot { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding-block: 28px; }
.tlist + .tfoot p { color: var(--grey); font-size: 14.5px; max-width: 52ch; }

/* ============================================================
   PROCESS
   ============================================================ */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); }
.step { padding: clamp(28px,3vw,40px) clamp(18px,2vw,30px); border-left: 1px solid var(--line); }
.step:first-child { border-left: none; }
.step .sn { font-family: var(--mono); font-size: 12px; color: var(--white); letter-spacing: .1em; }
.step h4 { font-size: clamp(18px,2vw,22px); margin: clamp(28px,5vw,56px) 0 10px; }
.step p { color: var(--grey); font-size: 14px; }

/* ============================================================
   ABOUT
   ============================================================ */
.about { display: grid; grid-template-columns: 0.92fr 1.08fr; }
.about .media { position: relative; border-right: 1px solid var(--line); min-height: 420px; background: var(--panel); }
.about .media .ph {
  position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px; color: var(--faint);
}
.about .media .ph img { width: 88px; opacity: .35; }
.about .media .ph .mono { color: var(--faint); }
/* registration corner ticks */
.about .media .corner { position: absolute; width: 14px; height: 14px; border-color: var(--line); }
.about .media .corner.tl { top: 16px; left: 16px; border-top: 1px solid; border-left: 1px solid; }
.about .media .corner.tr { top: 16px; right: 16px; border-top: 1px solid; border-right: 1px solid; }
.about .media .corner.bl { bottom: 16px; left: 16px; border-bottom: 1px solid; border-left: 1px solid; }
.about .media .corner.br { bottom: 16px; right: 16px; border-bottom: 1px solid; border-right: 1px solid; }
.about .media .cap { position: absolute; left: 18px; bottom: 18px; }
.about .media .cap b { font-family: var(--display); text-transform: uppercase; font-size: 14px; display:block; }
.about .media .cap .mono { color: var(--grey); margin-top: 4px; }

.about .body { padding: clamp(36px,5vw,72px) clamp(24px,4vw,64px); display: flex; flex-direction: column; justify-content: center; }
.about .body .quote {
  font-family: var(--display); font-weight: 800; text-transform: uppercase;
  font-size: clamp(24px,3.4vw,40px); line-height: 1.04; letter-spacing: -.02em; margin: 22px 0 28px;
}
.about .body .quote .o { -webkit-text-stroke: 1px var(--grey); color: transparent; }
.about .body p { color: var(--grey); margin-bottom: 16px; font-size: 15.5px; }
.about .astats { display: grid; grid-template-columns: repeat(3,1fr); border: 1px solid var(--line); margin-top: 14px; }
.about .astats .s { padding: 18px 20px; border-left: 1px solid var(--line); }
.about .astats .s:first-child { border-left: none; }
.about .astats .s b { font-family: var(--display); font-weight: 800; font-size: 26px; display: block; }
.about .astats .s .mono { margin-top: 6px; }

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews-band { background: var(--ink-2); }
.rfeature { padding: clamp(48px,7vw,100px) clamp(24px,5vw,80px); text-align: center; border-bottom: 1px solid var(--line); }
.rfeature .stars { letter-spacing: 4px; font-size: 20px; }
.rfeature blockquote {
  font-family: var(--display); font-weight: 800; text-transform: uppercase;
  font-size: clamp(26px,5vw,56px); line-height: 1.02; letter-spacing: -.02em;
  max-width: 18ch; margin: 24px auto;
}
.rfeature .o { -webkit-text-stroke: 1.2px var(--grey); color: transparent; }
.rfeature cite { font-family: var(--mono); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--grey); font-style: normal; }

.rgrid { display: grid; grid-template-columns: repeat(3, 1fr); }
.rev { padding: clamp(28px,3vw,40px); border-left: 1px solid var(--line); border-bottom: 1px solid var(--line); display: flex; flex-direction: column; gap: 16px; }
.rgrid .rev:nth-child(3n+1) { border-left: none; }
.rev .stars { letter-spacing: 2px; font-size: 14px; }
.rev p { color: var(--grey); font-size: 15px; flex: 1; }
.rev .who { font-family: var(--mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--dim); }
.rev .who b { color: var(--white); font-weight: 500; }
.rfoot { padding-block: 28px; text-align: center; }
.gline { display: inline-flex; align-items: center; gap: 12px; font-family: var(--mono); font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--grey); }
.gline .stars { color: var(--white); letter-spacing: 1px; }

/* ============================================================
   FAQ
   ============================================================ */
.faq { max-width: 880px; margin-inline: auto; border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; text-align: left; background: none; border: none;
  font-family: var(--display); font-weight: 700; text-transform: uppercase; letter-spacing: -.01em;
  font-size: clamp(16px,2.2vw,22px); padding: 26px 50px 26px 0; position: relative;
  display: flex; align-items: center; gap: 16px;
}
.faq-q .fn { font-family: var(--mono); font-size: 12px; color: var(--dim); font-weight: 500; }
.faq-q .pm { position: absolute; right: 4px; top: 50%; transform: translateY(-50%); width: 16px; height: 16px; }
.faq-q .pm::before, .faq-q .pm::after { content:""; position:absolute; background: var(--white); transition: transform .3s var(--ease); }
.faq-q .pm::before { top: 7px; left: 0; width: 16px; height: 1.5px; }
.faq-q .pm::after { left: 7px; top: 0; width: 1.5px; height: 16px; }
.faq-item.open .pm::after { transform: scaleY(0); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.faq-a p { padding: 0 50px 26px 40px; color: var(--grey); font-size: 15px; }

/* ============================================================
   CTA (inverted)
   ============================================================ */
.cta-invert { background: var(--white); color: var(--ink); }
.cta-invert .inner { padding: clamp(56px,8vw,120px) clamp(24px,5vw,80px); text-align: center; }
.cta-invert .mono { color: #6a6a70; }
.cta-invert h2 { font-size: clamp(36px,7vw,86px); margin: 18px 0 14px; letter-spacing: -.03em; }
.cta-invert p { color: #44444a; max-width: 46ch; margin: 0 auto 32px; font-size: 17px; }
.cta-invert .btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.cta-invert .btn { border-color: var(--ink); background: var(--ink); color: var(--white); }
.cta-invert .btn-out { background: transparent; color: var(--ink); border-color: rgba(0,0,0,.25); }
@media (hover: hover){
  .cta-invert .btn:hover { background: transparent; color: var(--ink); border-color: var(--ink); }
  .cta-invert .btn-out:hover { background: var(--ink); color: var(--white); border-color: var(--ink); }
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact { display: grid; grid-template-columns: 1fr 1fr; }
.contact .info { border-right: 1px solid var(--line); padding: clamp(36px,4vw,56px) clamp(24px,4vw,56px); }
.contact .form-side { padding: clamp(36px,4vw,56px) clamp(24px,4vw,56px); }
.ci { padding: 22px 0; border-bottom: 1px solid var(--line-2); }
.ci:last-of-type { border-bottom: none; }
.ci .k { font-family: var(--mono); font-size: 10.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--dim); display: block; margin-bottom: 8px; }
.ci .v { font-size: 16px; line-height: 1.5; }
.ci .v a { border-bottom: 1px solid var(--line); transition: border-color .2s; }
@media (hover: hover){ .ci .v a:hover { border-color: var(--white); } }
.map { border: 1px solid var(--line); margin-top: 20px; }
.map iframe { width: 100%; height: 220px; border: 0; display: block; filter: grayscale(1) invert(.92) contrast(.95); }

/* form */
.lead h3 { font-size: clamp(22px,3vw,30px); }
.lead .fd { color: var(--grey); font-size: 14.5px; margin: 8px 0 26px; }
.field { margin-bottom: 14px; }
.field label { font-family: var(--mono); font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--dim); display: block; margin-bottom: 8px; }
.field input, .field select, .field textarea {
  width: 100%; background: var(--ink); border: 1px solid var(--line); color: var(--white);
  font-family: var(--body); font-size: 15px; padding: 14px 15px; border-radius: 0; transition: border-color .2s;
}
.field textarea { resize: vertical; min-height: 92px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--white); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.fnote { font-family: var(--mono); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; color: var(--faint); margin-top: 14px; text-align: center; }
.form-ok { display: none; padding: 40px 0; text-align: center; }
.form-ok.show { display: block; }
.form-ok .tick { width: 56px; height: 56px; border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.form-ok h3 { margin-bottom: 8px; } .form-ok p { color: var(--grey); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { border-top: 1px solid var(--line); }
.footer .top { display: grid; grid-template-columns: 1.6fr 1fr 1fr; }
.footer .col { padding: clamp(36px,4vw,56px) clamp(20px,3vw,40px); border-left: 1px solid var(--line); }
.footer .col:first-child { border-left: none; }
.footer .brand { margin-bottom: 18px; }
.footer .col p { color: var(--grey); font-size: 14px; max-width: 36ch; }
.footer .col h5 { font-family: var(--mono); font-size: 11px; letter-spacing: .16em; color: var(--dim); margin-bottom: 18px; font-weight: 500; }
.footer .col a { display: flex; align-items: center; gap: 8px; color: var(--grey); font-size: 14px; margin-bottom: 12px; transition: color .2s; }
.footer .col a .mono { color: var(--faint); transition: color .2s; }
@media (hover: hover){ .footer .col a:hover { color: var(--white); } .footer .col a:hover .mono { color: var(--white); } }
.footer .social { display: flex; gap: 0; margin-top: 8px; border: 1px solid var(--line); width: fit-content; }
.footer .social a { width: 46px; height: 46px; display: flex; align-items: center; justify-content: center; border-left: 1px solid var(--line); margin: 0; color: var(--grey); }
.footer .social a:first-child { border-left: none; }
.footer .social a svg { width: 18px; height: 18px; }
.footer .bottom { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding: 20px clamp(20px,4vw,56px) calc(20px + env(safe-area-inset-bottom)); border-top: 1px solid var(--line); }
.footer .bottom .mono { color: var(--faint); }
.footer .bottom .credit a { color: var(--dim); border-bottom: 1px solid var(--line); }
@media (hover: hover){ .footer .bottom .credit a:hover { color: var(--white); } }

/* ============================================================
   MOBILE ACTION BAR
   ============================================================ */
.abar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 90; display: none; background: var(--ink); border-top: 1px solid var(--line); }
.abar .frame { display: flex; border: none; max-width: none; padding-bottom: env(safe-area-inset-bottom); }
.abar a { flex: 1; height: 56px; display: flex; align-items: center; justify-content: center; gap: 8px; font-family: var(--display); font-weight: 700; font-size: 12px; letter-spacing: .06em; text-transform: uppercase; border-left: 1px solid var(--line); }
.abar a:first-child { border-left: none; }
.abar a svg { width: 17px; height: 17px; }
.abar .book { background: var(--white); color: var(--ink); }

/* ============================================================
   REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce){ .reveal { opacity:1; transform:none; transition:none; } }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1000px) {
  .nav-links { display: none; }
  .nav-cta .btn { display: none; }
  .burger { display: block; }
  .results-grid { grid-template-columns: repeat(2,1fr); }
  .results-grid .ba:nth-child(2) { border-left: 1px solid var(--line); }
  .results-grid .ba:nth-child(3) { border-left: none; }
  .steps { grid-template-columns: repeat(2,1fr); }
  .step:nth-child(3), .step:nth-child(4) { border-top: 1px solid var(--line); }
  .step:nth-child(odd) { border-left: none; }
  .about { grid-template-columns: 1fr; }
  .about .media { border-right: none; border-bottom: 1px solid var(--line); aspect-ratio: 4/3; min-height: 0; }
  .rgrid { grid-template-columns: repeat(2,1fr); }
  .rgrid .rev:nth-child(3n+1) { border-left: 1px solid var(--line); }
  .rgrid .rev:nth-child(2n+1) { border-left: none; }
  .contact { grid-template-columns: 1fr; }
  .contact .info { border-right: none; border-bottom: 1px solid var(--line); }
  .footer .top { grid-template-columns: 1fr 1fr; }
  .footer .col:first-child { grid-column: 1 / -1; border-bottom: 1px solid var(--line); }
  .footer .col:nth-child(2) { border-left: none; }
}

@media (max-width: 640px) {
  :root { --nav-h: 60px; }
  .frame { border-inline: none; }
  .hero-sub { grid-template-columns: 1fr; align-items: start; }
  .spec { grid-template-columns: 1fr 1fr; }
  .spec .cell:nth-child(3), .spec .cell:nth-child(4) { border-top: 1px solid var(--line); }
  .spec .cell:nth-child(odd) { border-left: none; }
  .results-grid { grid-template-columns: 1fr; }
  .results-grid .ba { border-left: none; }
  .rgrid { grid-template-columns: 1fr; }
  .rgrid .rev { border-left: none !important; }
  .footer .top { grid-template-columns: 1fr; }
  .footer .col { border-left: none; border-bottom: 1px solid var(--line); }
  body { padding-bottom: 56px; }
  .abar { display: block; }
  .trow { grid-template-columns: 40px 1fr auto; }
}
@media (max-width: 358px) { .abar a span { display: none; } }

/* ============================================================
   CONVERSION LAYER — hero proof, value strip, empathy, offer
   ============================================================ */

/* hero two-column: copy + static result image */
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr .95fr; align-items: stretch; }
.hero-grid > * { min-width: 0; }
.hero-copy { padding-block: clamp(40px,6vw,92px); display: flex; flex-direction: column; justify-content: center; }
.hero-copy .eyebrow { display: flex; align-items: center; gap: 12px; margin-bottom: clamp(20px,3vw,30px); flex-wrap: wrap; }
.hero-copy .hstars { color: var(--white); letter-spacing: 2px; font-size: 15px; }
.hero-copy h1 { font-size: clamp(44px, 6.4vw, 92px); line-height: .92; letter-spacing: -.035em; margin-bottom: clamp(18px,2.5vw,26px); max-width: 13ch; text-wrap: balance; }
.hero-copy h1 .o { -webkit-text-stroke: 1.5px var(--grey); color: transparent; }
.hsub { color: var(--grey); font-size: clamp(15px,1.7vw,18px); line-height: 1.55; max-width: 44ch; margin-bottom: clamp(24px,3vw,32px); }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-cta .btn { flex: 0 0 auto; }
.trustline { margin-top: 20px; font-family: var(--mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--dim); }
.trustline b { color: var(--white); }

/* static hero result image (placeholder until Sean's photo) */
.hero-media { position: relative; border-left: 1px solid var(--line); background: var(--panel); overflow: hidden; min-height: 100%; }
.hero-media .ph { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px; color: var(--faint); text-align: center; }
.hero-media .ph img { width: 84px; opacity: .3; }
.hero-media .ph .mono { color: var(--faint); }
.hero-media .corner { position: absolute; width: 14px; height: 14px; }
.hero-media .corner.tl { top: 16px; left: 16px; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.hero-media .corner.tr { top: 16px; right: 16px; border-top: 1px solid var(--line); border-right: 1px solid var(--line); }
.hero-media .corner.bl { bottom: 16px; left: 16px; border-bottom: 1px solid var(--line); border-left: 1px solid var(--line); }
.hero-media .corner.br { bottom: 16px; right: 16px; border-bottom: 1px solid var(--line); border-right: 1px solid var(--line); }
.hero-media .cap { position: absolute; left: 18px; bottom: 18px; }
.hero-media .cap b { font-family: var(--display); text-transform: uppercase; font-size: 14px; display: block; }
.hero-media .cap .mono { color: var(--grey); margin-top: 4px; }

/* nudge: divider swings once on first view to signal "draggable" (results sliders) */
.ba.nudge .divider { animation: nudge 1.5s var(--ease) 1; }
@keyframes nudge { 0%{left:50%} 22%{left:34%} 55%{left:64%} 100%{left:50%} }
@media (prefers-reduced-motion: reduce){ .ba.nudge .divider{ animation:none } }

/* trust / value band */
.vstrip { display: grid; grid-template-columns: repeat(3,1fr); }
.vcell { padding: clamp(26px,3vw,40px) clamp(22px,2.5vw,36px); border-left: 1px solid var(--line); }
.vcell:first-child { border-left: none; }
.vcell .mono { display: block; margin-bottom: 12px; color: var(--dim); }
.vcell b { font-family: var(--display); font-weight: 800; text-transform: uppercase; font-size: clamp(19px,2vw,26px); display: block; margin-bottom: 8px; letter-spacing: -.01em; }
.vcell p { color: var(--grey); font-size: 14.5px; }

/* empathy */
.emp { max-width: 760px; padding-block: clamp(48px,7vw,96px); }
.emp h2 { font-size: clamp(28px,4.6vw,52px); margin: 16px 0 22px; }
.emp p { color: var(--grey); font-size: clamp(16px,1.9vw,20px); line-height: 1.6; margin-bottom: 30px; max-width: 54ch; }

/* process cta */
.pstep-cta { padding-block: clamp(28px,3vw,40px); }

/* offer list */
.offer-list { list-style: none; display: grid; grid-template-columns: repeat(2,1fr); gap: 12px 28px; max-width: 640px; margin: 0 auto 34px; text-align: left; }
.offer-list li { position: relative; padding-left: 30px; font-size: 15.5px; color: #2a2a2e; font-weight: 500; }
.offer-list li::before { content: ""; position: absolute; left: 0; top: 7px; width: 16px; height: 9px; border-left: 2px solid var(--ink); border-bottom: 2px solid var(--ink); transform: rotate(-45deg); }

@media (max-width: 1000px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-media { display: none; }
  .vstrip { grid-template-columns: 1fr; }
  .vcell { border-left: none; border-bottom: 1px solid var(--line); }
  .vcell:last-child { border-bottom: none; }
  .offer-list { grid-template-columns: 1fr; max-width: 360px; }
}
@media (max-width: 640px) {
  .hero-copy { padding-block: clamp(30px,7vw,52px); }
  .hero-copy h1 { max-width: 100%; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; }
  /* tighten the airy section headings on mobile */
  .shead { padding-block: 36px 20px; gap: 14px; }
  .shead h2 { font-size: clamp(26px,7vw,34px); }
  .emp { padding-block: 44px; }
  .emp h2 { font-size: clamp(26px,7vw,38px); }
}
