:root {
  --red: #be1735;
  --red-dark: #8f0e27;
  --cream: #fff8ed;
  --paper: #f5ead9;
  --ink: #2d1d1a;
  --muted: #75625d;
  --gold: #e6aa45;
  --line: rgba(45, 29, 26, 0.16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "DM Sans", sans-serif;
  line-height: 1.55;
}
a { color: inherit; }
img { display: block; max-width: 100%; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 28px;
  min-height: 76px;
  padding: 12px clamp(20px, 5vw, 76px);
  background: rgba(255, 248, 237, 0.95);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}
.brand { display: flex; align-items: center; gap: 10px; font-weight: 700; text-decoration: none; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: white;
  background: var(--red);
  border-radius: 50% 50% 45% 55%;
  font-family: "Playfair Display", serif;
  font-size: 22px;
}
.main-nav { display: flex; gap: 26px; margin-left: auto; }
.main-nav a { color: var(--muted); font-size: 14px; font-weight: 600; text-decoration: none; }
.main-nav a:hover { color: var(--red); }
.nav-toggle { display: none; }
.language-switch { display: flex; align-items: center; gap: 5px; font-size: 12px; font-weight: 800; }
.language-switch a { color: var(--muted); text-decoration: none; }
.language-switch a.active { color: var(--red); border-bottom: 1px solid currentColor; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  color: #fff;
  background: var(--red);
  border: 1px solid var(--red);
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(190, 23, 53, 0.16);
  transition: transform .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); background: var(--red-dark); }
.button-small { min-height: 42px; padding-inline: 18px; font-size: 13px; }
.button-outline { color: var(--red); background: transparent; box-shadow: none; }
.button-outline:hover { color: white; }
.text-link { font-weight: 700; text-decoration: none; border-bottom: 1px solid currentColor; }

.hero {
  display: grid;
  grid-template-columns: 1.04fr .96fr;
  min-height: calc(100vh - 76px);
  overflow: hidden;
}
.hero-copy { display: flex; flex-direction: column; justify-content: center; padding: 80px clamp(24px, 7vw, 110px); }
.eyebrow { margin: 0 0 18px; color: var(--red); font-size: 12px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
h1, h2 { margin: 0; font-family: "Playfair Display", serif; font-weight: 700; line-height: .98; letter-spacing: -.035em; }
h1 { max-width: 700px; font-size: clamp(54px, 7.4vw, 108px); }
h1 em { color: var(--red); font-weight: 600; }
h2 { font-size: clamp(42px, 5.2vw, 72px); }
h3 { margin: 0 0 8px; font-family: "Playfair Display", serif; font-size: 26px; }
.hero-lead { max-width: 590px; margin: 30px 0; color: var(--muted); font-size: clamp(17px, 1.7vw, 21px); }
.hero-actions { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; }
.hero-facts { display: flex; gap: 56px; margin: 60px 0 0; }
.hero-facts div { padding-left: 16px; border-left: 2px solid var(--gold); }
.hero-facts dt { color: var(--muted); font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.hero-facts dd { margin: 6px 0 0; font-weight: 700; }
.hero-art { position: relative; min-height: 700px; overflow: hidden; background: var(--paper); isolation: isolate; }
.hero-art::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 60%, rgba(62, 3, 15, .72)); z-index: 1; }
.hero-art img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; }
.sun { position: absolute; right: -80px; top: -80px; z-index: -1; width: 360px; height: 360px; border-radius: 50%; background: var(--gold); }
.art-note { position: absolute; left: 52px; bottom: 42px; z-index: 2; margin: 0; color: white; font: 600 italic clamp(24px, 3vw, 40px)/1.1 "Playfair Display", serif; }
.spice { position: absolute; z-index: 3; width: 12px; height: 60px; border-radius: 99px; background: var(--gold); transform: rotate(42deg); }
.spice-one { left: 28px; top: 80px; }
.spice-two { left: 52px; top: 54px; height: 34px; transform: rotate(70deg); }

.section-pad { padding: 110px clamp(24px, 7vw, 110px); }
.story { display: grid; grid-template-columns: .9fr 1.1fr; gap: 10vw; background: #fffdf8; }
.story-copy { align-self: end; max-width: 640px; color: var(--muted); font-size: 20px; }
.story-copy p:first-child { color: var(--ink); font-size: 25px; }
.menu-section { background: var(--paper); }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 54px; }
.dish-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.dish-card { display: flex; flex-direction: column; min-height: 340px; padding: 34px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.dish-card p { color: var(--muted); }
.dish-card strong { margin-top: auto; color: var(--red); font-size: 22px; }
.dish-card.featured { color: white; background: var(--red); }
.dish-card.featured p, .dish-card.featured strong { color: white; }
.dish-tag { font-size: 11px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.menu-note { margin: 20px 0 0; color: var(--muted); font-size: 14px; }
.menu-note a { color: var(--red); font-weight: 700; text-decoration: none; }
.full-menu { scroll-margin-top: 92px; margin-top: 110px; padding-top: 80px; border-top: 1px solid var(--line); }
.full-menu-heading { display: flex; align-items: end; justify-content: space-between; gap: 30px; }
.full-menu-intro { max-width: 620px; margin: 25px 0 42px; color: var(--muted); font-size: 17px; }
.menu-page-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px; }
.menu-page-grid figure { margin: 0; }
.menu-page-grid img { width: 100%; height: auto; background: #fff; border: 1px solid var(--line); box-shadow: 0 18px 55px rgba(67, 34, 24, .1); }
.menu-page-grid figcaption { padding: 9px 2px 0; color: var(--muted); font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.direct-order { display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 9vw; color: white; background: var(--red-dark); scroll-margin-top: 92px; }
.light { color: var(--gold); }
.direct-order-copy { max-width: 560px; }
.direct-order-copy p { margin: 0 0 28px; color: #f3d6d9; font-size: 20px; }
.direct-order-button { color: var(--red-dark); background: var(--gold); box-shadow: none; }
.direct-order-button:hover { color: white; background: var(--red); }
.visit { display: grid; grid-template-columns: 1fr .75fr; padding-bottom: 0; background: #fffdf8; }
.visit-card { padding-bottom: 100px; }
.visit-card address { margin: 34px 0 20px; font-size: 22px; font-style: normal; }
.visit-actions { display: flex; align-items: center; gap: 24px; margin-top: 30px; }
.visit-social { display: flex; flex-direction: column; justify-content: end; padding: 60px; color: white; background: var(--red); border-radius: 180px 180px 0 0; }
.visit-social p { font-family: "Playfair Display", serif; font-size: 30px; line-height: 1.15; }
.visit-social a { color: var(--gold); font-weight: 700; text-decoration: none; overflow-wrap: anywhere; }
footer { display: flex; justify-content: space-between; gap: 24px; padding: 28px clamp(24px, 7vw, 110px); color: #f3d6d9; background: #3a1019; font-size: 12px; }
.mobile-call { display: none; }

@media (max-width: 980px) {
  .desktop-order { display: none; }
  .language-switch { margin-left: auto; }
  .hero { grid-template-columns: 1fr; }
  .hero-art { min-height: 520px; }
  .dish-grid { grid-template-columns: 1fr 1fr; }
  .story, .direct-order { grid-template-columns: 1fr; }
  .terms { grid-column: auto; }
}

@media (max-width: 700px) {
  body { padding-bottom: 86px; }
  .site-header { gap: 12px; min-height: 70px; padding: 10px 18px; }
  .brand { gap: 8px; font-size: 14px; line-height: 1.15; }
  .brand-mark { width: 36px; height: 36px; flex: 0 0 36px; font-size: 20px; }
  .brand > span:last-child { max-width: 72px; }
  .language-switch { flex: 0 0 auto; margin-left: 0; font-size: 12px; }
  .nav-toggle { display: block; margin-left: auto; padding: 9px 14px; border: 1px solid var(--line); border-radius: 99px; color: var(--ink); background: transparent; font: inherit; font-size: 14px; font-weight: 700; }
  .main-nav { display: none; position: absolute; left: 0; right: 0; top: 100%; flex-direction: column; gap: 0; padding: 14px 24px 24px; background: var(--cream); border-bottom: 1px solid var(--line); box-shadow: 0 18px 30px rgba(45, 29, 26, .08); }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 13px 0; }
  .hero { min-height: auto; }
  .hero-copy { padding: 48px 24px 44px; }
  h1 { font-size: clamp(46px, 13vw, 56px); line-height: .94; }
  h2 { font-size: clamp(38px, 11vw, 48px); line-height: 1; }
  h3 { font-size: 24px; }
  .hero-lead { margin: 24px 0; font-size: 16px; line-height: 1.55; }
  .hero-actions { gap: 18px; }
  .hero-facts { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 36px; }
  .hero-facts div { padding-left: 12px; }
  .hero-facts dd { font-size: 14px; }
  .hero-art { min-height: 330px; }
  .sun { width: 260px; height: 260px; right: -76px; top: -76px; }
  .art-note { left: 26px; bottom: 28px; font-size: 29px; }
  .section-pad { padding: 66px 24px; }
  .story { gap: 30px; }
  .story-copy, .story-copy p:first-child { font-size: 18px; }
  .section-heading { align-items: start; flex-direction: column; gap: 18px; margin-bottom: 34px; }
  .full-menu-heading { align-items: start; flex-direction: column; }
  .full-menu { margin-top: 66px; padding-top: 56px; }
  .full-menu-intro { margin-bottom: 28px; font-size: 16px; }
  .dish-grid,
  .menu-page-grid {
    display: flex;
    width: calc(100% + 24px);
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .dish-grid::-webkit-scrollbar,
  .menu-page-grid::-webkit-scrollbar { display: none; }
  .dish-card { flex: 0 0 min(82vw, 320px); min-height: 280px; scroll-snap-align: start; }
  .menu-page-grid { gap: 16px; padding: 4px 24px 22px 0; }
  .menu-page-grid figure { flex: 0 0 min(86vw, 360px); scroll-snap-align: start; }
  .menu-page-grid img { aspect-ratio: 595 / 842; object-fit: cover; }
  .direct-order { gap: 28px; }
  .direct-order-copy p { font-size: 18px; }
  .visit { grid-template-columns: 1fr; padding-inline: 0; }
  .visit-card { padding: 66px 24px 58px; }
  .visit-actions { align-items: flex-start; flex-direction: column; gap: 18px; }
  .visit-social { min-height: 310px; padding: 46px 28px; border-radius: 110px 110px 0 0; }
  footer { flex-direction: column; }
  .mobile-call {
    position: fixed;
    z-index: 40;
    left: 16px;
    right: 16px;
    bottom: max(12px, env(safe-area-inset-bottom));
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 60px;
    padding: 0 20px;
    color: #fff;
    background: var(--red);
    border: 1px solid rgba(255,255,255,.28);
    border-radius: 999px;
    box-shadow: 0 16px 34px rgba(74, 5, 21, .3);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
  }
  .mobile-call strong { color: #fff; font-size: 16px; }
}

@media (max-width: 360px) {
  .site-header { padding-inline: 14px; }
  .nav-toggle { padding-inline: 11px; }
  .language-switch { font-size: 11px; }
  h1 { font-size: 43px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}
