/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream: #FDFAF5;
  --cream-dark: #F5EFE4;
  --charcoal: #1C1C1C;
  --charcoal-light: #3D3D3D;
  --amber: #C9824A;
  --amber-light: #D4956A;
  --terracotta: #A0523A;
  --muted: #7A6E63;
  --border: #E5DDD1;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  background: var(--cream);
  color: var(--charcoal);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* === TYPOGRAPHY === */
h1, h2, h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.section__label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.75rem;
}

/* === NAV === */
.nav {
  padding: 1.75rem 2.5rem;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: linear-gradient(to bottom, rgba(253,250,245,0.95) 0%, rgba(253,250,245,0) 100%);
}

.nav__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--charcoal);
  letter-spacing: -0.02em;
}

.nav__tagline {
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 400;
  letter-spacing: 0.05em;
}

/* === HERO === */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 8rem 2.5rem 6rem;
  text-align: center;
}

.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero__texture {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(201,130,74,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 80% 80%, rgba(160,82,58,0.08) 0%, transparent 50%);
}

.hero__glow {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(212,149,106,0.18) 0%, transparent 70%);
  filter: blur(40px);
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.hero__eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1.5rem;
}

.hero__headline {
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 400;
  font-style: italic;
  color: var(--charcoal);
  line-height: 1.08;
  margin-bottom: 2rem;
  letter-spacing: -0.03em;
}

.hero__sub {
  font-size: 1.1rem;
  color: var(--charcoal-light);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
  font-weight: 300;
}

/* === HOW IT WORKS === */
.howitworks {
  padding: 7rem 2.5rem;
  background: var(--cream-dark);
}

.howitworks__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-top: 3rem;
}

.step__num {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 400;
  color: var(--border);
  display: block;
  margin-bottom: 1rem;
  line-height: 1;
}

.step__title {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
  color: var(--charcoal);
}

.step__desc {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.65;
}

/* === DINNERS === */
.dinners {
  padding: 7rem 2.5rem;
}

.dinners__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.dinners__heading {
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-bottom: 3rem;
  color: var(--charcoal);
}

.dinner-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.dinner-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.dinner-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(28,28,28,0.08);
}

.dinner-card__img {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dinner-card__emoji {
  font-size: 4rem;
  line-height: 1;
}

.dinner-card__body {
  padding: 1.75rem;
}

.dinner-card__name {
  font-size: 1.15rem;
  font-weight: 500;
  margin-bottom: 0.4rem;
  color: var(--charcoal);
}

.dinner-card__meta {
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}

.dinner-card__price {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
}

.dinner-card__badge {
  display: inline-block;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 0.25rem 0.85rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--terracotta);
}

/* === VOICES === */
.voices {
  padding: 7rem 2.5rem;
  background: var(--charcoal);
}

.voices__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.voices .section__label {
  color: var(--amber-light);
}

.voices__heading {
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: #fff;
  margin-bottom: 3rem;
  font-style: italic;
}

.voices__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.voice {
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 2rem;
  background: rgba(255,255,255,0.04);
}

.voice__text {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-style: italic;
  color: rgba(255,255,255,0.9);
  line-height: 1.55;
  margin-bottom: 1.25rem;
}

.voice__attr {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  font-weight: 500;
  letter-spacing: 0.05em;
}

/* === CLOSING === */
.closing {
  padding: 8rem 2.5rem;
  text-align: center;
}

.closing__inner {
  max-width: 680px;
  margin: 0 auto;
}

.closing__eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1.25rem;
}

.closing__headline {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--charcoal);
  margin-bottom: 1.75rem;
  font-style: italic;
}

.closing__body {
  font-size: 1.05rem;
  color: var(--charcoal-light);
  line-height: 1.75;
  font-weight: 300;
}

/* === FOOTER === */
.footer {
  padding: 3.5rem 2.5rem;
  border-top: 1px solid var(--border);
  text-align: center;
}

.footer__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.footer__brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 0.35rem;
}

.footer__sub {
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 1rem;
}

.footer__note {
  font-size: 0.75rem;
  color: var(--border);
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .steps {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

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

  .voices__grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .hero {
    padding: 7rem 1.5rem 5rem;
  }

  .howitworks, .dinners, .voices, .closing {
    padding: 5rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero__headline {
    font-size: 2.5rem;
  }

  .hero__sub {
    font-size: 1rem;
  }
}