:root {
  --bg: #fbf5ea;
  --bg-soft: #fffaf2;
  --ink: #1d1a17;
  --muted: #6f665b;
  --line: rgba(29, 26, 23, 0.13);
  --green: #173f35;
  --green-soft: #215246;
  --red: #a82926;
  --terracotta: #c56d45;
  --gold: #c8a35d;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(29, 26, 23, 0.15);
  --radius: 28px;
  --container: min(1140px, calc(100% - 40px));
  --header-height: 92px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  width: 100%;
  overflow-x: hidden;
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(200, 163, 93, 0.16), transparent 34rem),
    linear-gradient(180deg, var(--bg), #fffdf8 42%, var(--bg));
  line-height: 1.6;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
[hidden] { display: none !important; }

.container { width: var(--container); margin-inline: auto; }
.section { padding: 100px 0; scroll-margin-top: 110px; }
.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  background: var(--ink);
  color: var(--white);
  padding: 10px 14px;
  border-radius: 999px;
  z-index: 999;
}
.skip-link:focus { top: 12px; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  backdrop-filter: blur(20px);
  background: rgba(255, 250, 242, 0.9);
  border-bottom: 1px solid rgba(29, 26, 23, 0.09);
  box-shadow: 0 10px 34px rgba(29, 26, 23, 0.06);
}
.nav {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.brand {
  display: inline-flex;
  align-items: center;
  min-width: max-content;
  padding: 8px 0;
}
.brand img {
  height: 62px;
  width: auto;
  max-width: 235px;
  object-fit: contain;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-menu a {
  padding: 11px 13px;
  border-radius: 999px;
  color: rgba(29, 26, 23, 0.78);
  font-size: 0.94rem;
  font-weight: 700;
  transition: 0.2s ease;
}
.nav-menu a:hover { background: rgba(168, 41, 38, 0.08); color: var(--red); }
.nav-menu .nav-cta {
  background: var(--red);
  color: var(--white);
  margin-left: 8px;
  box-shadow: 0 14px 30px rgba(168, 41, 38, 0.22);
}
.nav-menu .nav-cta:hover { background: #8f211f; color: var(--white); }
.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 8px;
  cursor: pointer;
}
.nav-toggle span:not(.sr-only) {
  display: block;
  width: 27px;
  height: 2px;
  margin: 6px 0;
  background: var(--ink);
  border-radius: 999px;
}

.hero {
  min-height: 100svh;
  padding-top: var(--header-height);
  position: relative;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
}
.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
}
.hero-bg {
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  filter: saturate(1.08) contrast(1.04);
}
.hero-overlay {
  background:
    radial-gradient(circle at 75% 20%, rgba(197, 109, 69, 0.32), transparent 30rem),
    linear-gradient(90deg, rgba(11, 10, 8, 0.84), rgba(11, 10, 8, 0.44) 52%, rgba(11, 10, 8, 0.24)),
    linear-gradient(180deg, rgba(11, 10, 8, 0.1), rgba(11, 10, 8, 0.75));
}
.hero-content {
  position: relative;
  padding: 145px 0 76px;
}
.eyebrow {
  margin: 0 0 18px;
  color: #f5d794;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 800;
}
.eyebrow.dark { color: var(--red); }
.hero h1,
.section-heading h2,
.restaurant h2,
.contact-card h2,
.review-summary h2,
.pdf-card h2 {
  font-family: Georgia, 'Times New Roman', serif;
  line-height: 0.98;
  letter-spacing: -0.05em;
}
.hero h1 {
  max-width: 860px;
  margin: 0;
  font-size: clamp(3.3rem, 8.8vw, 8rem);
}
.hero-text {
  max-width: 650px;
  margin: 26px 0 0;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  color: rgba(255, 255, 255, 0.86);
}
.hero-actions,
.contact-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
}
.btn {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border-radius: 999px;
  font-weight: 800;
  border: 1px solid transparent;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 18px 42px rgba(168, 41, 38, 0.32);
}
.btn-glass {
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(12px);
}
.btn-outline { border-color: var(--line); background: transparent; }
.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 850px;
  margin-top: 70px;
}
.hero-facts div {
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
}
.hero-facts span {
  display: block;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.62);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.hero-facts strong { display: block; margin-top: 4px; font-size: 1.02rem; }

.restaurant { background: linear-gradient(180deg, #fffdf8 0%, var(--bg) 100%); }
.restaurant-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 70px;
  align-items: center;
}
.restaurant-copy p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 620px;
}
.restaurant h2,
.section-heading h2,
.pdf-card h2,
.contact-card h2,
.review-summary h2 {
  margin: 0 0 22px;
  font-size: clamp(2.5rem, 5vw, 4.8rem);
}
.mini-info {
  margin-top: 32px;
  display: inline-grid;
  gap: 5px;
  padding: 18px 20px;
  border-radius: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.mini-info span {
  color: var(--red);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
}
.restaurant-image {
  position: relative;
  min-height: 560px;
  border-radius: 36px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.restaurant-image img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
}
.image-note {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 26px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 20px;
  border-radius: 24px;
  color: var(--white);
  background: rgba(29, 26, 23, 0.54);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(14px);
}
.image-note span { color: rgba(255,255,255,.74); }

.menu-pdf { padding-top: 40px; padding-bottom: 30px; }
.pdf-card {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 30px;
  padding: clamp(28px, 5vw, 54px);
  border-radius: 34px;
  color: var(--white);
  background:
    radial-gradient(circle at 85% 12%, rgba(245, 215, 148, 0.22), transparent 22rem),
    linear-gradient(135deg, var(--green), #102d27);
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}
.pdf-card::after {
  content: "PDF";
  position: absolute;
  right: -8px;
  bottom: -34px;
  font-size: clamp(5rem, 15vw, 12rem);
  font-weight: 900;
  line-height: 1;
  color: rgba(255,255,255,.05);
}
.pdf-card p:not(.eyebrow) {
  max-width: 660px;
  color: rgba(255,255,255,.76);
  margin: 0;
  font-size: 1.05rem;
}
.pdf-button {
  position: relative;
  z-index: 1;
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  padding: 15px 24px;
  border-radius: 999px;
  font-weight: 900;
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
}

.weekly { padding-top: 75px; }
.section-heading { max-width: 800px; margin-bottom: 42px; }
.section-heading.center { text-align: center; margin-inline: auto; }
.section-heading p:not(.eyebrow) { margin: -6px 0 0; color: var(--muted); font-size: 1.05rem; }
.weekly-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.weekly-card {
  overflow: hidden;
  border-radius: 30px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 20px 55px rgba(29, 26, 23, 0.11);
}
.weekly-card img { width: 100%; height: 255px; object-fit: cover; }
.weekly-card div { padding: 24px; }
.weekly-card h3 { margin: 0 0 10px; font-size: 1.35rem; line-height: 1.15; }
.weekly-card p { margin: 0 0 18px; color: var(--muted); }
.weekly-card strong {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(168, 41, 38, .08);
  color: var(--red);
}

.gallery { background: #fffdf8; }
.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  grid-auto-rows: 260px;
  gap: 18px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  margin: 0;
  border-radius: 28px;
  box-shadow: 0 20px 55px rgba(29, 26, 23, 0.1);
}
.gallery-item.wide { grid-row: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 12px 14px;
  border-radius: 18px;
  color: var(--white);
  background: rgba(29, 26, 23, 0.55);
  backdrop-filter: blur(10px);
  font-weight: 800;
}

.reviews { background: var(--bg); }
.reviews-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 40px;
  align-items: start;
}
.review-summary p:not(.eyebrow) { color: var(--muted); max-width: 520px; }
.review-cards { display: grid; gap: 16px; }
.review-card {
  padding: 24px;
  border-radius: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 14px 40px rgba(29, 26, 23, 0.08);
}
.review-card span { color: var(--gold); letter-spacing: .08em; }
.review-card h3 { margin: 8px 0 6px; font-size: 1.18rem; }
.review-card p { margin: 0; color: var(--muted); }

.contact {
  background:
    radial-gradient(circle at 15% 10%, rgba(168,41,38,.09), transparent 34rem),
    linear-gradient(180deg, #fffdf8, var(--bg));
}
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 24px;
}
.contact-card,
.hours-card {
  border-radius: 34px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: clamp(26px, 4vw, 44px);
}
.contact-lines { display: grid; gap: 16px; margin-top: 28px; }
.contact-lines p { margin: 0; display: grid; gap: 3px; }
.contact-lines span {
  color: var(--red);
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: 900;
}
.contact-lines a,
.contact-lines strong { font-size: 1.08rem; }
.contact-lines a { color: var(--ink); text-decoration: underline; text-decoration-color: rgba(168,41,38,.28); text-underline-offset: 5px; }
.hours-card h3 { margin: 0 0 22px; font-size: 2rem; font-family: Georgia, 'Times New Roman', serif; }
.hours-row {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.hours-row:first-child { border-top: 1px solid var(--line); }
.hours-row span { color: var(--muted); }
.hours-row strong { text-align: right; }
.small-note { margin: 20px 0 0; color: var(--muted); font-size: .95rem; }
.location-container { margin-top: 24px; }
.location-preview {
  display: block;
  position: relative;
  overflow: hidden;
  min-height: 360px;
  border-radius: 34px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: var(--white);
}
.location-preview img { width: 100%; height: 390px; object-fit: cover; }
.map-overlay {
  position: absolute;
  left: 24px;
  bottom: 24px;
  display: grid;
  gap: 2px;
  padding: 16px 18px;
  border-radius: 20px;
  color: var(--white);
  background: rgba(23, 63, 53, .88);
  backdrop-filter: blur(12px);
  box-shadow: 0 18px 42px rgba(0, 0, 0, .22);
}
.map-overlay strong { font-size: 1.1rem; }
.map-overlay small { color: rgba(255,255,255,.74); }

.footer {
  padding: 45px 0;
  background: #161411;
  color: var(--white);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 26px;
  align-items: center;
}
.footer-brand img { height: 54px; width: auto; filter: brightness(1.08); }
.footer-brand p { margin: 8px 0 0; color: rgba(255,255,255,.65); }
.footer-links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 10px; }
.footer-links a {
  padding: 10px 13px;
  border-radius: 999px;
  color: rgba(255,255,255,.8);
  background: rgba(255,255,255,.08);
  font-weight: 800;
}
.footer-links a:hover { background: rgba(255,255,255,.14); color: var(--white); }
.footer-credit {
  grid-column: 1 / -1;
  margin: 4px 0 0;
  color: rgba(255,255,255,.55);
  font-size: .92rem;
}
.footer-credit a {
  color: #f5d794;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}
.footer-credit a:hover { color: var(--white); }

.reveal { opacity: 0; transform: translateY(24px); transition: .65s cubic-bezier(.22,1,.36,1); }
.reveal.visible { opacity: 1; transform: none; }

.legal-page {
  min-height: 100svh;
  padding-top: var(--header-height);
}
.legal-content {
  max-width: 850px;
  margin: 0 auto;
  padding: 80px 0;
}
.legal-content h1 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(2.7rem, 6vw, 5rem);
  line-height: 1;
  letter-spacing: -.05em;
  margin: 0 0 22px;
}
.legal-content p { color: var(--muted); font-size: 1.08rem; }

@media (max-width: 940px) {
  :root { --header-height: 82px; }
  .brand img { height: 54px; max-width: 210px; }
  .nav-toggle { display: block; }
  .nav-menu {
    position: fixed;
    left: 16px;
    right: 16px;
    top: calc(var(--header-height) + 10px);
    display: grid;
    padding: 16px;
    border-radius: 24px;
    background: rgba(255,250,242,.98);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    transform: translateY(-14px);
    opacity: 0;
    pointer-events: none;
    transition: .2s ease;
  }
  .nav-menu.open { opacity: 1; transform: none; pointer-events: auto; }
  .nav-menu a { padding: 14px 16px; }
  .nav-menu .nav-cta { margin-left: 0; text-align: center; justify-content: center; }
  .hero h1 { font-size: clamp(3rem, 13vw, 5.5rem); }
  .restaurant-grid,
  .reviews-grid,
  .contact-grid { grid-template-columns: 1fr; }
  .restaurant-image,
  .restaurant-image img { min-height: 420px; }
  .weekly-grid { grid-template-columns: 1fr; }
  .weekly-card { display: grid; grid-template-columns: 0.95fr 1.05fr; }
  .weekly-card img { height: 100%; min-height: 260px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .pdf-card { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-links { justify-content: flex-start; }
}

@media (max-width: 620px) {
  :root { --container: calc(100% - 28px); }
  .nav, .container, .section, .hero, .footer { max-width: 100%; }
  .pdf-card, .contact-card, .hours-card, .location-preview, .restaurant-image, .weekly-card, .gallery-item, .review-card { max-width: 100%; }
  .section { padding: 72px 0; }
  .brand img { height: 48px; max-width: 180px; }
  .hero-content { padding: 105px 0 48px; }
  .hero-actions .btn { width: 100%; }
  .hero-facts { grid-template-columns: 1fr; margin-top: 42px; }
  .restaurant h2,
  .section-heading h2,
  .pdf-card h2,
  .contact-card h2,
  .review-summary h2 { font-size: clamp(2.2rem, 12vw, 3.5rem); }
  .image-note { display: grid; }
  .weekly-card { grid-template-columns: 1fr; }
  .weekly-card img { height: 245px; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 240px; }
  .gallery-item.wide { grid-row: span 1; }
  .hours-row { grid-template-columns: 1fr; gap: 4px; }
  .hours-row strong { text-align: left; }
  .location-preview img { height: 320px; }
}
