:root {
  --bg: #FAFAF7;
  --fg: #1A1A1A;
  --accent: #C7502B;
  --accent-light: #F2E8E3;
  --muted: #6B6860;
  --border: #E5E3DC;
  --serif: 'Fraunces', Georgia, serif;
  --sans: 'DM Sans', system-ui, sans-serif;
}

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

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

/* ── Topbar ── */
.topbar {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  padding: 1.5rem 2.5rem;
  border-bottom: 1px solid var(--border);
}
.wordmark {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--fg);
}
.topbar .tagline {
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 300;
  letter-spacing: 0.01em;
}

/* ── Hero ── */
.hero {
  position: relative;
  padding: 7rem 2.5rem 5rem;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.hero-inner {
  max-width: 820px;
  position: relative;
  z-index: 1;
}
.hero-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 1.25rem;
}
.hero-headline {
  font-family: var(--serif);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 1.5rem;
}
.hero-lede {
  font-size: 1.2rem;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 3.5rem;
}
.hero-asymmetric {
  display: flex;
  align-items: center;
  gap: 0;
}
.hero-stat {
  display: flex;
  flex-direction: column;
  padding: 0 2rem 0 0;
}
.stat-number {
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--fg);
  line-height: 1;
}
.stat-label {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 0.25rem;
  font-weight: 400;
}
.hero-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
  margin: 0 2rem 0 0;
}
.hero-ambient {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 40%;
  pointer-events: none;
}
.ambient-circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.12;
}
.c1 {
  width: 400px; height: 400px;
  background: var(--accent);
  top: -100px; right: -100px;
}
.c2 {
  width: 250px; height: 250px;
  background: var(--accent);
  bottom: 80px; right: 180px;
}

/* ── How ── */
.how { padding: 6rem 2.5rem; border-bottom: 1px solid var(--border); }
.how-inner { max-width: 900px; }
.section-eyebrow {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  font-weight: 600;
  display: block;
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--fg);
  margin-bottom: 3.5rem;
  max-width: 480px;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  border-top: 1px solid var(--border);
  padding-top: 2.5rem;
}
.step-number {
  font-family: var(--serif);
  font-size: 0.85rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
}
.step-title {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}
.step-body {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ── Taste ── */
.taste { padding: 6rem 2.5rem; border-bottom: 1px solid var(--border); background: var(--fg); color: var(--bg); }
.taste-inner { max-width: 900px; display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.taste .section-eyebrow { color: #E8A98A; }
.taste .section-title { color: var(--bg); }
.taste-body { font-size: 0.95rem; color: #B0AEAA; line-height: 1.7; margin-bottom: 2.5rem; }
.taste-example { display: flex; flex-direction: column; gap: 0.75rem; border-top: 1px solid #333; padding-top: 1.5rem; }
.pref-row { display: flex; gap: 1rem; font-size: 0.82rem; }
.pref-label { color: #888; width: 80px; flex-shrink: 0; }
.pref-value { color: var(--bg); font-weight: 500; }
.taste-right { display: flex; align-items: center; justify-content: center; }
.taste-card { background: #252525; border: 1px solid #333; border-radius: 12px; padding: 1.75rem; width: 100%; max-width: 340px; }
.taste-card-header { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em; color: #888; margin-bottom: 1.25rem; font-weight: 600; }
.restaurant-preview { }
.rp-name { font-family: var(--serif); font-size: 1.3rem; font-weight: 600; color: var(--bg); margin-bottom: 0.25rem; }
.rp-meta { font-size: 0.8rem; color: #888; margin-bottom: 0.75rem; }
.rp-reason { font-size: 0.82rem; color: #AAA; line-height: 1.6; }

/* ── Anywhere ── */
.anywhere { padding: 6rem 2.5rem; border-bottom: 1px solid var(--border); }
.anywhere-content { max-width: 580px; margin-bottom: 3rem; }
.anywhere-body { font-size: 1rem; color: var(--muted); line-height: 1.75; }
.cities-row { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.city { font-family: var(--serif); font-size: 1.05rem; color: var(--fg); padding: 0.6rem 1.25rem; border: 1px solid var(--border); border-radius: 100px; font-weight: 400; }

/* ── Closing ── */
.closing { padding: 6rem 2.5rem; border-bottom: 1px solid var(--border); }
.closing-inner { max-width: 720px; }
.closing-quote p { font-family: var(--serif); font-size: clamp(1.5rem, 3vw, 2.25rem); font-style: italic; font-weight: 400; line-height: 1.4; color: var(--muted); margin-bottom: 3rem; }
.closing-statement h2 { font-family: var(--serif); font-size: clamp(1.4rem, 2.5vw, 2rem); font-weight: 600; letter-spacing: -0.02em; line-height: 1.3; color: var(--fg); }

/* ── Footer ── */
.footer { padding: 2.5rem; }
.footer-inner { display: flex; justify-content: space-between; align-items: center; }
.footer-brand { display: flex; flex-direction: column; gap: 0.25rem; }
.footer-wordmark { font-family: var(--serif); font-size: 1.1rem; font-weight: 600; }
.footer-tagline { font-size: 0.78rem; color: var(--muted); }
.footer-note { font-size: 0.75rem; color: var(--muted); }

/* ── Responsive ── */
@media (max-width: 768px) {
  .topbar { padding: 1.25rem 1.5rem; }
  .hero { padding: 4rem 1.5rem 3.5rem; }
  .hero-asymmetric { flex-wrap: wrap; gap: 1.5rem; }
  .hero-stat { padding: 0; }
  .hero-divider { display: none; }
  .hero-ambient { display: none; }
  .how { padding: 4rem 1.5rem; }
  .steps-grid { grid-template-columns: 1fr; gap: 2rem; }
  .taste { padding: 4rem 1.5rem; }
  .taste-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .taste-right { justify-content: flex-start; }
  .anywhere { padding: 4rem 1.5rem; }
  .closing { padding: 4rem 1.5rem; }
  .footer { padding: 2rem 1.5rem; }
  .footer-inner { flex-direction: column; gap: 1rem; text-align: center; }
}
@media (max-width: 480px) {
  .section-title { font-size: 1.6rem; }
  .hero-headline { font-size: 2.8rem; }
}