:root {
  --ink: #151311;
  --paper: #f7f1e8;
  --shell: #fffaf2;
  --wine: #9c2f30;
  --wine-dark: #6f1d1e;
  --pine: #183f36;
  --sea: #1f6471;
  --gold: #d6a15f;
  --muted: #6c625a;
  --line: rgba(21, 19, 17, .16);
  --shadow: 0 24px 70px rgba(39, 28, 20, .22);
}

* { 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;
  line-height: 1.5;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea { font: inherit; }

.skip-link {
  position: fixed;
  top: -56px;
  left: 16px;
  z-index: 50;
  background: var(--ink);
  color: #fff;
  padding: .75rem 1rem;
  border-radius: 6px;
}
.skip-link:focus { top: 12px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  min-height: 78px;
  padding: .65rem clamp(1rem, 3vw, 3rem);
  background: rgba(255, 250, 242, .94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}
.brand { display: flex; align-items: center; gap: .7rem; font-weight: 900; min-width: 0; }
.brand img { width: 190px; height: auto; }
.brand span { color: var(--muted); font-size: .85rem; }
nav { display: flex; justify-content: center; gap: clamp(.8rem, 2vw, 1.6rem); font-weight: 800; color: #4f4339; }
nav a { padding: .45rem .15rem; }
.language-switch {
  display: flex;
  padding: .25rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
}
.lang-btn {
  border: 0;
  background: transparent;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 900;
}
.lang-btn.active { background: var(--ink); color: #fff; }

.hero {
  position: relative;
  min-height: calc(100svh - 78px);
  isolation: isolate;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-img, .hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-img { object-fit: cover; z-index: -3; }
.hero-shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(12, 10, 8, .88), rgba(12, 10, 8, .45) 52%, rgba(12, 10, 8, .08)),
    linear-gradient(0deg, rgba(12, 10, 8, .72), transparent 45%);
}
.hero-content {
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: clamp(2rem, 6vw, 5rem) clamp(1rem, 4vw, 3rem);
  color: #fff;
}
.eyebrow {
  margin: 0 0 .7rem;
  color: var(--gold);
  font-weight: 950;
  text-transform: uppercase;
  font-size: .82rem;
}
.hero h1 {
  max-width: 980px;
  margin: 0;
  font-size: clamp(3rem, 7.2vw, 7.6rem);
  line-height: .92;
  letter-spacing: 0;
}
.hero-copy {
  max-width: 760px;
  margin: 1.2rem 0 0;
  color: rgba(255,255,255,.9);
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
}
.hero-actions, .planner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 1.6rem;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: .85rem 1.1rem;
  border-radius: 7px;
  border: 1px solid rgba(255,255,255,.55);
  color: #fff;
  font-weight: 950;
  cursor: pointer;
}
.btn.primary {
  border-color: var(--wine);
  background: var(--wine);
  color: #fff;
}
.btn.ghost {
  border-color: var(--line);
  color: var(--ink);
}
.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .8rem;
  max-width: 860px;
  margin-top: 2rem;
}
.hero-facts div {
  padding: 1rem;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 8px;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(12px);
}
.hero-facts span { display: block; color: rgba(255,255,255,.72); font-size: .86rem; }
.hero-facts strong { display: block; margin-top: .2rem; font-size: 1.05rem; }

.quick-band {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 1rem;
  align-items: center;
  padding: 1.1rem clamp(1rem, 4vw, 3rem);
  background: var(--pine);
  color: #fff;
}
.quick-band span { display: block; color: var(--gold); font-weight: 900; }
.quick-band .btn { min-height: 46px; }

.proof-grid, .menu-section, .visit-section, .contact-section, .sources {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
}
.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  padding: clamp(2rem, 6vw, 4rem) 0;
}
.proof-grid article, .planner, .menu-card {
  background: var(--shell);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 36px rgba(39, 28, 20, .08);
}
.proof-grid article { padding: 1.2rem; }
.proof-grid h2, .section-heading h2, .visit-copy h2, .contact-section h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: .98;
  letter-spacing: 0;
}
.proof-grid p:not(.eyebrow), .section-heading p:not(.eyebrow), .visit-copy p:not(.eyebrow) { color: var(--muted); }

.menu-section { padding: clamp(1rem, 4vw, 3rem) 0; }
.section-heading { max-width: 830px; }
.menu-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin: 1.4rem 0 1rem;
}
.tab-btn {
  min-height: 44px;
  padding: .7rem 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  cursor: pointer;
  font-weight: 900;
}
.tab-btn.active { background: var(--sea); border-color: var(--sea); color: #fff; }
.menu-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}
.menu-card { padding: 1rem; }
.menu-card h3 { margin: 0 0 .75rem; font-size: 1.35rem; }
.menu-card ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .65rem; }
.menu-card li {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: .75rem;
  align-items: baseline;
  padding-bottom: .55rem;
  border-bottom: 1px dashed var(--line);
}
.menu-card li:last-child { border-bottom: 0; padding-bottom: 0; }
.menu-card strong { color: var(--wine); white-space: nowrap; }

.photo-band {
  display: grid;
  grid-template-columns: 1.1fr .9fr .8fr;
  gap: .5rem;
  width: 100%;
  padding: clamp(1rem, 3vw, 2rem) 0;
}
.photo-band img {
  width: 100%;
  height: clamp(240px, 34vw, 460px);
  object-fit: cover;
}

.visit-section {
  display: grid;
  grid-template-columns: 1fr minmax(340px, 480px);
  gap: clamp(1rem, 4vw, 3rem);
  align-items: start;
  padding: clamp(2rem, 6vw, 4rem) 0;
}
.planner { padding: 1.1rem; }
.plan-buttons { display: grid; grid-template-columns: repeat(3, 1fr); gap: .5rem; }
.plan-btn {
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fff;
  font-weight: 900;
  cursor: pointer;
}
.plan-btn.active { background: var(--wine); color: #fff; border-color: var(--wine); }
.planner label { display: block; margin: .8rem 0 .3rem; font-weight: 800; color: var(--muted); }
.planner input, .planner textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: .8rem;
  background: #fff;
  color: var(--ink);
}
.planner-output {
  margin-top: .85rem;
  padding: 1rem;
  border-radius: 8px;
  background: #efe2d1;
  font-weight: 800;
}
.planner .btn:not(.primary) { border-color: var(--line); color: var(--ink); }

.contact-section {
  display: grid;
  grid-template-columns: minmax(320px, .8fr) 1.2fr;
  gap: 1rem;
  padding: clamp(2rem, 6vw, 4rem) 0;
}
.contact-list { display: grid; gap: .65rem; margin-top: 1.2rem; }
.contact-list a {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: .8rem;
  padding: .9rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--shell);
}
.contact-list span { color: var(--muted); font-weight: 850; }
.map-wrap {
  min-height: 450px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.map-wrap iframe { width: 100%; height: 100%; min-height: 450px; border: 0; }

.sources {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  align-items: center;
  padding: 2rem 0 6rem;
}
.sources h2 { flex-basis: 100%; margin: 0; }
.sources a {
  padding: .6rem .8rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  font-weight: 850;
}

.mobile-quick {
  position: fixed;
  left: .75rem;
  right: .75rem;
  bottom: .75rem;
  z-index: 30;
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: .5rem;
  padding: .55rem;
  border-radius: 8px;
  background: rgba(21, 19, 17, .92);
  box-shadow: 0 16px 48px rgba(0,0,0,.3);
  transform: translateY(150%);
  transition: transform .2s ease;
}
.mobile-quick a {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 44px;
  border-radius: 6px;
  background: var(--gold);
  color: var(--ink);
  font-weight: 950;
}

@media (max-width: 900px) {
  .site-header { grid-template-columns: 1fr auto; }
  .brand img { width: 155px; }
  .brand span, nav { display: none; }
  .hero { min-height: calc(100svh - 72px); }
  .hero-content { padding-top: 3rem; }
  .hero h1 { font-size: clamp(2.65rem, 14vw, 4.9rem); }
  .hero-actions .btn { width: 100%; }
  .hero-facts, .proof-grid, .visit-section, .contact-section, .quick-band { grid-template-columns: 1fr; }
  .quick-band .btn { width: 100%; }
  .menu-grid { grid-template-columns: 1fr; }
  .menu-card[aria-hidden="true"] { display: none; }
  .photo-band { grid-template-columns: 1fr; }
  .photo-band img { height: 270px; }
  .contact-list a { grid-template-columns: 1fr; }
  .map-wrap, .map-wrap iframe { min-height: 360px; }
  .mobile-quick { display: grid; }
  .mobile-quick[data-visible="true"] { transform: translateY(0); }
}

@media (min-width: 901px) {
  .menu-card { display: block !important; }
}
