/* ==========================================================================
   SANCTUARY — Design System
   Private hormone optimization & longevity. HNW/UHNW. Function-first.
   Dark charcoal + bone + bronze. Fraunces (display) + Inter (body).
   ========================================================================== */

:root {
  /* Color */
  --ink:        #101114;   /* near-black base */
  --ink-2:      #16181d;   /* panel */
  --ink-3:      #1d2026;   /* raised panel / hover */
  --bone:       #f3efe7;   /* warm off-white */
  --bone-2:     #e7e1d4;   /* dim bone */
  --paper:      #faf7f1;   /* light section bg */
  --bronze:     #b0875a;   /* primary accent (warm metallic) */
  --bronze-2:   #c8a574;   /* lighter bronze for text on dark */
  --bronze-deep:#8a6840;
  --text-dark:  #e9e6df;   /* body text on dark */
  --muted-dark: #9a968c;   /* muted on dark */
  --text-light: #23262c;   /* body text on light */
  --muted-light:#69655c;   /* muted on light */
  --line-dark:  rgba(243,239,231,.12);
  --line-light: rgba(16,17,20,.12);

  /* Type */
  --serif: "Fraunces", "Cormorant Garamond", Georgia, serif;
  --sans:  "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* Rhythm */
  --maxw: 1200px;
  --gut: clamp(20px, 5vw, 64px);
  --sp: clamp(64px, 9vw, 132px); /* section padding y */
  --radius: 4px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* Reset ------------------------------------------------------------------ */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  background: var(--ink);
  color: var(--text-dark);
  font-size: 17px;
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
::selection { background: var(--bronze); color: #fff; }

/* Type scale ------------------------------------------------------------- */
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 400; line-height: 1.08;
  letter-spacing: -.01em; font-optical-sizing: auto; }
h1 { font-size: clamp(2.6rem, 6.4vw, 5rem); }
h2 { font-size: clamp(2rem, 4.6vw, 3.4rem); }
h3 { font-size: clamp(1.4rem, 2.6vw, 2rem); }
h4 { font-size: clamp(1.15rem, 2vw, 1.4rem); }
p { max-width: 64ch; }

.eyebrow {
  font-family: var(--sans);
  font-size: .72rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--bronze-2);
  display: inline-block;
}
.eyebrow.on-light { color: var(--bronze-deep); }
.serif-accent { font-style: italic; color: var(--bronze-2); }
.lede { font-size: clamp(1.12rem, 1.7vw, 1.32rem); line-height: 1.6; color: var(--bone-2); }

/* Layout ----------------------------------------------------------------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gut); }
.section { padding: var(--sp) 0; }
.section.light { background: var(--paper); color: var(--text-light); }
.section.light .lede { color: var(--muted-light); }
.section.bone { background: var(--bone); color: var(--text-light); }
.center { text-align: center; }
.center p { margin-left: auto; margin-right: auto; }
.narrow { max-width: 760px; margin: 0 auto; }
.grid { display: grid; gap: clamp(20px, 3vw, 36px); }
.cols-2 { grid-template-columns: repeat(2, 1fr); }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cols-4 { grid-template-columns: repeat(4, 1fr); }
.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(32px, 6vw, 80px); align-items: center; }

/* Buttons ---------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; gap: .6em;
  font-family: var(--sans); font-size: .82rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  padding: 1.05em 2em; border-radius: 2px; border: 1px solid transparent;
  transition: all .35s var(--ease); cursor: pointer; line-height: 1;
}
.btn-primary { background: var(--bronze); color: #15110b; border-color: var(--bronze); }
.btn-primary:hover { background: var(--bronze-2); border-color: var(--bronze-2); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--bone); border-color: var(--line-dark); }
.btn-ghost:hover { border-color: var(--bronze-2); color: var(--bronze-2); }
.btn-ghost.on-light { color: var(--text-light); border-color: var(--line-light); }
.btn-ghost.on-light:hover { border-color: var(--bronze-deep); color: var(--bronze-deep); }
.btn .arrow { transition: transform .35s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

/* Header / Nav ----------------------------------------------------------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 22px 0; transition: all .4s var(--ease);
  background: linear-gradient(180deg, rgba(16,17,20,.85), rgba(16,17,20,0));
  backdrop-filter: blur(0px);
}
.site-header.scrolled {
  padding: 14px 0; background: rgba(14,15,18,.9);
  backdrop-filter: blur(14px); border-bottom: 1px solid var(--line-dark);
}
.nav { display: flex; align-items: center; justify-content: space-between; }
.brand { display: flex; flex-direction: column; line-height: 1; }
.brand .mark { font-family: var(--serif); font-size: 1.5rem; letter-spacing: .42em;
  color: var(--bone); padding-left: .42em; }
.brand .sub { font-family: var(--sans); font-size: .54rem; letter-spacing: .34em;
  text-transform: uppercase; color: var(--muted-dark); margin-top: 6px; padding-left: .1em; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { font-size: .82rem; letter-spacing: .04em; color: var(--bone-2);
  transition: color .25s; position: relative; }
.nav-links a:hover { color: var(--bronze-2); }
.nav-links .btn { padding: .85em 1.5em; }
.nav-toggle { display: none; background: none; border: none; color: var(--bone); flex-direction: column; gap: 5px; }
.nav-toggle span { width: 26px; height: 1.5px; background: var(--bone); transition: .3s; }

/* Hero ------------------------------------------------------------------- */
.hero {
  min-height: 100vh; display: flex; align-items: center; position: relative;
  padding: 140px 0 80px; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg::after { content:""; position: absolute; inset: 0;
  background: radial-gradient(120% 90% at 75% 10%, rgba(176,135,90,.16), transparent 55%),
              linear-gradient(180deg, rgba(16,17,20,.55) 0%, rgba(16,17,20,.82) 55%, var(--ink) 100%); }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(.15) brightness(.55); }
.hero-3d { position: absolute; inset: 0; z-index: 1; width: 100%; height: 100%; pointer-events: none; }
.hero-scrim { position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(95deg, var(--ink) 0%, rgba(16,17,20,.94) 36%, rgba(16,17,20,.45) 60%, rgba(16,17,20,.05) 82%); }
.hero-inner { position: relative; z-index: 2; max-width: 880px; }
@media (max-width: 900px) {
  .hero-scrim { background: linear-gradient(180deg, rgba(16,17,20,.35) 0%, rgba(16,17,20,.72) 45%, var(--ink) 88%); }
}
.hero h1 { margin: 26px 0 0; }
.hero .lede { margin: 30px 0 38px; max-width: 60ch; }
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.hero-note { font-size: .82rem; color: var(--muted-dark); margin-top: 26px; letter-spacing: .02em; }
.hero-note strong { color: var(--bronze-2); font-weight: 600; }

/* Hero split: copy + couple visual + optimization report ----------------- */
.hero-grid { display: grid; grid-template-columns: 1.02fr .98fr; gap: clamp(30px,5vw,66px);
  align-items: center; width: 100%; position: relative; z-index: 2; }
.hero-visual { position: relative; }
.hero-couple { border-radius: 8px; overflow: hidden; aspect-ratio: 4/5; border: 1px solid var(--line-dark);
  box-shadow: 0 50px 90px -30px rgba(0,0,0,.7); }
.hero-couple img { width: 100%; height: 100%; object-fit: cover; }

.report-card { position: absolute; left: clamp(-30px,-2.4vw,-14px); bottom: 26px; width: min(312px,80%);
  background: rgba(18,20,25,.82); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(200,165,116,.3); border-radius: 10px; padding: 20px 22px 18px;
  box-shadow: 0 30px 70px -20px rgba(0,0,0,.7); }
.rc-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.rc-title { font-size: .7rem; letter-spacing: .16em; text-transform: uppercase; color: var(--bone); font-weight: 600; }
.rc-badge { font-size: .58rem; letter-spacing: .14em; text-transform: uppercase; color: var(--bronze-2);
  border: 1px solid rgba(200,165,116,.4); border-radius: 100px; padding: 4px 9px; display: inline-flex; align-items: center; gap: 6px; }
.rc-badge::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--bronze-2);
  box-shadow: 0 0 0 0 rgba(200,165,116,.6); animation: rc-pulse 2s infinite; }
@keyframes rc-pulse { 0%{box-shadow:0 0 0 0 rgba(200,165,116,.5)} 70%{box-shadow:0 0 0 7px rgba(200,165,116,0)} 100%{box-shadow:0 0 0 0 rgba(200,165,116,0)} }
.rc-score { display: flex; align-items: center; gap: 16px; margin-bottom: 18px; }
.donut { width: 78px; height: 78px; flex: none; transform: rotate(-90deg); }
.donut-track { fill: none; stroke: rgba(243,239,231,.12); stroke-width: 9; }
.donut-val { fill: none; stroke: var(--bronze); stroke-width: 9; stroke-linecap: round;
  stroke-dasharray: 327; stroke-dashoffset: 327; transition: stroke-dashoffset 1.7s var(--ease); }
.report-card.in .donut-val { stroke-dashoffset: 33; }
.rc-score-num { line-height: 1; }
.rc-score-num b { font-family: var(--serif); font-size: 2.1rem; color: var(--bone); font-weight: 500; }
.rc-score-num b::after { content: "%"; font-size: 1.1rem; color: var(--bronze-2); margin-left: 1px; }
.rc-score-num small { display: block; font-size: .68rem; letter-spacing: .08em; text-transform: uppercase; color: var(--muted-dark); margin-top: 6px; }
.rc-metric { margin-bottom: 12px; }
.rc-metric:last-child { margin-bottom: 0; }
.rc-metric .rc-label { display: flex; justify-content: space-between; font-size: .72rem; color: var(--bone-2); margin-bottom: 6px; }
.rc-metric .rc-label span:last-child { color: var(--bronze-2); }
.rc-bar { height: 5px; background: rgba(243,239,231,.1); border-radius: 100px; position: relative; overflow: hidden; }
.rc-bar i { position: absolute; inset: 0 auto 0 0; width: 0; background: linear-gradient(90deg,var(--bronze-deep),var(--bronze-2));
  border-radius: 100px; transition: width 1.5s var(--ease); }
.report-card.in .rc-bar i { width: var(--to); }
.rc-foot { font-size: .66rem; color: var(--muted-dark); margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--line-dark); letter-spacing: .03em; }

/* Decorative rule / kicker ---------------------------------------------- */
.rule { width: 56px; height: 1px; background: var(--bronze); display: inline-block; }
.section-head { max-width: 720px; margin-bottom: clamp(40px, 6vw, 70px); }
.section-head.center { margin-left: auto; margin-right: auto; }
.section-head h2 { margin-top: 18px; }
.section-head p { margin-top: 20px; }

/* Pillar cards ----------------------------------------------------------- */
.pillar {
  background: var(--ink-2); border: 1px solid var(--line-dark); border-radius: var(--radius);
  padding: clamp(28px, 3vw, 42px); transition: all .4s var(--ease); position: relative; overflow: hidden;
  display: flex; flex-direction: column;
}
.pillar:hover { border-color: rgba(176,135,90,.5); transform: translateY(-4px); background: var(--ink-3); }
.pillar .num { font-family: var(--serif); font-size: .9rem; color: var(--bronze-2); letter-spacing: .1em; }
.pillar h3 { margin: 16px 0 14px; }
.pillar p { color: var(--muted-dark); font-size: .98rem; flex: 1; }
.pillar .more { margin-top: 24px; font-size: .76rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--bronze-2); font-weight: 600; }
.pillar.secondary { background: transparent; border-style: dashed; }

/* Benefit ladder (function-first) --------------------------------------- */
.benefits { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--line-dark);
  border: 1px solid var(--line-dark); border-radius: var(--radius); overflow: hidden; }
.benefit { background: var(--ink); padding: clamp(26px,2.6vw,38px); }
.benefit .ic { width: 30px; height: 30px; color: var(--bronze-2); margin-bottom: 18px; }
.benefit h4 { font-family: var(--sans); font-size: .82rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--bone); font-weight: 600; }
.benefit p { font-size: .92rem; color: var(--muted-dark); margin-top: 10px; }

/* Stats ------------------------------------------------------------------ */
.stats { display: grid; grid-template-columns: repeat(4,1fr); gap: clamp(20px,3vw,40px); }
.stat { text-align: center; }
.stat .n { font-family: var(--serif); font-size: clamp(2.4rem,4vw,3.4rem); color: var(--bronze-2); line-height: 1; }
.stat .l { font-size: .76rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted-dark); margin-top: 12px; }

/* Method / process steps ------------------------------------------------- */
.steps { display: grid; gap: 0; }
.step { display: grid; grid-template-columns: 90px 1fr; gap: clamp(20px,4vw,48px);
  padding: clamp(28px,4vw,46px) 0; border-top: 1px solid var(--line-dark); align-items: start; }
.step:last-child { border-bottom: 1px solid var(--line-dark); }
.step .s-num { font-family: var(--serif); font-size: clamp(1.6rem,3vw,2.4rem); color: var(--bronze); }
.step h3 { margin-bottom: 12px; }
.step p { color: var(--muted-dark); }

/* Quote / testimonial ---------------------------------------------------- */
.quote { border-left: 2px solid var(--bronze); padding-left: clamp(24px,3vw,40px); }
.quote p { font-family: var(--serif); font-size: clamp(1.3rem,2.4vw,1.9rem); line-height: 1.45;
  font-style: italic; color: var(--bone); }
.quote .by { font-family: var(--sans); font-style: normal; font-size: .8rem; letter-spacing: .1em;
  text-transform: uppercase; color: var(--muted-dark); margin-top: 22px; }
.testi-grid .t { background: var(--ink-2); border: 1px solid var(--line-dark); padding: clamp(26px,3vw,38px);
  border-radius: var(--radius); }
.testi-grid .t p { font-family: var(--serif); font-style: italic; font-size: 1.12rem; color: var(--bone); line-height: 1.5; }
.testi-grid .t .by { margin-top: 20px; font-size: .76rem; letter-spacing: .12em; text-transform: uppercase; color: var(--bronze-2); }
.stars { color: var(--bronze); letter-spacing: 2px; font-size: .85rem; margin-bottom: 14px; }

/* Featured / trust bar --------------------------------------------------- */
.trust-bar { display: flex; align-items: center; justify-content: center; gap: clamp(28px,5vw,64px);
  flex-wrap: wrap; opacity: .7; }
.trust-bar span { font-size: .78rem; letter-spacing: .18em; text-transform: uppercase; color: var(--muted-dark); }

/* Package tiers ---------------------------------------------------------- */
.tiers { display: grid; grid-template-columns: repeat(3,1fr); gap: clamp(20px,2.4vw,28px); align-items: stretch; }
.tier { background: var(--ink-2); border: 1px solid var(--line-dark); border-radius: var(--radius);
  padding: clamp(30px,3vw,44px); display: flex; flex-direction: column; }
.tier.featured { border-color: var(--bronze); background: linear-gradient(180deg, rgba(176,135,90,.08), var(--ink-2)); }
.tier .tier-tag { font-size: .68rem; letter-spacing: .2em; text-transform: uppercase; color: var(--bronze-2); font-weight: 600; }
.tier h3 { margin: 14px 0 6px; }
.tier .tier-for { font-size: .92rem; color: var(--muted-dark); min-height: 48px; }
.tier .price { font-family: var(--serif); font-size: 1.05rem; color: var(--bone-2); margin: 20px 0; padding-top: 20px; border-top: 1px solid var(--line-dark); }
.tier .price small { display:block; font-family: var(--sans); font-size: .72rem; letter-spacing:.04em; color: var(--muted-dark); text-transform: none; margin-top: 6px; }
.tier ul { list-style: none; margin: 4px 0 28px; display: grid; gap: 12px; }
.tier li { font-size: .94rem; color: var(--text-dark); padding-left: 26px; position: relative; }
.tier li::before { content: ""; position: absolute; left: 0; top: 9px; width: 12px; height: 6px;
  border-left: 1.5px solid var(--bronze); border-bottom: 1.5px solid var(--bronze); transform: rotate(-45deg); }
.tier .btn { margin-top: auto; justify-content: center; }

/* Feature list with checks ---------------------------------------------- */
.checklist { list-style: none; display: grid; gap: 16px; }
.checklist li { padding-left: 34px; position: relative; color: var(--text-dark); }
.checklist li::before { content: ""; position: absolute; left: 0; top: 7px; width: 16px; height: 8px;
  border-left: 2px solid var(--bronze); border-bottom: 2px solid var(--bronze); transform: rotate(-45deg); }
.section.light .checklist li, .section.bone .checklist li { color: var(--text-light); }

/* FAQ accordion ---------------------------------------------------------- */
.faq-item { border-top: 1px solid var(--line-dark); }
.faq-item:last-child { border-bottom: 1px solid var(--line-dark); }
.faq-q { width: 100%; background: none; border: none; color: var(--bone); text-align: left;
  font-family: var(--serif); font-size: clamp(1.15rem,2vw,1.5rem); padding: 28px 50px 28px 0;
  position: relative; display: flex; justify-content: space-between; align-items: center; gap: 20px; }
.faq-q .pm { position: absolute; right: 4px; width: 18px; height: 18px; flex: none; }
.faq-q .pm::before, .faq-q .pm::after { content:""; position:absolute; background: var(--bronze); transition: .3s; }
.faq-q .pm::before { width: 18px; height: 1.5px; top: 8px; }
.faq-q .pm::after { height: 18px; width: 1.5px; left: 8px; }
.faq-item.open .pm::after { transform: scaleY(0); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq-a-inner { padding: 0 50px 30px 0; color: var(--muted-dark); }
.faq-a-inner p { max-width: 72ch; }

/* Forms ------------------------------------------------------------------ */
.form-card { background: var(--ink-2); border: 1px solid var(--line-dark); border-radius: var(--radius);
  padding: clamp(30px,4vw,52px); }
.field { margin-bottom: 22px; }
.field label { display: block; font-size: .74rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--muted-dark); margin-bottom: 9px; font-weight: 600; }
.field input, .field select, .field textarea {
  width: 100%; background: var(--ink); border: 1px solid var(--line-dark); border-radius: 2px;
  color: var(--bone); font-family: var(--sans); font-size: 1rem; padding: 14px 16px; transition: border .25s; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--bronze); }
.field textarea { min-height: 120px; resize: vertical; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-fine { font-size: .78rem; color: var(--muted-dark); margin-top: 18px; line-height: 1.5; }

/* Image treatments ------------------------------------------------------- */
.media { border-radius: var(--radius); overflow: hidden; position: relative; }
.media img { width: 100%; height: 100%; object-fit: cover; }
.media.tall img { aspect-ratio: 4/5; }
.media.wide img { aspect-ratio: 16/10; }
.media.duo { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.ba-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.ba-grid figure { border: 1px solid var(--line-dark); border-radius: var(--radius); overflow: hidden; background: var(--ink-2); }
.ba-grid figcaption { font-size: .78rem; color: var(--muted-dark); padding: 12px 16px; letter-spacing: .04em; }

/* CTA band --------------------------------------------------------------- */
.cta-band { background: linear-gradient(180deg, var(--ink-2), var(--ink)); border-top: 1px solid var(--line-dark);
  text-align: center; }
.cta-band h2 { max-width: 18ch; margin: 18px auto 24px; }
.cta-band .lede { margin: 0 auto 36px; }

/* Footer ----------------------------------------------------------------- */
.site-footer { background: #0b0c0e; padding: clamp(60px,7vw,90px) 0 40px; border-top: 1px solid var(--line-dark); }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: clamp(28px,4vw,56px); }
.footer-brand .mark { font-family: var(--serif); font-size: 1.5rem; letter-spacing: .4em; color: var(--bone); }
.footer-brand p { color: var(--muted-dark); font-size: .92rem; margin-top: 18px; }
.footer-col h5 { font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: var(--bronze-2); margin-bottom: 18px; font-weight: 600; }
.footer-col a, .footer-col p { display: block; color: var(--muted-dark); font-size: .92rem; margin-bottom: 12px; transition: color .25s; }
.footer-col a:hover { color: var(--bronze-2); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 20px;
  margin-top: clamp(40px,5vw,64px); padding-top: 28px; border-top: 1px solid var(--line-dark);
  font-size: .78rem; color: var(--muted-dark); flex-wrap: wrap; }
.footer-bottom a:hover { color: var(--bronze-2); }
.disclaimer { font-size: .76rem; color: #6a665d; line-height: 1.6; margin-top: 24px; max-width: 100%; }

/* Breadcrumb / page hero (interior) ------------------------------------- */
.page-hero { padding: 170px 0 clamp(40px,6vw,70px); position: relative; overflow: hidden; }
.page-hero .eyebrow { margin-bottom: 18px; }
.page-hero h1 { max-width: 18ch; }
.page-hero .lede { margin-top: 24px; max-width: 60ch; }
.page-hero.has-bg { padding-top: 200px; padding-bottom: clamp(60px,8vw,110px); }
.page-hero .ph-bg { position: absolute; inset: 0; z-index: 0; }
.page-hero .ph-bg img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(.2) brightness(.5); }
.page-hero .ph-bg::after { content: ""; position: absolute; inset: 0;
  background: linear-gradient(110deg, rgba(16,17,20,.92) 28%, rgba(16,17,20,.6) 70%, rgba(16,17,20,.85)),
              radial-gradient(70% 80% at 85% 25%, rgba(176,135,90,.16), transparent 60%); }
.page-hero .wrap { position: relative; z-index: 2; }
.breadcrumb { font-size: .76rem; letter-spacing: .08em; color: var(--muted-dark); margin-bottom: 28px; }
.breadcrumb a:hover { color: var(--bronze-2); }

/* Prose (blog) ----------------------------------------------------------- */
.prose { max-width: 720px; margin: 0 auto; }
.prose p, .prose ul, .prose ol { font-size: 1.08rem; color: var(--text-dark); margin-bottom: 26px; }
.prose h2 { margin: 50px 0 20px; }
.prose h3 { margin: 38px 0 16px; }
.prose ul, .prose ol { padding-left: 24px; }
.prose li { margin-bottom: 10px; }
.prose blockquote { border-left: 2px solid var(--bronze); padding-left: 26px; margin: 34px 0;
  font-family: var(--serif); font-style: italic; font-size: 1.3rem; color: var(--bone); }
.prose a { color: var(--bronze-2); text-decoration: underline; text-underline-offset: 3px; }
.post-meta { font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; color: var(--muted-dark); }

/* Article cards ---------------------------------------------------------- */
.post-card { background: var(--ink-2); border: 1px solid var(--line-dark); border-radius: var(--radius);
  overflow: hidden; transition: all .4s var(--ease); display: flex; flex-direction: column; }
.post-card:hover { border-color: rgba(176,135,90,.5); transform: translateY(-4px); }
.post-card .pc-body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.post-card .pc-tag { font-size: .7rem; letter-spacing: .16em; text-transform: uppercase; color: var(--bronze-2); font-weight: 600; }
.post-card h3 { margin: 14px 0 12px; font-size: 1.35rem; }
.post-card p { color: var(--muted-dark); font-size: .94rem; flex: 1; }
.post-card .more { margin-top: 20px; font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; color: var(--bronze-2); font-weight: 600; }

/* Reveal animation ------------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } html { scroll-behavior: auto; } }

/* Utilities -------------------------------------------------------------- */
.mt-s { margin-top: 20px; } .mt-m { margin-top: 36px; } .mt-l { margin-top: 56px; }
.mb-0 { margin-bottom: 0; }
.maxw-sm { max-width: 560px; }
.bronze { color: var(--bronze-2); }
.tag-row { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 20px; }
.tag { font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted-dark);
  border: 1px solid var(--line-dark); border-radius: 100px; padding: 7px 16px; }

/* Responsive ------------------------------------------------------------- */
@media (max-width: 960px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .split { grid-template-columns: 1fr; }
  .split .media { order: -1; }
  .hero-grid { grid-template-columns: 1fr; gap: 44px; }
  .hero-visual { max-width: 460px; width: 100%; margin: 0 auto; }
  .report-card { width: min(300px, 84%); left: -10px; bottom: 18px; }
  .cols-4 { grid-template-columns: repeat(2,1fr); }
  .stats { grid-template-columns: repeat(2,1fr); gap: 36px 20px; }
}
@media (max-width: 760px) {
  body { font-size: 16px; }
  .nav-links { position: fixed; inset: 0 0 0 auto; width: min(80vw, 340px); flex-direction: column;
    align-items: flex-start; justify-content: center; gap: 26px; background: var(--ink-2);
    padding: 40px; transform: translateX(100%); transition: transform .4s var(--ease); border-left: 1px solid var(--line-dark); }
  .nav-links.open { transform: none; }
  .nav-toggle { display: flex; z-index: 110; }
  .nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
  .cols-2, .cols-3, .cols-4, .tiers, .benefits, .ba-grid, .testi-grid .grid { grid-template-columns: 1fr; }
  .benefits { border: 1px solid var(--line-dark); }
  .field-row { grid-template-columns: 1fr; }
  .step { grid-template-columns: 50px 1fr; gap: 18px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .hero { min-height: 92vh; }
}
