:root {
      --cream: #f3eee2;
      --paper: #faf7ef;
      --hunter: #153c2f;
      --hunter-dark: #0c2a21;
      --ink: #14261f;
      --muted: #596860;
      --brick: #b85e42;
      --brick-soft: #d89983;
      --line: rgba(21, 60, 47, .18);
      --line-dark: rgba(250, 247, 239, .16);
      --serif: "Instrument Serif", Georgia, serif;
      --sans: "Manrope", Arial, sans-serif;
      --shadow: 0 30px 80px rgba(12, 42, 33, .13);
      --max: 1180px;
      --pad: clamp(20px, 4vw, 48px);
    }
    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      background: var(--paper);
      color: var(--ink);
      font-family: var(--sans);
      font-size: 17px;
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
    }
    h1, h2, h3, .serif { font-family: var(--serif); font-weight: 400; letter-spacing: -0.01em; line-height: 1.05; margin: 0; }
    p { margin: 0; }
    a { color: inherit; }
    .shell { max-width: var(--max); margin: 0 auto; padding-left: var(--pad); padding-right: var(--pad); }
    main { overflow-x: clip; }
    a:focus-visible, button:focus-visible, input:focus-visible { outline: 2px solid var(--brick); outline-offset: 3px; }
    .skip { position: absolute; left: -999px; top: 8px; background: var(--hunter); color: var(--paper); padding: 8px 12px; border-radius: 6px; }
    .skip:focus { left: 8px; z-index: 50; }

    /* Eyebrows and labels */
    .eyebrow, .section-label {
      font-size: 12px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--brick);
      display: inline-flex; align-items: center; gap: 12px; margin-bottom: 22px;
    }
    .eyebrow::before, .section-label::before { content: ""; width: 28px; height: 1px; background: currentColor; opacity: .7; }

    /* Header */
    header {
      position: relative; display: flex; align-items: center; justify-content: center;
      padding-top: 26px; padding-bottom: 18px;
    }
    .nav-cta {
      position: absolute; right: var(--pad); top: 50%; transform: translateY(-50%);
      font-size: 13.5px; font-weight: 700; text-decoration: none; color: var(--hunter);
      border: 1px solid var(--line); padding: 9px 16px; border-radius: 999px; transition: background .2s, color .2s;
    }
    .nav-cta:hover { background: var(--hunter); color: var(--paper); }
    .brand { display: inline-flex; flex-direction: column; align-items: center; gap: 4px; text-decoration: none; color: var(--hunter); }
    .brand .wordmark { height: 50px; width: auto; display: block; }
    .brand-by { font-size: 10.5px; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); font-weight: 700; }

    /* Hero */
    .hero {
      display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr); gap: clamp(36px, 6vw, 88px); align-items: center;
      padding-top: clamp(16px, 3vw, 40px); padding-bottom: clamp(56px, 8vw, 104px);
    }
    .hero h1 { font-size: clamp(40px, 4.9vw, 66px); max-width: 15ch; }
    .hero h1 em { font-style: italic; color: var(--hunter); }
    .hero-lede { font-size: clamp(17px, 1.35vw, 19px); line-height: 1.55; color: var(--muted); max-width: 54ch; margin-top: 22px; }
    .hero-lede strong { color: var(--ink); font-weight: 600; }

    /* Form */
    .signup { margin-top: 28px; max-width: 560px; }
    .form-row { display: flex; gap: 10px; flex-wrap: wrap; }
    .email.name { flex: 0 1 150px; }
    .visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
    .email {
      flex: 1; min-width: 0; font: inherit; font-size: 16px; padding: 16px 18px; border-radius: 10px;
      border: 1px solid var(--line); background: #fff; color: var(--ink); outline: none; transition: border-color .2s, box-shadow .2s;
    }
    .email:focus { border-color: var(--hunter); box-shadow: 0 0 0 4px rgba(21,60,47,.12); }
    .submit {
      font: inherit; font-size: 15px; font-weight: 700; padding: 16px 22px; border-radius: 10px; border: 0; cursor: pointer;
      background: var(--hunter); color: var(--paper); white-space: nowrap; transition: background .2s, transform .15s;
    }
    .submit:hover { background: var(--hunter-dark); }
    .submit:active { transform: translateY(1px); }
    .submit:disabled { opacity: .7; cursor: default; }
    .fine-print { font-size: 13px; color: var(--muted); margin-top: 12px; display: flex; align-items: center; gap: 8px; }
    .fine-print svg { width: 14px; height: 14px; flex: none; }
    .form-status { font-size: 14px; margin-top: 10px; color: var(--hunter); min-height: 1.2em; }

    /* Sample issue card */
    .issue-wrap { position: relative; }
    .issue-wrap::before {
      content: ""; position: absolute; z-index: 0; inset: -8% -6% -8% -6%; border-radius: 50%;
      border: 1px solid var(--line); pointer-events: none;
    }
    .issue-wrap::after {
      content: ""; position: absolute; z-index: 0; inset: 8% 4% 8% 4%; border-radius: 50%;
      border: 1px solid var(--line); opacity: .6; pointer-events: none;
    }
    .issue {
      position: relative; z-index: 1; background: #fff; border-radius: 18px; box-shadow: var(--shadow); padding: clamp(24px, 3vw, 36px); padding-bottom: 64px;
      transform: rotate(-1.2deg); border: 1px solid rgba(21,60,47,.08);
    }
    .issue-top { display: flex; justify-content: space-between; align-items: center; font-size: 11px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); padding-bottom: 14px; border-bottom: 1px solid var(--line); }
    .issue-top span:last-child { color: var(--brick); }
    .issue h2 { font-size: clamp(26px, 2.4vw, 32px); margin-top: 20px; }
    .issue h2 em { font-style: italic; color: var(--hunter); }
    .issue-lede { color: var(--muted); font-size: 15px; margin-top: 12px; line-height: 1.55; }
    .issue ol { list-style: none; padding: 0; margin: 22px 0 0; display: grid; gap: 12px; }
    .issue li { display: grid; grid-template-columns: 30px 1fr; gap: 12px; font-size: 14.5px; line-height: 1.5; }
    .issue li b { font-family: var(--serif); font-size: 22px; color: var(--brick); line-height: 1; font-weight: 400; }
    .issue li strong { display: block; font-weight: 700; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--hunter); margin-bottom: 2px; }
    .stamp {
      position: absolute; right: -14px; bottom: -18px; width: 92px; height: 92px; border-radius: 50%;
      background: var(--brick); color: var(--paper); display: grid; place-items: center; text-align: center;
      font-family: var(--serif); font-size: 17px; line-height: 1; transform: rotate(8deg); box-shadow: 0 14px 30px rgba(184,94,66,.35);
    }

    /* Ticker */
    .ticker { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); overflow: hidden; background: var(--cream); }
    .ticker-track { display: flex; width: max-content; animation: ticker 34s linear infinite; }
    .ticker-group { display: flex; gap: 0; padding: 14px 0; }
    .ticker-group span { font-size: 13px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--hunter); padding: 0 28px; display: inline-flex; align-items: center; gap: 28px; }
    .ticker-group span::after { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--brick); }
    .ticker-group span.doctrine { font-family: var(--serif); text-transform: none; letter-spacing: 0; font-size: 18px; font-weight: 400; font-style: italic; }
    @keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }
    @media (prefers-reduced-motion: reduce) { .ticker-track { animation: none; } .reveal { opacity: 1 !important; transform: none !important; } }

    /* Sections */
    .section { padding-top: clamp(72px, 9vw, 120px); padding-bottom: clamp(72px, 9vw, 120px); }
    .section-title { font-size: clamp(36px, 4.6vw, 60px); max-width: 18ch; }
    .section-title em { font-style: italic; color: var(--hunter); }
    .two-col { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 6fr); gap: clamp(32px, 6vw, 96px); align-items: start; }
    .prose { font-size: clamp(17px, 1.3vw, 19px); line-height: 1.7; color: var(--ink); display: grid; gap: 20px; }
    .prose .doctrine { font-family: var(--serif); font-size: clamp(24px, 2.2vw, 30px); line-height: 1.25; color: var(--hunter); padding-left: 20px; border-left: 2px solid var(--brick); }
    .prose .muted { color: var(--muted); }

    /* Seats */
    .seats-section { background: var(--hunter-dark); color: var(--paper); }
    .seats-section .section-label { color: var(--brick-soft); }
    .seats-section .section-title em { color: var(--brick-soft); }
    .seats-intro { color: rgba(250,247,239,.72); font-size: clamp(17px, 1.3vw, 19px); line-height: 1.65; max-width: 60ch; margin-top: 22px; }
    .seats { list-style: none; padding: 0; margin: 56px 0 0; display: grid; grid-template-columns: repeat(5, 1fr); border-top: 1px solid var(--line-dark); border-left: 1px solid var(--line-dark); }
    .seat { border-right: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); padding: 26px 22px 30px; display: grid; gap: 14px; align-content: start; min-height: 240px; transition: background .25s; }
    .seat:hover { background: rgba(250,247,239,.04); }
    .seat .num { font-family: var(--serif); font-size: 15px; color: var(--brick-soft); letter-spacing: .06em; }
    .seat h3 { font-size: 28px; }
    .seat .yes { font-size: 15px; line-height: 1.5; color: var(--paper); }
    .seat .no { font-size: 13.5px; line-height: 1.45; color: rgba(250,247,239,.68); padding-top: 12px; border-top: 1px dashed var(--line-dark); margin-top: auto; }
    .seats-close { margin-top: 56px; font-family: var(--serif); font-size: clamp(24px, 2.6vw, 38px); line-height: 1.25; max-width: 36ch; }
    .seats-close em { color: var(--brick-soft); font-style: italic; }

    .seats.layers { grid-template-columns: repeat(3, 1fr); }
    .seats.layers .seat { min-height: 0; padding: 30px 28px 32px; }
    .seats.layers .seat h3 { font-size: 32px; }
    .seats.layers .seat .yes { font-size: 16px; }

    /* Format */
    .format-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 52px; }
    .fcard .num { font-size: 32px; }
    .fcard h3 { font-size: 26px; }
    .fcard { background: #fff; border: 1px solid rgba(21,60,47,.1); border-radius: 16px; padding: 30px 28px 32px; display: grid; gap: 14px; align-content: start; }
    .fcard .num { font-family: var(--serif); font-size: 44px; line-height: 1; color: var(--brick); }
    .fcard h3 { font-size: 30px; }
    .fcard p { color: var(--muted); font-size: 15.5px; line-height: 1.6; }
    .format-foot { margin-top: 28px; color: var(--muted); font-size: 15px; display: flex; gap: 12px; align-items: center; }
    .format-foot::before { content: ""; width: 28px; height: 1px; background: var(--brick); }

    /* Quote band */
    .quote { background: var(--cream); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); text-align: center; padding-top: clamp(64px, 8vw, 100px); padding-bottom: clamp(64px, 8vw, 100px); }
    .quote blockquote { margin: 0 auto; max-width: 22ch; font-family: var(--serif); font-size: clamp(34px, 5vw, 66px); line-height: 1.08; color: var(--hunter); }
    .quote blockquote em { font-style: italic; color: var(--brick); }
    .quote cite { display: block; margin-top: 26px; font-style: normal; font-size: 12px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); }

    /* Author */
    .author { display: grid; grid-template-columns: minmax(0, 4fr) minmax(0, 7fr); gap: clamp(32px, 6vw, 96px); align-items: start; }
    .author-card { background: var(--hunter); color: var(--paper); border-radius: 18px; padding: 32px 30px 30px; position: relative; overflow: hidden; }
    .author-card::after { content: "L"; position: absolute; right: -10px; bottom: -40px; font-family: var(--serif); font-size: 260px; line-height: 1; color: rgba(250,247,239,.06); font-style: italic; }
    .author-card .kicker { font-size: 11px; letter-spacing: .16em; text-transform: uppercase; font-weight: 700; color: var(--brick-soft); }
    .author-card .name { font-family: var(--serif); font-size: 40px; margin-top: 10px; }
    .author-card .handle { font-size: 14px; color: rgba(250,247,239,.7); margin-top: 4px; }
    .author-card dl { margin: 26px 0 0; display: grid; gap: 14px; position: relative; }
    .author-card dt { font-family: var(--serif); font-size: 30px; line-height: 1; }
    .author-card dd { margin: 4px 0 0; font-size: 13.5px; color: rgba(250,247,239,.7); line-height: 1.45; }
    .sig { margin-top: 10px; font-family: var(--serif); font-style: italic; font-size: 26px; color: var(--hunter); }

    /* For */
    .for-list { list-style: none; padding: 0; margin: 44px 0 0; border-top: 1px solid var(--line); }
    .for-list li { display: grid; grid-template-columns: 56px 1fr; gap: 20px; padding: 22px 0; border-bottom: 1px solid var(--line); font-size: clamp(17px, 1.35vw, 20px); line-height: 1.5; align-items: baseline; }
    .for-list li b { font-family: var(--serif); font-size: 26px; color: var(--brick); font-weight: 400; }
    .for-close { margin-top: 28px; color: var(--muted); font-size: 16px; max-width: 60ch; }

    /* Rules */
    .rules { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px 40px; margin-top: 40px; }
    .rule { display: grid; grid-template-columns: 22px 1fr; gap: 14px; padding: 18px 0; border-top: 1px solid var(--line); font-size: 16.5px; line-height: 1.55; }
    .rule svg { width: 20px; height: 20px; margin-top: 3px; color: var(--brick); }
    .rule strong { display: block; font-family: var(--serif); font-size: 24px; margin-bottom: 4px; font-weight: 400; }
    .rule span { color: var(--muted); font-size: 15.5px; }

    /* Final */
    .final { background: var(--hunter-dark); color: var(--paper); text-align: center; padding-top: clamp(80px, 10vw, 140px); padding-bottom: clamp(80px, 10vw, 140px); position: relative; overflow: hidden; }
    .final::before { content: ""; position: absolute; left: 50%; top: 50%; width: 120vmax; height: 120vmax; transform: translate(-50%, -50%); background: radial-gradient(circle at center, rgba(184,94,66,.16), transparent 42%); pointer-events: none; }
    .final .inner { position: relative; max-width: 720px; margin: 0 auto; }
    .final .mark { display: inline-flex; margin-bottom: 26px; }
    .final .mark svg { width: 56px; height: 56px; }
    .final h2 { font-size: clamp(42px, 6vw, 80px); }
    .final h2 em { font-style: italic; color: var(--brick-soft); }
    .final p.lede { color: rgba(250,247,239,.72); font-size: clamp(17px, 1.4vw, 20px); margin-top: 22px; line-height: 1.6; }
    .final .signup { margin: 34px auto 0; }
    .final .email { background: rgba(250,247,239,.06); border-color: var(--line-dark); color: var(--paper); }
    .final .email::placeholder { color: rgba(250,247,239,.5); }
    .final .email:focus { border-color: var(--brick-soft); box-shadow: 0 0 0 4px rgba(184,94,66,.2); }
    .final .submit { background: var(--brick); }
    .final .submit:hover { background: #a3523a; }
    .final .fine-print { color: rgba(250,247,239,.6); justify-content: center; }
    .final .form-status { color: var(--brick-soft); }

    footer { padding-top: 32px; padding-bottom: 40px; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 4px 20px; font-size: 13px; color: var(--muted); border-top: 1px solid var(--line); }
    .footer-links { display: flex; gap: 22px; }
    .footer-links a { text-decoration: none; display: inline-flex; align-items: center; min-height: 44px; }
    footer > span { display: inline-flex; align-items: center; min-height: 44px; }
    .footer-links a:hover { color: var(--hunter); text-decoration: underline; }
    .footer-note { grid-column: 1 / -1; font-size: 12.5px; color: var(--muted); max-width: 70ch; margin-top: 4px; }

    /* Reveal */
    .reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
    .reveal.is-visible { opacity: 1; transform: none; }

    /* Responsive */
    @media (max-width: 1024px) {
      .seats { grid-template-columns: repeat(3, 1fr); }
      .seat { min-height: 0; }
      .format-grid { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 860px) {
      .hero { grid-template-columns: 1fr; gap: 56px; }
      .hero h1 { max-width: 20ch; }
      .issue-wrap { margin: 0 6px; }
      .two-col, .author { grid-template-columns: 1fr; }
      .rules { grid-template-columns: 1fr; gap: 0; }
    }
    @media (max-width: 720px) {
      .seats.layers { grid-template-columns: 1fr; }
    }
    @media (max-width: 600px) {
      body { font-size: 16px; }
      header { flex-direction: column; gap: 10px; }
      footer { grid-template-columns: 1fr; gap: 0; }
      .nav-cta { position: static; transform: none; }
      .hero h1 { font-size: clamp(38px, 11vw, 52px); }
      .form-row { flex-direction: column; }
      .submit { width: 100%; }
      .seats { grid-template-columns: 1fr; }
      .format-grid { grid-template-columns: 1fr; }
      .issue { transform: none; padding-bottom: 72px; }
      .seats { border-left: 0; }
      .seat { grid-template-columns: 36px 1fr; grid-template-areas: "num title" "num yes" "num no"; gap: 6px 12px; padding: 20px 4px 20px 0; border-right: 0; min-height: 0; }
      .seat .num { grid-area: num; padding-top: 4px; }
      .seat h3 { grid-area: title; font-size: 26px; }
      .seat .yes { grid-area: yes; }
      .seat .no { grid-area: no; margin-top: 4px; padding-top: 8px; }
      .stamp { right: 8px; bottom: -22px; width: 78px; height: 78px; font-size: 15px; }
      .for-list li { grid-template-columns: 40px 1fr; gap: 14px; }
      .brand .wordmark { height: 42px; }
      .email.name { flex: 1 1 auto; }
      .section-title { max-width: none; }
    }
