:root {
  --ink: #111713;
  --charcoal: #18211c;
  --panel: #202b24;
  --ivory: #fff6e8;
  --mist: rgba(255, 246, 232, .72);
  --gold: #d8a45f;
  --terracotta: #bd6541;
  --olive: #7c8954;
  --line: rgba(255, 246, 232, .12);
  --shadow: 0 24px 80px rgba(0, 0, 0, .32);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
section { scroll-margin-top: 92px; }
body {
  margin: 0;
  color: var(--ivory);
  background: var(--ink);
  font-family: "Work Sans", "Noto Sans SC", "Noto Sans Khmer", system-ui, sans-serif;
}

body.is-lightbox-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }
button, select { font: inherit; }

.container-shell {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  z-index: 50;
  inset: 0 0 auto;
  border-bottom: 1px solid var(--line);
  background: rgba(17, 23, 19, .78);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand, h1, h2, .footer-brand {
  font-family: "Cormorant Garamond", Georgia, serif;
}

.brand {
  font-size: 27px;
  font-weight: 700;
  letter-spacing: .16em;
}

.nav-links {
  display: flex;
  gap: 30px;
  color: rgba(255, 246, 232, .78);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.nav-links a:hover { color: var(--gold); }

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

.lang-select {
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 14px;
  color: var(--ivory);
  background: rgba(255, 255, 255, .06);
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 14px 22px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.btn-primary {
  color: #1b1711;
  background: var(--gold);
}

.btn-secondary {
  border: 1px solid var(--line);
  color: var(--ivory);
  background: rgba(255, 255, 255, .04);
}

.hero {
  min-height: 100svh;
  padding: 122px 0 64px;
  background: var(--ink);
}

.hero-cover {
  position: relative;
  display: grid;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  inset: 0;
}

.hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(17, 23, 19, .88), rgba(17, 23, 19, .58), rgba(17, 23, 19, .8)),
    linear-gradient(0deg, rgba(17, 23, 19, .76), rgba(17, 23, 19, .06));
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: calc(100svh - 186px);
  grid-template-columns: minmax(0, .72fr);
  gap: clamp(30px, 5vw, 74px);
  align-items: center;
}

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

.eyebrow {
  margin: 0;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

h1 {
  margin: 20px 0;
  font-size: clamp(74px, 13vw, 164px);
  line-height: .86;
}

h2 {
  margin: 18px 0 0;
  font-size: clamp(42px, 6vw, 76px);
  line-height: .96;
}

h3 { margin: 0; }

.hero-copy p:not(.eyebrow),
.section-copy {
  color: var(--mist);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.section-pad {
  padding: clamp(74px, 10vw, 132px) 0;
}

.bg-ink { background: var(--ink); }
.bg-charcoal { background: var(--charcoal); }

.about-grid,
.location-grid,
.hours-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: clamp(34px, 6vw, 84px);
  align-items: end;
}

.about-images {
  display: grid;
  grid-template-columns: .8fr 1fr;
  gap: 16px;
}

.media-frame {
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--panel);
}

.media-frame.tall { aspect-ratio: 4 / 5; }
.media-frame.lower { margin-top: 58px; }

.tags {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 32px;
}

.tags span {
  border: 1px solid var(--line);
  padding: 13px 10px;
  color: rgba(255, 246, 232, .78);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-align: center;
  text-transform: uppercase;
}

.gold-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(216, 164, 95, .7), transparent);
}

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

.section-head.centered {
  margin: 0 auto;
  text-align: center;
}

.carousel-shell {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  margin-top: 48px;
}

.snap-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 32%);
  gap: 18px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-behavior: smooth;
  scroll-snap-type: inline mandatory;
  scrollbar-width: none;
  padding: 6px 4px 18px;
}

.snap-track::-webkit-scrollbar { display: none; }

.carousel-arrow {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ivory);
  background: rgba(255, 246, 232, .06);
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
  transition: transform .22s ease, border-color .22s ease, background .22s ease;
}

.carousel-arrow:hover {
  border-color: rgba(216, 164, 95, .7);
  background: rgba(216, 164, 95, .15);
  transform: translateY(-2px);
}

.menu-card,
.gallery-track button {
  position: relative;
  cursor: pointer;
  padding: 8px;
  border: 1px solid var(--line);
  background: rgba(255, 246, 232, .04);
  scroll-snap-align: start;
  transition: transform .32s ease, border-color .32s ease, box-shadow .32s ease;
}

.menu-card:hover,
.gallery-track button:hover {
  border-color: rgba(216, 164, 95, .54);
  box-shadow: 0 18px 46px rgba(0, 0, 0, .28);
  transform: translateY(-6px);
}

.menu-card {
  height: min(62vw, 560px);
}

.menu-card img {
  object-fit: contain;
  background: #0c110e;
}

.events-section {
  position: relative;
  overflow: hidden;
  background: var(--charcoal);
}

.events-bg {
  position: absolute;
  inset: 0;
  opacity: .28;
}

.events-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(17,23,19,.96), rgba(17,23,19,.78), rgba(17,23,19,.92));
}

.events-content {
  position: relative;
  z-index: 1;
  max-width: 1180px;
}

.events-content h2,
.events-content .section-copy {
  max-width: 760px;
}

.gallery-track {
  grid-auto-columns: minmax(260px, 30%);
}

.gallery-track .media-frame {
  height: 320px;
}

.map-frame {
  aspect-ratio: 4 / 3;
}

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

.contact-list {
  display: grid;
  gap: 14px;
  margin-top: 34px;
  color: rgba(255, 246, 232, .78);
}

.contact-list a:hover { color: var(--gold); }

.hours-grid {
  align-items: start;
}

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

.hours-cards div {
  border: 1px solid var(--line);
  padding: 28px;
  background: var(--charcoal);
}

.hours-cards div:last-child {
  grid-column: 1 / -1;
}

.hours-cards strong {
  display: block;
  margin-top: 18px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 40px;
  line-height: 1;
}

.hours-cards span {
  display: block;
  margin-top: 8px;
  color: var(--mist);
  font-size: 22px;
}

.footer {
  border-top: 1px solid var(--line);
  padding: 56px 0 92px;
  background: #0d130f;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr .7fr .9fr .6fr;
  gap: 34px;
}

.footer-brand {
  margin: 0 0 14px;
  font-size: 34px;
  letter-spacing: .16em;
}

.footer h3 {
  margin-bottom: 16px;
  color: var(--gold);
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.footer p,
.footer a {
  display: block;
  color: rgba(255, 246, 232, .72);
  line-height: 1.8;
}

.mobile-bar {
  display: none;
}

.lightbox {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.lightbox[aria-hidden="false"] {
  display: flex;
}

.lightbox__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(0, 0, 0, .84);
}

.lightbox__panel {
  position: relative;
  z-index: 1;
  width: min(100%, 980px);
  max-height: 90svh;
}

.lightbox__panel img {
  width: 100%;
  height: auto;
  max-height: 86svh;
  object-fit: contain;
  background: #050705;
}

.lightbox__close {
  position: absolute;
  right: 0;
  bottom: calc(100% + 10px);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 14px;
  color: var(--ivory);
  background: rgba(255, 255, 255, .08);
  cursor: pointer;
}

@media (max-width: 880px) {
  .desktop-book, .nav-links { display: none; }
  .header-inner { min-height: 68px; }
  .hero { padding-top: 94px; }
  .hero-grid,
  .about-grid,
  .location-grid,
  .hours-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .hero-grid {
    min-height: calc(92svh - 140px);
    grid-template-columns: 1fr;
  }
  .snap-track {
    grid-auto-columns: minmax(250px, 82%);
  }
  .carousel-arrow {
    display: none;
  }
  .carousel-shell {
    grid-template-columns: 1fr;
  }
  .menu-card {
    height: 470px;
  }
  .gallery-track .media-frame {
    height: 300px;
  }
  .tags,
  .tags,
  .hours-cards {
    grid-template-columns: 1fr;
  }
  .media-frame.lower { margin-top: 0; }
  .footer { padding-bottom: 120px; }
  .mobile-bar {
    position: fixed;
    z-index: 60;
    inset: auto 0 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid var(--line);
    background: rgba(17, 23, 19, .96);
    backdrop-filter: blur(18px);
  }
  .mobile-bar a {
    padding: 16px;
    text-align: center;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
  }
  .mobile-bar a:first-child {
    border-right: 1px solid var(--line);
  }
}
