/* ==============================================================
   Holy Quest Total Vision — Homepage
   Design system inherited from Root Discovery (style.css)
   Fonts: Fraunces (display) + General Sans (body) — non-negotiable.
   ============================================================== */

:root {
  --forest: #17281e;
  --forest-soft: #203a2a;
  --forest-softer: #2a4936;
  --cream: #faf3e2;
  --cream-text: #f4ecd8;
  --white: #ffffff;
  --gold: #b8912f;
  --gold-soft: #d8c48a;
  --ink: #221e16;
  --muted: #75705f;
  --muted-on-dark: #b9c2b6;
  --divider-light: #e4dcc5;
  --divider-dark: #2c4436;

  --font-display: 'Fraunces', 'Georgia', serif;
  --font-body: 'General Sans', 'Helvetica Neue', Arial, sans-serif;

  --text-xs: clamp(0.75rem, 0.72rem + 0.15vw, 0.85rem);
  --text-sm: clamp(0.875rem, 0.83rem + 0.2vw, 1rem);
  --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --text-lg: clamp(1.15rem, 1.05rem + 0.5vw, 1.4rem);
  --text-xl: clamp(1.5rem, 1.2rem + 1.5vw, 2.1rem);
  --text-2xl: clamp(2rem, 1.4rem + 3vw, 3.2rem);
  --text-3xl: clamp(2.4rem, 1.6rem + 3.6vw, 3.8rem);

  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  --radius-sm: 0.4rem;
  --radius-md: 0.7rem;
  --radius-lg: 1.1rem;
  --radius-xl: 1.6rem;

  --shadow-md: 0 10px 30px rgba(23, 40, 30, 0.14);
  --shadow-lg: 0 20px 60px rgba(23, 40, 30, 0.22);

  --transition: 220ms cubic-bezier(0.16, 1, 0.3, 1);

  --content-max: 1180px;
  --content-pad: clamp(1.25rem, 3.5vw, 3rem);
}

/* ============ Reset / base ============ */

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

html {
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

body {
  min-height: 100dvh;
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.55;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ============ Header ============ */

.site-header {
  position: absolute;
  inset: 0 0 auto 0;
  z-index: 20;
  padding: var(--space-6) var(--content-pad) 0;
}

.header-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding-bottom: var(--space-5);
  border-bottom: 1px solid rgba(216, 196, 138, 0.14);
}

.brand-lockup .brand-mark,
.brand-lockup .brand-mark-sub {
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.5);
}

.nav-link {
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.5);
}

.brand-lockup {
  display: inline-flex;
  align-items: baseline;
  gap: 0.6ch;
  font-weight: 700;
  font-size: var(--text-xs);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
}

.brand-mark-sub {
  color: var(--gold-soft);
  font-weight: 500;
  letter-spacing: 0.22em;
}

@media (max-width: 480px) {
  .site-header { padding-left: var(--space-4); padding-right: var(--space-4); }
  .header-inner { gap: var(--space-3); }
  .brand-lockup {
    letter-spacing: 0.12em;
    font-size: 0.64rem;
  }
  .brand-mark-sub { letter-spacing: 0.12em; font-weight: 400; }
  .nav-link {
    font-size: 0.62rem;
    letter-spacing: 0.08em;
    white-space: nowrap;
    padding: 0.38rem 0.7rem;
    gap: 0.35ch;
  }
  /* Hide the redundant hero eyebrow on narrow screens where the header
     already communicates the brand. */
  .hero-copy .kicker { display: none; }
}

.site-nav {
  display: flex;
  gap: var(--space-6);
}

/* Nav link is a pill CTA so it reads as a clickable action, not a header
   caption. Ghost style over the hero (dark), inverts on cream sections. */
.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55ch;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream-text);
  padding: 0.55rem 1rem;
  border: 1px solid rgba(216, 196, 138, 0.55);
  border-radius: 999px;
  background: rgba(11, 22, 16, 0.28);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: color var(--transition), background var(--transition),
    border-color var(--transition), transform var(--transition);
}

.nav-link::after {
  content: "\2192"; /* right arrow */
  font-size: 0.95em;
  transform: translateX(0);
  transition: transform var(--transition);
}

.nav-link:hover,
.nav-link:focus-visible {
  color: var(--forest);
  background: var(--gold-soft);
  border-color: var(--gold);
  transform: translateY(-1px);
}

.nav-link:hover::after,
.nav-link:focus-visible::after {
  transform: translateX(3px);
}

/* On cream sections we invert the header via body:has() (main flow keeps
   header pinned to hero which is dark). No inversion needed. */

/* ============ Hero (cinematic full-bleed) ============ */

.hero {
  position: relative;
  min-height: 100dvh;
  color: var(--cream-text);
  overflow: hidden;
  isolation: isolate;
  background: var(--forest);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Push the composition right so the figure lives near the right third
     and the copy sits over darker foliage. */
  object-position: 78% center;
  transform: scale(1.06);
}

/* Two-layer scrim:
   (1) Deep near-opaque left panel that guarantees copy contrast.
   (2) Gentle vertical fade so the bottom edge meets the cream section softly. */
.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(92deg,
      rgba(11, 22, 16, 0.96) 0%,
      rgba(11, 22, 16, 0.94) 34%,
      rgba(11, 22, 16, 0.80) 46%,
      rgba(11, 22, 16, 0.45) 58%,
      rgba(11, 22, 16, 0.15) 74%,
      rgba(11, 22, 16, 0.00) 100%),
    linear-gradient(180deg,
      rgba(11, 22, 16, 0.30) 0%,
      rgba(11, 22, 16, 0.02) 24%,
      rgba(11, 22, 16, 0.06) 62%,
      rgba(11, 22, 16, 0.55) 100%);
}

/* Golden tree emblem sitting under the nav bar. A soft radial halo ring
   sits behind it so the mark reads as a lit crown on the composition.
   Uses the same emblem asset used by Root Discovery. */
.hero-emblem {
  position: absolute;
  top: calc(var(--space-16) + var(--space-4));
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 168px;
  height: 168px;
  display: grid;
  place-items: center;
  pointer-events: none;
  animation: emblemRise 900ms cubic-bezier(0.16, 1, 0.3, 1) 120ms both;
}

/* Soft radiant halo that mirrors the emblem's own starburst — no hard ring
   outline, just warm golden light fading to transparent. */
.hero-emblem-halo {
  position: absolute;
  inset: -85%;
  border-radius: 50%;
  background:
    radial-gradient(closest-side,
      rgba(255, 236, 178, 0.55) 0%,
      rgba(255, 220, 140, 0.36) 22%,
      rgba(216, 196, 138, 0.20) 44%,
      rgba(184, 145, 47, 0.08) 62%,
      rgba(184, 145, 47, 0.00) 78%);
  filter: blur(6px);
}

.hero-emblem img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 8px 28px rgba(184, 145, 47, 0.42));
}

@keyframes emblemRise {
  from { opacity: 0; transform: translate(-50%, -8px); }
  to   { opacity: 1; transform: translate(-50%, 0); }
}

@media (max-width: 720px) {
  .hero-emblem {
    width: 116px;
    height: 116px;
    top: calc(var(--space-12) + var(--space-4));
  }
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--content-max);
  margin: 0 auto;
  min-height: 100dvh;
  /* Extra top padding so the emblem clears the copy block. */
  padding: calc(var(--space-24) + var(--space-16)) var(--content-pad) calc(var(--space-24) + var(--space-6));
  display: flex;
  align-items: center;
}

.hero-copy {
  max-width: 560px;
  width: 100%;
  display: flex;
  flex-direction: column;
  animation: heroRise 900ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes heroRise {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

.kicker {
  color: var(--gold);
  font-weight: 600;
  font-size: var(--text-xs);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  margin-bottom: var(--space-6);
  opacity: 0.92;
}

.hero-h1 {
  font-family: var(--font-display);
  font-optical-sizing: auto;
  font-weight: 400;
  font-size: clamp(2.1rem, 1.35rem + 3vw, 3.15rem);
  line-height: 1.08;
  letter-spacing: -0.012em;
  color: var(--white);
  margin-bottom: var(--space-5);
  max-width: 18ch;
  text-wrap: balance;
  text-shadow: 0 2px 32px rgba(0, 0, 0, 0.55);
}

.hero-h2 {
  font-family: var(--font-display);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(1.1rem, 0.9rem + 0.8vw, 1.45rem);
  line-height: 1.45;
  /* Brighter warm ivory so the italic reads over any part of the image. */
  color: #fbf3dc;
  margin-bottom: var(--space-8);
  max-width: 30ch;
  opacity: 1;
  text-wrap: balance;
  text-shadow:
    0 1px 2px rgba(0, 0, 0, 0.65),
    0 2px 18px rgba(0, 0, 0, 0.55);
}

.hero-promise {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  /* Lift the paragraph to the same warm ivory + shadow so it stops fading
     into the foliage tones. */
  color: #f6ecd2;
  line-height: 1.7;
  margin-bottom: var(--space-10);
  max-width: 44ch;
  opacity: 1;
  text-shadow:
    0 1px 2px rgba(0, 0, 0, 0.6),
    0 2px 14px rgba(0, 0, 0, 0.5);
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-bottom: var(--space-8);
}

.hero-tagline {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  color: var(--gold-soft);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.78;
}

/* Continue affordance at the bottom of the hero */
.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: var(--space-6);
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  color: var(--cream-text);
  opacity: 0.7;
  transition: opacity var(--transition), transform var(--transition);
  z-index: 3;
}

.hero-scroll:hover,
.hero-scroll:focus-visible {
  opacity: 1;
  transform: translate(-50%, -3px);
}

.hero-scroll-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-soft);
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold-soft), transparent);
  animation: scrollPulse 2.4s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(0.85); transform-origin: top; }
  50%      { opacity: 1;   transform: scaleY(1);    transform-origin: top; }
}

/* Mobile hero: same full-bleed, image visible top, darker overall scrim */
@media (max-width: 720px) {
  .hero-bg img {
    object-position: 68% 30%;
    transform: scale(1.05);
  }
  .hero-scrim {
    background:
      linear-gradient(180deg,
        rgba(15, 26, 20, 0.35) 0%,
        rgba(15, 26, 20, 0.55) 32%,
        rgba(15, 26, 20, 0.85) 62%,
        rgba(15, 26, 20, 0.95) 100%);
  }
  .hero-inner {
    align-items: flex-end;
    padding-bottom: calc(var(--space-24) + var(--space-8));
  }
  .hero-copy {
    max-width: none;
  }
  .hero-scroll { bottom: var(--space-4); }
}

/* ============ Buttons ============ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  border-radius: 999px;
  padding: var(--space-4) var(--space-6);
  font-weight: 700;
  font-size: var(--text-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 2px solid transparent;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition), border-color var(--transition);
  text-align: center;
  cursor: pointer;
  line-height: 1;
}

.btn-primary {
  background: var(--gold);
  color: var(--forest);
}
.btn-primary:hover,
.btn-primary:focus-visible {
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
  background: color-mix(in srgb, var(--gold) 92%, var(--white));
}
.btn-primary:active {
  transform: translateY(0);
}

/* Ghost on dark backgrounds (hero, first-step) */
.btn-ghost-dark {
  background: transparent;
  border-color: var(--gold-soft);
  color: var(--cream-text);
}
.btn-ghost-dark:hover,
.btn-ghost-dark:focus-visible {
  background: rgba(216, 196, 138, 0.08);
  border-color: var(--gold);
  color: var(--white);
}

.btn-cta {
  padding: var(--space-5) var(--space-10);
  font-size: var(--text-sm);
  letter-spacing: 0.2em;
  box-shadow: var(--shadow-lg);
}

/* ============ Section shells ============ */

.section {
  position: relative;
  padding: clamp(4rem, 8vw, 7rem) var(--content-pad);
}
.section-cream {
  background: var(--cream);
  color: var(--ink);
}
.section-forest {
  background: var(--forest);
  color: var(--cream-text);
}

/* Soft cream↔forest transition bands.
   Placed on the incoming section as a top gradient that fades from the
   previous section's color into this one's. Bottom band on outgoing side. */

.section-cream::before,
.section-forest::before,
.section-cream::after,
.section-forest::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 90px;
  pointer-events: none;
  z-index: 1;
}

/* Top edge of cream sections — fade in from forest above */
.section-cream::before {
  top: 0;
  background: linear-gradient(to bottom, var(--forest) 0%, rgba(23,40,30,0) 100%);
  opacity: 0.14;
}
/* Bottom edge of cream sections — fade to forest below */
.section-cream::after {
  bottom: 0;
  background: linear-gradient(to top, var(--forest) 0%, rgba(23,40,30,0) 100%);
  opacity: 0.10;
}
/* Top edge of forest sections — fade in from cream above */
.section-forest::before {
  top: 0;
  background: linear-gradient(to bottom, var(--cream) 0%, rgba(250,243,226,0) 100%);
  opacity: 0.10;
}
/* Bottom edge of forest sections — fade to cream below */
.section-forest::after {
  bottom: 0;
  background: linear-gradient(to top, var(--cream) 0%, rgba(250,243,226,0) 100%);
  opacity: 0.08;
}

/* First section after the hero: don't paint a top band (hero already fades) */
.hero + .section::before { display: none; }

/* Section inner sits above the fade bands */
.section-inner {
  position: relative;
  z-index: 2;
  max-width: var(--content-max);
  margin: 0 auto;
}

.section-eyebrow {
  display: flex;
  align-items: baseline;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
  padding-bottom: var(--space-4);
  border-bottom: 1px solid var(--divider-light);
}

.section-forest .section-eyebrow {
  border-bottom-color: var(--divider-dark);
}

.section-num {
  color: var(--gold);
  font-weight: 700;
  font-size: var(--text-sm);
  letter-spacing: 0.14em;
}

.section-label {
  font-weight: 700;
  font-size: var(--text-xs);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink);
}

.section-forest .section-label {
  color: var(--cream-text);
}

.section-h {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2rem, 1.4rem + 2.6vw, 3rem);
  line-height: 1.12;
  color: var(--forest);
  max-width: 22ch;
  margin-bottom: var(--space-5);
  letter-spacing: -0.005em;
}

.section-forest .section-h {
  color: var(--white);
}

.section-h--wide {
  max-width: 26ch;
}

.section-sub {
  font-family: var(--font-body);
  font-size: var(--text-lg);
  color: var(--muted);
  max-width: 44ch;
  margin-bottom: var(--space-10);
}

.section-forest .section-sub {
  color: var(--muted-on-dark);
}

.section-sub--wide {
  max-width: 68ch;
  font-size: var(--text-base);
  line-height: 1.65;
}

/* ============ 01 — Split cards ============ */

.split-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-4);
}

@media (max-width: 820px) {
  .split-cards { grid-template-columns: 1fr; }
}

.split-card {
  /* Loosened: no hard border, warm inner-glow surface, generous padding */
  background: linear-gradient(180deg,
    rgba(255, 255, 255, 0.55) 0%,
    rgba(255, 255, 255, 0.25) 100%);
  border: 1px solid rgba(184, 145, 47, 0.10);
  border-radius: var(--radius-xl);
  padding: clamp(1.5rem, 2.4vw, 2.5rem);
  display: grid;
  grid-template-columns: minmax(150px, 240px) 1fr;
  gap: clamp(1.25rem, 2.4vw, 2.25rem);
  align-items: center;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.6) inset,
    0 24px 60px -32px rgba(23, 40, 30, 0.18);
  transition: transform var(--transition), box-shadow var(--transition);
}
.split-card:hover {
  transform: translateY(-2px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.7) inset,
    0 32px 70px -30px rgba(23, 40, 30, 0.24);
}

@media (max-width: 560px) {
  .split-card {
    grid-template-columns: 1fr;
    text-align: left;
  }
}

.split-card-visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: color-mix(in srgb, var(--cream) 85%, var(--white));
  display: flex;
  align-items: center;
  justify-content: center;
}

.split-card-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.split-card-visual--emblem {
  background: transparent;
  padding: var(--space-4);
  position: relative;
  isolation: isolate;
}

/* Warm radial halo behind the Section 01 emblem — matches the hero
   treatment so the mark reads consistently across the page. */
.split-card-visual--emblem::before {
  content: "";
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  background:
    radial-gradient(closest-side,
      rgba(255, 236, 178, 0.48) 0%,
      rgba(255, 220, 140, 0.30) 22%,
      rgba(216, 196, 138, 0.16) 44%,
      rgba(184, 145, 47, 0.06) 62%,
      rgba(184, 145, 47, 0.00) 78%);
  filter: blur(4px);
  z-index: 0;
  pointer-events: none;
}

.split-card-visual--emblem img {
  position: relative;
  z-index: 1;
  object-fit: contain;
  height: 78%;
  width: auto;
  max-width: 78%;
  filter: drop-shadow(0 8px 24px rgba(184, 145, 47, 0.28));
}

.split-card-kicker {
  font-weight: 700;
  font-size: var(--text-xs);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-3);
}

.split-card-h {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.25rem, 0.9rem + 1.1vw, 1.7rem);
  line-height: 1.2;
  color: var(--forest);
  margin-bottom: var(--space-4);
}

.split-card-p {
  color: var(--muted);
  font-size: var(--text-base);
  line-height: 1.6;
}

/* ============ 02 — ORE ============ */

.ore-word-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-3);
  color: var(--gold);
  font-weight: 700;
  font-size: var(--text-xs);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  margin-bottom: var(--space-6);
}

.ore-word-row .dot {
  color: var(--gold-soft);
  opacity: 0.7;
}

.ore-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-4);
  margin-bottom: var(--space-10);
}

@media (max-width: 980px) { .ore-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 620px) { .ore-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 400px) { .ore-grid { grid-template-columns: 1fr; } }

.ore-card {
  /* Loosened: no visible border, subtle gradient surface, gold ledger line */
  position: relative;
  background: linear-gradient(180deg,
    rgba(255, 255, 255, 0.04) 0%,
    rgba(255, 255, 255, 0.01) 100%);
  border: 1px solid rgba(216, 196, 138, 0.08);
  border-radius: var(--radius-lg);
  padding: var(--space-6) var(--space-5) var(--space-8);
  min-height: 220px;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  transition: transform var(--transition), background var(--transition), border-color var(--transition);
  overflow: hidden;
}

.ore-card::before {
  content: "";
  position: absolute;
  left: var(--space-5);
  right: var(--space-5);
  top: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold) 0%, rgba(184,145,47,0) 100%);
  opacity: 0.55;
}

.ore-card:hover {
  transform: translateY(-3px);
  background: linear-gradient(180deg,
    rgba(255, 255, 255, 0.06) 0%,
    rgba(255, 255, 255, 0.02) 100%);
  border-color: rgba(216, 196, 138, 0.20);
}

.ore-num {
  color: var(--gold);
  font-weight: 700;
  font-size: var(--text-xs);
  letter-spacing: 0.16em;
  margin-bottom: var(--space-3);
}

.ore-name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.35rem, 1.1rem + 0.6vw, 1.75rem);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: var(--space-3);
}

.ore-q {
  color: var(--muted-on-dark);
  font-size: var(--text-sm);
  line-height: 1.55;
}

.ore-statement {
  background: var(--cream);
  color: var(--forest);
  border-radius: var(--radius-xl);
  padding: clamp(1.75rem, 3vw, 2.75rem) clamp(1.5rem, 3vw, 3rem);
  border: 1px solid rgba(184, 145, 47, 0.18);
  box-shadow: 0 24px 60px -30px rgba(0, 0, 0, 0.45);
}

.ore-statement-kicker {
  color: var(--gold);
  font-weight: 700;
  font-size: var(--text-xs);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  margin-bottom: var(--space-3);
}

.ore-statement-body {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.25rem, 0.95rem + 1.3vw, 1.9rem);
  line-height: 1.35;
  color: var(--forest);
}

.ore-statement-body .blank {
  color: var(--gold);
  letter-spacing: 0.02em;
}

/* ============ 03 — Founder ============ */

.founder-grid {
  display: grid;
  grid-template-columns: minmax(240px, 380px) 1fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: start;
}

@media (max-width: 820px) {
  .founder-grid { grid-template-columns: 1fr; }
}

.founder-portrait {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: none;
  background: var(--white);
  aspect-ratio: 4 / 5;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.6) inset,
    0 30px 70px -28px rgba(23, 40, 30, 0.28);
}

.founder-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 22%;
}

.founder-kicker {
  font-weight: 700;
  font-size: var(--text-xs);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-3);
}

.founder-h {
  max-width: 20ch;
  margin-bottom: var(--space-6);
}

.founder-p {
  color: var(--ink);
  font-size: var(--text-base);
  line-height: 1.7;
  margin-bottom: var(--space-4);
  max-width: 62ch;
}

.founder-p em {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--forest);
}

.founder-p--strong {
  color: var(--forest);
  font-weight: 500;
  margin-bottom: var(--space-8);
}

.founder-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-4);
  margin-top: var(--space-6);
  padding-top: var(--space-6);
  border-top: 1px solid var(--divider-light);
}

@media (max-width: 640px) {
  .founder-stats { grid-template-columns: repeat(2, 1fr); gap: var(--space-6); }
}

.stat-num {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.75rem, 1.2rem + 1.8vw, 2.6rem);
  color: var(--gold);
  line-height: 1;
  margin-bottom: var(--space-2);
  display: flex;
  align-items: baseline;
  gap: 0.05ch;
}

.stat-plus {
  font-size: 0.7em;
}

.stat-label {
  color: var(--muted);
  font-size: var(--text-xs);
  letter-spacing: 0.06em;
  line-height: 1.5;
  max-width: 22ch;
}

/* ============ Your First Step ============ */

#first-step {
  padding-top: clamp(4rem, 7vw, 6rem);
  padding-bottom: clamp(4rem, 7vw, 6rem);
}

.first-step-card {
  max-width: 780px;
  margin: 0 auto;
  background: linear-gradient(180deg,
    rgba(255, 255, 255, 0.04) 0%,
    rgba(255, 255, 255, 0.01) 100%),
    color-mix(in srgb, var(--forest) 88%, #000 12%);
  border: 1px solid rgba(216, 196, 138, 0.14);
  border-radius: var(--radius-xl);
  padding: clamp(2.5rem, 4.5vw, 4rem) clamp(1.5rem, 4vw, 3.5rem);
  text-align: center;
  color: var(--cream-text);
  box-shadow: 0 40px 80px -30px rgba(0,0,0,0.55);
}

.first-step-kicker {
  color: var(--gold);
  font-weight: 700;
  font-size: var(--text-xs);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  margin-bottom: var(--space-6);
}

.first-step-emblem {
  width: 110px;
  height: 110px;
  margin: 0 auto var(--space-6);
  filter: drop-shadow(0 8px 24px rgba(184, 145, 47, 0.35));
  object-fit: contain;
}

.first-step-h {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.75rem, 1.2rem + 1.6vw, 2.5rem);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: var(--space-3);
}

.first-step-h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.35rem, 1rem + 1.1vw, 1.9rem);
  color: var(--cream-text);
  line-height: 1.25;
  margin-bottom: var(--space-6);
}

.first-step-p {
  color: var(--muted-on-dark);
  font-size: var(--text-base);
  line-height: 1.7;
  max-width: 48ch;
  margin: 0 auto var(--space-8);
}

.first-step-note {
  color: var(--muted-on-dark);
  font-size: var(--text-xs);
  letter-spacing: 0.02em;
  margin-top: var(--space-5);
  font-style: italic;
}

/* ============ Footer ============ */

.site-footer {
  background: var(--forest);
  color: var(--cream-text);
  padding: var(--space-16) var(--content-pad) var(--space-10);
  border-top: 1px solid var(--divider-dark);
}

.footer-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
}

.footer-brand {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.5rem, 1.1rem + 1.2vw, 2rem);
  color: var(--white);
  letter-spacing: 0.02em;
}

.footer-tag {
  color: var(--gold-soft);
  font-weight: 500;
  font-size: var(--text-sm);
  letter-spacing: 0.12em;
  text-transform: none;
}

.footer-copy {
  color: var(--muted-on-dark);
  font-size: var(--text-xs);
  margin-top: var(--space-3);
  letter-spacing: 0.06em;
}
