    /* ─── Reset ─────────────────────────────── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }

    /* ─── Tokens ─────────────────────────────── */
    :root {
      --cream:      #FEFCF8;
      --cream-2:    #F5EDE1;
      --cream-3:    #EBE1D3;
      --ink:        #2A2118;
      --ink-2:      #5C5347;
      --ink-3:      #8A8075;
      --gold:       #C9A96E;
      --gold-2:     #D9BC84;
      --gold-dark:  #B8944F;
      --border:     rgba(42, 33, 24, 0.10);
      --nav-h:      72px;
      --section-py: clamp(80px, 12vw, 120px);
    }

    /* ─── Base ───────────────────────────────── */
    body.gdj-landing {
      background: var(--cream);
      color: var(--ink);
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
      font-weight: 400;
      font-size: 16px;
      line-height: 1.7;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      overflow-x: hidden;
    }

    /* ─── Logo ───────────────────────────────── */
    .logo {
      font-family: 'AustinDeck', 'AustinHeadline', Georgia, serif;
      font-weight: 300;
      font-size: 36px;
      letter-spacing: 0.01em;
      text-decoration: none;
      color: var(--cream);
      line-height: 1;
      white-space: nowrap;
      display: inline-block;
      min-width: 150px;
    }
    .logo .du { color: var(--gold); }

    /* ─── Nav ────────────────────────────────── */
    nav.gdj-landing-nav {
      position: fixed;
      inset: 0 0 auto 0;
      height: var(--nav-h);
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 clamp(24px, 5vw, 52px);
      z-index: 100;
      background: var(--ink);
    }

    .nav-right {
      display: flex;
      align-items: center;
      gap: 36px;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 28px;
    }

    .nav-links a {
      font-family: 'Inter', sans-serif;
      font-size: 12px;
      font-weight: 500;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: rgba(254, 252, 248, 0.65);
      text-decoration: none;
      transition: color 0.2s ease;
    }
    .nav-links a:hover { color: var(--gold); }
    .nav-links a.active { color: var(--gold); }

    .nav-cta {
      font-family: 'Inter', sans-serif;
      font-size: 12px;
      font-weight: 500;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--ink);
      background: var(--gold);
      border: none;
      padding: 8px 20px;
      border-radius: 999px;
      text-decoration: none;
      cursor: pointer;
      transition: all 0.2s ease;
      white-space: nowrap;
    }
    .nav-cta:hover { background: var(--gold-2); transform: translateY(-1px); }

    /* ─── Hero ───────────────────────────────── */
    .about-hero {
      padding-top: calc(var(--nav-h) + 80px);
      padding-bottom: 80px;
      padding-left: clamp(24px, 8vw, 120px);
      padding-right: clamp(24px, 8vw, 120px);
      background: linear-gradient(180deg, #E8DFD3 0%, #F2EBE1 30%, var(--cream) 100%);
      position: relative;
      overflow: hidden;
    }

    .about-hero::before {
      content: '';
      position: absolute;
      right: -120px;
      top: 50%;
      transform: translateY(-50%);
      width: 500px;
      height: 500px;
      border-radius: 50%;
      border: 1px solid rgba(201, 169, 110, 0.10);
      pointer-events: none;
    }

    .about-hero .hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--gold-dark);
      margin-bottom: 28px;
    }
    .about-hero .hero-eyebrow::before {
      content: '';
      width: 32px;
      height: 2px;
      background: var(--gold);
    }

    .about-hero h1 {
      font-family: 'AustinHeadline', Georgia, serif;
      font-weight: 300;
      font-size: clamp(52px, 9vw, 88px);
      line-height: 1.05;
      letter-spacing: -0.02em;
      color: var(--ink);
      max-width: 760px;
      margin-bottom: 0;
    }

    .about-hero h1 em {
      font-style: italic;
    }

    /* ─── Story Sections ─────────────────────── */
    .story-wrap {
      max-width: 760px;
      margin: 0 auto;
      padding: clamp(40px, 6vw, 64px) clamp(24px, 5vw, 52px);
    }

    .story-section {
      margin-bottom: 48px;
      opacity: 0;
      transform: translateY(28px);
      transition: opacity 0.75s ease, transform 0.75s ease;
    }
    .story-section.show { opacity: 1; transform: translateY(0); }

    .story-section:last-child { margin-bottom: 0; }

    .story-label {
      font-size: 10px;
      font-weight: 600;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--gold-dark);
      margin-bottom: 20px;
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .story-label::before {
      content: '';
      width: 24px;
      height: 1px;
      background: var(--gold);
    }

    .story-section h2 {
      font-family: 'AustinHeadline', Georgia, serif;
      font-weight: 300;
      font-size: clamp(28px, 4vw, 38px);
      line-height: 1.2;
      letter-spacing: -0.015em;
      color: var(--ink);
      margin-bottom: 24px;
    }

    .story-section p {
      font-size: clamp(16px, 2vw, 18px);
      color: var(--ink-2);
      line-height: 1.8;
      margin-bottom: 20px;
      max-width: 640px;
    }
    .story-section p:last-child { margin-bottom: 0; }

    .story-section p strong {
      color: var(--ink);
      font-weight: 500;
    }

    /* Divider */
    .story-divider {
      width: 64px;
      height: 1px;
      background: var(--gold);
      opacity: 0.4;
      margin: 0 auto 80px;
    }

    /* ─── Promise Section ────────────────────── */
    .promise-section {
      background: var(--cream-2);
      padding: clamp(40px, 6vw, 64px) clamp(24px, 5vw, 52px);
      text-align: center;
    }

    .promise-inner {
      max-width: 680px;
      margin: 0 auto;
    }

    .promise-eyebrow {
      font-size: 10px;
      font-weight: 600;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--gold-dark);
      margin-bottom: 32px;
      opacity: 1;
    }

    .promise-section h2 {
      font-family: 'AustinHeadline', Georgia, serif;
      font-weight: 300;
      font-style: italic;
      font-size: clamp(36px, 5.5vw, 56px);
      line-height: 1.2;
      letter-spacing: -0.015em;
      color: var(--ink);
      margin-bottom: 36px;
    }

    .promise-sub {
      font-size: 15px;
      color: var(--ink-2);
      line-height: 1.75;
      margin-bottom: 48px;
    }

    .promise-cta {
      font-family: 'Inter', sans-serif;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--ink);
      background: var(--gold);
      border: none;
      padding: 16px 40px;
      text-decoration: none;
      display: inline-block;
      transition: all 0.2s ease;
    }
    .promise-cta:hover { background: var(--gold-2); transform: translateY(-2px); }

    /* ─── Footer ─────────────────────────────── */
    footer {
      background: var(--ink);
      padding: 56px clamp(24px, 5vw, 52px);
      border-top: 1px solid rgba(254, 252, 248, 0.06);
    }
    .footer-inner {
      max-width: 1100px;
      margin: 0 auto;
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 40px;
      flex-wrap: wrap;
    }
    .footer-brand .logo {
      display: block;
      margin-bottom: 16px;
    }
    .footer-meta {
      font-size: 12px;
      color: rgba(254, 252, 248, 0.4);
      line-height: 1.9;
    }
    .footer-meta a {
      color: rgba(254, 252, 248, 0.4);
      text-decoration: none;
      transition: color 0.2s;
    }
    .footer-meta a:hover { color: rgba(254, 252, 248, 0.7); }

    .footer-right {
      display: flex;
      gap: 48px;
    }
    .footer-col h4 {
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: rgba(254, 252, 248, 0.6);
      margin-bottom: 16px;
    }
    .footer-col a {
      display: block;
      font-size: 13px;
      color: rgba(254, 252, 248, 0.5);
      text-decoration: none;
      margin-bottom: 10px;
      transition: color 0.2s;
    }
    .footer-col a:hover { color: var(--gold); }

    /* ─── Responsive ─────────────────────────── */
    @media (max-width: 768px) {
      .footer-right { flex-direction: column; gap: 32px; }
    }

    @media (max-width: 600px) {
      nav.gdj-landing-nav { height: 64px; }
      .about-hero { padding-top: calc(64px + 56px); }
      .footer-inner { flex-direction: column; }
    }

    /* ─── Dark Mode ──────────────────────────── */
    @media (prefers-color-scheme: dark) {
      :root {
        --cream:      #1E1A14;
        --cream-2:    #252018;
        --cream-3:    #2E2820;
        --ink:        #F0EBE0;
        --ink-2:      rgba(240,235,224,0.75);
        --gold:       #C9A96E;
        --gold-2:     #E8C988;
        --gold-dark:  #C9A96E;
        --border:     rgba(240,235,224,0.12);
      }
      body.gdj-landing { background-color: var(--cream); color: var(--ink); }
      .about-hero {
        background: linear-gradient(180deg, #16120E 0%, #1A1610 30%, var(--cream) 100%) !important;
      }
      .logo { color: #F0EBE0 !important; }
      .logo .du { color: var(--gold) !important; }
      nav.gdj-landing-nav { background: rgba(22,18,14,0.97) !important; }
      .promise-section { background: #0D0B09 !important; }
      footer { background: #0D0B09 !important; }
    }
