*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:        #f4ecd8;
  --bg-deep:   #ece3c9;
  --paper:     #faf5e6;
  --ink:       #1a2419;
  --ink-soft:  #3d4a3c;
  --ink-mute:  #6b7568;
  --line:      #c8bfa3;
  --moss:      #2d4a32;
  --moss-deep: #1d3122;
  --clay:      #b8501f;
  --clay-deep: #8c3a14;
  --serif:  'Newsreader', 'Times New Roman', serif;
  --sans:   'Geist', -apple-system, system-ui, sans-serif;
  --mono:   'Geist Mono', 'SFMono-Regular', monospace;
}

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body { background: var(--bg); color: var(--ink); font-family: var(--sans); font-size: 16px; line-height: 1.6; font-weight: 400; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.eyebrow { font-family: var(--mono); font-size: 11px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-mute); }
.eyebrow .dot { display: inline-block; width: 5px; height: 5px; border-radius: 50%; background: var(--clay); vertical-align: middle; margin: 0 0.7em 2px 0; }

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 400; letter-spacing: -0.015em; line-height: 1.05; color: var(--ink); text-wrap: balance; }

.shell { max-width: 1280px; margin: 0 auto; padding: 0 40px; }
.section { padding: 120px 0; }
.section-tight { padding: 80px 0; }
.divider-shell { max-width: 1280px; margin: 0 auto; padding: 0 40px; }
.divider { height: 1px; background: var(--line); }

/* Buttons */
.btn { display: inline-flex; align-items: center; gap: 10px; font-family: var(--sans); font-size: 14px; font-weight: 500; letter-spacing: 0.02em; padding: 14px 22px; border-radius: 999px; border: 1px solid transparent; cursor: pointer; transition: transform 0.15s ease, background 0.2s, color 0.2s, border-color 0.2s; white-space: nowrap; }
.btn:hover { transform: translateY(-1px); }
.btn .arrow { transition: transform 0.2s; }
.btn:hover .arrow { transform: translateX(3px); }
.btn-primary { background: var(--ink); color: var(--bg); }
.btn-primary:hover { background: var(--moss); }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: var(--bg); }
.btn-block { width: 100%; justify-content: center; padding: 16px 22px; }
.on-dark .btn-primary { background: var(--bg); color: var(--ink); }
.on-dark .btn-primary:hover { background: var(--paper); }
.on-dark .btn-outline { color: var(--bg); border-color: rgba(244,236,216,0.4); }
.on-dark .btn-outline:hover { background: var(--bg); color: var(--ink); border-color: var(--bg); }

/* NAV */
.nav { position: sticky; top: 0; z-index: 100; background: var(--bg); border-bottom: 1px solid var(--line); }
.nav-inner { max-width: 1280px; margin: 0 auto; padding: 0 40px; height: 92px; display: flex; align-items: center; justify-content: space-between; gap: 32px; position: relative; }
.nav-brand { display: flex; align-items: center; position: relative; z-index: 5; }
.nav-brand img { height: 150px; width: auto; margin-top: 30px; margin-bottom: -18px; filter: drop-shadow(0 8px 22px rgba(0,0,0,0.28)); }
.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a { font-size: 14px; font-weight: 500; letter-spacing: 0.02em; color: var(--ink-soft); position: relative; padding-bottom: 4px; transition: color 0.2s; }
.nav-links a::after { content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 2px; background: var(--clay); transform: scaleX(0); transform-origin: left center; transition: transform 0.25s ease; }
.nav-links a:hover, .nav-links a.active { color: var(--ink); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-links .nav-cta { background: var(--clay); color: var(--bg) !important; padding: 10px 20px; border-radius: 999px; font-weight: 600; letter-spacing: 0.04em; transition: background 0.2s; }
.nav-links .nav-cta::after { display: none; }
.nav-links .nav-cta:hover { background: var(--clay-deep); color: var(--bg) !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 6px; }
.hamburger span { display: block; width: 24px; height: 1.5px; background: var(--ink); border-radius: 2px; }

/* Page header */
.page-head { padding: 96px 0 72px; }
.page-head .eyebrow { display: inline-block; margin-bottom: 28px; }
.page-h1 { font-size: clamp(56px, 8vw, 124px); font-weight: 300; line-height: 0.95; letter-spacing: -0.035em; margin-bottom: 32px; max-width: 1000px; }
.page-h1 em { font-style: italic; color: var(--clay); font-weight: 300; }
.page-lede { font-size: 19px; color: var(--ink-soft); max-width: 580px; line-height: 1.55; }

/* Meta grid for at-a-glance */
.meta-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; padding: 40px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.meta-label { font-family: var(--mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-mute); margin-bottom: 10px; }
.meta-value { font-family: var(--serif); font-size: 22px; line-height: 1.15; color: var(--ink); font-weight: 400; }
.meta-value em { display: block; font-style: italic; font-weight: 300; color: var(--ink-soft); font-size: 14px; margin-top: 4px; font-family: var(--sans); }

/* Form layout */
.form-grid { display: grid; grid-template-columns: 5fr 7fr; gap: 80px; align-items: start; }
.form-grid aside .eyebrow { display: inline-block; margin-bottom: 24px; }
.form-headline { font-size: clamp(36px, 4vw, 56px); font-weight: 300; line-height: 1.05; letter-spacing: -0.025em; margin-bottom: 24px; }
.form-headline em { font-style: italic; color: var(--clay); font-weight: 300; }
.form-lede { font-size: 17px; color: var(--ink-soft); margin-bottom: 28px; max-width: 460px; line-height: 1.6; }
.form-aside-note { font-size: 14px; color: var(--ink-mute); line-height: 1.65; padding-top: 20px; border-top: 1px solid var(--line); max-width: 460px; }
.form-aside-note a { color: var(--clay); border-bottom: 1px solid var(--clay); }
.form-card { background: var(--paper); border: 1px solid var(--line); padding: 48px; }
.stack { display: flex; flex-direction: column; gap: 20px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label { font-family: var(--mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-mute); }
.field input, .field select, .field textarea { background: var(--bg); border: 1px solid var(--line); border-radius: 0; padding: 14px 16px; color: var(--ink); font-family: var(--sans); font-size: 16px; outline: none; transition: border-color 0.2s; width: 100%; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--ink); }
.field textarea { resize: vertical; min-height: 120px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-msg { font-size: 14px; text-align: center; }
.form-fineprint { font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-mute); text-align: center; }

/* Dark section */
.section-dark { background: var(--moss); color: var(--bg); padding: 140px 0; }
.section-dark .eyebrow { color: rgba(244,236,216,0.55); }
.dark-headline { font-family: var(--serif); font-size: clamp(36px, 4vw, 56px); font-weight: 300; line-height: 1.05; letter-spacing: -0.025em; color: var(--bg); margin-top: 16px; }
.dark-headline em { font-style: italic; color: #e9b58e; font-weight: 300; }
.dark-lede { font-size: 17px; color: rgba(244,236,216,0.7); max-width: 460px; }
.extras-head { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: end; margin-bottom: 64px; }

.grid-5 { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1px; background: rgba(244,236,216,0.18); border: 1px solid rgba(244,236,216,0.18); }
.cell { background: var(--moss); padding: 36px 28px; min-height: 240px; }
.cell-tag { font-family: var(--mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: #e9b58e; margin-bottom: 24px; }
.cell h4 { font-family: var(--serif); font-size: 22px; font-weight: 400; letter-spacing: -0.01em; margin-bottom: 12px; line-height: 1.15; color: var(--bg); }
.cell p { font-size: 13px; color: rgba(244,236,216,0.7); line-height: 1.55; }

/* Cream-bg variant */
.grid-5.is-light { background: var(--line); border: 1px solid var(--line); }
.grid-5.is-light .cell { background: var(--bg); }
.grid-5.is-light .cell h4 { color: var(--ink); }
.grid-5.is-light .cell p { color: var(--ink-soft); }
.grid-5.is-light .cell-tag { color: var(--clay); }

/* Tier cards */
.tier-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.tier { background: var(--paper); border: 1px solid var(--line); padding: 36px 28px 28px; display: flex; flex-direction: column; position: relative; min-height: 540px; }
.tier.is-feature { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.tier-tag { font-family: var(--mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--clay); margin-bottom: 20px; }
.tier.is-feature .tier-tag { color: #e9b58e; }
.tier h3 { font-family: var(--serif); font-size: 26px; font-weight: 400; letter-spacing: -0.015em; margin-bottom: 16px; color: var(--ink); }
.tier.is-feature h3 { color: var(--bg); }
.tier-price { font-family: var(--serif); font-size: 56px; font-weight: 300; line-height: 1; letter-spacing: -0.025em; margin-bottom: 6px; color: var(--ink); display: flex; align-items: baseline; gap: 4px; }
.tier-price .dollar { font-size: 28px; color: var(--ink-mute); font-weight: 300; }
.tier.is-feature .tier-price { color: var(--bg); }
.tier.is-feature .tier-price .dollar { color: rgba(244,236,216,0.55); }
.tier-price-note { font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-mute); margin-bottom: 28px; }
.tier.is-feature .tier-price-note { color: rgba(244,236,216,0.55); }
.tier ul { list-style: none; display: flex; flex-direction: column; gap: 12px; flex: 1; padding-top: 24px; border-top: 1px solid var(--line); margin-bottom: 24px; }
.tier.is-feature ul { border-top-color: rgba(244,236,216,0.18); }
.tier li { font-size: 14px; line-height: 1.5; color: var(--ink-soft); display: flex; gap: 10px; align-items: flex-start; }
.tier.is-feature li { color: rgba(244,236,216,0.8); }
.tier li::before { content: '+'; font-family: var(--mono); color: var(--clay); flex-shrink: 0; font-weight: 600; line-height: 1.5; }
.tier.is-feature li::before { color: #e9b58e; }
.tier .btn { align-self: stretch; justify-content: center; }
.tier:not(.is-feature) .btn-outline { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.tier:not(.is-feature) .btn-outline:hover { background: var(--moss); border-color: var(--moss); color: var(--bg); }

/* Comparison table */
.compare-wrap { overflow-x: auto; }
.compare { width: 100%; border-collapse: collapse; font-size: 14px; }
.compare thead th { font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink); padding: 16px 18px; text-align: center; border-bottom: 1px solid var(--ink); white-space: nowrap; }
.compare thead th:first-child { text-align: left; }
.compare thead th .price { display: block; font-family: var(--serif); font-size: 16px; letter-spacing: -0.01em; text-transform: none; font-weight: 400; color: var(--ink-mute); margin-top: 4px; }
.compare tbody td { padding: 16px 18px; border-bottom: 1px solid var(--line); text-align: center; color: var(--ink-soft); }
.compare tbody td:first-child { text-align: left; color: var(--ink); }
.compare tbody tr:hover td { background: var(--paper); }
.compare .check { color: var(--clay); font-family: var(--mono); }
.compare .dash { color: var(--ink-mute); }

/* Inkind row */
.inkind { display: grid; grid-template-columns: 80px 1fr auto; gap: 32px; align-items: center; padding: 36px; background: var(--paper); border: 1px solid var(--line); margin-top: 32px; }
.inkind-mark { font-family: var(--serif); font-size: 56px; font-weight: 300; font-style: italic; color: var(--clay); line-height: 0.8; }
.inkind h3 { font-family: var(--serif); font-size: 24px; font-weight: 400; margin-bottom: 8px; }
.inkind p { font-size: 15px; color: var(--ink-soft); max-width: 600px; }

/* Rules */
.rules-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; }
.rule-block { margin-bottom: 56px; }
.rule-block-title { font-family: var(--serif); font-size: 28px; font-weight: 400; letter-spacing: -0.015em; margin-bottom: 8px; }
.rule-block-eyebrow { display: block; margin-bottom: 12px; }
.rule-block-lede { font-size: 14px; color: var(--ink-mute); margin-bottom: 28px; padding-bottom: 20px; border-bottom: 1px solid var(--line); }
.rule-list { list-style: none; display: flex; flex-direction: column; gap: 0; }
.rule-list li { display: grid; grid-template-columns: 48px 1fr; gap: 20px; padding: 20px 0; border-bottom: 1px solid var(--line); }
.rule-list li:first-child { padding-top: 0; }
.rule-num { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; color: var(--clay); padding-top: 3px; }
.rule-list strong { display: block; font-family: var(--serif); font-size: 18px; font-weight: 400; letter-spacing: -0.01em; color: var(--ink); margin-bottom: 6px; }
.rule-list li p { font-size: 14px; color: var(--ink-soft); line-height: 1.6; }

/* Notice / waiver */
.notice { background: var(--ink); color: var(--bg); padding: 48px; margin: 48px 0; display: grid; grid-template-columns: 1fr 2fr; gap: 48px; align-items: start; }
.notice .notice-eyebrow { font-family: var(--mono); font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: #e9b58e; margin-bottom: 14px; display: block; }
.notice h3 { font-family: var(--serif); font-size: 30px; font-weight: 300; line-height: 1.1; letter-spacing: -0.02em; color: var(--bg); }
.notice h3 em { font-style: italic; color: #e9b58e; font-weight: 300; }
.notice p { color: rgba(244,236,216,0.75); font-size: 15px; line-height: 1.65; margin-bottom: 14px; }
.notice .btn { margin-top: 12px; }

/* Penalties table */
.penalty { width: 100%; border-collapse: collapse; font-size: 14px; }
.penalty thead th { font-family: var(--mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-mute); padding: 14px 16px; text-align: left; border-bottom: 1px solid var(--ink); }
.penalty tbody td { padding: 18px 16px; border-bottom: 1px solid var(--line); vertical-align: top; color: var(--ink-soft); line-height: 1.55; }
.penalty tbody td:first-child { color: var(--ink); font-weight: 500; }
.pill { display: inline-block; font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; padding: 4px 10px; border-radius: 999px; border: 1px solid var(--line); white-space: nowrap; }
.pill.is-warn { color: #8b6f1c; border-color: #d6c189; background: #f5ecd0; }
.pill.is-remove { color: #8c1d1d; border-color: #d4a3a3; background: #f7e1e1; }
.pill.is-stroke { color: #1a4566; border-color: #a3c1d4; background: #dbe9f3; }

/* FAQ */
.faq { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { padding: 24px 0; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 24px; font-family: var(--serif); font-size: 22px; font-weight: 400; letter-spacing: -0.01em; }
.faq-q .toggle { font-family: var(--mono); font-size: 18px; color: var(--clay); flex-shrink: 0; transition: transform 0.2s; }
.faq-item.open .faq-q .toggle { transform: rotate(45deg); }
.faq-a { font-size: 15px; color: var(--ink-soft); line-height: 1.7; max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease; padding: 0 60px 0 0; }
.faq-item.open .faq-a { max-height: 400px; padding: 0 60px 28px 0; }

/* Event bar */
.event-bar { background: var(--bg-deep); color: var(--ink); padding: 22px 0; overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.event-bar-track { display: flex; align-items: center; gap: 64px; white-space: nowrap; animation: marquee 38s linear infinite; width: max-content; font-family: var(--serif); font-size: 22px; font-weight: 300; }
.event-bar-track .bar-dot { display: inline-block; width: 6px; height: 6px; border-radius: 50%; background: var(--clay); }
.event-bar-track em { font-style: italic; color: var(--clay); font-weight: 400; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* Footer */
footer { background: var(--moss-deep); color: rgba(244,236,216,0.65); padding: 80px 0 40px; }
.foot-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 64px; padding-bottom: 56px; border-bottom: 1px solid rgba(244,236,216,0.12); margin-bottom: 32px; }
.foot-brand img { height: 56px; margin-bottom: 16px; filter: brightness(1.05); }
.foot-brand p { font-size: 14px; line-height: 1.65; max-width: 320px; color: rgba(244,236,216,0.6); }
footer h5 { font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--bg); margin-bottom: 16px; font-weight: 500; }
footer ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
footer ul a, footer ul li { font-size: 14px; transition: color 0.2s; color: rgba(244,236,216,0.65); }
footer ul a:hover { color: var(--bg); }
.foot-bottom { display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: rgba(244,236,216,0.5); font-family: var(--mono); letter-spacing: 0.06em; flex-wrap: wrap; gap: 12px; }
.foot-bottom a { color: var(--bg); border-bottom: 1px solid rgba(244,236,216,0.3); }

/* Responsive */
@media (max-width: 1080px) {
  .form-grid, .extras-head, .rules-grid, .notice { grid-template-columns: 1fr; gap: 48px; }
  .meta-grid { grid-template-columns: repeat(2, 1fr); }
  .grid-5 { grid-template-columns: repeat(2, 1fr); }
  .tier-grid { grid-template-columns: repeat(2, 1fr); }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .inkind { grid-template-columns: 1fr; gap: 16px; }
  .faq-q { font-size: 18px; }
}
@media (max-width: 720px) {
  .shell { padding: 0 24px; }
  .nav-inner { padding: 0 24px; height: 76px; }
  .nav-brand img { height: 96px; margin-top: 18px; margin-bottom: -10px; }
  .nav-links { display: none; flex-direction: column; gap: 18px; position: absolute; top: 76px; left: 0; right: 0; background: var(--paper); padding: 24px; border-bottom: 1px solid var(--line); align-items: flex-start; }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .section, .section-dark, .section-tight { padding: 64px 0; }
  .meta-grid { grid-template-columns: 1fr; }
  .grid-5, .tier-grid { grid-template-columns: 1fr; }
  .form-card { padding: 28px; }
  .field-row { grid-template-columns: 1fr; }
  .notice { padding: 32px; }
  .foot-grid { grid-template-columns: 1fr; gap: 36px; }
  .foot-bottom { flex-direction: column; align-items: flex-start; }
  .page-head { padding: 64px 0 48px; }
}
