/* =========================================================================
   Turner CPA & Consulting — landing page styles
   Palette derived from brand logo: deep near-black green, antique gold,
   muted sage, cream/ivory.
   To recolor: change the tokens in :root. Everything else inherits.
   ========================================================================= */

:root {
  /* Brand palette */
  --c-ink:        #0E1612;   /* deep near-black green (page background)   */
  --c-ink-2:      #131D18;   /* slightly lifted ink (cards on dark)       */
  --c-ink-3:      #1A2620;   /* hover / elevated dark surface             */
  --c-forest:     #16241D;   /* deep section base                          */
  --c-gold:       #C9A24B;   /* antique gold (primary accent)              */
  --c-gold-soft:  #B4903F;   /* hover gold                                 */
  --c-gold-faint: #6E5520;   /* hairline gold                              */
  --c-sage:       #8FA38A;   /* muted sage                                 */
  --c-sage-deep:  #5F7D69;   /* deeper sage for icons                      */
  --c-cream:      #F4ECDA;   /* cream / ivory                              */
  --c-cream-2:    #E9DEC4;   /* warm cream                                 */
  --c-paper:      #F6F1E4;   /* light section background                   */
  --c-paper-2:    #EFE7D4;   /* alt light section                          */
  --c-line:       rgba(201,162,75,0.22);  /* subtle gold hairline          */
  --c-line-strong:rgba(201,162,75,0.45);
  --c-line-dark:  rgba(20,30,24,0.14);

  /* Text */
  --t-on-dark:        #ECE3CC;
  --t-on-dark-mute:   rgba(236,227,204,0.74);
  --t-on-dark-faint:  rgba(236,227,204,0.55);
  --t-on-light:       #1B2620;
  --t-on-light-mute:  #4A574F;

  /* Type */
  --font-display: "Cormorant Garamond", "Source Serif Pro", Georgia, "Times New Roman", serif;
  --font-body:    "General Sans", "Satoshi", "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  /* Spacing */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-8: 32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-16: 64px;
  --space-20: 80px;
  --space-24: 96px;
  --space-32: 128px;

  /* Sizes */
  --text-xs: clamp(11px, 0.72rem + 0.05vw, 12.5px);
  --text-sm: clamp(13px, 0.82rem + 0.08vw, 14.5px);
  --text-base: clamp(15.5px, 0.95rem + 0.12vw, 17px);
  --text-lg: clamp(18px, 1.05rem + 0.25vw, 20px);
  --text-xl: clamp(22px, 1.3rem + 0.6vw, 30px);
  --text-2xl: clamp(28px, 1.6rem + 1.4vw, 44px);
  --text-hero: clamp(32px, 1.5rem + 3vw, 64px);

  --radius: 2px; /* sharp, ledger-like */
  --radius-md: 4px;

  --max-w: 1240px;

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

/* ---------- Base / reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--c-ink);
  color: var(--t-on-dark);
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
:focus-visible {
  outline: 2px solid var(--c-gold);
  outline-offset: 3px;
  border-radius: 2px;
}
.skip {
  position: absolute; left: -9999px; top: 0;
  background: var(--c-gold); color: var(--c-ink);
  padding: 10px 14px; font-weight: 600; z-index: 100;
}
.skip:focus { left: 12px; top: 12px; }

.container {
  width: min(100% - 40px, var(--max-w));
  margin-inline: auto;
}
@media (min-width: 768px) {
  .container { width: min(100% - 64px, var(--max-w)); }
}

/* ---------- Type ---------- */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 500; line-height: 1.12; letter-spacing: -0.005em; margin: 0; }
.italic { font-style: italic; color: var(--c-gold); }

p { margin: 0 0 1em; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body); font-weight: 500;
  font-size: var(--text-xs);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin: 0 0 var(--space-5);
}
.eyebrow-dot {
  width: 6px; height: 6px; background: var(--c-gold);
  display: inline-block; transform: rotate(45deg);
}
.eyebrow-light { color: var(--c-gold); }

.section-title {
  font-size: var(--text-2xl);
  max-width: 22ch;
  color: var(--t-on-light);
}
.section-title.light { color: var(--c-cream); max-width: 26ch; }

.section-lede {
  font-size: var(--text-lg);
  color: var(--t-on-light-mute);
  max-width: 60ch;
  margin-top: var(--space-5);
  line-height: 1.55;
}
.section-lede.light { color: var(--t-on-dark-mute); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: var(--radius);
  transition: background .25s var(--ease-out), color .25s var(--ease-out), border-color .25s var(--ease-out), transform .25s var(--ease-out);
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary {
  background: var(--c-gold); color: var(--c-ink);
  border-color: var(--c-gold);
}
.btn-primary:hover { background: var(--c-gold-soft); border-color: var(--c-gold-soft); }
.btn-ghost {
  background: transparent; color: var(--c-cream);
  border-color: rgba(236,227,204,0.28);
}
.btn-ghost:hover { border-color: var(--c-gold); color: var(--c-gold); }
.btn-lg { padding: 18px 26px; font-size: var(--text-base); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(14,22,18,0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: background .3s var(--ease-out), box-shadow .3s var(--ease-out);
}
.site-header.is-scrolled {
  background: rgba(14,22,18,0.94);
  box-shadow: 0 1px 0 var(--c-line);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 0;
  gap: var(--space-6);
}
.brand { display: flex; align-items: center; gap: 14px; }
.brand-mark {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--c-line-strong);
  background: var(--c-ink);
  object-fit: cover;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name {
  font-family: var(--font-display);
  font-size: 17px;
  letter-spacing: 0.01em;
  color: var(--c-cream);
  white-space: nowrap;
}
.brand-sub {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-top: 2px;
  white-space: nowrap;
}
@media (max-width: 480px) {
  .brand-name { font-size: 15px; }
  .brand-sub { letter-spacing: 0.16em; font-size: 9.5px; }
}

.nav { display: none; align-items: center; gap: var(--space-8); }
.nav a {
  font-size: var(--text-sm);
  color: var(--t-on-dark-mute);
  font-weight: 500;
  letter-spacing: 0.02em;
  position: relative;
  padding: 6px 0;
  transition: color .25s var(--ease-out);
}
.nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 1px; background: var(--c-gold);
  transform: scaleX(0); transform-origin: left; transition: transform .35s var(--ease-out);
}
.nav a:hover { color: var(--c-cream); }
.nav a:hover::after { transform: scaleX(1); }
.nav .nav-cta {
  color: var(--c-ink); background: var(--c-gold);
  padding: 9px 16px; border-radius: var(--radius);
  font-weight: 600;
}
.nav .nav-cta::after { display: none; }
.nav .nav-cta:hover { background: var(--c-gold-soft); color: var(--c-ink); }

@media (min-width: 960px) { .nav { display: flex; } }

.hairline {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--c-line-strong) 20%, var(--c-line-strong) 80%, transparent);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: clamp(56px, 9vw, 120px) 0 clamp(64px, 9vw, 110px);
  overflow: hidden;
  isolation: isolate;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(201,162,75,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,162,75,0.05) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at 65% 30%, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at 65% 30%, black 0%, transparent 70%);
  z-index: -2;
}
.hero-glow {
  position: absolute; inset: 0;
  background:
    radial-gradient(60% 50% at 80% 20%, rgba(201,162,75,0.10), transparent 70%),
    radial-gradient(50% 50% at 10% 90%, rgba(143,163,138,0.08), transparent 70%);
  z-index: -1;
}

.hero-inner {
  display: grid; gap: var(--space-16);
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 980px) {
  .hero-inner { grid-template-columns: 1.25fr 1fr; gap: var(--space-24); }
}

.hero-title {
  font-size: var(--text-hero);
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--c-cream);
  margin-bottom: var(--space-6);
  line-height: 1.05;
  max-width: 18ch;
}
@media (max-width: 640px) {
  .hero-title { max-width: none; line-height: 1.1; }
}
.hero-lede {
  font-size: var(--text-lg);
  color: var(--t-on-dark-mute);
  max-width: 58ch;
  line-height: 1.55;
}

.hero-ctas {
  display: flex; flex-wrap: wrap; gap: var(--space-3);
  margin: var(--space-8) 0 var(--space-12);
}
.hero-meta {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: var(--space-3);
  grid-template-columns: repeat(2, minmax(0,1fr));
  border-top: 1px solid var(--c-line);
  padding-top: var(--space-6);
}
@media (min-width: 640px) { .hero-meta { grid-template-columns: repeat(4, minmax(0,1fr)); } }
.hero-meta li {
  font-size: var(--text-xs);
  color: var(--t-on-dark-mute);
  line-height: 1.4;
}
.hero-meta li span {
  display: block;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 4px;
}

/* Hero seal */
.hero-seal {
  position: relative;
  display: flex; flex-direction: column; align-items: center;
  justify-self: center;
}
.seal-ring {
  width: min(420px, 80vw);
  aspect-ratio: 1/1;
  border-radius: 50%;
  padding: 18px;
  border: 1px solid var(--c-line-strong);
  background:
    radial-gradient(circle at center, rgba(201,162,75,0.07), transparent 65%),
    var(--c-ink-2);
  position: relative;
  display: grid; place-items: center;
  box-shadow:
    inset 0 0 0 1px rgba(201,162,75,0.10),
    0 30px 60px -30px rgba(0,0,0,0.6);
}
.seal-ring::before, .seal-ring::after {
  content: ""; position: absolute; inset: 8px;
  border-radius: 50%;
  border: 1px dashed rgba(201,162,75,0.18);
  pointer-events: none;
}
.seal-ring::after {
  inset: 28px;
  border: 1px solid rgba(201,162,75,0.12);
  border-style: solid;
}
.seal-ring img {
  width: 88%; height: 88%;
  border-radius: 50%;
  object-fit: cover;
}
.seal-caption {
  display: flex; align-items: center; gap: 14px;
  margin-top: var(--space-6);
  font-size: var(--text-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-gold);
}
.seal-line {
  display: block; height: 1px; width: 40px;
  background: var(--c-line-strong);
}

/* ---------- Executive brief ---------- */
.brief {
  background: #0A110E;
  border-block: 1px solid var(--c-line);
  color: var(--t-on-dark);
}
.brief-grid {
  display: grid;
  gap: var(--space-6);
  align-items: center;
  padding: var(--space-8) 0;
}
@media (min-width: 900px) {
  .brief-grid { grid-template-columns: 0.75fr 1.35fr auto; gap: var(--space-10); }
}
.brief-kicker {
  font-family: var(--font-display);
  color: var(--c-gold);
  font-size: var(--text-lg);
  line-height: 1.25;
}
.brief-copy p {
  margin: 0;
  color: var(--t-on-dark-mute);
  font-size: var(--text-sm);
  line-height: 1.65;
}
.brief-link {
  justify-self: start;
  color: var(--c-cream);
  border: 1px solid var(--c-line-strong);
  padding: 12px 16px;
  font-size: var(--text-sm);
  font-weight: 600;
  transition: border-color .25s var(--ease-out), color .25s var(--ease-out), background .25s var(--ease-out);
}
.brief-link:hover {
  border-color: var(--c-gold);
  color: var(--c-gold);
  background: rgba(201,162,75,0.04);
}

/* ---------- Trust bar ---------- */
.trust {
  background: var(--c-ink-2);
  border-block: 1px solid var(--c-line);
}
.trust-inner {
  display: grid; gap: var(--space-6);
  grid-template-columns: 1fr;
  padding: var(--space-8) 0;
}
@media (min-width: 720px) { .trust-inner { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .trust-inner { grid-template-columns: repeat(4, 1fr); padding: var(--space-10) 0; } }
.trust-item {
  display: flex; align-items: center; gap: 14px;
  font-size: var(--text-sm);
  color: var(--t-on-dark);
  letter-spacing: 0.01em;
}
.trust-num {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--c-gold);
  border: 1px solid var(--c-line-strong);
  padding: 4px 8px;
  letter-spacing: 0.05em;
  min-width: 36px; text-align: center;
}

/* ---------- Sections (general) ---------- */
.section {
  padding: clamp(80px, 11vw, 140px) 0;
  position: relative;
}
.section-head { max-width: 880px; margin-bottom: var(--space-16); }
.split-head {
  max-width: none;
  display: grid;
  gap: var(--space-8);
  align-items: end;
}
@media (min-width: 980px) {
  .split-head { grid-template-columns: 1fr 0.85fr; }
  .split-head .section-lede { margin-top: 0; }
}

.section-alt {
  background: var(--c-paper);
  color: var(--t-on-light);
}
.section-alt .section-title { color: var(--t-on-light); }
.section-alt .eyebrow { color: #8b6a1c; }
.section-alt .eyebrow-dot { background: #8b6a1c; }

/* Sections on the light "paper" need light-mode text contrast */
.section:not(.section-deep):not(.contact):not(.founder) {
  background: var(--c-paper);
  color: var(--t-on-light);
}
.section:not(.section-deep):not(.contact):not(.founder) .section-title { color: var(--t-on-light); }
.section:not(.section-deep):not(.contact):not(.founder) .eyebrow { color: #8b6a1c; }
.section:not(.section-deep):not(.contact):not(.founder) .eyebrow-dot { background: #8b6a1c; }

/* deep dark section */
.section-deep {
  background:
    radial-gradient(80% 60% at 50% 0%, rgba(201,162,75,0.06), transparent 70%),
    var(--c-forest);
  color: var(--t-on-dark);
  border-block: 1px solid var(--c-line);
}

/* Grid utility */
.grid { display: grid; gap: var(--space-6); }

/* ---------- Situation routes ---------- */
.routes {
  border-bottom: 1px solid var(--c-line-dark);
}
.route-grid {
  display: grid;
  gap: var(--space-5);
  grid-template-columns: 1fr;
}
@media (min-width: 760px) { .route-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1120px) { .route-grid { grid-template-columns: repeat(4, 1fr); } }
.route-card {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.55), rgba(255,255,255,0.18)),
    var(--c-paper-2);
  border: 1px solid var(--c-line-dark);
  padding: var(--space-8) var(--space-6);
  min-height: 100%;
  position: relative;
}
.route-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 2px;
  background: linear-gradient(to right, var(--c-gold), transparent);
  opacity: .75;
}
.route-label {
  display: inline-block;
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #8b6a1c;
  border: 1px solid rgba(139,106,28,.28);
  padding: 4px 8px;
  margin-bottom: var(--space-5);
}
.route-card h3 {
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--t-on-light);
  margin-bottom: var(--space-3);
}
.route-card p {
  font-size: var(--text-sm);
  color: var(--t-on-light-mute);
  line-height: 1.62;
  margin: 0;
}

/* ---------- Services ---------- */
.services-grid {
  grid-template-columns: 1fr;
}
@media (min-width: 720px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .services-grid { grid-template-columns: repeat(4, 1fr); } }

.card {
  background: var(--c-paper-2);
  border: 1px solid var(--c-line-dark);
  padding: var(--space-8) var(--space-6) var(--space-6);
  position: relative;
  transition: transform .35s var(--ease-out), border-color .35s var(--ease-out), background .35s var(--ease-out);
}
.card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(to right, transparent, var(--c-gold) 50%, transparent);
  opacity: 0.5;
}
.card:hover {
  transform: translateY(-3px);
  border-color: var(--c-gold);
  background: #F2EAD7;
}
.card-num {
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.2em;
  color: var(--c-gold-faint);
  margin-bottom: var(--space-4);
}
.card h3 {
  font-size: var(--text-lg);
  font-weight: 600;
  font-family: var(--font-display);
  color: var(--t-on-light);
  margin-bottom: var(--space-3);
  line-height: 1.2;
}
.card p {
  font-size: var(--text-sm);
  color: var(--t-on-light-mute);
  line-height: 1.6;
}
.card-list {
  list-style: none; padding: 0; margin: var(--space-4) 0 0;
  border-top: 1px solid var(--c-line-dark);
  padding-top: var(--space-4);
}
.card-list li {
  font-size: 13px;
  color: var(--t-on-light-mute);
  padding: 5px 0 5px 18px;
  position: relative;
  line-height: 1.45;
}
.card-list li::before {
  content: ""; position: absolute; left: 0; top: 13px;
  width: 8px; height: 1px; background: var(--c-gold);
}

/* ---------- Who we serve ---------- */
.who-grid {
  display: grid; gap: var(--space-12);
  grid-template-columns: 1fr;
}
@media (min-width: 980px) {
  .who-grid { grid-template-columns: 0.9fr 1.1fr; gap: var(--space-20); align-items: start; }
}
.who-copy p {
  font-size: var(--text-base);
  color: var(--t-on-light-mute);
  line-height: 1.7;
  max-width: 50ch;
  margin-top: var(--space-5);
}
.who-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 0; }
.who-list li {
  padding: var(--space-6) 0;
  border-top: 1px solid var(--c-line-dark);
}
.who-list li:last-child { border-bottom: 1px solid var(--c-line-dark); }
.who-list h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--t-on-light);
  margin-bottom: 6px;
}
.who-list p {
  font-size: var(--text-sm);
  color: var(--t-on-light-mute);
  line-height: 1.55;
  margin: 0;
}

/* ---------- Differentiators ---------- */
.diff-grid {
  grid-template-columns: 1fr;
}
@media (min-width: 720px) { .diff-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .diff-grid { grid-template-columns: repeat(3, 1fr); } }

.diff {
  padding: var(--space-8);
  background: #FBF6E8;
  border: 1px solid var(--c-line-dark);
  position: relative;
  transition: border-color .3s var(--ease-out), background .3s var(--ease-out);
}
.diff:hover { border-color: var(--c-gold); background: #F8F0DA; }
.diff-mark {
  color: var(--c-gold-soft);
  margin-bottom: var(--space-5);
  display: inline-flex;
  border: 1px solid var(--c-line-strong);
  padding: 10px;
  border-radius: 50%;
}
.diff h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--t-on-light);
  margin-bottom: var(--space-3);
}
.diff p {
  font-size: var(--text-sm);
  color: var(--t-on-light-mute);
  line-height: 1.6;
  margin: 0;
}

/* ---------- Credential ledger ---------- */
.ledger {
  background:
    radial-gradient(70% 60% at 85% 20%, rgba(201,162,75,0.07), transparent 65%),
    #0A110E;
  color: var(--t-on-dark);
  border-block: 1px solid var(--c-line);
  padding: clamp(72px, 9vw, 112px) 0;
}
.ledger-inner {
  display: grid;
  gap: var(--space-12);
  align-items: start;
}
@media (min-width: 980px) {
  .ledger-inner { grid-template-columns: 0.72fr 1.28fr; gap: var(--space-20); }
}
.ledger-table {
  border: 1px solid var(--c-line);
  background: rgba(255,255,255,0.02);
}
.ledger-row {
  display: grid;
  gap: var(--space-3);
  padding: var(--space-5) var(--space-6);
  border-bottom: 1px solid var(--c-line);
}
.ledger-row:last-child { border-bottom: 0; }
@media (min-width: 720px) {
  .ledger-row { grid-template-columns: 220px 1fr; align-items: baseline; }
}
.ledger-row span {
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--c-gold);
}
.ledger-row strong {
  color: var(--c-cream);
  font-size: var(--text-sm);
  font-weight: 500;
  line-height: 1.55;
}

/* ---------- Productized offers (deep) ---------- */
.offers-grid {
  grid-template-columns: 1fr;
}
@media (min-width: 760px) { .offers-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1180px) { .offers-grid { grid-template-columns: repeat(4, 1fr); } }
.offer {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--c-line);
  padding: var(--space-8);
  position: relative;
  display: flex; flex-direction: column;
  transition: border-color .35s var(--ease-out), background .35s var(--ease-out), transform .35s var(--ease-out);
}
.offer:hover {
  border-color: var(--c-gold);
  background: rgba(201,162,75,0.04);
  transform: translateY(-3px);
}
.offer-feature {
  background: linear-gradient(180deg, rgba(201,162,75,0.06), rgba(201,162,75,0.02));
  border-color: var(--c-line-strong);
}
.offer-tag {
  align-self: flex-start;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-gold);
  border: 1px solid var(--c-line-strong);
  padding: 4px 10px;
  margin-bottom: var(--space-6);
}
.offer h3 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 500;
  color: var(--c-cream);
  margin-bottom: var(--space-3);
  line-height: 1.15;
}
.offer-lede {
  font-size: var(--text-sm);
  color: var(--t-on-dark-mute);
  line-height: 1.6;
  margin-bottom: var(--space-5);
}
.offer-list {
  list-style: none; padding: 0; margin: 0 0 var(--space-8);
  border-top: 1px solid var(--c-line);
  padding-top: var(--space-5);
  display: grid; gap: 8px;
}
.offer-list li {
  font-size: 13px;
  color: var(--t-on-dark);
  padding-left: 18px;
  position: relative;
  line-height: 1.5;
}
.offer-list li::before {
  content: ""; position: absolute; left: 0; top: 10px;
  width: 8px; height: 1px; background: var(--c-gold);
}
.offer-foot {
  margin-top: auto;
  display: flex; align-items: baseline; justify-content: space-between;
  padding-top: var(--space-5);
  border-top: 1px solid var(--c-line);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--t-on-dark-faint);
}
.offer-foot strong {
  color: var(--c-gold);
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}

/* ---------- Readiness roadmap ---------- */
.roadmap {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 0;
  counter-reset: roadmap;
  border-top: 1px solid var(--c-line-dark);
}
.roadmap li {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
  padding: var(--space-8) 0;
  border-bottom: 1px solid var(--c-line-dark);
  position: relative;
}
@media (min-width: 820px) {
  .roadmap li {
    grid-template-columns: 200px 1fr;
    gap: var(--space-12);
    align-items: baseline;
  }
}
.roadmap-num {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-gold-faint);
}
.roadmap h3 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 500;
  color: var(--t-on-light);
  margin-bottom: 8px;
}
.roadmap p {
  font-size: var(--text-base);
  color: var(--t-on-light-mute);
  line-height: 1.6;
  max-width: 65ch;
  margin: 0;
}

/* ---------- Founder ---------- */
.founder {
  background:
    radial-gradient(60% 80% at 0% 50%, rgba(143,163,138,0.06), transparent 60%),
    var(--c-ink);
  color: var(--t-on-dark);
  border-block: 1px solid var(--c-line);
}
.founder-inner {
  display: grid; gap: var(--space-12);
  grid-template-columns: 1fr;
  align-items: start;
}
@media (min-width: 980px) {
  .founder-inner { grid-template-columns: 0.7fr 1.3fr; gap: var(--space-20); }
}
.founder-seal { display: flex; justify-content: center; }
.seal-mini {
  width: min(280px, 70vw);
  aspect-ratio: 1/1;
  border-radius: 50%;
  border: 1px solid var(--c-line-strong);
  padding: 14px;
  background: var(--c-ink-2);
  position: relative;
}
.seal-mini::before {
  content: ""; position: absolute; inset: 6px;
  border: 1px dashed rgba(201,162,75,0.2);
  border-radius: 50%;
}
.seal-mini img {
  width: 100%; height: 100%;
  border-radius: 50%;
  object-fit: cover;
}
.founder-body h2 { color: var(--c-cream); margin-bottom: var(--space-6); }
.founder-lede {
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--text-xl);
  color: var(--c-cream-2);
  line-height: 1.4;
  margin-bottom: var(--space-6);
  border-left: 2px solid var(--c-gold);
  padding-left: var(--space-5);
  max-width: 50ch;
}
.founder-body p {
  font-size: var(--text-base);
  color: var(--t-on-dark-mute);
  line-height: 1.7;
  max-width: 62ch;
}
.founder-sign {
  margin-top: var(--space-6);
  font-size: var(--text-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-gold);
}

/* ---------- Process ---------- */
.process-grid {
  grid-template-columns: 1fr;
}
@media (min-width: 680px) { .process-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .process-grid { grid-template-columns: repeat(4, 1fr); } }
.step {
  padding: var(--space-8) var(--space-5);
  border-top: 1px solid var(--c-gold);
  background: transparent;
}
.step-num {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--c-gold);
  letter-spacing: 0.05em;
  margin-bottom: var(--space-3);
}
.step h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--t-on-light);
  margin-bottom: var(--space-3);
}
.step p {
  font-size: var(--text-sm);
  color: var(--t-on-light-mute);
  line-height: 1.6;
  margin: 0;
}

/* ---------- Contact ---------- */
.contact {
  background:
    radial-gradient(60% 50% at 50% 0%, rgba(201,162,75,0.10), transparent 65%),
    var(--c-ink);
  color: var(--t-on-dark);
  text-align: center;
  padding: clamp(96px, 12vw, 160px) 0;
}
.contact-inner { max-width: 820px; margin-inline: auto; padding-inline: 20px; }
.contact-rule {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--c-line-strong) 30%, var(--c-line-strong) 70%, transparent);
  margin: 0 auto var(--space-12);
}
.contact-rule + .contact-rule { margin: var(--space-16) auto 0; }
.contact-title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  color: var(--c-cream);
  margin-bottom: var(--space-5);
  max-width: 22ch;
  margin-inline: auto;
}
.contact-lede {
  font-size: var(--text-lg);
  color: var(--t-on-dark-mute);
  max-width: 56ch;
  margin: 0 auto var(--space-10);
  line-height: 1.6;
}
.contact-row {
  display: flex; flex-direction: column; gap: var(--space-10);
  align-items: center;
}
.contact-meta {
  display: grid; gap: var(--space-4);
  grid-template-columns: 1fr;
  margin: 0;
  text-align: center;
}
@media (min-width: 720px) {
  .contact-meta { grid-template-columns: repeat(3, auto); gap: var(--space-12); }
}
.contact-meta div { display: flex; flex-direction: column; gap: 4px; }
.contact-meta dt {
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--c-gold);
}
.contact-meta dd {
  margin: 0; font-size: var(--text-sm); color: var(--t-on-dark);
}
.intake-card {
  margin: var(--space-12) auto 0;
  max-width: 760px;
  text-align: left;
  border: 1px solid var(--c-line);
  background: rgba(255,255,255,0.025);
  padding: var(--space-8);
}
.intake-card h3 {
  font-family: var(--font-display);
  color: var(--c-cream);
  font-size: var(--text-lg);
  margin-bottom: var(--space-4);
}
.intake-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}
.intake-card li {
  position: relative;
  padding-left: 18px;
  color: var(--t-on-dark-mute);
  font-size: var(--text-sm);
  line-height: 1.55;
}
.intake-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 1px;
  background: var(--c-gold);
}

/* ---------- Footer ---------- */
.site-footer {
  background: #0A110E;
  border-top: 1px solid var(--c-line);
  color: var(--t-on-dark-mute);
  padding: var(--space-16) 0 var(--space-10);
}
.footer-inner {
  display: grid; gap: var(--space-12);
}
.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-brand img {
  border-radius: 50%;
  border: 1px solid var(--c-line-strong);
}
.footer-name {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--c-cream);
}
.footer-sub {
  font-size: var(--text-xs);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-top: 4px;
}
.footer-cols {
  display: grid; gap: var(--space-8);
  grid-template-columns: 1fr;
}
@media (min-width: 680px) { .footer-cols { grid-template-columns: repeat(3, 1fr); } }
.footer-h {
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: var(--space-4);
}
.footer-cols a, .footer-cols span {
  display: block;
  font-size: var(--text-sm);
  color: var(--t-on-dark-mute);
  padding: 4px 0;
  transition: color .25s var(--ease-out);
}
.footer-cols a:hover { color: var(--c-gold); }
.footer-base {
  border-top: 1px solid var(--c-line);
  padding-top: var(--space-6);
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: var(--space-4);
  font-size: var(--text-xs);
  color: var(--t-on-dark-faint);
}
.footer-note { letter-spacing: 0.16em; text-transform: uppercase; }
.footer-disclosure {
  max-width: 920px;
  font-size: 11px;
  line-height: 1.65;
  color: var(--t-on-dark-faint);
  margin: 0;
}

/* ---------- Animation: reveal on scroll ----------
   Content stays visible by default so full-page previews, crawlers, and
   reduced-JS contexts never show blank sections. The JS class still allows
   subtle enhancement without making content dependent on animation. */
.reveal { opacity: 1; transform: none; transition: opacity .8s var(--ease-out), transform .8s var(--ease-out); }
.reveal.is-in { opacity: 1; transform: none; }

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