:root {
  --navy: #1a2a38;
  --navy-mid: #2b3d4f;
  --gold: #c9a762;
  --cream: #fdfbf7;
  --cream-dark: #f8f3eb;
  --blue-100: #dce8f1;
  --text: #1a2a38;
  --text-secondary: #4a6178;
  --text-tertiary: #5f7a93;
  --placeholder: #7a96ad;
  --border: #e8e0d2;
  --white: #ffffff;
  --radius: 6px;
  --radius-lg: 12px;
  --font-serif: "DM Serif Display", Georgia, serif;
  --font-sans: "DM Sans", system-ui, sans-serif;
  --header-h: 90px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.625;
  color: var(--text-secondary);
  background: var(--cream);
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
h1, h2, h3, h4 { font-family: var(--font-serif); font-weight: 400; color: var(--navy); margin: 0; }
p { margin: 0 0 1.25rem; }
p:last-child { margin-bottom: 0; }

.kicker {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  line-height: 20px;
  margin: 0 0 8px;
}
.caption { font-size: 12px; letter-spacing: 0.2px; line-height: 16px; color: var(--text-tertiary); }

.wrap {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  background: none;
}
.btn-gold { background: var(--gold); color: var(--navy); }
.btn-gold:hover { filter: brightness(0.96); }
.btn-navy { background: var(--navy-mid); color: var(--white); }
.btn-outline { border-color: var(--navy); color: var(--navy); background: var(--white); }
.btn-sm { padding: 12px 24px; font-size: 14px; letter-spacing: 0.4px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: var(--header-h);
  padding: 8px 32px;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.logo img { width: 181px; height: 90px; object-fit: contain; }
.site-nav {
  display: flex;
  gap: 32px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-tertiary);
}
.site-nav a { text-decoration: none; }
.site-nav a:hover,
.site-nav a.is-active { color: var(--navy); }
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 8px 12px;
  font: inherit;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 12px;
}

.hero {
  background: var(--navy);
  color: var(--cream);
  padding: calc(var(--header-h) + 32px) 64px 64px;
}
.hero-inner {
  width: min(1200px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: 48px;
  align-items: center;
}
.hero h1 {
  color: var(--white);
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.05;
  letter-spacing: -1.5px;
  margin-bottom: 16px;
}
.hero .kicker { color: var(--gold); }
.hero h2, .hero .lede {
  color: var(--white);
  font-size: 40px;
  line-height: 48px;
  letter-spacing: -0.8px;
  margin: 0 0 16px;
}
.hero p { color: var(--cream); font-size: 18px; line-height: 30px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 16px; }
.hero-figure { position: relative; }
.hero-figure img {
  width: 100%;
  aspect-ratio: 528 / 500;
  object-fit: cover;
  border-radius: var(--radius-lg);
}
.hero-badge {
  position: absolute;
  top: -36px;
  left: 50%;
  transform: translateX(-50%);
  width: 173px;
  background: var(--white);
  border-radius: 3px;
  padding: 4px;
}
.hero-badge img { width: 100%; height: auto; aspect-ratio: auto; border-radius: 0; }
.hero-caption { margin-top: 16px; text-align: center; color: #f8f2e5; font-size: 12px; }

.section { padding: 80px 0; }
.section-cream { background: var(--cream-dark); }
.section-white { background: var(--cream); }
.section-header { margin-bottom: 24px; }
.section-header h2 { font-size: 28px; line-height: 36px; letter-spacing: -0.4px; }

.split {
  display: grid;
  grid-template-columns: 1fr 200px;
  gap: 48px;
  align-items: start;
}
.split-wide {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.split-wide > figure { order: -1; }

.stat-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 16px;
  text-align: center;
}
.stat-number {
  font-family: var(--font-serif);
  font-size: 72px;
  line-height: 1;
  letter-spacing: -2px;
  color: var(--gold);
  margin: 0;
}
.stat-card h3 { font-family: var(--font-sans); font-size: 18px; font-weight: 400; margin: 4px 0; }
.stat-card p { color: var(--text-tertiary); }

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 16px;
}
.numbered {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.num {
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  border-radius: 20px;
  background: var(--gold);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  letter-spacing: 0.5px;
}
.numbered h3 { font-size: 22px; line-height: 28px; letter-spacing: -0.2px; margin-bottom: 4px; }
.numbered p { color: var(--text-secondary); }

.checklist { list-style: none; padding: 0; margin: 0 0 24px; }
.checklist li { padding: 0 0 20px 0; font-size: 18px; line-height: 30px; }

.cta-banner {
  background: var(--navy);
  color: var(--cream);
  text-align: center;
  padding: 64px 24px;
}
.cta-banner h2 { color: var(--white); font-size: 40px; line-height: 48px; margin-bottom: 16px; }
.cta-banner p { font-size: 18px; margin-bottom: 16px; color: var(--cream); }

.site-footer {
  background: var(--blue-100);
  padding: 40px 64px;
  color: var(--text-tertiary);
}
.footer-top, .footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.footer-logo { width: 169px; height: 100px; object-fit: contain; }
.footer-links { display: flex; gap: 24px; font-size: 14px; }
.footer-links a { text-decoration: none; }
.footer-links a[href^="mailto"] { text-decoration: underline; }
.partner-logos { display: flex; gap: 24px; align-items: center; }
.sf-logo { width: 68px; height: 58px; }
.clawson-logo { width: 77px; height: 60px; object-fit: contain; }
.footer-rule { border: 0; border-top: 1px solid var(--navy); margin: 8px 0; opacity: 0.25; }
.footer-bottom .kicker { color: var(--text-tertiary); margin: 0; }

.tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.tiles-4 { grid-template-columns: repeat(4, 1fr); }
.tile {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
}
.tile img { width: 100%; aspect-ratio: 280 / 200; object-fit: cover; }
.tile figcaption {
  padding: 16px;
  font-family: var(--font-serif);
  font-size: 22px;
  line-height: 28px;
  color: var(--navy);
}
.tile.recipe figcaption {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 26px;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stats-row h3 { font-family: var(--font-sans); font-size: 18px; font-weight: 400; color: var(--navy); }
.stat-sub { font-size: 32px; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); margin: 0; }

.faq { display: flex; flex-direction: column; gap: 24px; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--gold);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.faq-item button {
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  padding: 24px;
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 16px;
}
.faq-item button::after { content: "+"; color: var(--gold); font-family: var(--font-sans); }
.faq-item.is-open button::after { content: "-"; }
.faq-item .faq-body { display: none; padding: 0 24px 24px; }
.faq-item.is-open .faq-body { display: block; }

.form-intro { padding: 170px 0 40px; text-align: center; background: var(--cream-dark); }
.form-intro h1 { font-size: 28px; margin-bottom: 16px; }
.form-intro p { max-width: 900px; margin: 0 auto 12px; font-size: 18px; line-height: 30px; }
.form-logo { width: 264px; margin: 0 auto 24px; }

.form-card {
  background: var(--white);
  border: 1px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin: 0 auto 24px;
  max-width: 1200px;
}
.form-card[hidden] { display: none; }
.form-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.form-head h2 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 22px;
}
.step-num {
  width: 36px;
  height: 36px;
  border-radius: 18px;
  background: var(--navy);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-size: 16px;
}
.optional { font-family: var(--font-sans); font-size: 14px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--navy); }
.fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.field { display: flex; flex-direction: column; gap: 12px; }
.field[hidden] { display: none; }
.field.full { grid-column: 1 / -1; }
label { font-size: 14px; font-weight: 500; letter-spacing: 0.2px; color: var(--navy); }
input[type="text"], input[type="email"], input[type="tel"], input[type="url"], select, textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px;
  font: inherit;
  font-size: 16px;
  color: var(--navy);
  background: var(--white);
}
textarea { min-height: 120px; resize: vertical; }
.choices { display: flex; flex-direction: column; gap: 8px; }
.choice { display: flex; align-items: flex-start; gap: 12px; color: var(--navy-mid); }
.form-nav {
  display: flex;
  justify-content: space-between;
  margin-top: 16px;
}
.form-nav.end { justify-content: flex-end; }
.form-errors {
  background: #fdecea;
  border: 1px solid #e8a0a0;
  color: #7a1f1f;
  padding: 16px;
  border-radius: var(--radius-lg);
  margin: 0 auto 24px;
  max-width: 1200px;
}
.field-error { color: #9b2c2c; font-size: 13px; margin: 0; }
.honeypot { position: absolute; left: -9999px; }

.thanks {
  padding: 170px 24px 80px;
  background: var(--cream-dark);
}
.thanks-card {
  max-width: 1200px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: center;
}
.thanks-copy { text-align: center; }
.thanks-copy h1 { font-size: 40px; line-height: 48px; margin: 16px 0; }
.thanks-copy img.inline-logo { width: 264px; margin: 0 auto; }
.thanks-card img.cheese { width: 100%; border-radius: var(--radius-lg); object-fit: cover; }

.legal {
  padding: 140px 0 80px;
  background: var(--cream-dark);
}
.legal-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  max-width: 1200px;
  margin: 0 auto;
}
.legal h1 { font-size: 28px; margin-bottom: 24px; }
.legal h2 { font-size: 22px; margin: 28px 0 12px; }
.legal p, .legal li { font-size: 16px; line-height: 26px; color: var(--text-secondary); }

@media (max-width: 960px) {
  .hero, .site-footer { padding-left: 24px; padding-right: 24px; }
  .hero-inner, .split, .grid-2, .tiles, .tiles-4, .fields, .thanks-card {
    grid-template-columns: 1fr;
  }
  .stats-row {
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }
  .stats-row > div {
    padding: 32px 24px;
  }
  .stats-row > div:nth-child(odd) {
    border-right: 1px solid var(--gold);
  }
  .stats-row > div:nth-child(-n+2) {
    border-bottom: 1px solid var(--gold);
  }
  .hero-figure { max-width: 460px; }
  .nav-toggle { display: inline-flex; }
  .site-nav, .header-cta { display: none; }
  .site-header.is-open .site-nav {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--white);
    padding: 16px 24px 24px;
    border-bottom: 1px solid var(--border);
    gap: 16px;
  }
  .site-header.is-open .header-cta { display: inline-flex; position: absolute; top: calc(var(--header-h) + 200px); right: 24px; }
  .footer-top, .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 700px) {
  .split-wide {
    grid-template-columns: 1fr;
  }
  .split-wide > figure { order: 0; }
  .stats-row {
    grid-template-columns: 1fr;
  }
  .stats-row > div {
    padding: 0;
    border: 0;
  }
}
.margin-bottom-3 { margin-bottom: 32px; }
.margin-bottom-2 { margin-bottom: 24px; }
.margin-bottom-1 { margin-bottom: 16px; }