:root {
  color-scheme: light;
  --ink: #181512;
  --muted: #6c6258;
  --paper: #fbf8f2;
  --cream: #f1e5d0;
  --ember: #b63d24;
  --green: #596b48;
  --blue: #31536b;
  --gold: #d8a451;
  --line: rgba(24, 21, 18, 0.14);
  --shadow: 0 22px 70px rgba(26, 18, 12, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 54px);
  color: #fff;
  background: linear-gradient(180deg, rgba(9, 8, 7, 0.72), rgba(9, 8, 7, 0));
  transition: background 180ms ease, box-shadow 180ms ease, min-height 180ms ease;
}

.site-header.is-solid {
  min-height: 66px;
  background: rgba(24, 21, 18, 0.96);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.18);
}

.brand,
.header-actions,
.desktop-nav {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  min-width: 168px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  background: #111;
}

.brand strong {
  color: var(--gold);
}

.desktop-nav {
  gap: clamp(16px, 2.4vw, 34px);
  font-size: 0.83rem;
  font-weight: 800;
  text-transform: uppercase;
}

.desktop-nav a {
  opacity: 0.88;
}

.desktop-nav a:hover {
  opacity: 1;
  color: var(--gold);
}

.header-actions {
  gap: 10px;
}

.lang-toggle,
.small-cta,
.primary-cta,
.secondary-cta,
.text-cta {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  font-weight: 850;
  letter-spacing: 0;
}

.lang-toggle {
  width: 46px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  cursor: pointer;
}

.small-cta {
  padding: 0 18px;
  color: #181512;
  background: var(--gold);
}

.hero {
  min-height: 96vh;
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  align-items: end;
  gap: clamp(22px, 4vw, 64px);
  padding: 118px clamp(18px, 5vw, 72px) 54px;
  color: #fff;
  isolation: isolate;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(12, 10, 8, 0.88) 0%, rgba(12, 10, 8, 0.64) 47%, rgba(12, 10, 8, 0.25) 100%),
    linear-gradient(0deg, rgba(12, 10, 8, 0.88) 0%, rgba(12, 10, 8, 0.04) 56%, rgba(12, 10, 8, 0.46) 100%);
}

.hero-media,
.hero-media img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
}

.hero-media img {
  object-fit: cover;
}

.hero-copy {
  max-width: 820px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.7rem, 6.5vw, 6.5rem);
  line-height: 0.96;
  font-weight: 900;
}

h2 {
  margin-bottom: 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 4.1rem);
  line-height: 1.02;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.1rem;
  line-height: 1.2;
}

.lead {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
}

.hero-actions,
.menu-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.primary-cta {
  padding: 0 22px;
  color: #fff;
  background: var(--ember);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.secondary-cta {
  padding: 0 20px;
  color: inherit;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.text-cta {
  padding: 0 4px;
  color: #fff;
  border-bottom: 2px solid var(--gold);
  border-radius: 0;
}

.hero-panel {
  display: grid;
  gap: 14px;
  align-self: end;
  padding: 18px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  backdrop-filter: blur(18px);
}

.hero-panel div {
  padding: 16px;
  background: rgba(0, 0, 0, 0.18);
  border-radius: 6px;
}

.hero-panel span,
.hero-panel small,
.fact span,
.fact small,
.menu-card span {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-panel strong,
.fact strong {
  display: block;
  margin: 5px 0 2px;
  font-size: 1.15rem;
}

.visit-band,
.menu-section,
.gallery-section,
.reviews-band,
.contact-section {
  padding: clamp(60px, 9vw, 120px) clamp(18px, 5vw, 72px);
}

.visit-band {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(420px, 1fr);
  gap: clamp(26px, 5vw, 72px);
  background: #fff;
}

.visit-copy p:last-child,
.section-head p,
.review-points p,
.site-footer p,
.contact-card dd {
  color: var(--muted);
}

.facts-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.fact {
  min-height: 156px;
  padding: 22px;
  background: var(--ink);
  color: #fff;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.fact:nth-child(2) {
  background: var(--ember);
}

.fact:nth-child(3) {
  background: var(--blue);
}

.fact:nth-child(4) {
  background: var(--green);
}

.menu-section {
  background: var(--cream);
}

.section-head {
  max-width: 760px;
  margin-bottom: 26px;
}

.section-head.compact {
  max-width: 620px;
}

.menu-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.menu-filters button {
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  color: var(--ink);
  font-weight: 850;
  cursor: pointer;
}

.menu-filters button.active {
  color: #fff;
  background: var(--ink);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.menu-card {
  min-height: 100%;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(67, 42, 22, 0.12);
}

.menu-card[hidden] {
  display: none;
}

.menu-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.menu-card div {
  padding: 18px;
}

.menu-card span {
  color: var(--ember);
}

.menu-card p {
  color: var(--muted);
}

.menu-actions {
  margin-top: 26px;
}

.menu-actions .secondary-cta,
.contact-actions .secondary-cta {
  color: var(--ink);
  background: #fff;
  border-color: var(--line);
}

.gallery-section {
  background: #fff;
}

.gallery {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  grid-auto-rows: 235px;
  gap: 14px;
}

.gallery-item {
  position: relative;
  min-width: 0;
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: 8px;
  cursor: zoom-in;
  background: #ddd;
}

.gallery-item.wide {
  grid-row: span 2;
}

.gallery-item.tall {
  grid-column: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.gallery-item:hover img {
  transform: scale(1.035);
}

.reviews-band {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 72px);
  color: #fff;
  background: var(--ink);
}

.review-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.review-points p {
  min-height: 156px;
  margin: 0;
  padding: 24px;
  color: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1fr);
  gap: 20px;
  background: #fff;
}

.contact-card {
  padding: clamp(24px, 4vw, 42px);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.contact-card dl {
  display: grid;
  gap: 16px;
  margin: 26px 0;
}

.contact-card dt {
  color: var(--ember);
  font-size: 0.77rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-card dd {
  margin: 4px 0 0;
  font-weight: 750;
}

.map-card {
  min-height: 460px;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--line);
}

.map-card iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.site-footer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
  padding: 34px clamp(18px, 5vw, 72px) 92px;
  color: #fff;
  background: #111;
}

.site-footer p {
  max-width: 650px;
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.68);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-weight: 800;
}

.mobile-sticky {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 30;
  display: none;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.25);
}

.mobile-sticky a {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: var(--ink);
  font-size: 0.88rem;
  font-weight: 900;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.mobile-sticky a:nth-child(2) {
  background: var(--ember);
}

.mobile-sticky a:last-child {
  border-right: 0;
  background: var(--green);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 22px;
  background: rgba(0, 0, 0, 0.86);
}

.lightbox.is-open {
  display: flex;
}

.lightbox button {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
  font-size: 1.8rem;
  cursor: pointer;
}

.lightbox img {
  max-width: min(1100px, 94vw);
  max-height: 86vh;
  border-radius: 8px;
  object-fit: contain;
}

@media (max-width: 1040px) {
  .desktop-nav {
    display: none;
  }

  .hero,
  .visit-band,
  .reviews-band,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .menu-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .site-header {
    min-height: 68px;
    padding: 12px 16px;
  }

  .brand {
    min-width: 0;
  }

  .brand span {
    display: none;
  }

  .small-cta {
    padding-inline: 14px;
  }

  .hero {
    min-height: auto;
    padding: 98px 18px 28px;
  }

  .hero::after {
    background:
      linear-gradient(0deg, rgba(12, 10, 8, 0.94) 0%, rgba(12, 10, 8, 0.70) 52%, rgba(12, 10, 8, 0.35) 100%);
  }

  h1 {
    font-size: clamp(2.3rem, 15vw, 4.3rem);
  }

  h2 {
    font-size: clamp(1.85rem, 10vw, 3.1rem);
  }

  .hero-actions,
  .menu-actions,
  .contact-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .text-cta {
    justify-self: start;
  }

  .facts-grid,
  .menu-grid,
  .review-points {
    grid-template-columns: 1fr;
  }

  .visit-band,
  .menu-section,
  .gallery-section,
  .reviews-band,
  .contact-section {
    padding: 54px 18px;
  }

  .gallery {
    grid-template-columns: 1fr;
    grid-auto-rows: 240px;
  }

  .gallery-item.wide,
  .gallery-item.tall {
    grid-column: auto;
    grid-row: auto;
  }

  .map-card {
    min-height: 330px;
  }

  .site-footer {
    display: block;
    padding-bottom: 92px;
  }

  .footer-links {
    margin-top: 18px;
  }

  .mobile-sticky {
    display: grid;
  }
}
