:root {
  --spice: #9c3412;
  --spice-deep: #7a280d;
  --saffron: #d4a017;
  --ink: #1a100c;
  --muted: #6a5246;
  --cream: #faf6f0;
  --warm: #f0e6d8;
  --white: #fff;
  --line: rgba(26, 16, 12, 0.1);
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Outfit", sans-serif;
  --container: min(1120px, calc(100% - 2.5rem));
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
.container { width: var(--container); margin-inline: auto; }

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250, 246, 240, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 76px; gap: 1rem;
}
.brand {
  font-family: var(--font-display);
  font-size: 1.55rem; font-weight: 600; letter-spacing: -0.01em;
}
.brand em { font-style: normal; color: var(--spice); }
.nav { display: flex; gap: 1.6rem; align-items: center; }
.nav a { font-size: 0.88rem; font-weight: 500; color: var(--muted); }
.nav a:hover, .nav a[aria-current="page"] { color: var(--spice); }
.nav .cta {
  background: var(--spice); color: var(--white) !important;
  padding: 0.65rem 1.2rem; font-weight: 600;
}
.nav .cta:hover { background: var(--spice-deep); }
.menu-toggle {
  display: none; width: 42px; height: 42px; border: 1px solid var(--line);
  background: transparent; cursor: pointer; color: var(--ink);
  align-items: center; justify-content: center;
}
.mobile-nav {
  display: none; position: fixed; inset: 0; z-index: 60;
  background: var(--cream); padding: 1.25rem; flex-direction: column;
}
.mobile-nav.is-open { display: flex; }
.mobile-nav-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 2rem; }
.mobile-nav nav a {
  display: block; font-family: var(--font-display); font-size: 2rem;
  padding: 0.9rem 0; border-bottom: 1px solid var(--line);
}
.close-menu {
  width: 42px; height: 42px; border: 1px solid var(--line);
  background: transparent; font-size: 1.4rem; cursor: pointer;
}

.hero {
  position: relative; min-height: calc(100vh - 76px); overflow: hidden;
  color: var(--white); display: flex; align-items: flex-end;
}
.hero-media { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; }
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(26,16,12,0.25) 0%, rgba(26,16,12,0.12) 35%, rgba(26,16,12,0.9) 100%);
}
.hero-content {
  position: relative; width: var(--container); margin: 0 auto;
  padding: 3rem 0 4.5rem;
}
.hero-brand {
  font-family: var(--font-display); font-size: clamp(2.8rem, 8vw, 5rem);
  font-weight: 600; line-height: 0.95; margin-bottom: 0.6rem;
}
.hero-tag {
  font-size: 0.75rem; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--saffron); margin-bottom: 1.25rem;
}
.hero h1 {
  font-family: var(--font-display); font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 500; max-width: 18ch; margin-bottom: 1rem; line-height: 1.2;
}
.hero-lead {
  max-width: 480px; color: rgba(255,255,255,0.85); line-height: 1.7; margin-bottom: 1.75rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.85rem; }

.btn {
  display: inline-flex; align-items: center; padding: 0.95rem 1.5rem;
  font-size: 0.85rem; font-weight: 600; border: 1px solid transparent; transition: 0.2s;
}
.btn-spice { background: var(--spice); color: var(--white); }
.btn-spice:hover { background: var(--spice-deep); }
.btn-ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.45); }
.btn-ghost:hover { border-color: var(--white); }
.btn-ink { background: var(--ink); color: var(--white); }

.section { padding: clamp(3.5rem, 8vw, 5.5rem) 0; }
.section-warm { background: var(--warm); }
.section-ink { background: var(--ink); color: rgba(255,255,255,0.78); }
.eyebrow {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--spice); margin-bottom: 0.75rem;
}
.section-ink .eyebrow { color: var(--saffron); }
.title {
  font-family: var(--font-display); font-size: clamp(1.9rem, 3.2vw, 2.8rem);
  font-weight: 600; line-height: 1.15; max-width: 16ch;
}
.section-ink .title { color: var(--white); }
.lede { color: var(--muted); font-size: 1.05rem; max-width: 540px; line-height: 1.75; margin-top: 1rem; }
.section-ink .lede { color: rgba(255,255,255,0.7); }

.promo-grid {
  display: grid; gap: 1.25rem;
}
@media (min-width: 800px) {
  .promo-grid { grid-template-columns: repeat(3, 1fr); }
}
.promo-card {
  position: relative; min-height: 280px; overflow: hidden; color: var(--white);
  display: flex; align-items: flex-end;
}
.promo-card img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s;
}
.promo-card:hover img { transform: scale(1.05); }
.promo-card .shade {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(26,16,12,0.88) 0%, rgba(26,16,12,0.25) 100%);
}
.promo-card .inner { position: relative; padding: 1.75rem; }
.promo-card h3 {
  font-family: var(--font-display); font-size: 1.55rem; font-weight: 600; margin-bottom: 0.4rem;
}
.promo-card p { font-size: 0.92rem; color: rgba(255,255,255,0.78); line-height: 1.55; }

.story-grid {
  display: grid; gap: 2.5rem; align-items: center;
}
@media (min-width: 900px) {
  .story-grid { grid-template-columns: 1.05fr 0.95fr; gap: 4rem; }
}
.story-image {
  overflow: hidden; min-height: 380px;
}
.story-image img { width: 100%; height: 100%; min-height: 380px; object-fit: cover; }

.dish-grid {
  display: grid; gap: 1.5rem; margin-top: 2.5rem;
}
@media (min-width: 700px) { .dish-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .dish-grid { grid-template-columns: repeat(3, 1fr); } }
.dish {
  background: var(--white); border: 1px solid var(--line); overflow: hidden;
  transition: box-shadow 0.25s, transform 0.25s;
}
.dish:hover { box-shadow: 0 16px 40px rgba(156,52,18,0.12); transform: translateY(-2px); }
.dish-media { aspect-ratio: 4/3; overflow: hidden; }
.dish-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.dish:hover .dish-media img { transform: scale(1.04); }
.dish-body { padding: 1.35rem 1.4rem 1.5rem; }
.dish-body h3 {
  font-family: var(--font-display); font-size: 1.45rem; font-weight: 600; margin-bottom: 0.4rem;
}
.dish-body p { color: var(--muted); font-size: 0.92rem; line-height: 1.6; }
.dish-link {
  display: inline-block; margin-top: 0.85rem; color: var(--spice);
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.04em;
}

.hours-band { display: grid; gap: 2rem; }
@media (min-width: 800px) { .hours-band { grid-template-columns: 1fr 1fr; gap: 3rem; } }
.hours-list { margin-top: 1.25rem; }
.hours-list li {
  list-style: none; display: flex; justify-content: space-between; gap: 1rem;
  padding: 0.85rem 0; border-bottom: 1px solid var(--line); color: var(--muted);
}
.hours-list strong { color: var(--ink); font-weight: 600; }

.page-hero {
  padding: clamp(3.5rem, 8vw, 5rem) 0 2.5rem; background: var(--warm);
  border-bottom: 1px solid var(--line);
}
.page-hero h1 {
  font-family: var(--font-display); font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 600; line-height: 1.05; max-width: 14ch;
}
.prose { max-width: 680px; }
.prose p { color: var(--muted); font-size: 1.08rem; line-height: 1.8; }
.prose p + p { margin-top: 1.25rem; }

.menu-cats { display: grid; gap: 0; margin-top: 1rem; }
.menu-cat {
  display: grid; gap: 1.25rem; padding: 2rem 0;
  border-top: 1px solid var(--line); align-items: start;
}
@media (min-width: 800px) {
  .menu-cat { grid-template-columns: 200px 1fr; gap: 2rem; }
}
.menu-cat-media {
  aspect-ratio: 1; overflow: hidden; background: var(--warm);
}
.menu-cat-media img { width: 100%; height: 100%; object-fit: cover; }
.menu-cat h3 {
  font-family: var(--font-display); font-size: 1.55rem; font-weight: 600; margin-bottom: 0.5rem;
}
.menu-cat p { color: var(--muted); line-height: 1.65; margin-bottom: 0.75rem; }
.menu-items { margin-top: 1rem; }
.menu-row {
  display: flex; justify-content: space-between; gap: 1.25rem;
  padding: 0.75rem 0; border-bottom: 1px dotted var(--line); align-items: flex-start;
}
.menu-row:last-child { border-bottom: none; }
.menu-item-name { flex: 1; min-width: 0; }
.menu-item-name strong { display: block; font-weight: 500; color: var(--ink); line-height: 1.35; }
.menu-item-name small {
  display: block; color: var(--muted); font-size: 0.85rem;
  line-height: 1.5; margin-top: 0.25rem; font-weight: 400;
}
.menu-row .price {
  font-weight: 600; color: var(--spice); white-space: nowrap; font-size: 0.95rem;
}
.menu-note {
  margin-top: 2rem; padding-top: 1.25rem; border-top: 1px solid var(--line);
  font-size: 0.85rem; color: var(--muted); line-height: 1.6;
}
.contact-list { margin-top: 1rem; }
.contact-list p { margin-bottom: 0.85rem; line-height: 1.6; color: var(--muted); }
.contact-list strong { display: block; color: var(--ink); font-size: 0.78rem; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 0.2rem; }
.contact-list a { color: var(--spice); }

.contact-grid { display: grid; gap: 2.5rem; }
@media (min-width: 800px) { .contact-grid { grid-template-columns: 1fr 1fr; } }
.contact-card {
  background: var(--warm); border: 1px solid var(--line); padding: 2rem;
}
.contact-card h2 {
  font-family: var(--font-display); font-size: 1.7rem; margin-bottom: 1rem;
}
.contact-card a { color: var(--spice); }
.form { display: grid; gap: 1rem; }
.form label {
  display: grid; gap: 0.4rem; font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted);
}
.form input, .form textarea {
  font: inherit; padding: 0.9rem 1rem; border: 1px solid var(--line);
  background: var(--white); color: var(--ink);
}
.form input:focus, .form textarea:focus {
  outline: 2px solid rgba(156,52,18,0.28); border-color: var(--spice);
}
.form-note { font-size: 0.85rem; color: var(--muted); }

.cta-panel {
  position: relative; overflow: hidden; color: var(--white);
  min-height: 360px; display: flex; align-items: flex-end;
}
.cta-panel img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.cta-panel .shade {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(26,16,12,0.9) 0%, rgba(26,16,12,0.35) 100%);
}
.cta-panel .inner {
  position: relative; width: var(--container); margin: 0 auto; padding: 3rem 0;
}

.site-footer {
  background: var(--ink); color: rgba(255,255,255,0.7); padding: 3.5rem 0 1.5rem;
}
.footer-grid { display: grid; gap: 2rem; }
@media (min-width: 800px) { .footer-grid { grid-template-columns: 1.4fr 0.8fr 1fr; } }
.footer-brand {
  font-family: var(--font-display); font-size: 1.5rem; color: var(--white); margin-bottom: 0.75rem;
}
.footer-brand em { font-style: normal; color: var(--saffron); }
.footer-col h4 {
  font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(255,255,255,0.4); margin-bottom: 0.9rem;
}
.footer-col a { display: block; margin-bottom: 0.5rem; color: rgba(255,255,255,0.7); }
.footer-col a:hover { color: var(--saffron); }
.footer-bottom {
  margin-top: 2rem; padding-top: 1.25rem; border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.82rem; color: rgba(255,255,255,0.45);
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 0.75rem;
}
.reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.7s, transform 0.7s; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 799px) {
  .nav { display: none; }
  .menu-toggle { display: inline-flex; }
  .hero { min-height: 680px; }
}
