:root {
  --bg: #faf8f4;
  --bg-alt: #f0ece4;
  --fg: #1a1a1a;
  --fg-muted: #6b6560;
  --accent: #1a3a2a;
  --accent-light: #2d5c42;
  --gold: #c9943b;
  --gold-light: #e8c07a;
  --border: #e0d9cf;
}

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

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

/* NAV */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 248, 244, 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: baseline;
  gap: 16px;
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.3px;
}
.nav-tagline {
  font-size: 13px;
  color: var(--fg-muted);
  font-weight: 400;
}

/* HERO */
.hero {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 32px 72px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  min-height: 520px;
}
.hero-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--accent);
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}
.hero-headline em {
  font-style: italic;
  color: var(--gold);
}
.hero-sub {
  font-size: 17px;
  line-height: 1.7;
  color: var(--fg-muted);
  max-width: 420px;
  font-weight: 300;
}

/* Hero graphic */
.hero-graphic {
  position: relative;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.deal-card {
  position: absolute;
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px 20px;
  box-shadow: 0 4px 24px rgba(26, 58, 42, 0.08);
  width: 140px;
}
.deal-card-discount {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}
.deal-card-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--fg-muted);
  margin: 4px 0 2px;
}
.deal-card-vendor {
  font-size: 12px;
  font-weight: 600;
  color: var(--fg);
}
.deal-card-1 {
  top: 20px; left: 10px;
  transform: rotate(-4deg);
}
.deal-card-2 {
  top: 140px; right: 20px;
  transform: rotate(3deg);
  border-color: var(--gold);
  box-shadow: 0 4px 24px rgba(201, 148, 59, 0.15);
}
.deal-card-3 {
  bottom: 60px; left: 40px;
  transform: rotate(-2deg);
}
.deal-orb {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,148,59,0.15) 0%, transparent 70%);
}
.deal-orb-1 {
  width: 200px; height: 200px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.deal-orb-2 {
  width: 100px; height: 100px;
  top: 30px; right: 30px;
}
.deal-line {
  position: absolute;
  background: var(--border);
}
.deal-line-1 {
  width: 60px; height: 1px;
  top: 120px; left: 100px;
  transform: rotate(-20deg);
}
.deal-line-2 {
  width: 40px; height: 1px;
  bottom: 140px; right: 100px;
  transform: rotate(15deg);
}
.deal-badge {
  position: absolute;
  bottom: 20px; right: 10px;
  background: var(--accent);
  color: var(--gold-light);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 20px;
}

/* Sections */
.section-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}
.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.section-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--accent);
  letter-spacing: -0.3px;
}

/* Process */
.process {
  background: var(--accent);
  padding: 80px 0;
}
.process .section-label { color: var(--gold-light); }
.process .section-headline { color: #fff; }
.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-top: 56px;
  position: relative;
}
.step {
  flex: 1;
  padding: 0 32px;
}
.step:first-child { padding-left: 0; }
.step:last-child { padding-right: 0; }
.step-num {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 800;
  color: rgba(255,255,255,0.12);
  line-height: 1;
  margin-bottom: 16px;
}
.step-title {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}
.step-desc {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,0.65);
  font-weight: 300;
}
.step-connector {
  width: 1px;
  background: rgba(255,255,255,0.12);
  align-self: stretch;
  min-height: 100px;
  margin-top: 8px;
  flex-shrink: 0;
}

/* Features */
.features {
  padding: 80px 0;
  background: var(--bg);
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 64px;
  margin-top: 48px;
}
.feature {}
.feature-icon {
  width: 48px;
  height: 48px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.feature-title {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 8px;
}
.feature-desc {
  font-size: 15px;
  line-height: 1.65;
  color: var(--fg-muted);
}

/* Why matters */
.why-matters {
  padding: 80px 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  margin-top: 48px;
}
.why-body {
  font-size: 16px;
  line-height: 1.75;
  color: var(--fg-muted);
  margin-bottom: 20px;
}
.why-stats {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-top: 8px;
}
.stat {
  border-left: 3px solid var(--gold);
  padding-left: 20px;
}
.stat-value {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.4;
}

/* Closing */
.closing {
  padding: 96px 0;
  background: var(--accent);
  text-align: center;
}
.closing-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -0.4px;
  margin-bottom: 24px;
}
.closing-sub {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255,255,255,0.65);
  max-width: 560px;
  margin: 0 auto;
  font-weight: 300;
}

/* Footer */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 40px 0;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--accent);
  display: block;
  margin-bottom: 6px;
}
.footer-desc {
  font-size: 13px;
  color: var(--fg-muted);
}
.footer-copy {
  font-size: 12px;
  color: var(--fg-muted);
}

/* Responsive */
@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 48px 24px 40px;
    min-height: auto;
  }
  .hero-graphic { display: none; }
  .process-steps { flex-direction: column; gap: 40px; }
  .step-connector { display: none; }
  .step { padding: 0; }
  .feature-grid { grid-template-columns: 1fr; gap: 32px; }
  .why-grid { grid-template-columns: 1fr; gap: 40px; }
  .section-inner { padding: 0 24px; }
  .footer-inner { flex-direction: column; gap: 16px; align-items: flex-start; }
  .process, .features, .why-matters, .closing { padding: 60px 0; }
}
@media (max-width: 480px) {
  .nav-inner { padding: 14px 20px; }
  .section-headline { font-size: 26px; }
  .closing-headline { font-size: 26px; }
}