/* ==========================================================================
   Ageless Health & Aesthetics — design system
   One stylesheet for every template. Improve a rule here and forty pages
   get better at once, which is the entire argument for the rebuild.
   ========================================================================== */

:root {
  --ink: #0D1520;
  --ink-2: #16202D;
  --slate: #1E3049;
  --slate-2: #2A4463;
  --paper: #EFEBE3;
  --paper-2: #F8F5EF;
  --surgical: #002147;
  --surgical-br: #1E426C;
  --mint: #D7C594;
  --muted: #5F6570;
  --line: rgba(13, 21, 32, .14);
  --line-dk: rgba(239, 235, 227, .16);
  --pin: #A8823C;
  --kill: #9B3B2E;
  --gold: #CBB775;

  --display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --body: 'Archivo', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --wrap: 1180px;
  --radius: 3px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
  font-family: var(--body);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

/* The filter script toggles `hidden`; component display rules would otherwise
   win over the user-agent [hidden] rule and the filters would do nothing. */
[hidden] { display: none !important; }

/* --------------------------------------------------------------------------
   Real images inside placeholder slots
   A slot with a manifest entry gets .has-img and an <img>; the image covers
   the box and any badge/tag chrome stays layered above it.
   -------------------------------------------------------------------------- */
.has-img { position: relative; overflow: hidden; }
.has-img > img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; display: block;
}

/* Sensitive clinical photography — blurred until the visitor opts in.
   Without JS the image simply stays blurred. */
.sens-img { filter: blur(26px) saturate(.75); transform: scale(1.12); }
.revealed .sens-img { filter: none; transform: none; }
.sens-reveal {
  position: absolute; inset: 0; z-index: 2; width: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px;
  background: rgba(21, 28, 25, .38); border: 0; cursor: pointer; color: #fff;
  font-family: inherit; font-size: 11px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
}
.sens-reveal span { font-weight: 500; letter-spacing: .08em; opacity: .85; text-transform: none; font-size: 12px; }
.revealed .sens-reveal { display: none; }
.gcase-i { position: relative; }
.gcase-i > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.gbadge, .ba-tag { z-index: 2; }
.ba-layer > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
a { color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 28px; }
.wrap--narrow { max-width: 780px; }
.sec { padding: 88px 0; }
.sec--tight { padding: 60px 0; }
.sec--paper2 { background: var(--paper-2); }
.sec--dark { background: var(--slate); }

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 400;
  line-height: 1.06;
  letter-spacing: -.02em;
}
h1 { font-size: clamp(34px, 4.8vw, 60px); }
h2 { font-size: clamp(28px, 3.5vw, 42px); }
h3 { font-size: 21px; line-height: 1.2; }
h4 { font-size: 17px; line-height: 1.25; }

.lede {
  font-size: clamp(16px, 1.4vw, 18.5px);
  color: var(--muted);
  max-width: 58ch;
  line-height: 1.6;
}

.eyebrow {
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--surgical);
  margin-bottom: 16px;
}

.head { max-width: 62ch; margin-bottom: 42px; }
.head h1, .head h2 { margin-bottom: 14px; }

.on-dark { color: var(--paper-2); }
.on-dark .lede { color: rgba(248, 245, 239, .72); }
.on-dark .eyebrow { color: #BBAC93; }

a:focus-visible, button:focus-visible, input:focus-visible,
select:focus-visible, textarea:focus-visible, summary:focus-visible {
  outline: 2.5px solid var(--surgical-br);
  outline-offset: 3px;
}

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--ink); color: #fff; padding: 14px 20px; font-weight: 600;
}
.skip:focus { left: 0; }

.visually-hidden {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap;
}

/* --------------------------------------------------------------------------
   Placeholder review mode
   Unverified numbers render as ordinary text. Append ?review to any URL to
   highlight every one of them before sign-off.
   -------------------------------------------------------------------------- */
body.review .ph { border-bottom: 1.5px dashed rgba(176, 101, 31, .75); padding-bottom: 1px; }
body.review .ph::after { content: '◦'; color: var(--pin); font-size: .7em; vertical-align: super; }

.review-bar {
  display: none;
  background: var(--pin); color: #fff; padding: 10px 0; font-size: 13px; font-weight: 600;
}
body.review .review-bar { display: block; }

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 16px 28px; font-size: 14px; font-weight: 600; letter-spacing: .02em;
  border-radius: 2px; text-decoration: none; text-align: center;
  transition: background .2s, color .2s, border-color .2s;
}
.btn--pri { background: var(--surgical); color: #fff; }
.btn--pri:hover { background: var(--surgical-br); }
.btn--ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--line); }
.btn--ghost:hover { border-color: var(--ink); background: rgba(13, 21, 32, .04); }
.on-dark .btn--ghost { color: var(--paper-2); border-color: var(--line-dk); }
.on-dark .btn--ghost:hover { border-color: var(--paper-2); background: rgba(255, 255, 255, .07); }
.btn--lg { padding: 19px 34px; font-size: 15px; }
.btn--block { width: 100%; }

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */
.topbar {
  background: var(--ink); color: var(--paper-2);
  font-size: 12.5px; padding: 9px 0; letter-spacing: .03em;
}
.topbar .wrap { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.topbar a { text-decoration: none; font-weight: 600; }
.topbar a:hover { text-decoration: underline; }
.stars { color: var(--gold); letter-spacing: .1em; }

.nav {
  position: sticky; top: 0; z-index: 60;
  background: rgba(239, 235, 227, .94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav--dark { background: rgba(30, 48, 73, .95); border-bottom-color: var(--line-dk); color: var(--paper-2); }
.nav .wrap {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; padding-top: 15px; padding-bottom: 15px;
}
.logo { font-family: var(--display); font-size: 21px; font-weight: 600; text-decoration: none; }
.logo span {
  display: block; font-family: var(--body); font-size: 9.5px; font-weight: 600;
  letter-spacing: .24em; color: var(--muted); text-transform: uppercase; margin-top: 3px;
}
.nav--dark .logo span { color: rgba(248, 245, 239, .55); }

/* The practice's script wordmark (from the live site). Black source art;
   dark surfaces invert it to white. */
.logo--img { display: inline-block; }
.logo--img img { height: 30px; width: auto; display: block; }
.logo--img span { margin-top: 5px; }
.nav--dark .logo--img img, .foot-brand .logo--img img { filter: invert(1) brightness(1.05); }
.foot-brand .logo--lockup img { height: 60px; }

.navlinks { display: flex; gap: 28px; align-items: center; font-size: 14px; font-weight: 500; }
.navlinks a { text-decoration: none; padding: 4px 0; border-bottom: 1.5px solid transparent; }
.navlinks a:hover, .navlinks a[aria-current] { border-color: var(--surgical); }
.nav--dark .navlinks a:hover, .nav--dark .navlinks a[aria-current] { border-color: var(--mint); }

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

.nav-toggle {
  display: none; padding: 10px; border: 1.5px solid var(--line); border-radius: 2px;
  font-size: 13px; font-weight: 600; letter-spacing: .04em;
}
.nav--dark .nav-toggle { border-color: var(--line-dk); }

.crumb { font-size: 12.5px; color: var(--muted); letter-spacing: .03em; padding: 14px 0; }
.crumb a { text-decoration: none; }
.crumb a:hover { text-decoration: underline; }
.crumb--dark { background: var(--slate); color: rgba(248, 245, 239, .55); }
.crumb--dark a:hover { color: var(--paper-2); }

/* --------------------------------------------------------------------------
   Hero + before/after comparison
   -------------------------------------------------------------------------- */
.hero { padding: 70px 0 80px; }
.hero .wrap { display: grid; grid-template-columns: 1.02fr .98fr; gap: 58px; align-items: center; }
.hero h1 { margin-bottom: 22px; }
.hero h1 em { font-style: normal; color: var(--surgical); font-weight: 600; }
.hero-actions { display: flex; gap: 12px; margin: 30px 0 20px; flex-wrap: wrap; }
.hero-note { font-size: 13.5px; color: var(--muted); line-height: 1.6; }
.hero-note .dot { margin-right: 7px; vertical-align: middle; }
.dot { width: 6px; height: 6px; border-radius: 50%; background: var(--surgical); display: inline-block; flex: none; }

.ba {
  position: relative; border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 4/5; background: var(--ink-2); box-shadow: 0 24px 60px rgba(13, 21, 32, .22);
}
.ba-layer { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.ba-before { background: linear-gradient(150deg, #6E7A72 0%, #4C554F 55%, #3A423D 100%); }
.ba-after { background: linear-gradient(150deg, #C9CFC4 0%, #AFA9A0 55%, #8E887D 100%); clip-path: inset(0 50% 0 0); }
.ba-tag {
  position: absolute; bottom: 16px; font-size: 10.5px; letter-spacing: .2em;
  text-transform: uppercase; font-weight: 700; background: rgba(13, 21, 32, .72);
  color: #fff; padding: 7px 12px; border-radius: 2px;
}
.ba-before .ba-tag { right: 16px; }
.ba-after .ba-tag { left: 16px; background: rgba(0, 33, 71, .92); }
.ba-ph {
  font-size: 11px; letter-spacing: .18em; text-transform: uppercase; font-weight: 700;
  color: rgba(255, 255, 255, .5); text-align: center; padding: 0 30px; line-height: 1.8;
}
.ba-line { position: absolute; top: 0; bottom: 0; left: 50%; width: 2px; background: #fff; transform: translateX(-1px); pointer-events: none; }
.ba-knob {
  position: absolute; top: 50%; left: 50%; width: 44px; height: 44px; border-radius: 50%;
  background: #fff; transform: translate(-50%, -50%); pointer-events: none;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: var(--ink); box-shadow: 0 4px 14px rgba(0, 0, 0, .3); font-weight: 700;
}
.ba-range { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0; cursor: ew-resize; margin: 0; }
.ba-cap { margin-top: 12px; font-size: 12.5px; color: var(--muted); display: flex; justify-content: space-between; gap: 10px; }

/* --------------------------------------------------------------------------
   Trust strip
   -------------------------------------------------------------------------- */
.trust { background: var(--ink); color: var(--paper-2); padding: 26px 0; }
.trust .wrap { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.trust-item { display: flex; flex-direction: column; gap: 5px; }
.trust-k { font-family: var(--display); font-size: 26px; font-weight: 600; line-height: 1; }
.trust-l { font-size: 11.5px; letter-spacing: .13em; text-transform: uppercase; color: rgba(248, 245, 239, .6); font-weight: 600; }

/* --------------------------------------------------------------------------
   The fork — signature homepage element
   -------------------------------------------------------------------------- */
.fork { display: grid; grid-template-columns: 1fr 1fr; min-height: 520px; }
.fork-panel {
  padding: 64px 54px; display: flex; flex-direction: column; justify-content: flex-end;
  position: relative; text-decoration: none;
  transition: flex-grow .45s cubic-bezier(.2, .7, .3, 1);
}
.fork-a { background: var(--paper-2); border-right: 1px solid var(--line); }
.fork-m { background: var(--slate); color: var(--paper-2); }
.fork-num {
  font-family: var(--display); font-size: 13px; font-weight: 600; letter-spacing: .2em;
  text-transform: uppercase; margin-bottom: auto; padding-bottom: 40px; opacity: .55;
}
.fork-panel h2 { margin-bottom: 14px; }
.fork-panel > p { font-size: 16px; line-height: 1.6; color: var(--muted); max-width: 40ch; margin-bottom: 12px; }
.fork-m > p { color: rgba(248, 245, 239, .74); }
.fork-list { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; margin: 18px 0 26px; }
.fork-list li {
  font-size: 12px; font-weight: 600; letter-spacing: .04em; padding: 7px 13px;
  border-radius: 2px; border: 1px solid var(--line); color: var(--muted);
}
.fork-m .fork-list li { border-color: var(--line-dk); color: rgba(248, 245, 239, .8); }
.fork-priv { display: flex; align-items: center; gap: 9px; font-size: 13px; color: var(--mint); margin-bottom: 22px; font-weight: 500; }
@media (hover: hover) {
  .fork:hover .fork-panel { flex-grow: .9; }
  .fork-panel:hover { flex-grow: 1.18; }
}

/* --------------------------------------------------------------------------
   Concern router
   -------------------------------------------------------------------------- */
.concerns { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.concern-c {
  background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px; text-decoration: none; display: block; transition: border-color .2s, transform .2s;
}
.concern-c:hover { border-color: var(--surgical); transform: translateY(-2px); }
.concern-c h3 { font-size: 19px; margin-bottom: 7px; }
.concern-c p { font-size: 13px; color: var(--muted); line-height: 1.55; }
.concern-c .go { font-size: 11.5px; font-weight: 700; color: var(--surgical); letter-spacing: .05em; margin-top: 13px; display: block; }
.on-dark .concern-c { background: var(--slate-2); border-color: var(--line-dk); }
.on-dark .concern-c:hover { border-color: var(--mint); }
.on-dark .concern-c p { color: rgba(248, 245, 239, .7); }
.on-dark .concern-c .go { color: var(--mint); }

/* --------------------------------------------------------------------------
   Procedure cards
   -------------------------------------------------------------------------- */
.pcards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.pcards--4 { grid-template-columns: repeat(4, 1fr); }
.pcard {
  background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; text-decoration: none; display: flex; flex-direction: column;
  transition: border-color .2s, transform .2s;
}
.pcard:hover { border-color: var(--surgical); transform: translateY(-2px); }
.on-dark .pcard { background: var(--slate-2); border-color: var(--line-dk); }
.on-dark .pcard:hover { border-color: var(--mint); }
.pcard-img {
  aspect-ratio: 16/10; display: flex; align-items: center; justify-content: center;
  font-size: 10px; letter-spacing: .16em; text-transform: uppercase; font-weight: 700;
  color: rgba(255, 255, 255, .6); text-align: center; line-height: 1.9; padding: 0 16px;
}
.pcard-b { padding: 17px 19px 19px; display: flex; flex-direction: column; flex: 1; }
.pcard-b h3 { font-size: 17.5px; margin-bottom: 5px; }
.pcard-b .meta { font-size: 12.5px; color: var(--muted); }
.on-dark .pcard-b .meta { color: rgba(248, 245, 239, .62); }
.pcard-b .pr { font-size: 12.5px; color: var(--surgical); font-weight: 700; margin-top: 8px; }
.on-dark .pcard-b .pr { color: var(--mint); }

.gA { background: linear-gradient(140deg, #C3BFB8, #908A80); }
.gB { background: linear-gradient(140deg, #C6C0B4, #8C8579); }
.gC { background: linear-gradient(140deg, #A9B7BF, #6E808B); }
.gD { background: linear-gradient(140deg, #C3B9B4, #8E7F79); }
.gE { background: linear-gradient(140deg, #BDB9B3, #878178); }
.gF { background: linear-gradient(140deg, #B7BCC4, #767F8C); }
.gG { background: linear-gradient(140deg, #8E9AA3, #4F5D68); }
.gH { background: linear-gradient(140deg, #A5A19A, #69645B); }

/* --------------------------------------------------------------------------
   Procedure page
   -------------------------------------------------------------------------- */
.proc-hero { padding: 46px 0 44px; }
.proc-hero .wrap { display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: start; }
.proc-hero h1 { margin-bottom: 4px; }

.answer {
  background: var(--paper-2); border-left: 3px solid var(--surgical);
  padding: 21px 25px; margin: 22px 0; border-radius: 0 var(--radius) var(--radius) 0;
}
.on-dark .answer { background: var(--slate-2); border-left-color: var(--mint); }
.answer .big { font-family: var(--display); font-size: 31px; font-weight: 600; line-height: 1.1; margin-bottom: 6px; }
.answer p { font-size: 13.5px; color: var(--muted); line-height: 1.6; }
.on-dark .answer p { color: rgba(248, 245, 239, .72); }
.answer .fin { font-size: 12.5px; margin-top: 8px; color: var(--surgical); font-weight: 600; }
.on-dark .answer .fin { color: var(--mint); }

.facts { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); margin: 26px 0; }
.fact { background: var(--paper); padding: 16px 14px; }
.fact .k { font-family: var(--display); font-size: 19px; font-weight: 600; line-height: 1.15; margin-bottom: 4px; }
.fact .l { font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); font-weight: 700; }
.on-dark .facts { background: var(--line-dk); border-color: var(--line-dk); }
.on-dark .fact { background: var(--slate); }
.on-dark .fact .l { color: rgba(248, 245, 239, .55); }

.imgbox {
  aspect-ratio: 4/5; border-radius: var(--radius); display: flex; align-items: center; justify-content: center;
  font-size: 10.5px; letter-spacing: .17em; text-transform: uppercase; font-weight: 700;
  color: rgba(255, 255, 255, .6); text-align: center; line-height: 2; padding: 0 24px;
}
.imgbox--wide { aspect-ratio: 16/10; }

.steps { counter-reset: s; display: grid; gap: 2px; }
.step { display: grid; grid-template-columns: 52px 1fr; gap: 20px; padding: 20px 0; border-top: 1px solid var(--line); align-items: start; }
.on-dark .step { border-color: var(--line-dk); }
.step::before {
  counter-increment: s; content: counter(s, decimal-leading-zero);
  font-family: var(--display); font-size: 15px; font-weight: 600; color: var(--surgical); padding-top: 3px;
}
.on-dark .step::before { color: var(--mint); }
.step h3 { font-size: 17px; margin-bottom: 5px; }
.step p { font-size: 14.5px; color: var(--muted); line-height: 1.6; }
.on-dark .step p { color: rgba(248, 245, 239, .7); }

.fitgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.fit { border-radius: var(--radius); padding: 26px 28px; }
.fit-y { background: rgba(0, 33, 71, .08); border: 1px solid rgba(0, 33, 71, .26); }
.fit-n { background: rgba(155, 59, 46, .07); border: 1px solid rgba(155, 59, 46, .22); }
.on-dark .fit-y { background: rgba(215, 197, 148, .09); border-color: rgba(215, 197, 148, .3); }
.on-dark .fit-n { background: rgba(196, 108, 92, .1); border-color: rgba(196, 108, 92, .3); }
.fit h3 { margin-bottom: 13px; font-size: 19px; }
.fit-y h3 { color: var(--surgical); }
.fit-n h3 { color: var(--kill); }
.on-dark .fit-y h3 { color: var(--mint); }
.on-dark .fit-n h3 { color: #D99184; }
.fit ul { list-style: none; font-size: 14.5px; line-height: 1.75; color: var(--muted); }
.on-dark .fit ul { color: rgba(248, 245, 239, .75); }
.fit li { padding: 3px 0; }
.fit li::before { content: '— '; opacity: .5; }

/* Discretion block — men's variant */
.disc { background: rgba(215, 197, 148, .09); border: 1px solid rgba(215, 197, 148, .3); border-radius: var(--radius); padding: 26px 30px; }
.disc h3 { color: var(--mint); margin-bottom: 13px; font-size: 19px; }
.disc ul { list-style: none; font-size: 14px; line-height: 1.85; color: rgba(248, 245, 239, .78); }
.disc li::before { content: '— '; opacity: .5; }

/* --------------------------------------------------------------------------
   Inline form
   -------------------------------------------------------------------------- */
.iform {
  background: var(--ink-2); color: var(--paper-2); border-radius: var(--radius);
  padding: 40px 42px; display: grid; grid-template-columns: 1fr 1fr; gap: 36px; align-items: center;
}
.iform--dark { background: var(--slate-2); }
.iform h2 { font-size: 28px; margin-bottom: 10px; }
.iform > div > p { font-size: 14.5px; color: rgba(248, 245, 239, .72); line-height: 1.6; }
.fr { display: flex; gap: 10px; margin-bottom: 10px; flex-wrap: wrap; }
.fr input, .fr select, .fr textarea {
  flex: 1; min-width: 170px; padding: 15px; border-radius: 2px;
  border: 1px solid var(--line-dk); background: rgba(255, 255, 255, .07);
  color: var(--paper-2); font-size: 14.5px; font-family: inherit;
}
.fr textarea { min-height: 96px; resize: vertical; }
.fr input::placeholder, .fr textarea::placeholder { color: rgba(248, 245, 239, .45); }
.fr select option { background: var(--ink-2); color: var(--paper-2); }
.prefill { font-size: 11.5px; color: var(--mint); margin-bottom: 12px; font-weight: 600; }
.fine { font-size: 11.5px; color: rgba(248, 245, 239, .5); line-height: 1.55; margin-top: 12px; }
.fine a { color: rgba(248, 245, 239, .78); }

/* --------------------------------------------------------------------------
   Quotes
   -------------------------------------------------------------------------- */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.quote {
  background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 30px; display: flex; flex-direction: column;
}
.on-dark .quote { background: var(--slate-2); border-color: var(--line-dk); }
.q-tag {
  display: inline-block; align-self: flex-start; font-size: 10.5px; letter-spacing: .15em;
  text-transform: uppercase; font-weight: 700; color: var(--surgical);
  border: 1px solid rgba(0, 33, 71, .35); padding: 5px 10px; border-radius: 2px; margin-bottom: 17px;
}
.on-dark .q-tag { color: var(--mint); border-color: rgba(215, 197, 148, .4); }
.quote blockquote { font-family: var(--display); font-size: 18.5px; line-height: 1.45; margin-bottom: 20px; }
.q-by { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.q-av { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(140deg, #AFA9A0, #7E786F); flex: none; }
.q-name { font-size: 14px; font-weight: 600; }
.q-meta { font-size: 12.5px; color: var(--muted); }
.on-dark .q-meta { color: rgba(248, 245, 239, .6); }

/* --------------------------------------------------------------------------
   FAQ
   -------------------------------------------------------------------------- */
.faq { border-top: 1px solid var(--line); }
.on-dark .faq { border-color: var(--line-dk); }
.faq details { border-bottom: 1px solid var(--line); }
.on-dark .faq details { border-color: var(--line-dk); }
.faq summary {
  list-style: none; cursor: pointer; padding: 22px 0; display: flex;
  justify-content: space-between; gap: 24px; align-items: flex-start;
  font-size: 18px; font-family: var(--display); font-weight: 500;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; font-size: 22px; color: var(--surgical); flex: none; line-height: 1; font-family: var(--body); }
.on-dark .faq summary::after { color: var(--mint); }
.faq details[open] summary::after { content: '\2013'; }
.faq .faq-a { padding: 0 60px 24px 0; color: var(--muted); font-size: 15px; line-height: 1.65; max-width: 78ch; }
.on-dark .faq .faq-a { color: rgba(248, 245, 239, .7); }

/* --------------------------------------------------------------------------
   Pricing table
   -------------------------------------------------------------------------- */
.chips { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 28px; }
.chip {
  padding: 9px 16px; border-radius: 100px; border: 1px solid var(--line);
  font-size: 12.5px; font-weight: 600; color: var(--muted); background: transparent;
  transition: background .18s, color .18s, border-color .18s;
}
.chip:hover { border-color: var(--ink); color: var(--ink); }
.chip[aria-pressed="true"] { background: var(--ink); color: var(--paper-2); border-color: var(--ink); }

.ptbl { border-top: 1px solid var(--line); }
.prow {
  display: grid; grid-template-columns: 2fr 1.1fr 1.1fr auto; gap: 20px;
  align-items: center; padding: 21px 0; border-bottom: 1px solid var(--line);
}
.prow .nm { font-family: var(--display); font-size: 20px; font-weight: 500; }
.prow .nm small { display: block; font-family: var(--body); font-size: 12.5px; color: var(--muted); margin-top: 4px; font-weight: 400; }
.prow .fm { font-size: 18px; font-weight: 600; }
.prow .mo { font-size: 13.5px; color: var(--surgical); font-weight: 600; }
.prow a { font-size: 13px; font-weight: 600; text-decoration: none; border-bottom: 1.5px solid var(--surgical); padding-bottom: 2px; white-space: nowrap; }
.price-foot { margin-top: 26px; font-size: 13.5px; color: var(--muted); max-width: 66ch; line-height: 1.65; }
.empty-note { padding: 40px 0; color: var(--muted); font-size: 14.5px; }

/* --------------------------------------------------------------------------
   Case library
   -------------------------------------------------------------------------- */
.ggrid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.gcase { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--paper-2); }
.on-dark .gcase { background: var(--slate-2); border-color: var(--line-dk); }
.gcase-i {
  aspect-ratio: 1/1; display: flex; align-items: center; justify-content: center; position: relative;
  font-size: 9.5px; letter-spacing: .15em; text-transform: uppercase; font-weight: 700;
  color: rgba(255, 255, 255, .6); text-align: center; line-height: 2; padding: 0 14px;
}
.gbadge {
  position: absolute; top: 10px; left: 10px; background: rgba(13, 21, 32, .75); color: #fff;
  font-size: 9px; letter-spacing: .12em; text-transform: uppercase; font-weight: 700;
  padding: 5px 8px; border-radius: 2px;
}
.gcase-b { padding: 13px 15px 15px; font-size: 12.5px; color: var(--muted); }
.gcase-b strong { display: block; font-family: var(--display); font-size: 15.5px; font-weight: 500; color: var(--ink); margin-bottom: 3px; }
.on-dark .gcase-b strong { color: var(--paper-2); }
.gcase-b a { color: var(--surgical); font-weight: 600; text-decoration: none; }
.gcase-b a:hover { text-decoration: underline; }

/* --------------------------------------------------------------------------
   Locations
   -------------------------------------------------------------------------- */
.lgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.lcard { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--paper-2); }
.lcard-i {
  aspect-ratio: 16/9; display: flex; align-items: center; justify-content: center;
  font-size: 10px; letter-spacing: .16em; text-transform: uppercase; font-weight: 700; color: rgba(255, 255, 255, .6);
}
.lcard-b { padding: 28px 30px; }
.lcard-b h3 { margin-bottom: 10px; }
.lcard-b p { font-size: 14.5px; color: var(--muted); line-height: 1.7; margin-bottom: 16px; }
.hours { list-style: none; font-size: 13.5px; color: var(--muted); margin-bottom: 18px; }
.hours li { display: flex; justify-content: space-between; gap: 16px; padding: 5px 0; border-bottom: 1px solid var(--line); }

/* --------------------------------------------------------------------------
   Editorial / prose
   -------------------------------------------------------------------------- */
.prose { max-width: 68ch; }
.prose p { font-size: 16.5px; line-height: 1.72; color: var(--ink); margin-bottom: 20px; }
.prose h3 { font-size: 24px; margin: 38px 0 14px; }
.prose .prose-list { list-style: none; margin: 0 0 22px; }
.prose .prose-list li { font-size: 16px; line-height: 1.7; color: var(--muted); padding: 6px 0 6px 22px; position: relative; }
.prose .prose-list li::before { content: '—'; position: absolute; left: 0; opacity: .5; }
.prose a { color: var(--surgical); font-weight: 500; text-decoration: underline; text-underline-offset: 3px; }
.on-dark .prose p { color: rgba(248, 245, 239, .82); }

.postlist { display: grid; gap: 2px; border-top: 1px solid var(--line); }
.postcard {
  display: grid; grid-template-columns: 150px 1fr; gap: 26px; padding: 26px 0;
  border-bottom: 1px solid var(--line); text-decoration: none; align-items: start;
}
.postcard:hover h3 { color: var(--surgical); }
.postcard .when { font-size: 12.5px; color: var(--muted); letter-spacing: .04em; padding-top: 4px; }
.postcard h3 { margin-bottom: 7px; transition: color .2s; }
.postcard p { font-size: 14.5px; color: var(--muted); line-height: 1.6; max-width: 62ch; }

/* --------------------------------------------------------------------------
   Notes and callouts
   -------------------------------------------------------------------------- */
.note {
  background: rgba(176, 101, 31, .09); border: 1px solid rgba(176, 101, 31, .3);
  border-radius: var(--radius); padding: 16px 20px; font-size: 13px; color: #6B4211; line-height: 1.6;
}
.callout {
  background: var(--paper-2); border: 1px solid var(--line); border-left: 3px solid var(--surgical);
  border-radius: 0 var(--radius) var(--radius) 0; padding: 22px 26px; margin: 28px 0;
}
.callout h3 { font-size: 19px; margin-bottom: 8px; }
.callout p { font-size: 14.5px; color: var(--muted); line-height: 1.65; }

.tiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.tile { background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 28px; }
.on-dark .tile { background: var(--slate-2); border-color: var(--line-dk); }
.tile h3 { margin-bottom: 9px; }
.tile p { font-size: 14px; color: var(--muted); line-height: 1.65; }
.on-dark .tile p { color: rgba(248, 245, 239, .72); }
.tile .k { font-family: var(--display); font-size: 32px; font-weight: 600; color: var(--surgical); line-height: 1; display: block; margin-bottom: 10px; }

.linklist { list-style: none; column-count: 3; column-gap: 32px; }
.linklist li { break-inside: avoid; padding: 6px 0; font-size: 14.5px; }
.linklist a { text-decoration: none; border-bottom: 1px solid transparent; }
.linklist a:hover { border-color: var(--surgical); }

/* --------------------------------------------------------------------------
   Final CTA + footer
   -------------------------------------------------------------------------- */
.final { background: var(--surgical); color: #fff; text-align: center; }
.final h2 { margin-bottom: 16px; }
.final .lede { color: rgba(255, 255, 255, .84); margin: 0 auto 32px; }
.final .btn--ghost { color: #fff; border-color: rgba(255, 255, 255, .4); }
.final .btn--ghost:hover { border-color: #fff; background: rgba(255, 255, 255, .1); }
.final .btn--pri { background: #fff; color: var(--surgical); }
.final .btn--pri:hover { background: var(--paper-2); }
.final-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

.foot { background: var(--ink); color: rgba(248, 245, 239, .65); padding: 56px 0 110px; font-size: 13.5px; }
.foot a { text-decoration: none; }
.foot a:hover { color: var(--paper-2); text-decoration: underline; }
.foot-top { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 36px; padding-bottom: 36px; border-bottom: 1px solid var(--line-dk); }
.foot h4 { font-family: var(--body); font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: rgba(248, 245, 239, .45); margin-bottom: 14px; font-weight: 700; }
.foot ul { list-style: none; }
.foot li { padding: 5px 0; }
.foot-brand .logo { color: var(--paper-2); }
.foot-brand .logo span { color: rgba(248, 245, 239, .45); }
.foot-brand p { margin-top: 16px; line-height: 1.7; max-width: 34ch; }
.foot-bottom { display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap; padding-top: 26px; font-size: 12.5px; color: rgba(248, 245, 239, .5); }
.foot-bottom nav { display: flex; gap: 18px; flex-wrap: wrap; }
.foot-disclaimer { margin-top: 18px; font-size: 11.5px; line-height: 1.7; color: rgba(248, 245, 239, .42); max-width: 90ch; }

/* --------------------------------------------------------------------------
   Mobile action bar
   -------------------------------------------------------------------------- */
.mobile-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 70; display: none;
  background: var(--ink); border-top: 1px solid var(--line-dk); padding: 10px; gap: 9px;
}
.mobile-bar .btn { flex: 1; padding: 15px 10px; font-size: 13.5px; }
/* The bar sits on --ink, so the ghost button needs the dark-surface treatment
   or its border and label disappear into the background. */
.mobile-bar .btn--ghost { color: var(--paper-2); border-color: var(--line-dk); }
.mobile-bar .btn--ghost:hover { border-color: var(--paper-2); background: rgba(255, 255, 255, .08); }

/* --------------------------------------------------------------------------
   Scroll reveal
   -------------------------------------------------------------------------- */
.rv { opacity: 0; transform: translateY(20px); transition: opacity .7s ease, transform .7s cubic-bezier(.2, .7, .3, 1); }
.rv.in { opacity: 1; transform: none; }
.no-js .rv { opacity: 1; transform: none; }

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 980px) {
  .hero .wrap { grid-template-columns: 1fr; gap: 44px; }
  .proc-hero .wrap { grid-template-columns: 1fr; gap: 34px; }
  .trust .wrap { grid-template-columns: repeat(2, 1fr); gap: 22px; }
  .fork { grid-template-columns: 1fr; }
  .fork-a { border-right: none; border-bottom: 1px solid var(--line); }
  .concerns, .pcards, .pcards--4 { grid-template-columns: 1fr 1fr; }
  .ggrid { grid-template-columns: 1fr 1fr; }
  .grid-2, .lgrid, .fitgrid, .iform, .tiles { grid-template-columns: 1fr; }
  .foot-top { grid-template-columns: 1fr 1fr; }
  .linklist { column-count: 2; }
  .navlinks { display: none; }
  .navlinks.open {
    display: flex; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: flex-start; gap: 0;
    background: var(--paper-2); border-bottom: 1px solid var(--line); padding: 8px 28px 18px;
  }
  .nav--dark .navlinks.open { background: var(--slate); }
  .navlinks.open a { padding: 13px 0; width: 100%; border-bottom: 1px solid var(--line); }
  .nav--dark .navlinks.open a { border-bottom-color: var(--line-dk); }
  .nav-toggle { display: block; }
  .nav .wrap { position: relative; }
}

@media (max-width: 640px) {
  .sec { padding: 58px 0; }
  .sec--tight { padding: 44px 0; }
  .wrap { padding: 0 20px; }
  .concerns, .pcards, .pcards--4, .ggrid { grid-template-columns: 1fr; }
  .facts { grid-template-columns: 1fr 1fr; }
  .prow { grid-template-columns: 1fr 1fr; gap: 12px; }
  .prow a { grid-column: 1 / -1; }
  .fork-panel { padding: 44px 24px; }
  .iform { padding: 30px 24px; }
  .postcard { grid-template-columns: 1fr; gap: 8px; }
  .foot-top { grid-template-columns: 1fr; }
  .foot { padding-bottom: 100px; }
  .linklist { column-count: 1; }
  .mobile-bar { display: flex; }
  .nav-cta .btn { display: none; }
  .faq .faq-a { padding-right: 0; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
  .rv { opacity: 1; transform: none; }
}

@media print {
  .nav, .topbar, .mobile-bar, .final, .iform, .review-bar { display: none !important; }
  body { background: #fff; }
  .rv { opacity: 1; transform: none; }
}
