    @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: 'AustinDeck'; src: url('/fonts/AustinNewsDeck-Light-Web.woff2') format('woff2'); font-weight: 300; font-style: normal; font-display: swap; }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    :root {
      --cream: #FEFCF8;
      --ink: #2A2118;
      --ink-2: #7A6A58;
      --ink-3: #B0A090;
      --gold: #C9A96E;
      --border: rgba(42,33,24,0.08);
    }
    body.gdj-landing {
      background: var(--cream);
      color: var(--ink);
      font-family: 'Inter', sans-serif;
      font-weight: 300;
      font-size: 15px;
      line-height: 1.7;
    }
    nav {
      background: #1A1510;
      padding: 0 40px;
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      height: 65px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .nav-back {
      position: absolute;
      left: 40px;
      display: flex;
      align-items: center;
      gap: 7px;
      font-family: 'Inter', sans-serif;
      font-size: 11px;
      font-weight: 400;
      letter-spacing: 0.08em;
      color: rgba(254,252,248,0.5);
      text-decoration: none;
      transition: color 0.2s;
    }
    .nav-back:hover { color: rgba(254,252,248,0.85); }
    .nav-back svg { width: 14px; height: 14px; }
    body.gdj-landing { padding-top: 65px; }
    .logo {
      font-family: 'AustinDeck', 'Cormorant Garamond', Georgia, serif;
      font-size: 28px;
      font-weight: 300;
      letter-spacing: 0.02em;
      text-decoration: none;
      color: rgba(254,252,248,0.92);
    }
    .logo .du { color: #C9A96E; }
    .content { max-width: 720px; margin: 0 auto; padding: 72px 24px 96px; }
    .eyebrow { font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
    h1 {
      font-family: 'AustinHeadline', 'Cormorant Garamond', Georgia, serif;
      font-size: 42px;
      font-weight: 300;
      font-style: italic;
      color: var(--ink);
      margin-bottom: 8px;
      line-height: 1.1;
    }
    .updated { font-size: 12px; color: var(--ink-3); margin-bottom: 48px; }
    .divider { height: 1px; background: var(--border); margin: 40px 0; }
    h2 {
      font-family: 'AustinHeadline', 'Cormorant Garamond', Georgia, serif;
      font-size: 22px;
      font-weight: 400;
      color: var(--ink);
      margin-bottom: 14px;
    }
    p { color: var(--ink-2); margin-bottom: 16px; }
    ul { color: var(--ink-2); padding-left: 20px; margin-bottom: 16px; }
    ul li { margin-bottom: 8px; }
    a { color: var(--gold); text-decoration: none; }
    a:hover { text-decoration: underline; }
    table { width: 100%; border-collapse: collapse; margin-bottom: 20px; }
    th { font-family: 'Inter', sans-serif; font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-3); text-align: left; padding: 10px 12px; border-bottom: 2px solid var(--border); }
    td { font-size: 14px; color: var(--ink-2); padding: 12px; border-bottom: 1px solid var(--border); vertical-align: top; }
    td:first-child { font-weight: 500; color: var(--ink); white-space: nowrap; }
    footer {
      background: #1A1510;
      padding: 24px 40px;
      text-align: center;
      font-size: 11px;
      color: rgba(254,252,248,0.35);
    }

    /* Dark mode */
    @media (prefers-color-scheme: dark) {
      :root { --cream: #1A1510; --ink: #F0EBE0; --ink-2: rgba(240,235,224,0.7); --ink-3: rgba(240,235,224,0.4); --border: rgba(240,235,224,0.08); }
      body.gdj-landing { background: var(--cream); }
      td:first-child { color: #F0EBE0; }
    }
