:root {
  --bg: #F7F3ED;
  --fg: #1A1612;
  --accent: #C4622D;
  --olive: #2D4A1C;
  --gold: #B8860B;
  --muted: #7A6E63;
  --cream-light: #EDE8DF;
  --white: #FFFFFF;
}

* { 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;
  -webkit-font-smoothing: antialiased;
}

/* Nav */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 48px;
  border-bottom: 1px solid rgba(196, 98, 45, 0.15);
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.04em;
}
.nav-tagline {
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Hero */
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 80px 48px 100px;
  background: var(--bg);
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(135deg, var(--cream-light) 0%, #E8DFD4 100%);
  border-radius: 0 0 0 80px;
  z-index: 0;
}
.hero-inner {
  max-width: 680px;
  position: relative;
  z-index: 1;
}
.hero-eyebrow {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
  font-weight: 500;
}
.hero-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(52px, 7vw, 88px);
  font-weight: 400;
  line-height: 1.05;
  color: var(--fg);
  margin-bottom: 32px;
}
.hero-sub {
  font-size: 18px;
  color: var(--muted);
  max-width: 520px;
  line-height: 1.65;
  margin-bottom: 48px;
}
.hero-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}
.divider-line {
  height: 1px;
  width: 60px;
  background: var(--accent);
  opacity: 0.4;
}
.divider-mark {
  color: var(--accent);
  font-size: 16px;
}
.hero-locale {
  font-size: 14px;
  color: var(--muted);
  letter-spacing: 0.04em;
}

/* Story */
.story {
  background: var(--olive);
  padding: 100px 48px;
}
.story-inner {
  max-width: 680px;
  margin: 0 auto;
}
.story-label {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #A8C47A;
  margin-bottom: 28px;
  font-weight: 500;
}
.story-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4.5vw, 54px);
  font-weight: 400;
  color: var(--bg);
  line-height: 1.15;
  margin-bottom: 40px;
}
.story-body p {
  font-size: 17px;
  color: rgba(247, 243, 237, 0.75);
  line-height: 1.75;
  margin-bottom: 20px;
}
.story-body p:last-child {
  margin-bottom: 0;
}

/* How */
.how {
  padding: 100px 48px;
  background: var(--bg);
}
.how-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.how-label {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  font-weight: 500;
}
.how-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 400;
  color: var(--fg);
  line-height: 1.2;
  margin-bottom: 72px;
  max-width: 600px;
}
.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.step {}
.step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 300;
  color: var(--accent);
  opacity: 0.5;
  display: block;
  margin-bottom: 16px;
}
.step-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--fg);
  margin-bottom: 12px;
}
.step-desc {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65;
}

/* Dishes */
.dishes {
  background: var(--cream-light);
  padding: 100px 48px;
}
.dishes-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.dishes-label {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--olive);
  margin-bottom: 20px;
  font-weight: 500;
}
.dishes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-bottom: 40px;
}
.dish {
  padding: 40px 36px;
  background: var(--bg);
}
.dish-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 500;
  color: var(--fg);
  margin-bottom: 12px;
}
.dish-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}
.dishes-note {
  font-size: 13px;
  color: var(--muted);
  font-style: italic;
  text-align: center;
  letter-spacing: 0.03em;
}

/* Closing */
.closing {
  background: var(--accent);
  padding: 100px 48px;
  text-align: center;
}
.closing-inner {
  max-width: 640px;
  margin: 0 auto;
}
.closing-ornament {
  font-size: 28px;
  color: rgba(247, 243, 237, 0.4);
  margin-bottom: 32px;
}
.closing-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-style: italic;
  color: rgba(247, 243, 237, 0.85);
  line-height: 1.6;
  margin-bottom: 48px;
}
.closing-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(38px, 5vw, 60px);
  font-weight: 400;
  color: var(--bg);
  line-height: 1.15;
}

/* Footer */
.footer {
  background: var(--fg);
  padding: 36px 48px;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 500;
  color: var(--bg);
}
.footer-tagline {
  font-size: 12px;
  color: rgba(247, 243, 237, 0.4);
  letter-spacing: 0.08em;
}
.footer-copy {
  font-size: 12px;
  color: rgba(247, 243, 237, 0.3);
}

/* Mobile */
@media (max-width: 768px) {
  .nav { padding: 20px 24px; }
  .hero { padding: 60px 24px 80px; }
  .hero::before { width: 30%; border-radius: 0 0 0 40px; }
  .story { padding: 72px 24px; }
  .how { padding: 72px 24px; }
  .how-steps { grid-template-columns: 1fr; gap: 40px; }
  .dishes { padding: 72px 24px; }
  .dishes-grid { grid-template-columns: 1fr; }
  .closing { padding: 72px 24px; }
  .footer { padding: 28px 24px; }
  .footer-inner { flex-direction: column; gap: 8px; text-align: center; }
}