:root {
  --ink: #0a0b0c;
  --charcoal: #151719;
  --panel: #202326;
  --steel: #34383d;
  --ash: #c9c6bf;
  --muted: #8f9296;
  --gold: #e1b764;
  --gold-soft: #f5d98e;
  --cream: #fff5d8;
  --line: rgba(255, 255, 255, .16);
  --glow: rgba(255, 255, 255, .72);
}

* { box-sizing: border-box; }
html { scroll-padding-top: calc(var(--header-height, 88px) + 18px); background: var(--ink); }
body {
  margin: 0;
  padding-top: var(--header-height, 88px);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #f4f0e7;
  background:
    linear-gradient(120deg, rgba(225, 183, 100, .08), transparent 38%),
    radial-gradient(circle at top right, rgba(255, 255, 255, .11), transparent 28%),
    var(--ink);
  line-height: 1.7;
}
a { color: inherit; }
img { max-width: 100%; display: block; }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px 5vw;
  background: rgba(10, 11, 12, .93);
  border-bottom: 1px solid rgba(225, 183, 100, .28);
  backdrop-filter: blur(18px);
}
.brand img { width: clamp(170px, 17vw, 250px); max-height: 98px; object-fit: contain; }
.site-nav { display: flex; gap: 18px; font-size: 13px; font-weight: 800; text-transform: uppercase; }
.site-nav a { color: #e9e3d5; text-decoration: none; }
.site-nav a:hover { color: var(--gold-soft); }
.header-actions { display: flex; align-items: center; gap: 14px; }
.social-icons { display: flex; align-items: center; gap: 8px; }
.social-icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(225, 183, 100, .35);
  border-radius: 50%;
  background: rgba(255, 255, 255, .06);
}
.social-icon-link img { width: 23px; height: 23px; object-fit: contain; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid rgba(225, 183, 100, .72);
  border-radius: 6px;
  background: rgba(255, 255, 255, .04);
  color: var(--cream);
  text-decoration: none;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 13px;
}
.btn.primary,
.primary {
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  border-color: var(--gold-soft);
  color: #15100a;
  box-shadow: 0 0 28px rgba(225, 183, 100, .22);
}
.btn:hover { transform: translateY(-1px); }

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 46vw);
  gap: 5vw;
  align-items: center;
  min-height: 84vh;
  padding: 7vw 5vw;
  overflow: hidden;
}
.hero::before,
.dark-band::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(30deg, transparent 0 46%, rgba(255,255,255,.28) 47% 49%, transparent 50%),
    linear-gradient(150deg, transparent 0 46%, rgba(255,255,255,.18) 47% 49%, transparent 50%);
  background-size: 180px 104px;
  opacity: .09;
}
.hero-copy,
.hero-frame,
.dark-band > * { position: relative; z-index: 1; }
.hero h1,
.menu-hero h1 {
  max-width: 980px;
  margin: 0;
  font-size: clamp(44px, 7vw, 104px);
  line-height: .96;
  text-transform: uppercase;
}
.hero p,
.menu-hero > p { max-width: 650px; color: #d4d0c8; font-size: 18px; }
.eyebrow {
  margin: 0 0 12px;
  color: var(--gold-soft);
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: 13px;
}
.button-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.button-row.centered { justify-content: center; }
.button-row.compact { margin-top: 20px; }

.image-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(225, 183, 100, .34);
  border-radius: 8px;
  background: linear-gradient(145deg, #24272b, #111315);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .08), 0 24px 80px rgba(0, 0, 0, .32);
}
.image-frame::after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(255, 255, 255, .32);
  border-radius: 5px;
  pointer-events: none;
  box-shadow: 0 0 20px rgba(255, 255, 255, .22);
}
.image-frame img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
}

.section,
.split-section { padding: 84px 5vw; }
.split-section {
  display: grid;
  grid-template-columns: minmax(280px, 42vw) minmax(0, 1fr);
  gap: 5vw;
  align-items: center;
}
h1, h2, h3 { line-height: 1.15; }
h2 {
  max-width: 920px;
  margin: 0 0 18px;
  font-size: clamp(30px, 4vw, 58px);
  text-transform: uppercase;
}
h3 { margin: 0 0 8px; font-size: 22px; text-transform: uppercase; }
p { color: #d5d1c9; }

.services-section,
.gallery-section,
.reviews-section,
.access-section { border-top: 1px solid rgba(255, 255, 255, .08); }
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}
.service-grid article {
  min-height: 280px;
  padding: 24px;
  border: 1px solid rgba(225, 183, 100, .28);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.025));
}
.service-number {
  display: inline-flex;
  margin-bottom: 30px;
  color: var(--gold-soft);
  font-weight: 950;
}
.service-grid strong {
  display: block;
  margin-top: 20px;
  color: var(--gold-soft);
  font-size: 24px;
}

.gallery-scroll {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-inline: -5vw;
  padding: 0 5vw 18px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: x mandatory;
  scrollbar-color: var(--gold) rgba(225, 183, 100, .16);
}
.gallery-scroll figure {
  flex: 0 0 clamp(240px, 30vw, 420px);
  margin: 0;
  aspect-ratio: 4 / 5;
  border: 1px solid rgba(225, 183, 100, .26);
  border-radius: 8px;
  overflow: hidden;
  background: var(--panel);
  scroll-snap-align: start;
}
.gallery-scroll figure:nth-child(2) { flex-basis: clamp(280px, 36vw, 500px); aspect-ratio: 5 / 6; transform: translateY(24px); }
.gallery-scroll figure:nth-child(3) { flex-basis: clamp(230px, 28vw, 380px); aspect-ratio: 3 / 4; }
.gallery-scroll figure:nth-child(4) { flex-basis: clamp(300px, 38vw, 540px); aspect-ratio: 5 / 4; transform: translateY(18px); }
.gallery-scroll figure:nth-child(5) { flex-basis: clamp(250px, 31vw, 430px); aspect-ratio: 4 / 5; }
.gallery-scroll figure:nth-child(6) { flex-basis: clamp(285px, 34vw, 480px); aspect-ratio: 1 / 1; transform: translateY(28px); }
.gallery-scroll img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: zoom-in;
}

.info-list {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 14px 18px;
  margin-top: 24px;
}
.info-list dt { color: var(--gold-soft); font-weight: 900; text-transform: uppercase; }
.info-list dd { margin: 0; color: #efe9dc; }
.hours-list { display: grid; gap: 10px; max-width: 620px; }
.hours-list div {
  display: grid;
  grid-template-columns: minmax(120px, 1fr) minmax(180px, 1.4fr);
  gap: 20px;
  align-items: baseline;
}
.hours-list span,
.hours-list strong { font-weight: 750; }

.visit-social-links { display: flex; flex-wrap: wrap; gap: 10px; }
.visit-social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 12px;
  border: 1px solid rgba(225, 183, 100, .35);
  border-radius: 6px;
  background: rgba(255, 255, 255, .06);
  text-decoration: none;
  font-weight: 850;
}
.visit-social-link img { width: 22px; height: 22px; object-fit: contain; }
.site-footer {
  padding: 34px 5vw;
  border-top: 1px solid rgba(225, 183, 100, .22);
  background: #070808;
  color: #a6a29a;
}

.menu-page { min-height: 80vh; }
.menu-hero { position: relative; overflow: hidden; padding-top: 7vw; }
.category-intro {
  display: grid;
  grid-template-columns: minmax(180px, 280px) minmax(0, 1fr);
  gap: 4vw;
  align-items: start;
  margin-bottom: 28px;
}
.category-intro h2 { margin-bottom: 8px; }
.category-intro p:not(.eyebrow) { margin: 0; max-width: 760px; }
.menu-list.detailed {
  display: grid;
  gap: 14px;
}
.menu-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: start;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}
.menu-item h3 { color: #fff8e6; }
.menu-item p { max-width: 940px; margin: 0; }
.menu-item .meta {
  margin-bottom: 8px;
  color: var(--gold-soft);
  font-weight: 850;
  text-transform: uppercase;
  font-size: 13px;
}
.menu-item > strong {
  min-width: 92px;
  color: var(--gold-soft);
  font-size: 24px;
  text-align: right;
}
.discount {
  display: inline-flex;
  margin-top: 12px;
  padding: 4px 8px;
  border: 1px solid rgba(225, 183, 100, .46);
  border-radius: 5px;
  color: #15100a;
  background: var(--gold-soft);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}
.dark-band {
  position: relative;
  margin: 34px 0;
  background: linear-gradient(135deg, #1c1f22, #090a0b);
  border-top: 1px solid rgba(225, 183, 100, .24);
  border-bottom: 1px solid rgba(225, 183, 100, .24);
  overflow: hidden;
}
.final-category { padding-bottom: 100px; }

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .75s ease, transform .75s ease;
}
.gallery-scroll .reveal-on-scroll:nth-child(2) { transform: translateY(52px); }
.gallery-scroll .reveal-on-scroll:nth-child(4) { transform: translateY(46px); }
.gallery-scroll .reveal-on-scroll:nth-child(6) { transform: translateY(56px); }
.reveal-on-scroll.is-visible { opacity: 1; transform: translateY(0); }
.lightbox-backdrop {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(4, 4, 4, .86);
  opacity: 0;
  pointer-events: none;
  transition: opacity .24s ease;
}
.lightbox-backdrop.is-open { opacity: 1; pointer-events: auto; }
.lightbox-backdrop img {
  max-width: min(1120px, 92vw);
  max-height: 86vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 26px 90px rgba(0,0,0,.55);
  transform: scale(.96);
  transition: transform .24s ease;
}
.lightbox-backdrop.is-open img { transform: scale(1); }
.lightbox-close {
  position: fixed;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: var(--cream);
  color: #15100a;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}
@media (prefers-reduced-motion: reduce) {
  .btn,
  .reveal-on-scroll,
  .lightbox-backdrop,
  .lightbox-backdrop img { transition: none; }
}

.menu-toggle {
  display: none;
  position: relative;
  width: 46px;
  height: 42px;
  border: 1px solid rgba(225, 183, 100, .46);
  border-radius: 6px;
  background: rgba(255, 255, 255, .06);
  cursor: pointer;
}
.menu-toggle span {
  position: absolute;
  left: 11px;
  right: 11px;
  height: 2px;
  border-radius: 999px;
  background: var(--gold-soft);
  transition: transform .22s ease, opacity .22s ease, top .22s ease;
}
.menu-toggle span:nth-child(1) { top: 12px; }
.menu-toggle span:nth-child(2) { top: 20px; }
.menu-toggle span:nth-child(3) { top: 28px; }
.menu-toggle.is-open span:nth-child(1) { top: 20px; transform: rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(3) { top: 20px; transform: rotate(-45deg); }

@media (max-width: 980px) {
  .site-header { display: grid; grid-template-columns: 1fr auto; align-items: center; }
  .menu-toggle { display: inline-flex; grid-column: 2; grid-row: 1; }
  .site-nav {
    display: none;
    width: 100%;
    grid-column: 1 / -1;
    flex-direction: column;
    gap: 0;
    padding: 10px 0 4px;
  }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: 12px 0; border-top: 1px solid rgba(225, 183, 100, .22); }
  .header-actions { grid-column: 1 / -1; }
  .hero,
  .split-section,
  .category-intro { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  body { padding-top: var(--header-height, 126px); }
  .site-header { gap: 12px; padding: 10px 5vw; }
  .brand img { width: 160px; max-height: 76px; }
  .header-actions { justify-content: space-between; width: 100%; gap: 10px; }
  .header-booking { flex: 1; }
  .hero,
  .section,
  .split-section { padding: 58px 5vw; }
  .hero h1,
  .menu-hero h1 { font-size: clamp(38px, 13vw, 58px); }
  .hero p,
  .menu-hero > p { font-size: 16px; }
  .button-row .btn { width: 100%; }
  .hours-list div,
  .info-list,
  .menu-item { grid-template-columns: 1fr; gap: 4px; }
  .menu-item > strong { text-align: left; }
  .gallery-scroll figure,
  .gallery-scroll figure:nth-child(n) {
    flex-basis: min(78vw, 360px);
    transform: none;
  }
}
