:root {
  --bg: #F8F4EE;
  --bg-dark: #EDE8DF;
  --fg: #1A1A1A;
  --fg-muted: #6B5E52;
  --accent: #1B4D3E;
  --accent-light: #2D7A62;
  --gold: #D4A843;
  --gold-light: #E8C36B;
  --border: #D9D0C4;
  --radius: 14px;
  --radius-sm: 8px;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'DM Sans', -apple-system, sans-serif;
}

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

html { scroll-behavior: smooth; }

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

/* ---- NAV ---- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(248, 244, 238, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 18px 32px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-logo {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.5px;
}
.nav-tagline {
  font-size: 13px;
  color: var(--fg-muted);
  padding-left: 12px;
  border-left: 1px solid var(--border);
}

/* ---- SECTION SHARED ---- */
.section-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 96px 32px;
}
.section-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-headline {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 600;
  line-height: 1.2;
  color: var(--fg);
  margin-bottom: 48px;
}

/* ---- HERO ---- */
.hero {
  padding: 80px 32px 96px;
  max-width: 1100px;
  margin: 0 auto;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 16px;
}
.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(34px, 4.5vw, 54px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--fg);
  margin-bottom: 20px;
}
.hero-body {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 460px;
}
.hero-stats { }
.hero-stat { }
.hero-stat-num {
  font-family: var(--font-serif);
  font-size: 40px;
  font-weight: 700;
  color: var(--accent);
  display: block;
  line-height: 1;
  margin-bottom: 6px;
}
.hero-stat-label {
  font-size: 13px;
  color: var(--fg-muted);
  max-width: 280px;
  display: block;
}

/* Phone frame */
.hero-visual {
  display: flex;
  justify-content: center;
}
.phone-frame {
  width: 280px;
  background: #1A1A1A;
  border-radius: 40px;
  padding: 12px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.18), 0 4px 12px rgba(0,0,0,0.1);
  position: relative;
}
.phone-notch {
  width: 80px;
  height: 24px;
  background: #1A1A1A;
  border-radius: 0 0 14px 14px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.phone-screen {
  background: #fff;
  border-radius: 32px;
  overflow: hidden;
  padding: 28px 20px 24px;
}

/* Stamp card */
.stamp-card {
  font-family: var(--font-sans);
}
.stamp-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.stamp-card-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--fg);
}
.stamp-card-label {
  font-size: 11px;
  color: var(--fg-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.stamps {
  display: flex;
  gap: 10px;
  margin-bottom: 16px;
}
.stamp { width: 44px; height: 44px; }
.stamp svg { width: 100%; height: 100%; }
.stamp.empty {
  background: var(--bg-dark);
  border-radius: 50%;
  border: 2px dashed var(--border);
}

.stamp-progress { margin-bottom: 14px; }
.progress-bar {
  height: 6px;
  background: var(--bg-dark);
  border-radius: 99px;
  overflow: hidden;
  margin-bottom: 8px;
}
.progress-fill {
  height: 100%;
  background: var(--accent);
  border-radius: 99px;
}
.progress-label {
  font-size: 11px;
  color: var(--fg-muted);
}

.sweepstakes-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(212, 168, 67, 0.12);
  border: 1px solid rgba(212, 168, 67, 0.3);
  border-radius: 99px;
  padding: 7px 12px;
}
.sweepstakes-badge span:last-child {
  font-size: 11px;
  color: #8B6914;
  font-weight: 500;
}

/* ---- MECHANICS ---- */
.mechanics { background: var(--bg-dark); }
.mechanics-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.mechanic-card {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 36px;
  border: 1px solid var(--border);
  position: relative;
}
.mechanic-num {
  font-family: var(--font-serif);
  font-size: 72px;
  font-weight: 700;
  color: var(--bg-dark);
  line-height: 1;
  position: absolute;
  top: 20px;
  right: 28px;
}
.mechanic-icon {
  margin-bottom: 20px;
}
.mechanic-title {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--fg);
}
.mechanic-body {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.65;
  margin-bottom: 20px;
}
.mechanic-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mechanic-list li {
  font-size: 13px;
  color: var(--fg);
  padding-left: 20px;
  position: relative;
}
.mechanic-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.mechanics-diagram {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.diagram-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}
.diagram-label {
  font-size: 12px;
  color: var(--fg-muted);
  max-width: 120px;
  line-height: 1.4;
}
.diagram-arrow { padding: 0 8px; }

/* ---- SWEEPSTAKES ---- */
.sweepstakes {
  background: var(--accent);
  color: #fff;
}
.sweepstakes-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 96px 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.sweepstakes .section-eyebrow { color: var(--gold-light); }
.sweepstakes .section-headline { color: #fff; }
.sweepstakes-body {
  font-size: 16px;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: 32px;
}
.sweepstakes-quote {
  border-left: 2px solid var(--gold);
  padding-left: 20px;
}
.sweepstakes-quote blockquote {
  font-size: 15px;
  color: rgba(255,255,255,0.85);
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 10px;
}
.sweepstakes-quote cite {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  font-style: normal;
}

.sweepstakes-diagram {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 16px;
  overflow: hidden;
}
.draw-header {
  background: rgba(255,255,255,0.1);
  padding: 14px 20px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
.draw-prize {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.draw-prize-name {
  display: block;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 2px;
}
.draw-prize-desc {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
}
.draw-entries { padding: 16px 24px; }
.entry-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.entry-row:last-child { border-bottom: none; }
.entry-row.muted { opacity: 0.5; }
.entry-name { font-size: 13px; color: rgba(255,255,255,0.85); }
.entry-count { font-size: 12px; color: rgba(255,255,255,0.5); font-weight: 500; }
.draw-footer {
  padding: 12px 24px;
  background: rgba(255,255,255,0.05);
  font-size: 11px;
  color: rgba(255,255,255,0.4);
}

/* ---- WHY ---- */
.why { background: var(--bg); }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 56px;
}
.why-card {
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.why-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}
.why-icon { margin-bottom: 16px; }
.why-title {
  font-size: 17px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 8px;
}
.why-body { font-size: 14px; color: var(--fg-muted); line-height: 1.65; }

.pricing-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
}
.pricing-label {
  font-size: 13px;
  color: var(--fg-muted);
}
.pricing-amount {
  font-family: var(--font-serif);
  font-size: 48px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}
.pricing-period {
  font-size: 18px;
  color: var(--fg-muted);
  font-weight: 400;
}
.pricing-note {
  font-size: 13px;
  color: var(--fg-muted);
  margin-left: 4px;
}

/* ---- CLOSING ---- */
.closing { background: var(--fg); color: #fff; }
.closing-inner {
  max-width: 700px;
  margin: 0 auto;
  padding: 96px 32px;
  text-align: center;
}
.closing-headline {
  font-family: var(--font-serif);
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 600;
  line-height: 1.25;
  color: #fff;
  margin-bottom: 24px;
}
.closing-body {
  font-size: 16px;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  margin-bottom: 48px;
}
.closing-stamp {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.stamped-mark {
  opacity: 0.9;
}
.closing-brand {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.6);
}

/* ---- FOOTER ---- */
.footer {
  background: #111;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 28px 32px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-brand {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 700;
  color: rgba(255,255,255,0.6);
}
.footer-copy {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
}
.footer-tag {
  margin-left: auto;
  font-size: 11px;
  color: rgba(255,255,255,0.2);
  letter-spacing: 1px;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .hero-grid,
  .mechanics-grid,
  .sweepstakes-inner,
  .why-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-visual { order: -1; }
  .phone-frame { width: 240px; }
  .sweepstakes-inner { padding: 64px 24px; }
  .section-inner { padding: 64px 24px; }
  .hero { padding: 48px 24px 64px; }
  .mechanics-diagram { gap: 16px; }
  .diagram-arrow { display: none; }
  .footer-tag { margin-left: 0; }
  .nav-tagline { display: none; }
  .pricing-row { gap: 8px; }
  .closing-inner { padding: 64px 24px; }
}