    @font-face { font-family: 'AustinHeadline'; src: url('/fonts/AustinNewsHeadline-Light-Web.woff2') format('woff2'); font-weight: 300; font-style: normal; font-display: swap; }
    @font-face { font-family: 'AustinHeadline'; src: url('/fonts/AustinNewsHeadline-LightItalic-Web.woff2') format('woff2'); font-weight: 300; font-style: italic; font-display: swap; }
    @font-face { font-family: 'AustinHeadline'; src: url('/fonts/AustinNewsHeadline-Roman-Web.woff2') format('woff2'); font-weight: 400; font-style: normal; font-display: swap; }
    @font-face { font-family: 'AustinDeck'; src: url('/fonts/AustinNewsDeck-Light-Web.woff2') format('woff2'); font-weight: 300; font-style: normal; font-display: swap; }
    @font-face { font-family: 'AustinDeck'; src: url('/fonts/AustinNewsDeck-Roman-Web.woff2') format('woff2'); font-weight: 400; font-style: normal; font-display: swap; }

    .cookie-bar { position:fixed; bottom:0; left:0; right:0; z-index:999; background:#1A1510 !important; border-top:1px solid rgba(201,169,110,0.2); padding:16px clamp(24px,5vw,52px); display:flex; align-items:center; justify-content:space-between; gap:24px; flex-wrap:wrap; transform:translateY(100%); transition:transform 0.4s ease; }
    .cookie-bar.visible { transform:translateY(0); }
    .cookie-bar p { font-family:"Inter",sans-serif; font-size:13px; color:rgba(254,252,248,0.7); line-height:1.5; margin:0; flex:1; min-width:200px; }
    .cookie-bar p a { color:var(--gold); text-decoration:underline; }
    .cookie-bar-actions { display:flex; gap:12px; flex-shrink:0; }
    .cookie-accept { font-family:"Inter",sans-serif; font-size:12px; font-weight:600; letter-spacing:0.08em; text-transform:uppercase; color:var(--ink); background:var(--gold); border:none; padding:7px 18px; border-radius:999px; cursor:pointer; }
    .cookie-accept:hover { background:var(--gold-2); }
    .cookie-decline { font-family:"Inter",sans-serif; font-size:12px; color:rgba(254,252,248,0.45); background:none; border:none; padding:10px 4px; cursor:pointer; text-decoration:underline; }

    /* ─── 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); }

    /* ─── Page Header ────────────────────────── */
    .contact-header {
      padding-top: calc(var(--nav-h) + 72px);
      padding-bottom: 64px;
      padding-left: clamp(24px, 8vw, 120px);
      padding-right: clamp(24px, 8vw, 120px);
      border-bottom: 1px solid var(--border);
    }

    .page-eyebrow {
      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;
    }
    .page-eyebrow::before {
      content: '';
      width: 32px;
      height: 2px;
      background: var(--gold);
    }

    .contact-header h1 {
      font-family: 'AustinHeadline', Georgia, serif;
      font-weight: 300;
      font-size: clamp(44px, 7vw, 72px);
      line-height: 1.08;
      letter-spacing: -0.02em;
      color: var(--ink);
      margin-bottom: 16px;
    }

    .contact-header p {
      font-size: 17px;
      color: var(--ink-2);
      max-width: 480px;
      line-height: 1.7;
    }

    /* ─── Main Layout ────────────────────────── */
    .contact-main {
      max-width: 1100px;
      margin: 0 auto;
      padding: var(--section-py) clamp(24px, 5vw, 52px);
      display: grid;
      grid-template-columns: 1fr 1.5fr;
      gap: 80px;
      align-items: start;
    }

    /* ─── Left: Direct Contact ───────────────── */
    .contact-sidebar h2 {
      font-family: 'AustinHeadline', Georgia, serif;
      font-weight: 300;
      font-size: 26px;
      color: var(--ink);
      margin-bottom: 32px;
    }

    .contact-option {
      padding: 24px 0;
      border-bottom: 1px solid var(--border);
    }
    .contact-option:first-of-type { border-top: 1px solid var(--border); }

    .contact-option-label {
      font-size: 10px;
      font-weight: 600;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--gold-dark);
      margin-bottom: 10px;
    }

    .contact-option h3 {
      font-family: 'AustinHeadline', Georgia, serif;
      font-weight: 400;
      font-size: 20px;
      color: var(--ink);
      margin-bottom: 6px;
    }

    .contact-option p {
      font-size: 13px;
      color: var(--ink-3);
      margin-bottom: 12px;
      line-height: 1.6;
    }

    .contact-email {
      font-size: 13px;
      font-weight: 500;
      color: var(--gold-dark);
      text-decoration: none;
      letter-spacing: 0.01em;
      transition: color 0.2s;
    }
    .contact-email:hover { color: var(--ink); }

    /* Waitlist note */
    .waitlist-note {
      margin-top: 40px;
      padding: 20px 24px;
      background: rgba(201, 169, 110, 0.08);
      border: 1px solid rgba(201, 169, 110, 0.20);
      border-radius: 8px;
      font-size: 14px;
      color: var(--ink-2);
      line-height: 1.6;
    }
    .waitlist-note a {
      color: var(--gold-dark);
      text-decoration: none;
      font-weight: 500;
      transition: color 0.2s;
    }
    .waitlist-note a:hover { color: var(--ink); }

    /* ─── Right: Contact Form ────────────────── */
    .contact-form-wrap {
      background: var(--cream-2);
      border: 1px solid var(--border);
      padding: 48px clamp(28px, 4vw, 52px);
    }

    .contact-form-wrap h2 {
      font-family: 'AustinHeadline', Georgia, serif;
      font-weight: 300;
      font-size: 26px;
      color: var(--ink);
      margin-bottom: 36px;
    }

    .form-group {
      margin-bottom: 24px;
    }

    .form-group label {
      display: block;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.10em;
      text-transform: uppercase;
      color: var(--ink-2);
      margin-bottom: 8px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
      width: 100%;
      background: var(--cream);
      border: 1px solid rgba(42, 33, 24, 0.18);
      color: var(--ink);
      font-family: 'Inter', sans-serif;
      font-size: 15px;
      font-weight: 400;
      padding: 14px 16px;
      outline: none;
      transition: border-color 0.2s ease;
      -webkit-appearance: none;
      border-radius: 8px;
      appearance: none;
    }

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      border-color: var(--gold);
    }

    .form-group input::placeholder,
    .form-group textarea::placeholder {
      color: rgba(42, 33, 24, 0.35);
    }

    .form-group select {
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238A8075' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 16px center;
      padding-right: 40px;
      cursor: pointer;
    }

    .form-group textarea {
      height: 140px;
      resize: vertical;
      line-height: 1.6;
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
    }

    .form-submit {
      width: 100%;
      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: 12px 32px;
      border-radius: 999px;
      cursor: pointer;
      transition: all 0.2s ease;
      margin-top: 8px;
    }
    .form-submit:hover { background: var(--gold-2); transform: translateY(-1px); }

    /* ─── Footer ─────────────────────────────── */
    footer {
      background: var(--ink);
      padding: 56px clamp(24px, 5vw, 52px);
    }
    .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: 900px) {
      .contact-main {
        grid-template-columns: 1fr;
        gap: 56px;
      }
    }

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

    @media (max-width: 600px) {
      nav.gdj-landing-nav { height: 64px; }
      .contact-header { padding-top: calc(64px + 48px); }
      .footer-inner { flex-direction: column; }
      .form-row { grid-template-columns: 1fr; }
    }

    /* iOS input zoom prevention */
    @supports (-webkit-touch-callout: none) {
      .form-group input,
      .form-group select,
      .form-group textarea { font-size: 16px; }
    }

    /* ─── 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.10);
      }
      body.gdj-landing { background-color: var(--cream); color: var(--ink); }
      .logo { color: #F0EBE0 !important; }
      .logo .du { color: var(--gold) !important; }
      nav.gdj-landing-nav { background: rgba(22,18,14,0.97) !important; }
      footer { background: #0D0B09 !important; }
      .form-group input,
      .form-group select,
      .form-group textarea {
        background: rgba(255,255,255,0.05) !important;
        color: #F0EBE0 !important;
        border-color: rgba(240,235,224,0.15) !important;
      }
      .form-group input::placeholder,
      .form-group textarea::placeholder {
        color: rgba(240,235,224,0.3) !important;
      }
    }
  </style>
