:root {
  --cream: #FDF6EC;
  --charcoal: #1A1A1A;
  --terracotta: #C4563A;
  --terracotta-light: #E07055;
  --olive: #7A8B5C;
  --warm-gray: #9A8C7D;
  --light-tan: #F5EDE3;
  --white: #FFFFFF;
}

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

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--charcoal);
  overflow-x: hidden;
}

/* ── NAV ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253, 246, 236, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(196, 86, 58, 0.12);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 18px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--charcoal);
  letter-spacing: -0.02em;
}
.nav-tagline {
  font-size: 0.8rem;
  color: var(--warm-gray);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 80px 0 60px;
}
.hero-bg-shape {
  position: absolute;
  right: -5%;
  top: -10%;
  width: 55%;
  height: 110%;
  background: linear-gradient(145deg, #F9E8D8 0%, #F0D9C4 50%, #E8C8A8 100%);
  border-radius: 60% 20% 20% 60% / 50% 50% 50% 50%;
  z-index: 0;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  width: 100%;
}
.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 20px;
}
.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 6vw, 5.2rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--charcoal);
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 1.15rem;
  line-height: 1.65;
  color: #4A3F35;
  max-width: 460px;
  font-weight: 400;
  margin-bottom: 48px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 28px;
}
.hero-stat { display: flex; flex-direction: column; gap: 4px; }
.hero-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--terracotta);
}
.hero-stat-label {
  font-size: 0.78rem;
  color: var(--warm-gray);
  line-height: 1.4;
  max-width: 120px;
}
.hero-stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(196, 86, 58, 0.25);
}

/* ── PHONE MOCKUP ── */
.hero-visual {
  display: flex;
  justify-content: center;
}
.phone-mockup {
  perspective: 1000px;
}
.phone-frame {
  width: 280px;
  background: #111;
  border-radius: 38px;
  padding: 12px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.25), 0 0 0 1px rgba(255,255,255,0.08);
  transform: rotateY(-8deg) rotateX(4deg);
}
.phone-screen {
  background: #fff;
  border-radius: 28px;
  overflow: hidden;
  padding: 0;
}
.phone-header {
  padding: 14px 16px 8px;
  border-bottom: 1px solid #f0f0f0;
}
.phone-label {
  font-size: 0.68rem;
  color: #999;
  font-weight: 500;
}
.dish-card {
  padding: 16px;
}
.dish-emoji-ring {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FDF6EC, #E8D9C8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 14px;
  border: 3px solid var(--terracotta);
}
.dish-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 6px;
}
.dish-desc {
  font-size: 0.78rem;
  color: #777;
  line-height: 1.5;
  margin-bottom: 14px;
}
.dish-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.dish-price {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--terracotta);
}
.dish-chef {
  font-size: 0.72rem;
  color: #999;
}
.dish-order-bar {
  background: var(--terracotta);
  color: white;
  padding: 10px 16px;
  border-radius: 10px;
  font-size: 0.8rem;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ── SECTION TAG ── */
.section-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 24px;
  padding: 4px 10px;
  border: 1px solid rgba(196, 86, 58, 0.3);
  border-radius: 4px;
}

/* ── DISCOVERY ── */
.discovery {
  background: var(--charcoal);
  padding: 100px 0;
}
.discovery-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}
.discovery-label { margin-bottom: 48px; }
.discovery-flow {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  margin-bottom: 64px;
}
.flow-step {
  flex: 1;
  min-width: 180px;
  padding: 28px 24px;
  background: #222;
  border-radius: 16px;
  border: 1px solid #333;
}
.flow-step--highlight {
  background: var(--terracotta);
  border-color: var(--terracotta);
}
.flow-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}
.flow-text {
  font-size: 0.88rem;
  color: #ccc;
  line-height: 1.55;
}
.flow-step--highlight .flow-text { color: rgba(255,255,255,0.9); }
.flow-arrow {
  flex-shrink: 0;
  padding: 0 12px;
}
.discovery-quote {
  border-left: 3px solid var(--terracotta);
  padding-left: 28px;
}
.discovery-quote blockquote {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-style: italic;
  color: #ddd;
  line-height: 1.6;
  max-width: 680px;
}

/* ── CHEFS ── */
.chefs { padding: 100px 0; }
.chefs-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.chefs-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin-bottom: 24px;
}
.chefs-headline em { color: var(--terracotta); font-style: italic; }
.chefs-body {
  font-size: 1rem;
  line-height: 1.7;
  color: #5A4F42;
  margin-bottom: 32px;
}
.chef-credentials { display: flex; flex-direction: column; gap: 14px; }
.credential {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  color: #4A3F35;
}
.credential-icon {
  width: 22px;
  height: 22px;
  background: var(--olive);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* Chef cards stack */
.chef-card-stack {
  position: relative;
  height: 320px;
}
.chef-card {
  position: absolute;
  background: white;
  border-radius: 20px;
  padding: 20px 24px;
  width: 85%;
  box-shadow: 0 8px 40px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  gap: 16px;
  border-left: 4px solid var(--terracotta);
}
.chef-card--offset-a { top: 0; left: 0; z-index: 3; }
.chef-card--offset-b { top: 70px; left: 8%; z-index: 2; }
.chef-card--offset-c { top: 140px; left: 4%; z-index: 1; }
.chef-card-accent { position: absolute; top 0; left: 0; width: 4px; height: 100%; background: var(--terracotta); border-radius: 4px 0 0 4px; }
.chef-card-accent--green { background: var(--olive); }
.chef-card-accent--dark { background: var(--charcoal); }
.chef-card-body { flex: 1; }
.chef-name { font-weight: 700; font-size: 1rem; margin-bottom: 4px; }
.chef-specialty { font-size: 0.8rem; color: #888; margin-bottom: 4px; }
.chef-orders { font-size: 0.75rem; color: var(--olive); font-weight: 600; }
.chef-card-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--terracotta);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}
.chef-card-avatar--green { background: var(--olive); }
.chef-card-avatar--dark { background: var(--charcoal); }

/* ── FEATURES ── */
.features {
  background: var(--light-tan);
  padding: 100px 0;
}
.features-inner { max-width: 1100px; margin: 0 auto; padding: 0 40px; }
.features-header { text-align: center; margin-bottom: 64px; }
.features-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.025em;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--charcoal);
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: 48px;
}
.feature-card {
  background: var(--charcoal);
  padding: 48px 40px;
  position: relative;
}
.feature-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 40px;
  right: 40px;
  height: 1px;
  background: #333;
}
.feature-card:last-child::after { display: none; }
.feature-number {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: rgba(196, 86, 58, 0.2);
  margin-bottom: 20px;
}
.feature-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: white;
  margin-bottom: 14px;
}
.feature-body {
  font-size: 0.92rem;
  color: #aaa;
  line-height: 1.7;
}
.features-differentiator {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.diff-item {
  background: white;
  border-radius: 16px;
  padding: 28px 32px;
}
.diff-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 10px;
}
.diff-value {
  font-size: 0.92rem;
  line-height: 1.65;
  color: #4A3F35;
}

/* ── CLOSING ── */
.closing {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  background: var(--charcoal);
}
.closing-inner { position: relative; z-index: 1; max-width: 1100px; margin: 0 auto; padding: 0 40px; }
.closing-shape {
  position: absolute;
  right: -10%;
  top: -20%;
  width: 60%;
  height: 140%;
  background: radial-gradient(ellipse at center, rgba(196,86,58,0.15) 0%, transparent 70%);
  z-index: 0;
}
.closing-content { position: relative; z-index: 1; }
.closing-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 24px;
}
.closing-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: white;
  margin-bottom: 28px;
}
.closing-sub {
  font-size: 1.1rem;
  color: #888;
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 40px;
}
.closing-vibe {
  display: inline-block;
  border: 1px solid rgba(122, 139, 92, 0.4);
  padding: 10px 20px;
  border-radius: 100px;
}
.closing-vibe span {
  font-size: 0.85rem;
  color: var(--olive);
  font-weight: 500;
  letter-spacing: 0.05em;
}

/* ── FOOTER ── */
.footer {
  background: #111;
  padding: 48px 0;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: white;
  display: block;
  margin-bottom: 8px;
}
.footer-desc {
  font-size: 0.8rem;
  color: #555;
  max-width: 280px;
}
.footer-meta {
  font-size: 0.78rem;
  color: #444;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-content, .chefs-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-bg-shape { display: none; }
  .hero { padding: 60px 0 40px; }
  .hero-visual { display: none; }
  .features-grid { grid-template-columns: 1fr; }
  .features-differentiator { grid-template-columns: 1fr; }
  .discovery-flow { flex-direction: column; gap: 12px; }
  .flow-arrow { display: none; }
  .flow-step { width: 100%; }
  .chef-card-stack { height: auto; display: flex; flex-direction: column; gap: 12px; }
  .chef-card { position: static; width: 100%; }
  .footer-inner { flex-direction: column; gap: 24px; text-align: center; }
  .footer-desc { max-width: 100%; }
}
@media (max-width: 480px) {
  .hero-headline { font-size: 2.4rem; }
  .nav-inner, .discovery-inner, .chefs-inner, .features-inner, .closing-inner, .footer-inner { padding: 0 20px; }
  .feature-card { padding: 32px 24px; }
}