:root {
  color-scheme: dark;
  --bg: #090706;
  --panel: #12100e;
  --panel-2: #1b1714;
  --text: #fff8ed;
  --muted: #cfc1ad;
  --line: rgba(255, 248, 237, .16);
  --gold: #cfa66d;
  --gold-2: #f0cf91;
  --green: #496b55;
  --red: #8e2f25;
  --shadow: 0 24px 70px rgba(0, 0, 0, .38);
  --radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  overflow-x: hidden;
}

img { max-width: 100%; }
img { display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

.skip-link {
  position: absolute;
  left: 12px;
  top: -60px;
  z-index: 20;
  background: var(--gold);
  color: #120c08;
  padding: 10px 14px;
}
.skip-link:focus { top: 12px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  min-height: 76px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 12px clamp(18px, 4vw, 58px);
  background: rgba(9, 7, 6, .88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.brand img { width: 132px; }
.brand span {
  color: var(--gold-2);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
  white-space: nowrap;
}

.nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 2vw, 28px);
  color: var(--muted);
  font-size: .94rem;
}
.nav a:hover, .nav a:focus-visible { color: var(--text); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lang-toggle {
  min-width: 48px;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: transparent;
  color: var(--text);
  cursor: pointer;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: var(--radius);
  padding: 12px 18px;
  font-weight: 800;
  line-height: 1.1;
  border: 1px solid transparent;
}
.button-small { min-height: 42px; padding: 10px 14px; background: var(--gold); color: #130c08; }
.button-primary { background: var(--gold); color: #130c08; }
.button-ghost { background: var(--green); color: #f8fff9; }
.button-line { border-color: var(--line); color: var(--text); }
.button:hover, .button:focus-visible, .lang-toggle:hover, .lang-toggle:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.hero {
  min-height: calc(100svh - 76px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, .9fr);
  gap: clamp(22px, 4vw, 54px);
  align-items: center;
  padding: clamp(34px, 7vw, 96px) clamp(18px, 5vw, 76px) clamp(30px, 5vw, 76px);
}

.hero-copy { max-width: 740px; }
.eyebrow {
  margin: 0 0 12px;
  color: var(--gold-2);
  font-size: .82rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  margin-bottom: 18px;
  max-width: 760px;
  font-size: clamp(2.55rem, 7vw, 6.4rem);
  line-height: .92;
  letter-spacing: 0;
}
h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4.8vw, 4.6rem);
  line-height: 1;
  letter-spacing: 0;
}
h3 {
  margin-bottom: 10px;
  font-size: 1.35rem;
  line-height: 1.15;
  letter-spacing: 0;
}

.hero-text {
  max-width: 620px;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.5vw, 1.25rem);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0;
}

.quick-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 28px 0 0;
}
.quick-facts div {
  min-height: 98px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .035);
}
.quick-facts dt {
  color: var(--muted);
  font-size: .8rem;
  font-weight: 800;
  text-transform: uppercase;
}
.quick-facts dd {
  margin: 8px 0 0;
  font-size: 1.03rem;
  font-weight: 800;
}

.hero-media {
  position: relative;
  min-width: 0;
}
.hero-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.status-card {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: grid;
  gap: 4px;
  padding: 16px;
  border-radius: var(--radius);
  background: rgba(9, 7, 6, .82);
  border: 1px solid var(--line);
  backdrop-filter: blur(14px);
}
.status-dot {
  color: var(--gold-2);
  font-size: .86rem;
  font-weight: 900;
  text-transform: uppercase;
}

.action-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--panel);
}
.action-band a {
  display: grid;
  min-height: 120px;
  align-content: center;
  gap: 8px;
  padding: 22px clamp(18px, 3vw, 34px);
  border-right: 1px solid var(--line);
}
.action-band a:last-child { border-right: 0; }
.action-band span {
  color: var(--muted);
  font-size: .82rem;
  text-transform: uppercase;
  font-weight: 900;
}
.action-band strong { font-size: clamp(1.05rem, 2vw, 1.35rem); }
.action-band a:hover { background: rgba(207, 166, 109, .09); }

.section {
  padding: clamp(54px, 9vw, 112px) clamp(18px, 5vw, 76px);
}
.split {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: clamp(22px, 5vw, 62px);
  align-items: start;
}
.section-copy {
  position: sticky;
  top: 110px;
  max-width: 520px;
}
.section-copy p, .location-copy p, .review-copy p, .highlight-grid p, .site-footer p {
  color: var(--muted);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.menu-tile {
  min-height: 238px;
  display: grid;
  align-content: end;
  gap: 8px;
  padding: 18px;
  border-radius: var(--radius);
  background: var(--panel-2);
  border: 1px solid var(--line);
  overflow: hidden;
  position: relative;
}
.menu-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .54;
}
.menu-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9, 7, 6, .08), rgba(9, 7, 6, .9));
}
.menu-tile span, .menu-tile strong {
  position: relative;
  z-index: 1;
}
.menu-tile span {
  color: var(--gold-2);
  font-size: .82rem;
  font-weight: 900;
  text-transform: uppercase;
}
.menu-tile strong { font-size: 1.22rem; line-height: 1.15; }
.menu-tile.featured { grid-row: span 2; min-height: 490px; }
.menu-tile:not(.featured):last-child { background: linear-gradient(135deg, var(--panel-2), #231a13); }

.highlights { background: #0e0b09; }
.section-heading {
  max-width: 780px;
  margin-bottom: 28px;
}
.highlight-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.highlight-grid article {
  display: grid;
  grid-template-rows: auto 1fr;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  overflow: hidden;
}
.highlight-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.highlight-grid h3, .highlight-grid p { padding: 0 18px; }
.highlight-grid h3 { margin-top: 18px; }
.highlight-grid p { margin-bottom: 20px; }

.location {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: clamp(22px, 5vw, 58px);
  background: var(--panel);
  align-items: center;
}
.location-copy { max-width: 560px; }
.hours-list {
  display: grid;
  gap: 10px;
  margin-top: 26px;
}
.hours-list div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.hours-list span { color: var(--muted); }
.map-panel {
  min-height: 480px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(255, 248, 237, .05) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 248, 237, .05) 1px, transparent 1px),
    radial-gradient(circle at 65% 35%, rgba(207, 166, 109, .28), transparent 32%),
    linear-gradient(135deg, #171210, #111812);
  background-size: 44px 44px, 44px 44px, auto, auto;
  display: grid;
  place-items: center;
  padding: 24px;
}
.map-card {
  width: min(100%, 420px);
  padding: 24px;
  border-radius: var(--radius);
  background: rgba(9, 7, 6, .8);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.map-card span {
  display: block;
  margin-bottom: 10px;
  color: var(--gold-2);
  font-size: .82rem;
  font-weight: 900;
  text-transform: uppercase;
}
.map-card strong {
  display: block;
  font-size: clamp(1.5rem, 4vw, 2.3rem);
  line-height: 1;
}
.map-card p {
  color: var(--muted);
  margin: 14px 0 22px;
}

.reviews {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: clamp(22px, 5vw, 66px);
  align-items: center;
}
.review-score {
  min-height: 250px;
  display: grid;
  align-content: center;
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(135deg, #171210, #20281f);
}
.review-score strong {
  font-size: 5.8rem;
  line-height: .92;
}
.review-score span { color: var(--muted); font-weight: 800; }
.review-copy { max-width: 780px; }

.final-cta {
  text-align: center;
  background: linear-gradient(135deg, #15100d, #111812);
}
.final-cta .hero-actions { justify-content: center; margin-bottom: 0; }

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: end;
  padding: 36px clamp(18px, 5vw, 76px) 92px;
  border-top: 1px solid var(--line);
}
.site-footer p {
  max-width: 680px;
  margin: 14px 0 0;
  font-size: .92rem;
}
.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
  color: var(--muted);
  font-weight: 800;
}

.mobile-cta {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 12;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(9, 7, 6, .92);
  backdrop-filter: blur(16px);
}
.mobile-cta a {
  min-height: 46px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  font-weight: 900;
  background: var(--panel-2);
}
.mobile-cta a:last-child {
  background: var(--gold);
  color: #140d08;
}

@media (max-width: 1060px) {
  .site-header { grid-template-columns: 1fr auto; }
  .nav { display: none; }
  .hero, .split, .location { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .hero-copy, .section-copy, .location-copy { max-width: none; }
  .section-copy { position: static; }
  .hero-media { order: -1; }
  .hero-media img { aspect-ratio: 16 / 10; }
  .action-band { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .action-band a:nth-child(2) { border-right: 0; }
  .action-band a:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .highlight-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .site-header {
    min-height: 66px;
    padding: 10px 14px;
  }
  .brand img { width: 104px; }
  .brand span { display: none; }
  .button-small { display: none; }
  .hero { padding: 22px 14px 38px; }
  h1 { font-size: clamp(2.45rem, 15vw, 4.2rem); }
  h2 { font-size: clamp(2rem, 11vw, 3.2rem); }
  .hero-actions .button {
    width: 100%;
    min-height: 52px;
  }
  .quick-facts {
    grid-template-columns: 1fr;
  }
  .hero-media img { aspect-ratio: 1 / .82; }
  .status-card {
    position: static;
    margin-top: 10px;
  }
  .action-band { grid-template-columns: 1fr; }
  .action-band a {
    min-height: 98px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .action-band a:last-child { border-bottom: 0; }
  .section { padding: 52px 14px; }
  .menu-grid { grid-template-columns: 1fr; }
  .menu-tile, .menu-tile.featured { min-height: 250px; }
  .reviews { grid-template-columns: 1fr; }
  .map-panel { min-height: 360px; }
  .site-footer {
    grid-template-columns: 1fr;
    padding: 30px 14px 86px;
  }
  .site-footer nav { justify-content: flex-start; }
  .mobile-cta { display: grid; }
}
