    :root {
      --ink: #f5edd8;
      --muted: rgba(245,237,216,0.58);
      --line: rgba(201,169,110,0.16);
      --paper: #1a1408;
      --white: #2e1f0a;
      --leaf: #4e7c40;
      --leaf-dark: #3a5c30;
      --field: #c9a96e;
      --shadow: 0 18px 42px rgba(0,0,0,0.45);
    }

    * {
      box-sizing: border-box;
    }

    body {
      margin: 0;
      color: var(--ink);
      background: var(--paper);
      font-family: 'DM Sans', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      line-height: 1.6;
    }

    a {
      color: inherit;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 20;
      background: rgba(26,20,8,0.94);
      border-bottom: 1px solid rgba(201,169,110,0.12);
      backdrop-filter: blur(14px);
    }

    .nav,
    .wrap,
    .footer-inner {
      width: min(1040px, calc(100% - 32px));
      margin: 0 auto;
    }

    .nav {
      min-height: 72px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 11px;
      color: var(--ink);
      text-decoration: none;
      font-weight: 800;
      font-size: 1.05rem;
    }

    .brand img {
      width: 36px;
      height: 36px;
      object-fit: contain;
    }

    .nav-links,
    .footer-links {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 22px;
      list-style: none;
      margin: 0;
      padding: 0;
      color: var(--muted);
      font-size: 0.92rem;
      font-weight: 700;
    }

    .nav-links a,
    .footer-links a {
      text-decoration: none;
    }

    .nav-links a:hover,
    .footer-links a:hover {
      color: #8ab87a;
    }

    .hero {
      padding: 88px 0 42px;
      border-bottom: 1px solid var(--line);
      background:
        linear-gradient(120deg, rgba(26,20,8,0.98), rgba(26,20,8,0.88)),
        radial-gradient(circle at 80% 20%, rgba(201,169,110,0.22), transparent 36%),
        radial-gradient(circle at 12% 82%, rgba(78,124,64,0.16), transparent 32%);
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 16px;
      color: #8ab87a;
      font-size: 0.78rem;
      font-weight: 900;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .eyebrow::before {
      content: "";
      width: 34px;
      height: 3px;
      background: var(--field);
      border-radius: 2px;
    }

    h1,
    h2,
    h3,
    p {
      margin-top: 0;
    }

    h1 {
      max-width: 720px;
      margin-bottom: 18px;
      font-size: clamp(2.7rem, 7vw, 5rem);
      line-height: 0.98;
      letter-spacing: 0;
    }

    .hero-copy {
      max-width: 660px;
      margin-bottom: 0;
      color: rgba(245,237,216,0.78);
      font-size: 1.16rem;
    }

    .downloads {
      padding: 54px 0 72px;
    }

    .download-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 18px;
    }

    .download-card {
      min-height: 245px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      gap: 24px;
      padding: 28px;
      border: 1px solid var(--line);
      border-radius: 8px;
      background: var(--white);
      box-shadow: var(--shadow);
    }

    .download-card h2 {
      margin-bottom: 10px;
      font-size: 1.6rem;
      line-height: 1.12;
    }

    .download-card p {
      margin-bottom: 0;
      color: var(--muted);
    }

    .meta {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 16px;
      color: rgba(245,237,216,0.78);
      font-size: 0.84rem;
      font-weight: 750;
    }

    .pill {
      display: inline-flex;
      align-items: center;
      min-height: 28px;
      padding: 0 10px;
      border: 1px solid rgba(201,169,110,0.12);
      border-radius: 999px;
      background: #2e1f0a;
    }

    .button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 46px;
      width: fit-content;
      padding: 0 18px;
      border-radius: 6px;
      border: 1px solid var(--leaf);
      color: #f5edd8;
      background: var(--leaf);
      text-decoration: none;
      font-weight: 850;
    }

    .button:hover {
      background: var(--leaf-dark);
      border-color: var(--leaf-dark);
    }

    .button.secondary {
      color: var(--ink);
      background: rgba(46,31,10,0.72);
      border-color: rgba(201,169,110,0.22);
    }

    .button.secondary:hover {
      color: #8ab87a;
      background: var(--white);
      border-color: var(--leaf);
    }

    .note {
      margin-top: 22px;
      padding: 16px 18px;
      border-left: 4px solid var(--field);
      background: #2e1f0a;
      color: rgba(245,237,216,0.62);
      font-size: 0.95rem;
    }

    .footer {
      padding: 30px 0;
      border-top: 1px solid var(--line);
      background: var(--white);
      color: var(--muted);
      font-size: 0.9rem;
    }

    .footer-inner {
      display: flex;
      justify-content: space-between;
      gap: 20px;
    }

    @media (max-width: 760px) {
      .nav {
        align-items: flex-start;
        flex-direction: column;
        padding: 16px 0;
      }

      .download-grid {
        grid-template-columns: 1fr;
      }

      .download-card {
        min-height: 0;
      }

      .button {
        width: 100%;
      }

      .footer-inner {
        align-items: flex-start;
        flex-direction: column;
      }
    }
    h1, h2, h3, h4 { font-family: 'Playfair Display', serif; }
