:root {
  --wine-950: #4d0b10;
  --wine-900: #651016;
  --wine-800: #791219;
  --wine-700: #8f171d;
  --wine-600: #ad2028;
  --rose-100: #f8e3e1;
  --rose-50: #fff3f1;
  --cream-100: #fff6e9;
  --cream-50: #fffaf4;
  --paper: #ffffff;
  --ink: #2d2421;
  --muted: #756864;
  --line: rgba(115, 24, 28, 0.14);
  --shadow-sm: 0 12px 30px rgba(69, 20, 20, 0.08);
  --shadow-lg: 0 24px 70px rgba(80, 17, 24, 0.14);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 34px;
  --container: 1180px;
  --font-display: Georgia, "Times New Roman", serif;
  --font-body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 2%, rgba(173, 32, 40, 0.06), transparent 23rem),
    linear-gradient(180deg, var(--cream-50), #fff 38%, var(--cream-50));
  font-family: var(--font-body);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
button, input { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; }

.container { width: min(calc(100% - 32px), var(--container)); margin-inline: auto; }
.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;
}
.skip-link {
  position: fixed; z-index: 1000; left: 16px; top: 16px; transform: translateY(-160%);
  padding: 10px 14px; color: #fff; background: var(--wine-900); border-radius: 10px;
  text-decoration: none; transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

.hero {
  position: relative;
  min-height: 720px;
  padding: clamp(44px, 7vw, 86px) 0 76px;
  overflow: hidden;
  isolation: isolate;
}
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -2;
  background:
    linear-gradient(rgba(255,255,255,.6), rgba(255,255,255,.92)),
    repeating-linear-gradient(45deg, transparent 0 18px, rgba(143, 23, 29, .025) 18px 19px);
}
.hero::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: 84px;
  background: var(--paper); clip-path: ellipse(66% 64% at 50% 100%);
}
.hero__glow { position: absolute; z-index: -1; border-radius: 50%; filter: blur(4px); pointer-events: none; }
.hero__glow--one { width: 420px; height: 420px; right: -150px; top: -130px; background: rgba(173, 32, 40, .11); }
.hero__glow--two { width: 300px; height: 300px; left: -100px; bottom: 10px; background: rgba(238, 164, 132, .14); }
.hero__content { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr); gap: clamp(40px, 7vw, 96px); align-items: center; }
.hero__logo-shell {
  position: relative;
  padding: clamp(12px, 2vw, 24px);
  border: 1px solid rgba(143, 23, 29, .12);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, .78);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(12px);
}
.hero__logo-shell::before,
.hero__logo-shell::after {
  content: ""; position: absolute; width: 38px; height: 38px; border-color: var(--wine-600); opacity: .55;
}
.hero__logo-shell::before { left: 14px; top: 14px; border-left: 2px solid; border-top: 2px solid; border-radius: 12px 0 0 0; }
.hero__logo-shell::after { right: 14px; bottom: 14px; border-right: 2px solid; border-bottom: 2px solid; border-radius: 0 0 12px 0; }
.hero__logo { width: 100%; height: auto; border-radius: calc(var(--radius-lg) - 12px); }
.hero__copy { max-width: 520px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  margin-bottom: 12px; color: var(--wine-700); font-size: .76rem;
  font-weight: 800; letter-spacing: .18em; text-transform: uppercase;
}
.eyebrow::before, .eyebrow::after { content: ""; width: 20px; height: 1px; background: currentColor; opacity: .55; }
.hero h1, .menu-toolbar h2, .visit h2 {
  font-family: var(--font-display); color: var(--wine-900); line-height: 1.08; letter-spacing: -.025em;
}
.hero h1 { margin: 0; font-size: clamp(2.45rem, 5vw, 4.9rem); }
.hero__copy p { margin: 24px 0 30px; color: var(--muted); font-size: clamp(1.02rem, 1.5vw, 1.18rem); }
.button {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 50px; padding: 13px 23px; border: 1px solid transparent; border-radius: 999px;
  color: #fff; background: linear-gradient(135deg, var(--wine-700), var(--wine-900));
  box-shadow: 0 12px 24px rgba(143, 23, 29, .22); font-weight: 800; text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}
.button:hover { transform: translateY(-2px); box-shadow: 0 16px 32px rgba(143, 23, 29, .26); filter: saturate(1.08); }
.button:focus-visible, .filter:focus-visible, .clear-search:focus-visible, .back-to-top:focus-visible, .search:focus-within { outline: 3px solid rgba(173, 32, 40, .24); outline-offset: 3px; }

.menu-toolbar {
  position: sticky; top: 0; z-index: 50;
  padding: 22px 0 18px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(18px);
}
.menu-toolbar__top { display: flex; align-items: end; justify-content: space-between; gap: 24px; }
.menu-toolbar .eyebrow { margin-bottom: 3px; }
.menu-toolbar h2 { margin: 0; font-size: clamp(2rem, 3vw, 3rem); }
.search {
  display: flex; align-items: center; gap: 10px; width: min(100%, 390px);
  min-height: 48px; padding: 0 16px; color: var(--muted); border: 1px solid var(--line);
  border-radius: 999px; background: var(--cream-50); transition: border-color .2s, box-shadow .2s;
}
.search:focus-within { border-color: rgba(143, 23, 29, .38); box-shadow: 0 0 0 5px rgba(143, 23, 29, .06); }
.search input { width: 100%; border: 0; outline: 0; color: var(--ink); background: transparent; }
.search input::placeholder { color: #9d8f8a; }
.filters { display: flex; gap: 9px; margin-top: 18px; padding-bottom: 2px; overflow-x: auto; scrollbar-width: thin; scrollbar-color: rgba(143,23,29,.28) transparent; }
.filter {
  flex: 0 0 auto; min-height: 38px; padding: 8px 15px; border: 1px solid var(--line);
  border-radius: 999px; color: var(--wine-800); background: #fff; font-size: .88rem; font-weight: 750;
  cursor: pointer; transition: .2s ease;
}
.filter:hover { border-color: rgba(143, 23, 29, .35); background: var(--rose-50); }
.filter.is-active { color: #fff; border-color: var(--wine-800); background: var(--wine-800); box-shadow: 0 8px 18px rgba(143, 23, 29, .16); }

.menu-section { padding: 42px 0 96px; background: var(--paper); }
.menu-status { display: flex; align-items: center; justify-content: space-between; gap: 18px; min-height: 34px; margin-bottom: 24px; color: var(--muted); }
.menu-status p { margin: 0; }
.menu-status strong { color: var(--wine-800); }
.clear-search { border: 0; padding: 6px 0; color: var(--wine-700); background: transparent; font-weight: 800; cursor: pointer; text-decoration: underline; text-underline-offset: 4px; }
.menu-groups { display: grid; gap: 54px; }
.menu-group { scroll-margin-top: 190px; }
.menu-group[hidden], .menu-card[hidden] { display: none !important; }
.menu-group__heading { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.menu-group__heading span:not(.menu-group__icon) { display: block; margin-bottom: 2px; color: var(--wine-600); font-size: .72rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.menu-group__heading h3 { margin: 0; font-family: var(--font-display); color: var(--wine-900); font-size: clamp(1.55rem, 2.6vw, 2.15rem); line-height: 1.15; }
.menu-group__description { max-width: 760px; margin: 7px 0 0; color: var(--muted); font-size: .93rem; line-height: 1.5; }
.menu-group__icon {
  display: grid; place-items: center; width: 50px; height: 50px; flex: 0 0 50px;
  color: var(--wine-700); border: 1px solid rgba(143, 23, 29, .18); border-radius: 16px;
  background: linear-gradient(145deg, #fff, var(--rose-50)); box-shadow: var(--shadow-sm);
}
.menu-group__icon svg { width: 26px; height: 26px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.menu-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.menu-card {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 24px;
  min-height: 132px; padding: 22px; border: 1px solid var(--line); border-radius: var(--radius-md);
  background: linear-gradient(145deg, #fff 0%, #fff 68%, rgba(255, 243, 241, .68) 100%);
  box-shadow: 0 8px 24px rgba(74, 28, 24, .045);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.menu-card:hover { transform: translateY(-3px); border-color: rgba(143, 23, 29, .24); box-shadow: var(--shadow-sm); }
.menu-card--featured { background: linear-gradient(145deg, #fff 0%, var(--rose-50) 100%); border-color: rgba(143, 23, 29, .24); }
.menu-card h4 { margin: 0 0 6px; color: var(--wine-900); font-family: var(--font-display); font-size: 1.22rem; line-height: 1.28; }
.menu-card p { margin: 0; color: var(--muted); font-size: .91rem; line-height: 1.5; }
.menu-card > strong { flex: 0 0 auto; max-width: 150px; color: var(--wine-700); font-size: 1.02rem; line-height: 1.35; text-align: right; white-space: normal; }
.price-on-request { font-size: .88rem !important; }
.badge { display: inline-flex; margin-bottom: 8px; padding: 4px 9px; border-radius: 999px; color: #fff; background: var(--wine-700); font-size: .68rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.badge--soft { color: var(--wine-800); background: var(--rose-100); }
.empty-state { padding: 64px 24px; text-align: center; border: 1px dashed rgba(143,23,29,.25); border-radius: var(--radius-lg); background: var(--cream-50); }
.empty-state span { display: block; color: var(--wine-600); font-size: 2.2rem; }
.empty-state h3 { margin: 8px 0 4px; color: var(--wine-900); font-family: var(--font-display); font-size: 1.7rem; }
.empty-state p { margin: 0; color: var(--muted); }

.visit { padding: 32px 0 90px; background: var(--paper); }
.visit__card {
  position: relative; overflow: hidden; padding: clamp(44px, 7vw, 76px) 24px;
  color: #fff; border-radius: var(--radius-lg); background:
    radial-gradient(circle at 0 0, rgba(255,255,255,.12), transparent 28%),
    linear-gradient(145deg, var(--wine-700), var(--wine-950));
  box-shadow: var(--shadow-lg); text-align: center;
}
.visit__card::before, .visit__card::after { content: ""; position: absolute; border: 1px solid rgba(255,255,255,.16); border-radius: 50%; }
.visit__card::before { width: 270px; height: 270px; left: -150px; bottom: -170px; }
.visit__card::after { width: 200px; height: 200px; right: -120px; top: -120px; }
.visit__ornament { margin-bottom: 10px; color: #f7b2a8; font-size: 1.5rem; }
.visit .eyebrow { color: #fbd7d1; }
.visit h2 { margin: 0; color: #fff; font-size: clamp(2rem, 4.2vw, 3.5rem); }
.visit address { display: flex; align-items: flex-start; justify-content: center; gap: 10px; margin: 22px auto 28px; color: rgba(255,255,255,.88); font-size: 1.04rem; font-style: normal; }
.visit address svg { flex: 0 0 auto; margin-top: 3px; }
.button--light { color: var(--wine-900); background: #fff; box-shadow: 0 12px 30px rgba(0,0,0,.18); }

.footer { padding: 34px 0; color: rgba(255,255,255,.72); background: #2a090d; }
.footer__content { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 12px 24px; }
.footer p { margin: 0; font-size: .86rem; }
.footer strong { color: #fff; }
.back-to-top {
  position: fixed; right: max(18px, env(safe-area-inset-right)); bottom: max(18px, env(safe-area-inset-bottom)); z-index: 60;
  display: grid; place-items: center; width: 48px; height: 48px; border: 0; border-radius: 50%;
  color: #fff; background: var(--wine-800); box-shadow: 0 12px 28px rgba(80,17,24,.28);
  cursor: pointer; opacity: 0; visibility: hidden; transform: translateY(12px); transition: .22s ease;
}
.back-to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top svg { width: 24px; height: 24px; }

@media (max-width: 900px) {
  .hero { min-height: auto; padding-top: 38px; }
  .hero__content { grid-template-columns: 1fr; gap: 36px; }
  .hero__logo-shell { max-width: 700px; margin-inline: auto; }
  .hero__copy { max-width: 700px; text-align: center; margin-inline: auto; }
  .hero__copy .eyebrow { justify-content: center; }
  .menu-toolbar { position: relative; }
  .menu-group { scroll-margin-top: 24px; }
}

@media (max-width: 720px) {
  .container { width: min(calc(100% - 24px), var(--container)); }
  .hero { padding-bottom: 58px; }
  .hero::after { height: 50px; }
  .hero h1 { font-size: clamp(2.2rem, 12vw, 3.5rem); }
  .menu-toolbar__top { align-items: stretch; flex-direction: column; gap: 15px; }
  .search { width: 100%; }
  .menu-section { padding-top: 30px; }
  .menu-grid { grid-template-columns: 1fr; }
  .menu-card { min-height: 0; padding: 19px; gap: 16px; }
  .footer__content { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 430px) {
  .hero__logo-shell { padding: 8px; border-radius: 24px; }
  .hero__logo { border-radius: 18px; }
  .hero__copy p { margin-top: 18px; }
  .button { width: 100%; }
  .menu-toolbar h2 { font-size: 2rem; }
  .menu-card { flex-direction: column; }
  .menu-card > strong { max-width: none; text-align: left; }
  .menu-group__heading { align-items: flex-start; }
  .visit__card { border-radius: 24px; }
  .visit address { font-size: .96rem; }
}

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