:root {
  --ink: #171a16;
  --muted: #60645d;
  --paper: #fffaf2;
  --paper-2: #f5edde;
  --white: #ffffff;
  --red: #b83225;
  --red-dark: #8e241b;
  --green: #245844;
  --green-soft: #dfe9df;
  --gold: #d6a64b;
  --line: rgba(23, 26, 22, 0.12);
  --shadow: 0 22px 60px rgba(50, 35, 20, 0.12);
  --radius: 24px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
button, input { font: inherit; }

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 8px;
  left: 8px;
  transform: translateY(-150%);
  padding: 10px 14px;
  border-radius: 8px;
  color: white;
  background: var(--ink);
}
.skip-link:focus { transform: none; }
.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 250, 242, 0.94);
  backdrop-filter: blur(14px);
}
.nav-wrap {
  width: min(calc(100% - 40px), var(--max));
  min-height: 82px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: inline-flex; align-items: center; text-decoration: none; }
.brand img { width: 76px; height: 76px; object-fit: contain; }
.site-nav { display: flex; align-items: center; gap: 30px; }
.site-nav a {
  position: relative;
  text-decoration: none;
  font-weight: 650;
  color: #494c47;
}
.site-nav a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  content: "";
  transform: scaleX(0);
  background: var(--red);
  transition: transform .2s ease;
}
.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after { transform: scaleX(1); }
.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  cursor: pointer;
}
.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  content: "";
  background: var(--ink);
}

.button {
  min-height: 48px;
  padding: 12px 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: white;
  background: var(--red);
  box-shadow: 0 10px 28px rgba(184, 50, 37, .2);
  font-weight: 750;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); background: var(--red-dark); }
.button.secondary { color: var(--ink); border-color: var(--line); background: var(--white); box-shadow: none; }
.button.secondary:hover { background: var(--paper-2); }

.site-nav .button {
  color: white;
}
.container { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.section { padding: 96px 0; }
.section.compact { padding: 64px 0; }
.section-label {
  margin: 0 0 14px;
  color: var(--green);
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .18em;
  text-transform: uppercase;
}
h1, h2, h3 { margin-top: 0; line-height: 1.08; letter-spacing: -.035em; }
h1, h2 { font-family: Georgia, "Times New Roman", serif; font-weight: 600; }
h1 { margin-bottom: 24px; font-size: clamp(3.1rem, 7vw, 6.7rem); }
h2 { margin-bottom: 18px; font-size: clamp(2.2rem, 4.5vw, 4rem); }
h3 { margin-bottom: 10px; font-size: 1.28rem; }
p { margin-top: 0; }
.lede { max-width: 680px; color: var(--muted); font-size: clamp(1.08rem, 2vw, 1.28rem); }
.muted { color: var(--muted); }

.hero { position: relative; overflow: hidden; padding: 74px 0 68px; }
.hero::before {
  position: absolute;
  top: 10%;
  right: -8%;
  width: 520px;
  height: 520px;
  border: 70px solid rgba(184, 50, 37, .07);
  border-radius: 50%;
  content: "";
}
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; align-items: center; gap: 72px; }
.hero h1 span { color: var(--red); }
.hero-copy { position: relative; z-index: 1; }
.hero-actions { margin: 32px 0 28px; display: flex; flex-wrap: wrap; gap: 12px; }
.quick-facts { display: flex; flex-wrap: wrap; gap: 12px 22px; color: var(--muted); font-size: .95rem; }
.quick-facts a { text-decoration-thickness: 1px; text-underline-offset: 3px; }
.hero-image { position: relative; min-height: 540px; }
.hero-image::before {
  position: absolute;
  inset: 10% 0 0 6%;
  border-radius: 48% 48% 30% 30%;
  content: "";
  background: var(--green);
  transform: rotate(-3deg);
}
.hero-image img { position: absolute; z-index: 1; top: 9%; left: -5%; width: 112%; filter: drop-shadow(0 30px 28px rgba(0,0,0,.25)); }
.stamp {
  position: absolute;
  z-index: 2;
  right: -12px;
  bottom: 24px;
  width: 118px;
  height: 118px;
  display: grid;
  place-items: center;
  border: 2px solid var(--gold);
  border-radius: 50%;
  color: var(--paper);
  background: var(--red);
  font-family: Georgia, serif;
  font-size: .92rem;
  line-height: 1.25;
  text-align: center;
  transform: rotate(7deg);
}

.service-strip { color: white; background: var(--green); }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.service-item { padding: 24px 34px; border-right: 1px solid rgba(255,255,255,.18); }
.service-item:last-child { border: 0; }
.service-item strong { display: block; font-family: Georgia, serif; font-size: 1.25rem; }
.service-item span { color: rgba(255,255,255,.78); font-size: .92rem; }

.section-head { margin-bottom: 38px; display: flex; justify-content: space-between; align-items: end; gap: 30px; }
.section-head > div { max-width: 680px; }
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.food-card { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: 0 12px 40px rgba(45,35,20,.07); }
.food-card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.food-card-body { padding: 24px; }
.food-card p { margin-bottom: 0; color: var(--muted); }

.about-block { background: var(--paper-2); }
.split { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 72px; }
.split-media { position: relative; }
.split-media img { width: 100%; aspect-ratio: 995 / 714; border-radius: var(--radius); object-fit: cover; box-shadow: var(--shadow); }
.split-media::after { position: absolute; right: -18px; bottom: -18px; width: 42%; height: 36%; border-right: 4px solid var(--red); border-bottom: 4px solid var(--red); border-radius: 0 0 26px; content: ""; }
.values { margin: 28px 0 0; padding: 0; display: grid; gap: 14px; list-style: none; }
.values li { padding: 14px 16px; border-left: 3px solid var(--green); background: rgba(255,255,255,.55); font-weight: 700; }

.visit-card { overflow: hidden; display: grid; grid-template-columns: 1.05fr .95fr; border-radius: 30px; background: var(--ink); box-shadow: var(--shadow); }
.visit-copy { padding: clamp(34px, 6vw, 72px); color: white; }
.visit-copy .section-label { color: #9fd0b6; }
.visit-copy p { color: rgba(255,255,255,.72); }
.visit-details { margin: 28px 0; display: grid; gap: 18px; }
.visit-details strong { display: block; }
.visit-details span, .visit-details a { color: rgba(255,255,255,.75); }
.map-wrap { min-height: 520px; background: #ded8ca; }
.map-wrap iframe { width: 100%; height: 100%; min-height: 520px; border: 0; }

.page-hero { padding: 72px 0 52px; text-align: center; }
.page-hero h1 { margin-bottom: 12px; font-size: clamp(3rem, 6vw, 5.3rem); }
.page-hero .lede { margin-inline: auto; }

.menu-toolbar {
  position: sticky;
  z-index: 20;
  top: 82px;
  padding: 14px 0;
  border-block: 1px solid var(--line);
  background: rgba(255,250,242,.96);
  backdrop-filter: blur(12px);
}
.menu-tools { display: flex; align-items: center; gap: 14px; }
.search-wrap { position: relative; flex: 1; }
.search-wrap input { width: 100%; min-height: 50px; padding: 12px 16px 12px 44px; border: 1px solid var(--line); border-radius: 999px; color: var(--ink); background: white; outline: none; }
.search-wrap input:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(36,88,68,.13); }
.search-wrap::before { position: absolute; top: 12px; left: 17px; content: "⌕"; color: var(--green); font-size: 1.3rem; }
.category-select { min-height: 50px; max-width: 260px; padding: 12px 38px 12px 16px; border: 1px solid var(--line); border-radius: 999px; background: white; }
.menu-results { min-height: 48vh; }
.menu-category { margin-bottom: 52px; scroll-margin-top: 170px; }
.menu-category h2 { margin-bottom: 22px; padding-bottom: 14px; border-bottom: 2px solid var(--red); font-size: clamp(1.8rem, 3vw, 2.7rem); }
.menu-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px 30px; }
.menu-item { padding: 16px 0; display: grid; grid-template-columns: 1fr auto; gap: 8px 18px; border-bottom: 1px dashed rgba(23,26,22,.2); }
.menu-item h3 { margin: 0; font-family: Georgia, serif; font-size: 1.08rem; letter-spacing: -.01em; }
.menu-item .price { color: var(--red); font-weight: 800; white-space: nowrap; }
.menu-item p { grid-column: 1 / -1; margin: 0; color: var(--muted); font-size: .9rem; }
.menu-empty { padding: 70px 20px; text-align: center; }
.menu-note { padding: 18px 20px; border: 1px solid rgba(36,88,68,.2); border-radius: 16px; background: var(--green-soft); color: #254b3b; }
.menu-extras { margin: 16px 0 26px; padding: 20px; border: 1px solid rgba(161,42,50,.22); border-radius: 18px; background: var(--white); box-shadow: 0 10px 30px rgba(45,35,20,.06); }
.menu-extras h3 { margin: 0 0 14px; color: var(--red); font-family: Georgia, serif; font-size: 1.35rem; }
.menu-extras dl { margin: 0; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 28px; }
.menu-extras dl div { padding: 9px 0; display: grid; grid-template-columns: 1fr auto; gap: 18px; border-bottom: 1px dashed rgba(23,26,22,.16); }
.menu-extras dt, .menu-extras dd { margin: 0; }
.menu-extras dd { color: var(--red); font-weight: 800; white-space: nowrap; }

.gallery-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); align-items: start; gap: 18px; }
.gallery-item { margin: 0; overflow: hidden; border-radius: 18px; background: var(--paper-2); }
.gallery-item img { width: 100%; height: auto; aspect-ratio: 4 / 3; object-fit: cover; transition: transform .35s ease; }
.gallery-item:hover img { transform: scale(1.025); }
.gallery-item figcaption { padding: 13px 16px; color: var(--muted); font-size: .9rem; }

.order-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.order-card { padding: 30px 22px; display: flex; flex-direction: column; align-items: center; border: 1px solid var(--line); border-radius: var(--radius); background: white; text-align: center; box-shadow: 0 12px 36px rgba(45,35,20,.07); }
.order-card.featured { border: 2px solid var(--green); transform: translateY(-8px); }
.order-card img { width: 86px; height: 86px; margin-bottom: 20px; object-fit: contain; }
.order-card h2 { font-size: 1.7rem; }
.order-card p { flex: 1; color: var(--muted); }
.order-kicker { margin-bottom: 12px; color: var(--green); font-size: .76rem; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }

.site-footer { margin-top: 40px; padding: 54px 0 28px; color: white; background: #171a16; }
.footer-grid { display: grid; grid-template-columns: 1.2fr repeat(3, 1fr); gap: 40px; }
.footer-logo { width: 82px; height: 82px; margin-bottom: 14px; padding: 6px; border-radius: 50%; background: white; object-fit: contain; }
.site-footer h2 { margin: 0 0 12px; font-family: inherit; font-size: 1rem; letter-spacing: 0; }
.site-footer p, .site-footer a { color: rgba(255,255,255,.66); }
.site-footer a:hover { color: white; }
.copyright { margin-top: 36px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.5); font-size: .84rem; }

:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }

@media (max-width: 960px) {
  .nav-toggle { display: block; }
  .site-nav { position: fixed; top: 82px; right: 0; left: 0; padding: 26px 20px 32px; display: none; flex-direction: column; align-items: stretch; gap: 4px; border-bottom: 1px solid var(--line); background: var(--paper); box-shadow: var(--shadow); }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 12px 14px; }
  .hero { padding-top: 46px; }
  .hero-grid, .split, .visit-card { grid-template-columns: 1fr; }
  .hero-grid { gap: 26px; }
  .hero-copy { max-width: 760px; }
  .hero-image { min-height: 430px; max-width: 650px; width: 100%; margin: auto; }
  .split { gap: 44px; }
  .order-grid { grid-template-columns: repeat(2, 1fr); }
  .order-card.featured { transform: none; }
  .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 680px) {
  .container, .nav-wrap { width: min(calc(100% - 28px), var(--max)); }
  .nav-wrap { min-height: 72px; }
  .brand img { width: 64px; height: 64px; }
  .site-nav { top: 72px; }
  .site-nav .button { margin-top: 8px; }
  .section { padding: 68px 0; }
  .hero { padding: 38px 0 46px; }
  h1 { font-size: clamp(2.75rem, 14vw, 4.4rem); }
  .hero-image { min-height: 330px; }
  .stamp { right: 0; bottom: 4px; width: 96px; height: 96px; font-size: .78rem; }
  .service-grid { grid-template-columns: 1fr; }
  .service-item { padding: 18px 0; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.18); }
  .section-head { align-items: start; flex-direction: column; }
  .card-grid { grid-template-columns: 1fr; }
  .map-wrap, .map-wrap iframe { min-height: 360px; }
  .page-hero { padding: 50px 0 34px; }
  .menu-toolbar { top: 72px; }
  .menu-tools { align-items: stretch; flex-direction: column; }
  .category-select { width: 100%; max-width: none; }
  .menu-list { grid-template-columns: 1fr; }
  .menu-extras dl { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; gap: 12px; }
  .gallery-item { border-radius: 12px; }
  .gallery-item figcaption { display: none; }
  .order-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 26px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
