:root {
  --bg: #FAF7F2;
  --fg: #1E1E1E;
  --muted: #7A7068;
  --accent: #C4644A;
  --accent-warm: #E8A97A;
  --border: #E2D9CE;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Navigation */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.75rem 3rem;
  border-bottom: 1px solid var(--border);
}

.nav-brand {
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.03em;
}

.nav-tagline {
  font-size: 0.875rem;
  color: var(--muted);
  font-weight: 300;
}

/* Hero */
.hero {
  position: relative;
  padding: 6rem 3rem 5rem;
  overflow: hidden;
}

.hero-bg-ampersand {
  position: absolute;
  right: -2rem;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Fraunces', serif;
  font-size: 40vw;
  font-weight: 800;
  color: var(--border);
  line-height: 1;
  user-select: none;
  pointer-events: none;
  opacity: 0.4;
}

.hero-content {
  max-width: 680px;
  position: relative;
  z-index: 1;
}

.hero-headline {
  font-family: 'Fraunces', serif;
  font-size: clamp(3.5rem, 8vw, 6rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--fg);
  margin-bottom: 1.75rem;
}

.hero-sub {
  font-size: 1.125rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 3rem;
  font-weight: 400;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 2rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-family: 'Fraunces', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.03em;
  line-height: 1;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 0.35rem;
  font-weight: 400;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* Section label */
.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 2.5rem;
}

/* Manifesto */
.manifesto {
  background: var(--fg);
  color: var(--bg);
  padding: 6rem 3rem;
}

.manifesto-inner {
  max-width: 760px;
  margin: 0 auto;
}

.manifesto-quote {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 500;
  font-style: italic;
  line-height: 1.35;
  color: var(--bg);
  margin-bottom: 2.5rem;
  letter-spacing: -0.02em;
}

.manifesto-body {
  font-size: 1rem;
  color: rgba(250, 247, 242, 0.65);
  line-height: 1.8;
}

/* How it works */
.how-it-works {
  padding: 6rem 3rem;
}

.steps {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.step {
  flex: 1;
  padding: 2rem;
  border: 1px solid var(--border);
  border-radius: 4px;
}

.step-num {
  font-family: 'Fraunces', serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--accent);
  display: block;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 1rem;
}

.step-title {
  font-family: 'Fraunces', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 0.75rem;
}

.step-desc {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
}

.step-connector {
  width: 40px;
  height: 1px;
  background: var(--border);
  margin-top: 3.5rem;
  flex-shrink: 0;
}

/* Occasions */
.occasions {
  padding: 5rem 3rem;
  background: #F4EFE8;
}

.occasions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.occasion {
  background: #F4EFE8;
  padding: 2.5rem 2rem;
}

.occasion-icon {
  font-size: 1.5rem;
  color: var(--accent);
  display: block;
  margin-bottom: 1rem;
}

.occasion-name {
  font-family: 'Fraunces', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 0.5rem;
}

.occasion-desc {
  font-size: 0.875rem;
  color: var(--muted);
}

/* Closing */
.closing {
  padding: 7rem 3rem;
  text-align: center;
}

.closing-inner {
  max-width: 560px;
  margin: 0 auto;
}

.closing-headline {
  font-family: 'Fraunces', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 1.25rem;
}

.closing-sub {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.7;
}

/* Closing CTA */
.closing-actions { display: flex; gap: 1rem; justify-content: center; margin-top: 2rem; }
.btn-accent { display: inline-flex; align-items: center; padding: 0.875rem 2rem; background: var(--accent); color: white; border-radius: 4px; font-weight: 500; text-decoration: none; transition: background 0.15s; font-size: 1rem; }
.btn-accent:hover { background: #B0553D; }
.btn-ghost { display: inline-flex; align-items: center; padding: 0.875rem 2rem; background: transparent; color: var(--muted); border-radius: 4px; font-weight: 500; text-decoration: none; font-size: 1rem; }
.btn-ghost:hover { background: var(--bg); color: var(--fg); }

/* Footer */
.footer {
  padding: 2.5rem 3rem;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-brand {
  font-family: 'Fraunces', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--fg);
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--muted);
}

/* Responsive */
@media (max-width: 768px) {
  .nav { padding: 1.25rem 1.5rem; }
  .nav-tagline { display: none; }
  .hero { padding: 3rem 1.5rem; }
  .hero-bg-ampersand { font-size: 60vw; right: -4rem; }
  .hero-stats { flex-direction: column; gap: 1.25rem; }
  .stat-divider { display: none; }
  .steps { flex-direction: column; }
  .step-connector { width: 40px; height: 1px; margin: 0; transform: none; }
  .manifesto { padding: 4rem 1.5rem; }
  .how-it-works { padding: 4rem 1.5rem; }
  .occasions { padding: 4rem 1.5rem; }
  .occasions-grid { grid-template-columns: 1fr 1fr; }
  .closing { padding: 4rem 1.5rem; }
  .footer { flex-direction: column; gap: 0.5rem; }
}

@media (max-width: 480px) {
  .occasions-grid { grid-template-columns: 1fr; }
}