:root {
  --bg: #faf7f2;
  --bg-alt: #f0ebe1;
  --fg: #1a1a18;
  --fg-muted: #6b6b63;
  --accent: #c8820a;
  --accent-light: #f5e6c8;
  --border: #e0d9ce;
  --card-bg: #ffffff;
  --nav-height: 60px;
}

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

html { scroll-behavior: smooth; }

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

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  height: var(--nav-height);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'Fraunces', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.02em;
}
.nav-badge {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--fg-muted);
  background: var(--bg-alt);
  padding: 4px 10px;
  border-radius: 20px;
  border: 1px solid var(--border);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

/* Hero */
.hero {
  padding: 5rem 2rem 4rem;
  border-bottom: 1px solid var(--border);
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 1.25rem;
}
.hero-headline {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 1.5rem;
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--fg-muted);
  max-width: 440px;
  line-height: 1.7;
}
.hero-right {}
.hero-stat-block {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 2rem;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 4px 32px rgba(200, 130, 10, 0.06);
}
.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}
.hero-stat:last-child { border-bottom: none; padding-bottom: 0; }
.stat-value {
  font-family: 'Fraunces', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.03em;
}
.stat-label {
  font-size: 0.8rem;
  color: var(--fg-muted);
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* Section labels */
.section-label {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 1rem;
}
.section-heading {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--fg);
  margin-bottom: 3rem;
}

/* Prizes */
.prizes {
  padding: 5rem 2rem;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
}
.prizes-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.prize-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.prize-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem 1.75rem;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.prize-card:hover {
  box-shadow: 0 8px 40px rgba(200, 130, 10, 0.1);
  transform: translateY(-3px);
}
.prize-card--gold {
  border-color: var(--accent);
  background: linear-gradient(135deg, #fffbeb 0%, #ffffff 100%);
}
.prize-icon {
  width: 48px;
  height: 48px;
  background: var(--accent-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 1.25rem;
}
.prize-card h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  letter-spacing: -0.02em;
}
.prize-card p {
  font-size: 0.875rem;
  color: var(--fg-muted);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}
.prize-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.tag {
  font-size: 0.7rem;
  font-weight: 500;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  padding: 3px 9px;
  border-radius: 20px;
  color: var(--fg-muted);
}

/* How it works */
.howitworks {
  padding: 5rem 2rem;
  border-bottom: 1px solid var(--border);
}
.howitworks-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.steps-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.step {
  position: relative;
  padding-top: 2rem;
}
.step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--accent);
}
.step-num {
  font-family: 'Fraunces', serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--bg-alt);
  display: block;
  margin-bottom: 1rem;
  line-height: 1;
}
.step h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}
.step p {
  font-size: 0.875rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* Manifesto */
.manifesto {
  padding: 5rem 2rem;
  background: var(--fg);
  color: var(--bg);
}
.manifesto-inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.manifesto-quote {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.35;
  color: var(--accent);
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}
.manifesto-attr {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 2.5rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.manifesto-body {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  max-width: 620px;
  margin: 0 auto;
}

/* Closing */
.closing {
  padding: 5rem 2rem 6rem;
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.closing-inner {
  max-width: 800px;
  margin: 0 auto;
}
.closing-headline {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: var(--fg);
  margin-bottom: 1.25rem;
}
.closing-sub {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* Footer */
.footer {
  padding: 2.5rem 2rem;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-logo {
  font-family: 'Fraunces', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--fg);
  display: block;
  margin-bottom: 4px;
}
.footer-tagline {
  font-size: 0.75rem;
  color: var(--fg-muted);
}
.footer-links a {
  font-size: 0.85rem;
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
}
.footer-links a:hover { text-decoration: underline; }

/* Responsive */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-stat-block { flex-direction: row; flex-wrap: wrap; gap: 1rem; }
  .hero-stat { flex: 1; min-width: 120px; border-bottom: none; padding-bottom: 0; }
  .prize-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-row { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .prize-grid { grid-template-columns: 1fr; }
  .steps-row { grid-template-columns: 1fr; }
  .hero-headline { font-size: 2.2rem; }
  .section-heading { font-size: 1.6rem; }
  .closing-headline { font-size: 1.8rem; }
  .footer-inner { flex-direction: column; gap: 1rem; text-align: center; }
}