/* =====================================================
   THE GOOD STEWARD LIFE — styles.css  [V2]
   Design: Ancient wisdom meets modern responsibility
   Palette: Iron Ink / Field Paper / Deep Amber / Verdigris / Iron Red / Slate Stone
   Type: EB Garamond (display) · Lora (body) · Space Grotesk (labels/UI)
===================================================== */


/* =====================================================
   1. DESIGN TOKENS
===================================================== */

:root {

  /* — Color — */
  --ink:           #0B0B08;   /* Iron Ink — warm near-black, old printing ink */
  --ink-deep:      #070705;   /* Deepest background, below the fold */
  --ink-mid:       #111110;   /* Mid-dark for subtle section variation */
  --slate:         #1E2028;   /* Slate Stone — cool dark for triage/media; kept warm via amber accents */
  --slate-deep:    #181A21;   /* Deeper slate for nested elements */
  --parchment:     #E2D9C4;   /* Field Paper — aged map paper, cooler than V1 */
  --parchment-dim: #BDB5A4;   /* Secondary text on light sections */
  --amber:         #A07830;   /* Deep Amber — richer, more earned than V1 brass */
  --amber-light:   #C09848;   /* Lighter amber for hover states */
  --verdigris:     #2C4A42;   /* Aged copper; replaces olive; not "outdoorsy" */
  --verdigris-dark:#1E3530;   /* Deeper verdigris for gradient depth */
  --oxblood:       #5A1F1F;   /* Iron Red — slightly deeper than V1 */
  --ash:           #8A8278;   /* Ash — mid-tone secondary text; less yellow than V1 fog */
  --ash-light:     #A89F94;   /* Light ash for tertiary text */

  /* — Typography — */
  --font-display: 'EB Garamond', Georgia, serif;
  --font-label:   'Space Grotesk', system-ui, sans-serif;
  --font-body:    'Lora', Georgia, serif;

  /* — Type Scale — */
  --text-xs:   0.75rem;
  --text-sm:   0.875rem;
  --text-base: 1rem;
  --text-md:   1.125rem;
  --text-lg:   1.25rem;
  --text-xl:   1.5rem;
  --text-2xl:  2rem;
  --text-3xl:  2.5rem;
  --text-4xl:  3.25rem;
  --text-5xl:  4rem;
  --text-6xl:  5.5rem;

  /* — Spacing — */
  --sp-1:  0.5rem;
  --sp-2:  1rem;
  --sp-3:  1.5rem;
  --sp-4:  2rem;
  --sp-5:  2.5rem;
  --sp-6:  3rem;
  --sp-8:  4rem;
  --sp-10: 5rem;
  --sp-12: 6rem;
  --sp-16: 8rem;

  /* — Layout — */
  --max-w:      1160px;
  --content-w:  720px;
  --section-v:  var(--sp-16);
  --section-h:  var(--sp-4);
  --nav-h:      72px;

  /* — Borders — */
  --rule-amber:     1px solid var(--amber);
  --rule-amber-dim: 1px solid rgba(160, 120, 48, 0.22);
  --rule-parchment: 1px solid rgba(226, 217, 196, 0.1);
  --rule-fog:       1px solid rgba(138, 130, 120, 0.25);

  /* — Motion — */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --dur:      480ms;
}


/* =====================================================
   2. RESET & BASE
===================================================== */

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-md);
  line-height: 1.75;
  color: var(--parchment);
  background-color: var(--ink-deep);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

ul, ol { list-style: none; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

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


/* =====================================================
   3. SHARED UTILITIES
===================================================== */

.section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--section-v) var(--section-h);
}

.eyebrow {
  display: block;
  font-family: var(--font-label);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: var(--sp-3);
}

.eyebrow--light { color: var(--amber-light); }

.section-heading {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin-bottom: var(--sp-4);
}

.section-intro {
  font-family: var(--font-body);
  font-size: var(--text-md);
  line-height: 1.8;
  color: var(--ash-light);
  max-width: var(--content-w);
  margin-bottom: var(--sp-8);
}


/* =====================================================
   4. BUTTONS
===================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-label);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 0.9rem 2.4rem;
  min-height: 52px;
  border-radius: 2px;
  transition:
    background-color 220ms ease,
    color 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease;
  white-space: nowrap;
  border: 1px solid transparent;
}

.btn--primary {
  background-color: var(--amber);
  color: var(--ink-deep);
  border-color: var(--amber);
}

.btn--primary:hover,
.btn--primary:focus-visible {
  background-color: var(--amber-light);
  border-color: var(--amber-light);
  box-shadow: 0 6px 20px rgba(160, 120, 48, 0.22);
  transform: translateY(-1px);
}

.btn--ghost {
  background-color: transparent;
  color: var(--parchment);
  border-color: rgba(226, 217, 196, 0.35);
}

.btn--ghost:hover,
.btn--ghost:focus-visible {
  border-color: rgba(226, 217, 196, 0.7);
  background-color: rgba(226, 217, 196, 0.06);
  transform: translateY(-1px);
}

.btn--ghost-light {
  background-color: transparent;
  color: var(--parchment-dim);
  border-color: rgba(189, 181, 164, 0.35);
}

.btn--ghost-light:hover,
.btn--ghost-light:focus-visible {
  border-color: rgba(189, 181, 164, 0.65);
  color: var(--parchment);
  background-color: rgba(189, 181, 164, 0.07);
}

.btn--full { width: 100%; white-space: normal; }


/* =====================================================
   5. SCROLL REVEAL
===================================================== */

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity var(--dur) var(--ease-out),
    transform var(--dur) var(--ease-out);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-inner > * { animation: none; }
  .btn:hover, .btn:focus-visible { transform: none; }
}


/* =====================================================
   6. NAVIGATION
===================================================== */

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  background-color: transparent;
  border-bottom: 1px solid transparent;
  transition:
    background-color 350ms ease,
    border-color 350ms ease;
}

.site-header.is-scrolled {
  background-color: rgba(7, 7, 5, 0.95);
  border-bottom-color: rgba(160, 120, 48, 0.2);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--section-h);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
}

.nav-wordmark { flex-shrink: 0; }

.wordmark-main {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--parchment);
  line-height: 1;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--sp-5);
}

/* Nav link with amber underline reveal on hover */
.nav-link {
  font-family: var(--font-label);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--parchment-dim);
  transition: color 200ms ease;
  position: relative;
  padding-bottom: 2px;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 1px;
  background-color: var(--amber);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 220ms var(--ease-out);
}

.nav-link:hover { color: var(--parchment); }
.nav-link:hover::after { transform: scaleX(1); }

.nav-link--cta {
  color: var(--amber);
  border: 1px solid rgba(160, 120, 48, 0.35);
  padding: 0.4rem 1.1rem 0.4rem;
  border-radius: 2px;
  transition: color 200ms ease, border-color 200ms ease, background-color 200ms ease;
}

.nav-link--cta::after { display: none; }

.nav-link--cta:hover {
  color: var(--amber-light);
  border-color: rgba(192, 152, 72, 0.6);
  background-color: rgba(160, 120, 48, 0.08);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  border-radius: 2px;
  flex-shrink: 0;
}

.nav-toggle-bar {
  display: block;
  width: 22px;
  height: 1.5px;
  background-color: var(--parchment-dim);
  transition: transform 260ms ease, opacity 260ms ease;
  transform-origin: center;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}


/* =====================================================
   7. HERO
===================================================== */

.hero {
  min-height: 100svh;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  background-color: var(--ink);
  /* Layer 1: dark overlay — left breathes, center/right protected for headline text */
  /* Layer 2: amber radial spotlight (reduced — image provides its own directional light) */
  /* Layer 3: fine diagonal line texture for depth */
  /* Layer 4: hero photo — journal/compass scene */
  background-image:
    linear-gradient(
      105deg,
      rgba(7, 7, 5, 0.58) 0%,
      rgba(7, 7, 5, 0.78) 32%,
      rgba(7, 7, 5, 0.94) 52%,
      rgba(7, 7, 5, 0.98) 100%
    ),
    radial-gradient(
      ellipse 60% 55% at 50% -8%,
      rgba(160, 120, 48, 0.06) 0%,
      transparent 60%
    ),
    repeating-linear-gradient(
      32deg,
      transparent,
      transparent 34px,
      rgba(160, 120, 48, 0.022) 34px,
      rgba(160, 120, 48, 0.022) 35px
    ),
    url('assets/tgsl-hero-field-journal.webp');
  background-size:    auto, auto, auto, cover;
  background-position: 0 0, 0 0, 0 0, 8% center;
  background-repeat:  no-repeat, no-repeat, repeat, no-repeat;
  position: relative;
  text-align: center;
  padding-top: var(--nav-h);
  overflow: hidden;
}

/* Bottom fade rule */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(160, 120, 48, 0.55), transparent);
  pointer-events: none;
}

/* ── Hero background decorative layer ── */
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

/* SVG grain texture fills the hero */
.hero-grain {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

/* Large TGSL seal watermark — centered, very faint */
.hero-seal-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 640px;
  height: 640px;
  color: var(--amber);
  opacity: 0.055;
}

/* ── Hero content ── */
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin-right: clamp(2rem, 5vw, 4.5rem);
  padding: var(--sp-16) var(--section-h);
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Neutralise parent block-reveal so children handle the hero entrance solo */
.hero-inner.reveal {
  opacity: 1;
  transform: none;
  transition: none;
}

/* Staggered entrance for hero text elements */
.hero-inner > * {
  animation: hero-item-rise 650ms cubic-bezier(0.22, 1, 0.36, 1) both;
}
.hero-inner > *:nth-child(1) { animation-delay:   0ms; }
.hero-inner > *:nth-child(2) { animation-delay:  90ms; }
.hero-inner > *:nth-child(3) { animation-delay: 175ms; }
.hero-inner > *:nth-child(4) { animation-delay: 245ms; }
.hero-inner > *:nth-child(5) { animation-delay: 295ms; }
.hero-inner > *:nth-child(6) { animation-delay: 340ms; }

@keyframes hero-item-rise {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Thin amber rule above the eyebrow */
.hero .eyebrow {
  margin-bottom: var(--sp-5);
  position: relative;
  padding-top: var(--sp-4);
}

.hero .eyebrow::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 1px;
  background-color: var(--amber);
  opacity: 0.55;
}

.hero-heading {
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 5.6vw, 4.85rem);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -0.025em;
  color: var(--parchment);
  margin-bottom: var(--sp-5);
  max-width: 840px;
}

/* The one authored moment: the closing period in amber */
.period-brass {
  color: var(--amber);
}

/* ── Signature seal line: Faith. Liberty. Wisdom. Responsibility. ── */
.hero-seal {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0 var(--sp-4);
  font-family: var(--font-label);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  color: var(--amber);
  text-transform: uppercase;
  padding: var(--sp-3) 0;
  border-top: var(--rule-amber);
  border-bottom: var(--rule-amber);
  width: 100%;
  max-width: 580px;
  margin-bottom: var(--sp-6);
  opacity: 0.9;
}

.hero-sub {
  font-family: var(--font-body);
  font-size: var(--text-lg);
  line-height: 1.75;
  color: var(--parchment-dim);
  max-width: 560px;
  margin-bottom: var(--sp-6);
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  justify-content: center;
  margin-bottom: var(--sp-5);
}

.hero-note {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-style: italic;
  color: var(--ash);
  max-width: 420px;
  line-height: 1.65;
}


/* =====================================================
   8. PROBLEM SECTION
===================================================== */

.problem {
  background-color: var(--parchment);
}

.problem .section-inner {
  max-width: 800px;
}

.problem .eyebrow { color: var(--ash); }

.problem .section-heading {
  color: var(--ink);
  max-width: 600px;
}

/* Left editorial rule alongside the body text column */
.problem-body {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  border-left: 1.5px solid rgba(160, 120, 48, 0.3);
  padding-left: var(--sp-6);
}

.problem-body p {
  font-family: var(--font-body);
  font-size: var(--text-md);
  line-height: 1.85;
  color: #3A3730;
}

.problem-body .problem-lead {
  font-size: var(--text-lg);
  color: var(--ink);
}

/* Pull-quote treatment — breaks free of the left rule */
.problem-body .problem-turning {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-style: italic;
  font-weight: 500;
  color: var(--amber);
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-left: calc(-1 * var(--sp-6) - 2px);
  padding-left: var(--sp-3);
  padding-right: var(--sp-3);
  padding-top: var(--sp-6);
  padding-bottom: var(--sp-5);
  border-top: 1px solid rgba(160, 120, 48, 0.25);
  border-bottom: 1px solid rgba(160, 120, 48, 0.25);
  margin-top: var(--sp-2);
  margin-bottom: var(--sp-2);
}


/* =====================================================
   9. FRAMEWORK — FOUR PILLARS
===================================================== */

.framework {
  background-color: var(--verdigris);
  /* Radial warmth from top + very subtle diagonal hatch */
  background-image:
    radial-gradient(
      ellipse 100% 70% at 50% 0%,
      #3A5C54 0%,
      var(--verdigris-dark) 65%
    ),
    repeating-linear-gradient(
      -48deg,
      transparent,
      transparent 44px,
      rgba(160, 120, 48, 0.028) 44px,
      rgba(160, 120, 48, 0.028) 45px
    );
}

.framework .section-heading { color: var(--parchment); }
.framework .section-intro { color: rgba(189, 181, 164, 0.72); }

.pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--amber);
  margin-top: var(--sp-2);
}

.pillar {
  padding-top: var(--sp-8);
  padding-bottom: var(--sp-8);
  padding-right: var(--sp-6);
  border-right: 1px solid rgba(160, 120, 48, 0.16);
}

.pillar:first-child { padding-left: 0; }
.pillar:not(:first-child) { padding-left: var(--sp-6); }
.pillar:last-child { border-right: none; padding-right: 0; }

.pillar-word {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: 0.01em;
  color: var(--parchment);
  margin-bottom: var(--sp-4);
}

.pillar-desc {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  line-height: 1.82;
  color: var(--parchment-dim);
}


/* =====================================================
   10. FINANCIAL TRIAGE — LEAD MAGNET
===================================================== */

.triage {
  background-color: var(--slate);
  background-image: radial-gradient(
    ellipse 70% 60% at 20% 0%,
    rgba(160, 120, 48, 0.06) 0%,
    transparent 65%
  );
  border-top: var(--rule-parchment);
  border-bottom: var(--rule-parchment);
}

.triage-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-12);
  align-items: start;
}

.triage .eyebrow { margin-bottom: var(--sp-3); }

.triage .section-heading {
  color: var(--parchment);
  font-size: var(--text-4xl);
  margin-bottom: var(--sp-5);
}

.triage-content {
  position: relative;
}

/* Triage watermark — orphaned rule kept in case it re-enters HTML */
.triage-watermark {
  position: absolute;
  bottom: -0.25em;
  left: -0.05em;
  font-family: var(--font-label);
  font-size: 9.5rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1;
  color: var(--amber);
  opacity: 0.032;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}

.triage-desc {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.85;
  color: var(--parchment-dim);
  margin-bottom: var(--sp-3);
}

.triage-promises {
  margin: var(--sp-5) 0;
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.triage-promises li {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.65;
  color: var(--parchment-dim);
  padding-left: var(--sp-4);
  position: relative;
}

.triage-promises li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 14px;
  height: 1.5px;
  background-color: var(--amber);
}

.triage-disclaimer {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  line-height: 1.65;
  color: var(--ash);
  font-style: italic;
  margin-top: var(--sp-5);
  padding-top: var(--sp-4);
  border-top: var(--rule-fog);
}

/* Form panel — amber accent at top */
.triage-form-wrap {
  background-color: rgba(7, 7, 5, 0.6);
  border: 1px solid rgba(160, 120, 48, 0.25);
  border-top: 3px solid var(--amber);
  border-radius: 2px;
  padding: var(--sp-6);
  position: sticky;
  top: calc(var(--nav-h) + var(--sp-4));
}

.form-heading {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 500;
  color: var(--parchment);
  line-height: 1.2;
  margin-bottom: var(--sp-2);
}

.form-sub {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  line-height: 1.65;
  color: var(--ash-light);
  margin-bottom: var(--sp-5);
}

.triage-form {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-label {
  font-family: var(--font-label);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: var(--parchment-dim);
}

.required { color: var(--amber); margin-left: 2px; }

.form-input {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--parchment);
  background-color: rgba(226, 217, 196, 0.05);
  border: 1px solid rgba(160, 120, 48, 0.22);
  border-radius: 2px;
  padding: 0.75rem 1rem;
  min-height: 50px;
  width: 100%;
  transition:
    border-color 200ms ease,
    border-left-width 200ms ease,
    background-color 200ms ease;
  -webkit-appearance: none;
  appearance: none;
}

.form-input::placeholder {
  color: var(--ash);
  font-style: italic;
}

/* Left-edge amber accent on focus */
.form-input:focus {
  outline: none;
  border-color: var(--amber);
  border-left: 3px solid var(--amber);
  padding-left: calc(1rem - 2px);
  background-color: rgba(226, 217, 196, 0.07);
}

.field-error {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  color: #C47A5A;
  font-style: italic;
  margin-top: 4px;
  line-height: 1.5;
}

.form-privacy {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  color: var(--ash);
  text-align: center;
  line-height: 1.55;
  font-style: italic;
}


/* =====================================================
   11. CONTENT LANES
===================================================== */

.lanes { background-color: var(--parchment); }
.lanes .section-heading { color: var(--ink); }
.lanes .section-intro { color: var(--ash); }

.lanes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background-color: rgba(138, 130, 120, 0.18);
}

.lane-card {
  padding: var(--sp-6) var(--sp-5);
  background-color: var(--parchment);
  border-top: 2px solid transparent;
  border-left: 3px solid transparent;
  transition:
    border-top-color 240ms ease,
    border-left-color 240ms ease,
    background-color 240ms ease;
}

.lane-card:hover {
  border-top-color: var(--amber);
  border-left-color: rgba(160, 120, 48, 0.4);
  background-color: #D8D0BC;
}

/* Pro Se Way: permanent oxblood left edge + amber top */
.lane-card--prose {
  border-top-color: var(--amber);
  border-left: 4px solid var(--oxblood);
  padding-left: calc(var(--sp-5) - 1px);
  background-color: #DDD5C0;
}

.lane-card--prose:hover {
  background-color: #D5CCBA;
}

.lanes-grid .lane-card:nth-child(4) { grid-column: span 1; }
.lanes-grid .lane-card:nth-child(5) { grid-column: span 2; }

.lane-marker {
  display: none;
}

.lane-title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 500;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: var(--sp-2);
}

.lane-card--prose .lane-title { color: var(--oxblood); }

.lane-desc {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  line-height: 1.8;
  color: #4A4438;
}

.lane-disclaimer {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  line-height: 1.65;
  color: var(--ash);
  font-style: italic;
  margin-top: var(--sp-4);
  padding-top: var(--sp-3);
  border-top: 1px solid rgba(138, 130, 120, 0.3);
}


/* =====================================================
   12. ABOUT / FOUNDER
===================================================== */

.about {
  background-color: var(--ink);
  border-top: var(--rule-parchment);
}

.about-inner {
  max-width: 820px;
}

.about .eyebrow { position: relative; z-index: 1; }

.about .section-heading {
  color: var(--parchment);
  max-width: 520px;
  position: relative;
  z-index: 1;
}

.about-body {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  max-width: 660px;
  margin-bottom: var(--sp-8);
  position: relative;
  z-index: 1;
}

.about-body p {
  font-family: var(--font-body);
  font-size: var(--text-md);
  line-height: 1.85;
  color: var(--parchment-dim);
}

.about-body .about-lead {
  font-size: var(--text-lg);
  color: var(--parchment);
}

/* Blockquote — emphatic */
.about-quote {
  max-width: 640px;
  padding: var(--sp-5) var(--sp-6);
  border-left: 3px solid var(--amber);
  background-color: rgba(160, 120, 48, 0.06);
  position: relative;
  z-index: 1;
}

.about-quote p {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  font-style: italic;
  line-height: 1.65;
  color: var(--parchment);
  margin-bottom: var(--sp-3);
}

.about-quote cite {
  font-family: var(--font-label);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--amber);
  font-style: normal;
}


/* =====================================================
   13. YOUTUBE / MEDIA
===================================================== */

.media {
  background-color: var(--verdigris-dark);
  border-top: 1px solid rgba(160, 120, 48, 0.12);
  text-align: center;
}

.media-inner {
  max-width: 640px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.media .section-heading { color: var(--parchment); }

.media-desc {
  font-family: var(--font-body);
  font-size: var(--text-md);
  line-height: 1.85;
  color: rgba(189, 181, 164, 0.75);
  margin-bottom: var(--sp-6);
}

.media-note {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-style: italic;
  color: var(--ash);
  margin-top: var(--sp-4);
  line-height: 1.6;
}


/* =====================================================
   14. FINAL CTA
===================================================== */

.final-cta {
  background-color: var(--ink-deep);
  background-image: radial-gradient(
    ellipse 65% 65% at 50% 50%,
    #141412 0%,
    #050503 100%
  );
  border-top: var(--rule-parchment);
  text-align: center;
}

.final-cta-inner {
  max-width: 660px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.final-cta-heading {
  font-family: var(--font-display);
  font-size: var(--text-5xl);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--parchment);
  margin-bottom: var(--sp-4);
}

.final-cta-sub {
  font-family: var(--font-body);
  font-size: var(--text-md);
  line-height: 1.75;
  color: var(--parchment-dim);
  max-width: 500px;
  margin-bottom: var(--sp-6);
}

.final-cta-note {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-style: italic;
  color: var(--ash);
  margin-top: var(--sp-4);
  line-height: 1.6;
}


/* =====================================================
   15. FOOTER
===================================================== */

.site-footer {
  background-color: var(--ink-deep);
  border-top: 1px solid rgba(160, 120, 48, 0.2);
  background-image: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 60px,
    rgba(226, 217, 196, 0.006) 60px,
    rgba(226, 217, 196, 0.006) 61px
  );
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--sp-10) var(--section-h) var(--sp-6);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-5);
  text-align: center;
}

/* TGSL seal stamp */
.footer-seal {
  display: flex;
  justify-content: center;
  margin-bottom: var(--sp-1);
}

.tgsl-seal-sm {
  width: 54px;
  height: 54px;
  color: var(--amber);
  opacity: 0.5;
  transition: opacity 300ms ease;
}

.footer-seal:hover .tgsl-seal-sm {
  opacity: 0.75;
}

.footer-brand { text-align: center; }

.footer-wordmark {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 500;
  color: var(--parchment);
  letter-spacing: 0.04em;
  margin-bottom: var(--sp-1);
}

.footer-tagline {
  font-family: var(--font-label);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--amber);
  opacity: 0.82;
}

/* Thin amber rule above nav links */
.footer-nav {
  width: 100%;
  max-width: 520px;
  padding-top: var(--sp-4);
  border-top: var(--rule-amber-dim);
}

.footer-nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--sp-1) var(--sp-4);
}

.footer-link {
  font-family: var(--font-label);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ash-light);
  transition: color 200ms ease;
}

.footer-link:hover { color: var(--parchment-dim); }

.footer-disclaimer {
  max-width: 600px;
  padding-top: var(--sp-5);
  border-top: var(--rule-fog);
}

.footer-disclaimer p {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  line-height: 1.8;
  color: var(--ash);
  font-style: italic;
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-family: var(--font-label);
  font-size: var(--text-xs);
  opacity: 0.65;
}

.footer-copy {
  font-family: var(--font-label);
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  color: var(--ash);
  opacity: 0.45;
}


/* =====================================================
   16. RESPONSIVE — TABLET (max-width: 1024px)
===================================================== */

@media (max-width: 1024px) {

  :root { --section-v: var(--sp-12); }

  .hero-heading { font-size: var(--text-5xl); }
  .final-cta-heading { font-size: var(--text-4xl); }

  .hero-seal-bg { width: 480px; height: 480px; }

  /* Pillars: 2×2 */
  .pillars { grid-template-columns: repeat(2, 1fr); }

  .pillar {
    padding-right: var(--sp-5);
    padding-left: var(--sp-5);
    padding-top: var(--sp-6);
    padding-bottom: var(--sp-6);
  }

  .pillar:first-child { padding-left: 0; }

  .pillar:nth-child(2) {
    border-right: none;
    padding-right: 0;
  }

  .pillar:nth-child(3) {
    border-right: 1px solid rgba(160, 120, 48, 0.16);
    border-top: 1px solid rgba(160, 120, 48, 0.16);
    padding-left: 0;
  }

  .pillar:nth-child(4) {
    border-right: none;
    border-top: 1px solid rgba(160, 120, 48, 0.16);
    padding-right: 0;
  }

  /* Triage: stack */
  .triage-inner {
    grid-template-columns: 1fr;
    gap: var(--sp-8);
  }

  .triage-form-wrap { position: static; min-width: 0; }

  .triage-watermark { font-size: 7rem; }

  /* Lanes: 2 cols */
  .lanes-grid { grid-template-columns: repeat(2, 1fr); }

  .lanes-grid .lane-card:nth-child(4) { grid-column: span 1; }
  .lanes-grid .lane-card:nth-child(5) { grid-column: span 2; }

  /* Nav — hamburger activates before long labels can wrap */
  .nav-toggle { display: flex; }

  .nav-links {
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0; bottom: 0;
    background-color: rgba(7, 7, 5, 0.97);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: var(--sp-5);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity 280ms var(--ease-out),
                visibility 280ms var(--ease-out),
                transform 280ms var(--ease-out);
    pointer-events: none;
    overflow-y: auto;
    padding: var(--sp-6) var(--sp-4);
  }

  .nav-links.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav-link { font-size: 0.9rem; }
  .nav-link--cta { padding: 0.6rem 1.75rem; }
}


/* =====================================================
   17. RESPONSIVE — MOBILE (max-width: 768px)
===================================================== */

@media (max-width: 768px) {

  :root {
    --section-v: var(--sp-10);
    --section-h: var(--sp-3);
    --nav-h:     64px;
  }

  /* Hero — restore centered composition on mobile */
  .hero { justify-content: center; }
  .hero-inner {
    margin-right: auto;
    max-width: 560px;
    padding-top: calc(var(--nav-h) + var(--sp-10));
  }

  .hero-heading {
    font-size: clamp(2.25rem, 9vw, 3.75rem);
  }

  .hero-seal-bg {
    width: 340px;
    height: 340px;
    opacity: 0.04;
  }

  /* Seal — 2×2 grid: FAITH. LIBERTY. / WISDOM. RESPONSIBILITY. */
  .hero-seal {
    font-size: 0.6rem;
    letter-spacing: 0.18em;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    max-width: 580px; /* keep border rules full-width */
    padding: var(--sp-2) 0;
    gap: var(--sp-1) 0;
  }

  .hero-seal span {
    width: 50%;
    max-width: 140px; /* constrains the text cluster to ~280px total */
    text-align: center;
  }

  .hero-sub { font-size: var(--text-base); }

  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 340px;
  }

  .hero-ctas .btn { width: 100%; }

  /* Section headings */
  .section-heading { font-size: var(--text-3xl); }

  /* Problem — remove left rule on mobile, keep pull-quote */
  .problem-body {
    border-left: none;
    padding-left: 0;
  }

  .problem-body .problem-turning {
    margin-left: 0;
    font-size: var(--text-2xl);
    padding-left: var(--sp-2);
    padding-right: var(--sp-2);
  }

  /* Pillars: single column */
  .pillars { grid-template-columns: 1fr; }

  .pillar,
  .pillar:first-child,
  .pillar:not(:first-child),
  .pillar:nth-child(3),
  .pillar:nth-child(4) {
    padding: var(--sp-5) 0;
    border-right: none;
    border-top: none;
    border-bottom: 1px solid rgba(160, 120, 48, 0.18);
  }

  .pillar:last-child { border-bottom: none; }

  .pillar-word { font-size: var(--text-3xl); }

  /* Triage */
  .triage-form-wrap { padding: var(--sp-4); border-top-width: 3px; }
  .triage-watermark { display: none; }

  /* Lanes: single column */
  .lanes-grid { grid-template-columns: 1fr; gap: 2px; }
  .lanes-grid .lane-card:nth-child(n) { grid-column: span 1; }

  /* Blockquote */
  .about-quote { padding: var(--sp-4); }
  .about-quote p { font-size: var(--text-lg); }

  /* Final CTA */
  .final-cta-heading { font-size: var(--text-4xl); }

  /* Footer seal smaller on mobile */
  .tgsl-seal-sm { width: 44px; height: 44px; }
}


/* =====================================================
   18. THANK-YOU PAGE
===================================================== */

.ty-section {
  min-height: calc(100vh - var(--nav-h));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--sp-10) var(--section-h);
  background-color: var(--ink);
}

.ty-card {
  max-width: 560px;
  width: 100%;
  text-align: center;
}

.ty-rule {
  width: 48px;
  height: 2px;
  background-color: var(--amber);
  margin: 0 auto var(--sp-5);
}

.ty-heading {
  font-family: var(--font-display);
  font-size: var(--text-5xl);
  font-weight: 600;
  color: var(--parchment);
  line-height: 1.15;
  margin-bottom: var(--sp-5);
}

.ty-body {
  font-family: var(--font-body);
  font-size: var(--text-lg);
  line-height: 1.75;
  color: var(--ash-light);
  margin-bottom: var(--sp-4);
}

.ty-sub {
  font-family: var(--font-label);
  font-size: var(--text-sm);
  color: var(--ash);
  letter-spacing: 0.01em;
  margin-bottom: var(--sp-7);
}

.ty-subheading {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 500;
  color: var(--parchment);
  line-height: 1.3;
  margin-top: var(--sp-8);
  margin-bottom: var(--sp-2);
}

.ty-list {
  list-style: disc;
  padding-left: var(--sp-6);
  margin-bottom: var(--sp-4);
}

.ty-list li {
  margin-bottom: var(--sp-1);
}

.ty-btn {
  display: inline-block;
}

@media (max-width: 768px) {
  .ty-heading { font-size: var(--text-4xl); }
}


/* =====================================================
   19. RESPONSIVE — SMALL MOBILE (max-width: 400px)
===================================================== */

@media (max-width: 400px) {

  :root { --section-h: var(--sp-2); }

  .hero-heading { font-size: 2rem; }

  .final-cta-heading { font-size: var(--text-3xl); }

  .triage-form-wrap { padding: var(--sp-3) var(--sp-2); }

  .footer-nav ul { gap: var(--sp-1) var(--sp-3); }
}
