:root {
  --bg: #F5F0E8;
  --bg-alt: #EDE8DF;
  --fg: #2D2A26;
  --fg-muted: #6B6560;
  --accent: #C8602A;
  --accent-light: #F0E4D7;
  --white: #FFFFFF;
  --border: #D8D0C4;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  line-height: 1.2;
}

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
}
.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--fg);
}
.logo-mark {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 700;
  background: var(--accent);
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-text {
  font-family: 'Fraunces', serif;
  font-size: 18px;
  font-weight: 600;
}
.header-nav {
  display: flex;
  gap: 32px;
}
.header-nav a {
  color: var(--fg-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.15s;
}
.header-nav a:hover { color: var(--fg); }

/* SECTIONS */
.section-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 24px;
}
.section-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-heading {
  font-size: clamp(28px, 4vw, 40px);
  color: var(--fg);
  margin-bottom: 24px;
  max-width: 640px;
}

/* HERO */
.hero { padding: 80px 24px 60px; }
.hero-inner { max-width: 1100px; margin: 0 auto; }
.hero-content { max-width: 680px; }
.hero-eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.hero-headline {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 24px;
  font-style: italic;
}
.hero-sub {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 540px;
}

/* METRO GRID */
.metro-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 320px;
}
.grid-row { display: contents; }
.grid-block {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 4px;
  height: 80px;
  transition: all 0.3s ease;
}
.grid-block.active {
  background: var(--accent);
  border-color: var(--accent);
  transform: scale(1.05);
}

/* HOW IT WORKS */
.how-it-works { background: var(--white); }
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-top: 48px;
}
.step-number {
  font-family: 'Fraunces', serif;
  font-size: 48px;
  font-weight: 300;
  color: var(--accent);
  margin-bottom: 16px;
  line-height: 1;
}
.step h3 {
  font-size: 22px;
  margin-bottom: 12px;
}
.step p {
  color: var(--fg-muted);
  font-size: 15px;
  line-height: 1.7;
}

/* SPONSORS */
.sponsors { background: var(--fg); color: var(--white); }
.sponsors .section-eyebrow { color: #D4A574; }
.sponsors .section-heading { color: var(--white); }
.sponsors-desc {
  color: rgba(255,255,255,0.7);
  font-size: 17px;
  max-width: 580px;
  margin-bottom: 48px;
}
.sponsor-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.sponsor-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 32px;
}
.sponsor-icon {
  color: var(--accent);
  margin-bottom: 20px;
}
.sponsor-slot {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 12px;
}
.sponsor-price {
  font-family: 'Fraunces', serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 24px;
}
.sponsor-price span { font-size: 16px; font-weight: 400; color: rgba(255,255,255,0.5); }
.sponsor-features { list-style: none; }
.sponsor-features li {
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.sponsor-features li:last-child { border-bottom: none; }
.sponsor-note {
  margin-top: 32px;
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  text-align: center;
  font-style: italic;
}

/* SAMPLE ISSUE */
.sample { background: var(--bg); }
.issue-sections {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.issue-section {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 24px;
}
.issue-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 3px;
  margin-bottom: 12px;
}
.tag-price { background: #E8F4E8; color: #2D6A2D; }
.tag-rate { background: #E8EEF4; color: #2B4A7A; }
.tag-listings { background: #F4E8E8; color: #7A2B2B; }
.tag-spot { background: var(--accent-light); color: var(--accent); }
.issue-section h3 { font-size: 17px; margin-bottom: 8px; }
.issue-section p { font-size: 14px; color: var(--fg-muted); line-height: 1.6; }

/* CLOSING */
.closing { background: var(--bg-alt); border-top: 1px solid var(--border); }
.closing-headline {
  font-size: clamp(28px, 4vw, 44px);
  font-style: italic;
  margin-bottom: 16px;
}
.closing-sub {
  font-size: 18px;
  color: var(--fg-muted);
  margin-bottom: 24px;
  max-width: 520px;
}
.closing-note {
  font-size: 14px;
  color: var(--fg-muted);
  max-width: 480px;
  border-left: 3px solid var(--accent);
  padding-left: 16px;
}

/* FOOTER */
.site-footer {
  background: var(--fg);
  color: rgba(255,255,255,0.5);
}
.footer-inner { max-width: 1100px; margin: 0 auto; padding: 48px 24px; }
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.footer-brand .logo-mark { background: var(--accent); }
.footer-brand .logo-text {
  font-family: 'Fraunces', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
}
.footer-tagline { font-size: 14px; margin-bottom: 24px; color: rgba(255,255,255,0.5); }
.footer-copy { font-size: 12px; }

/* MOBILE */
@media (max-width: 640px) {
  .header-nav { display: none; }
  .section-inner { padding: 56px 20px; }
  .hero { padding: 48px 20px 40px; }
  .hero-headline { font-size: 34px; }
  .steps { grid-template-columns: 1fr; }
  .sponsor-cards { grid-template-columns: 1fr; }
  .issue-sections { grid-template-columns: 1fr; }
}
