
  :root {
    --navy: #0A1840;
    --navy-deep: #050C26;
    --navy-soft: #1A2956;
    --gold: #C9A24A;
    --gold-deep: #A8852D;
    --gold-soft: #E8D69E;
    --cream: #F4EFE3;
    --cream-deep: #ECE4D2;
    --cream-warm: #F8F3E7;
    --ink: #1A1A1A;
    --ink-mid: #4A463E;
    --ink-soft: #6B6557;
    --line: #D8CFB8;
  }

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

  html { scroll-behavior: smooth; }

  body {
    background: var(--cream);
    color: var(--ink);
    font-family: 'Inter', system-ui, sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  /* Subtle paper grain on the cream */
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    opacity: 0.4;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.85 0 0 0 0 0.81 0 0 0 0 0.7 0 0 0 0.06 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  }

  /* ===== NAV ===== */
  nav.top {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(244, 239, 227, 0.92);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--line);
  }
  .nav-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 18px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
  }
  .brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--navy);
  }
  .brand-mark {
    width: 28px;
    height: 28px;
    background: var(--gold);
    transform: rotate(45deg);
    border-radius: 2px;
    flex-shrink: 0;
  }
  .brand-name {
    font-family: 'Fraunces', serif;
    font-size: 22px;
    font-weight: 500;
    letter-spacing: -0.02em;
    white-space: nowrap;
  }
  .brand-name em {
    font-style: italic;
    color: var(--gold-deep);
    font-weight: 400;
  }
  .nav-links {
    display: flex;
    gap: 28px;
    align-items: center;
    font-size: 14px;
    color: var(--ink-mid);
  }
  .nav-links a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--navy); }
  .nav-cta {
    background: var(--navy);
    color: var(--cream);
    padding: 10px 20px;
    border-radius: 999px;
    font-weight: 500;
    transition: all 0.2s;
  }
  .nav-cta:hover {
    background: var(--navy-deep) !important;
    transform: translateY(-1px);
  }

  /* ===== HERO ===== */
  .hero {
    position: relative;
    padding: 100px 32px 80px;
    overflow: hidden;
  }
  .hero-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
  }
  .hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--gold-deep);
    font-weight: 600;
    margin-bottom: 28px;
  }
  .hero-eyebrow::before {
    content: '';
    width: 32px;
    height: 1px;
    background: var(--gold);
  }
  .hero h1 {
    font-family: 'Fraunces', serif;
    font-size: clamp(44px, 6.5vw, 84px);
    font-weight: 400;
    line-height: 1.02;
    letter-spacing: -0.025em;
    color: var(--navy);
    margin-bottom: 32px;
  }
  .hero h1 em {
    font-style: italic;
    color: var(--gold-deep);
    font-weight: 300;
  }
  .hero-lede {
    font-size: 19px;
    line-height: 1.6;
    color: var(--ink-mid);
    margin-bottom: 40px;
    max-width: 560px;
  }
  .hero-cta-row {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
  }
  .btn-primary {
    background: var(--navy);
    color: var(--cream);
    padding: 16px 32px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
  }
  .btn-primary:hover {
    background: var(--navy-deep);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(10, 24, 64, 0.25);
  }
  .btn-secondary {
    color: var(--navy);
    padding: 16px 24px;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    border-bottom: 1px solid var(--navy);
    transition: all 0.2s;
  }
  .btn-secondary:hover { color: var(--gold-deep); border-color: var(--gold-deep); }

  /* Hero side panel */
  .hero-side {
    position: relative;
    height: 480px;
  }
  .hero-card {
    position: absolute;
    background: var(--navy);
    color: var(--cream);
    padding: 32px;
    border-radius: 4px;
    box-shadow: 0 20px 60px rgba(10, 24, 64, 0.2);
  }
  .hero-card.card-1 {
    top: 0;
    right: 40px;
    width: 280px;
    transform: rotate(-2deg);
  }
  .hero-card.card-2 {
    bottom: 40px;
    left: 0;
    width: 300px;
    transform: rotate(2deg);
    background: var(--cream-warm);
    color: var(--navy);
    border: 1px solid var(--gold);
  }
  .hero-card-eyebrow {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--gold);
    margin-bottom: 16px;
    font-weight: 600;
  }
  .hero-card.card-2 .hero-card-eyebrow {
    color: var(--gold-deep);
  }
  .hero-card-body {
    font-family: 'Fraunces', serif;
    font-size: 22px;
    line-height: 1.3;
    font-weight: 300;
  }
  .hero-card-body em {
    font-style: italic;
    color: var(--gold);
  }
  .hero-card.card-2 .hero-card-body em {
    color: var(--gold-deep);
  }

  /* ===== TRUST STRIP ===== */
  .trust-strip {
    background: var(--cream-deep);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 40px 32px;
    position: relative;
    z-index: 2;
  }
  .trust-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
  }
  .trust-eyebrow {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--ink-soft);
    font-weight: 600;
  }
  .trust-stats {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
  }
  .trust-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
  .trust-stat-value {
    font-family: 'Fraunces', serif;
    font-size: 32px;
    font-weight: 400;
    color: var(--navy);
    line-height: 1;
  }
  .trust-stat-label {
    font-size: 12px;
    color: var(--ink-soft);
    text-transform: uppercase;
    letter-spacing: 0.1em;
  }

  /* ===== PROBLEM ===== */
  .section {
    padding: 120px 32px;
    position: relative;
    z-index: 2;
  }
  .section-inner {
    max-width: 1280px;
    margin: 0 auto;
  }
  .section-eyebrow {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--gold-deep);
    font-weight: 600;
    margin-bottom: 24px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
  }
  .section-eyebrow::before {
    content: '';
    width: 32px;
    height: 1px;
    background: var(--gold);
  }
  .section-title {
    font-family: 'Fraunces', serif;
    font-size: clamp(36px, 5vw, 60px);
    line-height: 1.05;
    font-weight: 400;
    letter-spacing: -0.02em;
    color: var(--navy);
    margin-bottom: 28px;
    max-width: 880px;
  }
  .section-title em {
    font-style: italic;
    color: var(--gold-deep);
    font-weight: 300;
  }
  .section-lede {
    font-size: 19px;
    line-height: 1.65;
    color: var(--ink-mid);
    max-width: 720px;
    margin-bottom: 64px;
  }

  /* The Problem - statement style */
  .problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
    margin-top: 56px;
  }
  .problem-cell {
    background: var(--cream);
    padding: 40px 32px;
  }
  .problem-cell-number {
    font-family: 'Fraunces', serif;
    font-size: 16px;
    font-style: italic;
    color: var(--gold-deep);
    margin-bottom: 16px;
    font-weight: 400;
  }
  .problem-cell-title {
    font-family: 'Fraunces', serif;
    font-size: 26px;
    color: var(--navy);
    margin-bottom: 14px;
    font-weight: 500;
    line-height: 1.2;
  }
  .problem-cell-body {
    font-size: 15px;
    color: var(--ink-mid);
    line-height: 1.6;
  }

  /* ===== THE FOUR PILLARS ===== */
  .pillars-section {
    background: var(--navy);
    color: var(--cream);
  }
  .pillars-section .section-eyebrow { color: var(--gold); }
  .pillars-section .section-eyebrow::before { background: var(--gold); }
  .pillars-section .section-title { color: var(--cream); }
  .pillars-section .section-title em { color: var(--gold); }
  .pillars-section .section-lede { color: var(--cream-deep); }

  .pillars-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 64px;
  }
  .pillar {
    background: var(--navy-soft);
    padding: 48px 40px;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(201, 162, 74, 0.15);
  }
  .pillar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gold);
  }
  .pillar-num {
    font-family: 'Fraunces', serif;
    font-size: 14px;
    font-style: italic;
    color: var(--gold);
    margin-bottom: 12px;
    letter-spacing: 0.05em;
  }
  .pillar-name {
    font-family: 'Fraunces', serif;
    font-size: 30px;
    font-weight: 500;
    line-height: 1.15;
    margin-bottom: 16px;
    color: var(--cream);
  }
  .pillar-name em {
    font-style: italic;
    color: var(--gold);
    font-weight: 300;
  }
  .pillar-desc {
    font-size: 15px;
    color: var(--cream-deep);
    line-height: 1.65;
    margin-bottom: 24px;
  }
  .pillar-list {
    list-style: none;
    font-size: 14px;
    color: var(--cream-deep);
  }
  .pillar-list li {
    padding: 8px 0;
    border-top: 1px solid rgba(216, 207, 184, 0.15);
    display: flex;
    align-items: baseline;
    gap: 12px;
  }
  .pillar-list li::before {
    content: '·';
    color: var(--gold);
    font-size: 20px;
    line-height: 0;
  }

  /* ===== WHO IT'S FOR ===== */
  .audience-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 56px;
  }
  .audience-card {
    background: var(--cream-warm);
    border: 1px solid var(--line);
    padding: 40px 32px;
    border-radius: 4px;
    transition: all 0.3s;
  }
  .audience-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(10, 24, 64, 0.08);
    border-color: var(--gold);
  }
  .audience-icon {
    width: 48px;
    height: 48px;
    background: var(--navy);
    border-radius: 4px;
    margin-bottom: 24px;
    position: relative;
  }
  .audience-icon::after {
    content: '';
    position: absolute;
    inset: 8px;
    border: 1.5px solid var(--gold);
    border-radius: 2px;
  }
  .audience-card-title {
    font-family: 'Fraunces', serif;
    font-size: 24px;
    color: var(--navy);
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 14px;
  }
  .audience-card-desc {
    font-size: 15px;
    color: var(--ink-mid);
    line-height: 1.6;
    margin-bottom: 24px;
  }
  .audience-tag {
    display: inline-block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold-deep);
    font-weight: 600;
  }

  /* ===== THE FIRST CROSSING ===== */
  .cohort-section {
    background: var(--cream-warm);
    position: relative;
  }
  .cohort-card {
    background: var(--navy);
    color: var(--cream);
    padding: 80px 60px;
    border-radius: 4px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    margin-top: 56px;
    position: relative;
    overflow: hidden;
  }
  .cohort-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -15%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(201, 162, 74, 0.15) 0%, transparent 70%);
    pointer-events: none;
  }
  .cohort-tag {
    display: inline-block;
    background: var(--gold);
    color: var(--navy);
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 24px;
  }
  .cohort-title {
    font-family: 'Fraunces', serif;
    font-size: 48px;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--cream);
    letter-spacing: -0.02em;
  }
  .cohort-title em {
    font-style: italic;
    color: var(--gold);
  }
  .cohort-desc {
    font-size: 16px;
    color: var(--cream-deep);
    line-height: 1.65;
    margin-bottom: 32px;
  }
  .cohort-spots {
    display: flex;
    align-items: baseline;
    gap: 16px;
    margin-bottom: 32px;
  }
  .cohort-spots-num {
    font-family: 'Fraunces', serif;
    font-size: 64px;
    font-weight: 400;
    color: var(--gold);
    line-height: 1;
  }
  .cohort-spots-label {
    font-size: 13px;
    color: var(--cream-deep);
    text-transform: uppercase;
    letter-spacing: 0.12em;
  }
  .cohort-walkers {
    background: rgba(201, 162, 74, 0.08);
    border: 1px solid rgba(201, 162, 74, 0.25);
    padding: 32px;
    border-radius: 4px;
  }
  .walker-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 14px 0;
    border-bottom: 1px solid rgba(216, 207, 184, 0.15);
  }
  .walker-row:last-child { border-bottom: none; }
  .walker-name {
    font-family: 'Fraunces', serif;
    font-size: 18px;
    color: var(--cream);
    font-weight: 500;
  }
  .walker-name em {
    font-style: italic;
    color: var(--gold);
    font-weight: 300;
  }
  .walker-price {
    font-family: 'Fraunces', serif;
    font-size: 20px;
    color: var(--gold);
    font-weight: 500;
  }
  .walker-strike {
    text-decoration: line-through;
    color: var(--cream-deep);
    font-size: 14px;
    opacity: 0.5;
    margin-right: 8px;
  }

  /* ===== FINAL CTA ===== */
  .final-cta {
    padding: 140px 32px;
    text-align: center;
    position: relative;
    z-index: 2;
  }
  .final-cta h2 {
    font-family: 'Fraunces', serif;
    font-size: clamp(40px, 6vw, 72px);
    line-height: 1.05;
    font-weight: 400;
    color: var(--navy);
    letter-spacing: -0.025em;
    margin-bottom: 32px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
  }
  .final-cta h2 em {
    font-style: italic;
    color: var(--gold-deep);
    font-weight: 300;
  }
  .final-cta p {
    font-size: 19px;
    color: var(--ink-mid);
    max-width: 600px;
    margin: 0 auto 48px;
    line-height: 1.6;
  }

  /* ===== FOOTER ===== */
  footer {
    background: var(--navy-deep);
    color: var(--cream-deep);
    padding: 80px 32px 40px;
    position: relative;
    z-index: 2;
  }
  .footer-inner {
    max-width: 1280px;
    margin: 0 auto;
  }
  .footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 64px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(216, 207, 184, 0.15);
  }
  .footer-tagline {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-size: 20px;
    color: var(--gold);
    margin-bottom: 16px;
    line-height: 1.3;
    max-width: 360px;
    font-weight: 300;
  }
  .footer-desc {
    font-size: 14px;
    color: var(--cream-deep);
    line-height: 1.6;
    max-width: 360px;
    opacity: 0.7;
  }
  .footer-col h4 {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 20px;
  }
  .footer-col a {
    display: block;
    color: var(--cream-deep);
    text-decoration: none;
    font-size: 14px;
    padding: 6px 0;
    opacity: 0.7;
    transition: opacity 0.2s, color 0.2s;
  }
  .footer-col a:hover {
    opacity: 1;
    color: var(--gold);
  }
  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
  }
  .footer-brand-mark {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--cream-deep);
    opacity: 0.5;
  }

  /* ===== ANIMATIONS ===== */
  @keyframes fadeUp {
    from {
      opacity: 0;
      transform: translateY(24px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  .hero h1, .hero-lede, .hero-cta-row {
    animation: fadeUp 0.8s ease-out backwards;
  }
  .hero-lede { animation-delay: 0.15s; }
  .hero-cta-row { animation-delay: 0.3s; }
  .hero-card.card-1 { animation: fadeUp 1s ease-out 0.4s backwards; }
  .hero-card.card-2 { animation: fadeUp 1s ease-out 0.55s backwards; }

  /* ===== RESPONSIVE ===== */
  @media (max-width: 960px) {
    .nav-links { display: none; }
    .nav-links .nav-cta { display: inline-block; }
    .hero { padding: 60px 24px; }
    .hero-inner { grid-template-columns: 1fr; gap: 60px; }
    .hero-side { height: 360px; }
    .hero-card.card-1 { right: 0; width: 240px; }
    .hero-card.card-2 { width: 260px; }
    .section { padding: 80px 24px; }
    .problem-grid { grid-template-columns: 1fr; }
    .pillars-grid { grid-template-columns: 1fr; }
    .audience-cards { grid-template-columns: 1fr; }
    .cohort-card { grid-template-columns: 1fr; padding: 48px 32px; gap: 40px; }
    .cohort-title { font-size: 36px; }
    .footer-top { grid-template-columns: 1fr; gap: 32px; }
    .trust-stats { gap: 32px; }
  }

  @media (max-width: 600px) {
    .hero-cta-row { flex-direction: column; align-items: stretch; }
    .btn-primary, .btn-secondary { text-align: center; justify-content: center; }
  }
