:root {
  --bg: #F8F0E6;
  --fg: #1A1A1A;
  --accent: #8B2233;
  --accent-light: #C49A3C;
  --muted: #6B5E52;
  --surface: #EDE8DC;
  --surface2: #E2DBD0;
}

*, *::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;
  overflow-x: hidden;
}

/* ── NAV ── */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  border-bottom: 1px solid var(--surface2);
}

.nav-logo {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.02em;
}

.nav-tagline {
  font-size: 13px;
  color: var(--muted);
  font-weight: 300;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ── HERO ── */
.hero {
  padding: 80px 48px 64px;
  position: relative;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-headline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(52px, 5vw, 80px);
  font-weight: 600;
  line-height: 1.05;
  color: var(--fg);
  margin-bottom: 28px;
}

.hero-lede {
  font-size: 18px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
  max-width: 440px;
}

/* Card Stack */
.hero-card-stack {
  display: flex;
  gap: 20px;
  align-items: flex-end;
}

.card-wrapper {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.card-wrapper:nth-child(1) .invite-card-1 { transform: rotate(-3deg); }
.card-wrapper:nth-child(2) .invite-card-2 { transform: rotate(0deg) scale(1.05); box-shadow: 0 20px 60px rgba(139,34,51,0.2); }
.card-wrapper:nth-child(3) .invite-card-3 { transform: rotate(3deg); }

.invite-card {
  border-radius: 12px;
  padding: 24px 20px;
  background: white;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.invite-card-1 {
  background: linear-gradient(135deg, #F2DDD0 0%, #E8C9A8 100%);
  border: 1px solid rgba(196,154,60,0.3);
  min-height: 200px;
}

.invite-card-2 {
  background: linear-gradient(135deg, #1A1A1A 0%, #2D2D3A 100%);
  border: 1px solid rgba(196,154,60,0.4);
  min-height: 240px;
}

.invite-card-3 {
  background: linear-gradient(135deg, #1B3A5C 0%, #2A5F8A 100%);
  border: 1px solid rgba(196,154,60,0.3);
  min-height: 200px;
}

.invite-card-inner {
  display: flex;
  flex-direction: column;
  gap: 8px;
  height: 100%;
}

.invite-type-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.invite-card-1 .invite-type-label { color: var(--accent); }
.invite-card-2 .invite-type-label { color: #C49A3C; }
.invite-card-3 .invite-type-label { color: #7BA7CC; }

.invite-main-text {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.1;
  color: var(--fg);
}

.invite-card-2 .invite-main-text,
.invite-card-3 .invite-main-text { color: #F8F0E6; }

.invite-event {
  font-size: 12px;
  color: var(--muted);
  font-style: italic;
}

.invite-card-2 .invite-event,
.invite-card-3 .invite-event { color: rgba(248,240,230,0.6); }

.invite-date {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: auto;
}

.invite-card-2 .invite-date,
.invite-card-3 .invite-date { color: rgba(248,240,230,0.5); }

.card-label {
  font-size: 11px;
  color: var(--muted);
  font-style: italic;
  text-align: center;
  line-height: 1.4;
}

/* Prompt Bar */
.hero-prompt-bar {
  max-width: 1200px;
  margin: 48px auto 0;
  padding: 16px 24px;
  background: var(--surface);
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--surface2);
}

.prompt-icon {
  color: var(--accent);
  font-size: 14px;
}

.prompt-text {
  font-size: 14px;
  color: var(--muted);
  font-weight: 300;
}

/* ── MANIFESTO ── */
.manifesto {
  background: var(--fg);
  padding: 100px 48px;
}

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

.manifesto-overline {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 24px;
}

.manifesto-headline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 500;
  line-height: 1.15;
  color: var(--bg);
  margin-bottom: 32px;
}

.manifesto-body {
  font-size: 17px;
  font-weight: 300;
  color: rgba(248,240,230,0.7);
  line-height: 1.8;
  margin-bottom: 24px;
}

.manifesto-body em {
  color: var(--bg);
  font-style: italic;
}

.manifesto-break {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 600;
  color: var(--accent-light);
  margin: 40px 0;
  font-style: italic;
}

/* ── SHOWCASE ── */
.showcase {
  padding: 100px 48px;
  background: var(--surface);
}

.showcase-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.showcase-overline {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.showcase-headline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 60px;
  max-width: 600px;
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.showcase-item {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.showcase-item-1 .showcase-visual {
  background: linear-gradient(135deg, #F5E6D8 0%, #E8D4C0 50%, #D4B896 100%);
  height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  position: relative;
}

.showcase-item-2 .showcase-visual {
  background: linear-gradient(135deg, #2D1B69 0%, #7B3FA0 50%, #E8508A 100%);
  height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
}

.showcase-item-3 .showcase-visual {
  background: linear-gradient(135deg, #0D1B2A 0%, #1B3A5C 50%, #2D5F8A 100%);
  height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
}

.showcase-item-4 .showcase-visual {
  background: linear-gradient(135deg, #2C3E2D 0%, #5A7A50 50%, #8FB87A 100%);
  height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
}

.showcase-event-tag {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 8px;
}

.showcase-prompt-text {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255,255,255,0.9);
  line-height: 1.5;
  font-style: italic;
}

.showcase-caption {
  padding: 16px 24px;
  font-size: 14px;
  color: var(--muted);
  font-weight: 300;
}

.showcase-cta-line {
  margin-top: 40px;
  font-size: 15px;
  color: var(--muted);
  font-weight: 300;
  display: flex;
  align-items: center;
  gap: 10px;
}

.cta-arrow {
  color: var(--accent);
  font-size: 18px;
}

/* ── HOW IT WORKS ── */
.how-it-works {
  padding: 100px 48px;
  background: var(--bg);
}

.how-it-works-inner {
  max-width: 900px;
  margin: 0 auto;
}

.how-overline {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.how-headline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 64px;
}

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

.step {
  flex: 1;
  padding: 0 24px 0 0;
}

.step-number {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 48px;
  font-weight: 600;
  color: var(--surface2);
  line-height: 1;
  margin-bottom: 16px;
}

.step-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 10px;
}

.step-body {
  font-size: 14px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
}

.step-connector {
  width: 40px;
  height: 2px;
  background: var(--surface2);
  margin-top: 24px;
  flex-shrink: 0;
}

/* ── CLOSING ── */
.closing {
  padding: 100px 48px;
  background: var(--surface);
}

.closing-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.closing-rule {
  width: 60px;
  height: 2px;
  background: var(--accent);
  margin: 0 auto 48px;
}

.closing-headline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 500;
  color: var(--fg);
  line-height: 1.25;
  margin-bottom: 32px;
}

.closing-sub {
  font-size: 17px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto 64px;
}

.closing-visual {
  display: flex;
  justify-content: center;
}

.closing-card {
  width: 320px;
  height: 200px;
  background: linear-gradient(135deg, var(--accent) 0%, #5E1526 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 60px rgba(139,34,51,0.25);
}

.closing-card-inner {
  text-align: center;
  padding: 32px;
}

.closing-event-type {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(248,240,230,0.5);
  margin-bottom: 12px;
}

.closing-main-text {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 52px;
  font-weight: 600;
  color: var(--bg);
  line-height: 1.05;
}

/* ── FOOTER ── */
.footer {
  padding: 48px;
  border-top: 1px solid var(--surface2);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 32px;
}

.footer-brand {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--accent);
}

.footer-tagline {
  font-size: 13px;
  color: var(--muted);
  font-weight: 300;
  flex: 1;
}

.footer-note {
  font-size: 12px;
  color: var(--surface2);
  font-weight: 300;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-card-stack {
    justify-content: center;
  }

  .showcase-grid {
    grid-template-columns: 1fr;
  }

  .steps {
    flex-direction: column;
    gap: 40px;
  }

  .step-connector {
    display: none;
  }

  .nav {
    padding: 16px 24px;
  }

  .hero, .manifesto, .showcase, .how-it-works, .closing {
    padding: 60px 24px;
  }

  .footer {
    padding: 32px 24px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

@media (max-width: 480px) {
  .hero-card-stack {
    flex-wrap: wrap;
    gap: 12px;
  }

  .card-wrapper {
    flex: none;
    width: calc(50% - 6px);
  }

  .closing-card {
    width: 100%;
  }
}