:root {
  --ink: #173126;
  --ink-soft: #315146;
  --cream: #fbf8f1;
  --paper: #fffdf8;
  --sand: #e8dfcf;
  --terracotta: #c5673d;
  --gold: #d6a549;
  --muted: #6a7168;
  --shadow: 0 18px 50px rgba(28, 42, 32, .12);
  --display: "Playfair Display", Georgia, serif;
  --body: "DM Sans", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--cream); font-family: var(--body); line-height: 1.6; }
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; }
.container { width: min(1120px, calc(100% - 48px)); margin: 0 auto; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }

.site-header { position: sticky; top: 0; z-index: 10; background: rgba(251,248,241,.95); border-bottom: 1px solid rgba(23,49,38,.12); backdrop-filter: blur(14px); }
.nav-wrap { min-height: 76px; display: flex; align-items: center; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-family: var(--display); font-size: 19px; font-weight: 700; white-space: nowrap; }
.brand-mark { display: block; width: 90px; height: 90px; flex-shrink: 0; }
.site-nav { display: flex; align-items: center; justify-content: center; gap: 28px; margin-left: auto; font-size: 14px; font-weight: 600; }
.site-nav a { position: relative; }
.site-nav a::after { content: ""; position: absolute; bottom: -7px; left: 0; width: 0; height: 2px; background: var(--terracotta); transition: width .2s ease; }
.site-nav a:hover::after { width: 100%; }
.nav-actions { display: flex; gap: 10px; align-items: center; }
.whatsapp-link, .call-link { font-size: 13px; font-weight: 700; border: 1px solid var(--sand); padding: 9px 13px; border-radius: 999px; }
.call-link { color: white; border-color: var(--ink); background: var(--ink); }
.menu-toggle { display: none; margin-left: auto; border: 0; background: transparent; }
.menu-toggle span:not(.sr-only) { display: block; width: 23px; height: 2px; margin: 4px; background: var(--ink); }

.hero { min-height: min(710px, calc(100vh - 76px)); position: relative; isolation: isolate; display: grid; align-items: center; overflow: hidden; color: white; }
.hero-video { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(12,31,22,.84), rgba(12,31,22,.35) 55%, rgba(12,31,22,.15)); }
.hero-content { max-width: 720px; padding: 100px 0; }
.eyebrow { margin: 0 0 12px; color: var(--terracotta); font-size: 12px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow.light { color: #f3ce89; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: var(--display); line-height: 1.12; }
h1 { margin-bottom: 22px; font-size: clamp(36px, 5.2vw, 62px); letter-spacing: -.03em; }
h1 em { color: #f2c877; }
.hero-copy { max-width: 480px; font-size: 16px; color: rgba(255,255,255,.88); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-anim {
  opacity: 0;
  animation: heroFadeUp 1.1s cubic-bezier(.22,.61,.36,1) forwards;
  animation-delay: var(--delay);
  animation-fill-mode: both;
}
@keyframes heroSlideLeft {
  from { opacity: 0; transform: translateX(-48px); }
  to { opacity: 1; transform: translateX(0); }
}
.hero-copy.hero-anim {
  animation-name: heroSlideLeft;
  animation-duration: .9s;
}
@media (prefers-reduced-motion: reduce) {
  .hero-anim { animation: none; opacity: 1; }
}
.btn { display: inline-flex; justify-content: center; align-items: center; padding: 13px 21px; border-radius: 999px; font-size: 14px; font-weight: 700; transition: transform .2s ease, box-shadow .2s ease; }
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-primary { background: var(--terracotta); color: white; }
.btn-light { background: white; color: var(--ink); }

.intro-strip { background: var(--ink); color: white; }
.intro-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; padding: 26px 0; }
.intro-grid p { margin: 0; padding-left: 22px; border-left: 1px solid rgba(255,255,255,.22); }
.intro-grid strong, .intro-grid span { display: block; }
.intro-grid strong { font-family: var(--display); font-size: 18px; }
.intro-grid span { color: rgba(255,255,255,.7); font-size: 13px; }

.section { padding: 112px 0; }
.section-head { max-width: 720px; margin: 0 auto 48px; }
.centered { text-align: center; }
h2 { margin-bottom: 18px; font-size: clamp(36px, 5vw, 58px); letter-spacing: -.035em; }
.food-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.food-card { overflow: hidden; background: var(--paper); border-radius: 16px; box-shadow: 0 8px 28px rgba(32,42,33,.08); }
.food-card img { aspect-ratio: 1 / .88; object-fit: cover;  transition: transform .45s ease; }
.food-card:hover img { transform: scale(1.05); }
.food-copy { padding: 22px; }
.food-copy h3 { margin-bottom: 7px; font-size: 23px; }
.food-copy p { margin-bottom: 0; color: var(--muted); font-size: 14px; }

.menu-section { background: #f0e8da; }
.menu-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 92px; align-items: start; }
.menu-intro { position: sticky; top: 110px; }
.menu-intro > p:not(.eyebrow) { color: var(--muted); font-size: 17px; }
.text-link { display: inline-flex; gap: 10px; margin-top: 14px; color: var(--terracotta); font-weight: 700; }
.text-link span { transition: transform .2s ease; }
.text-link:hover span { transform: translateX(4px); }
.menu-list { border-top: 1px solid rgba(23,49,38,.2); }
.menu-item { display: flex; gap: 18px; justify-content: space-between; padding: 24px 0; border-bottom: 1px solid rgba(23,49,38,.2); }
.menu-item h3 { margin-bottom: 6px; font-size: 24px; }
.menu-item p { margin-bottom: 0; color: var(--muted); font-size: 14px; }
.menu-item span { align-self: center; color: var(--ink-soft); font-size: 11px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; white-space: nowrap; }

.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 88px; align-items: center; }
.story-image { margin: 0; overflow: hidden; border-radius: 140px 140px 20px 20px; box-shadow: var(--shadow); }
.story-image img { min-height: 560px; object-fit: cover; }
.story-copy p:not(.eyebrow) { color: var(--muted); font-size: 17px; }


.contact-section { padding-top: 80px; background: var(--paper); }
.contact-card { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.contact-card > div > p:not(.eyebrow) { color: var(--muted); font-size: 17px; }
.contact-actions { display: grid; border-top: 1px solid var(--sand); }
.contact-actions a { display: flex; justify-content: space-between; gap: 16px; align-items: center; padding: 20px 0; border-bottom: 1px solid var(--sand); }
.contact-actions span { color: var(--muted); font-size: 13px; }
.contact-actions strong { font-size: 16px; }
.contact-actions a:hover strong { color: var(--terracotta); }

.site-footer { padding: 40px 0; color: rgba(255,255,255,.72); background: #10271d; }
.footer-wrap { display: grid; grid-template-columns: 1fr auto; gap: 30px; align-items: center; }
.footer-brand { color: white; }
.footer-wrap p { margin: 10px 0 0; font-size: 13px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 20px; font-size: 13px; font-weight: 700; }
.footer-links a:hover { color: #f2c877; }
.copyright { grid-column: 1 / -1; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.14); }

@media (max-width: 820px) {
  .container { width: min(100% - 32px, 1120px); }
  .menu-toggle { display: block; }
  .site-nav { display: none; position: absolute; left: 0; right: 0; top: 76px; padding: 20px 24px; background: var(--cream); border-bottom: 1px solid var(--sand); flex-direction: column; align-items: flex-start; }
  .site-nav.open { display: flex; }
  .nav-actions { margin-left: auto; }
  .intro-grid, .food-grid, .menu-layout, .story-grid, .contact-card { grid-template-columns: 1fr; }
  .intro-grid { gap: 16px; }
  .intro-grid p { padding-left: 14px; }
  .section { padding: 76px 0; }
  .menu-layout, .story-grid, .contact-card { gap: 42px; }
  .menu-intro { position: static; }
  .story-image img { min-height: 380px; }
  .footer-wrap { grid-template-columns: 1fr; }
}

@media (max-width: 520px) {
  .brand { font-size: 16px; }
  .brand-mark { width: 36px; height: 36px; }
  .whatsapp-link { display: none; }
  .hero { min-height: 640px; }
  .hero-content { padding: 80px 0; }
  .hero-copy { font-size: 16px; }
  .menu-item { flex-direction: column; gap: 8px; }
  .menu-item span { align-self: flex-start; }
}

/* ===== MENU STYLES — restyled to the compact 2-column card layout,
   matching the older reference design. No "Add" button by design (this
   build is a static marketing site, not a cart/ordering flow). ===== */
.menu-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 40px;
}

.menu-tab {
  padding: 10px 24px;
  border: 1px solid var(--sand);
  border-radius: 999px;
  background: transparent;
  color: var(--ink-soft);
  font-family: var(--body);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.menu-tab:hover {
  border-color: var(--terracotta);
  color: var(--terracotta);
}

.menu-tab.active {
  background: var(--ink);
  border-color: var(--ink);
  color: white;
}

.menu-tab.active:hover {
  background: var(--terracotta);
  border-color: var(--terracotta);
}

.menu-quote {
  max-width: 600px;
  margin: 0 auto 48px;
  padding: 20px 28px;
  border-left: 4px solid var(--terracotta);
  background: var(--paper);
  border-radius: 0 12px 12px 0;
  font-family: var(--display);
  font-size: 20px;
  font-style: italic;
  color: var(--ink);
  text-align: center;
}

/* Compact 2-column grid, matching the reference screenshot */
.menu-items-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.menu-item-card {
  background: var(--paper);
  border: 1px solid var(--sand);
  border-radius: 14px;
  padding: 16px;
  box-shadow: 0 4px 16px rgba(23, 49, 38, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.menu-item-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(23, 49, 38, 0.1);
}

.menu-item-wrapper {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

/* Small square-ish thumbnail on the left, matching the reference layout */
.menu-item-wrapper img {
  width: 96px;
  height: 96px;
  object-fit: cover;
  border-radius: 12px;
  flex-shrink: 0;
}

.menu-item-content {
  flex: 1;
  min-width: 0;
}

.menu-item-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 6px;
  flex-wrap: wrap;
}

.menu-item-header h3 {
  margin: 0;
  font-size: 17px;
  line-height: 1.25;
  font-family: var(--display);
  color: var(--ink);
}

.menu-item-price {
  flex-shrink: 0;
  font-family: var(--display);
  font-size: 16px;
  font-weight: 700;
  color: var(--terracotta);
}

/* Plain wrapped inline text, not a bulleted list — matches the reference */
.menu-item-ingredients {
  margin: 0;
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.6;
}

.menu-item-card.hidden {
  display: none;
}

/* Responsive */
@media (max-width: 780px) {
  .menu-items-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .menu-tabs {
    gap: 6px;
  }
  .menu-tab {
    padding: 8px 14px;
    font-size: 12px;
  }
  .menu-quote {
    font-size: 16px;
    padding: 16px 18px;
  }
}
