:root {
  --black: #000000;
  --ink: #080706;
  --panel: #11100d;
  --gold: #d9b866;
  --gold-soft: #9e7928;
  --ivory: #f7f1e5;
  --muted: #b8b3a6;
  --line: rgba(217, 184, 102, 0.34);
  --shadow: rgba(0, 0, 0, 0.58);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ivory);
  background: var(--black);
  font-family: Inter, Montserrat, Arial, sans-serif;
  line-height: 1.6;
}

body.menu-open,
body.lightbox-open {
  overflow: hidden;
}

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

a,
button {
  color: inherit;
  font: inherit;
}

button {
  cursor: pointer;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px clamp(20px, 4vw, 58px);
  background: #000;
  border-bottom: 1px solid rgba(217, 184, 102, 0.48);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.82);
}

.site-header::after {
  content: "";
  position: absolute;
  right: clamp(20px, 4vw, 58px);
  bottom: -1px;
  left: clamp(20px, 4vw, 58px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(217, 184, 102, 0.86), transparent);
}

.brand {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: clamp(12px, 1.4vw, 18px);
  text-decoration: none;
  letter-spacing: 0;
}

.brand-logo {
  width: clamp(190px, 20vw, 286px);
  max-height: 56px;
  object-fit: contain;
  filter: drop-shadow(0 0 16px rgba(217, 184, 102, 0.28));
}

.brand-location {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  border-left: 1px solid rgba(217, 184, 102, 0.52);
  padding-left: clamp(12px, 1.4vw, 18px);
  color: var(--gold);
  font-size: clamp(11px, 1vw, 13px);
  font-weight: 800;
  letter-spacing: 2.8px;
  line-height: 1;
  text-transform: uppercase;
  text-shadow: 0 0 18px rgba(217, 184, 102, 0.24);
  white-space: nowrap;
}

.site-nav {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.4vw, 34px);
  padding: 10px 0;
  background: #000;
}

.site-nav a {
  position: relative;
  color: rgba(247, 241, 229, 0.88);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-decoration: none;
  text-transform: uppercase;
}

.site-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 1px;
  background: var(--gold);
  opacity: 0;
  transform: scaleX(0.4);
  transition: opacity 180ms ease, transform 180ms ease;
}

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

.site-nav a:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: #000;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--gold);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 130px clamp(22px, 7vw, 110px) 86px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.95), rgba(5, 5, 5, 0.56) 38%, rgba(5, 5, 5, 0.2)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.74), transparent 46%),
    url("assets/moon-hero.jpg") center / cover;
  transform: scale(1.02);
}

.hero-content {
  position: relative;
  max-width: 710px;
}

.hero-logo {
  width: min(620px, 84vw);
  margin: 0 0 14px;
  mix-blend-mode: screen;
  filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.42)) drop-shadow(0 0 22px rgba(217, 184, 102, 0.18));
}

.hero-location {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin: 0 0 24px;
  color: var(--gold);
  font-size: clamp(13px, 1.3vw, 17px);
  font-weight: 900;
  letter-spacing: 7px;
  line-height: 1;
  text-transform: uppercase;
  text-shadow: 0 0 22px rgba(217, 184, 102, 0.34);
}

.hero-location::before,
.hero-location::after {
  content: "";
  width: clamp(38px, 6vw, 88px);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}

.hero-location::after {
  background: linear-gradient(90deg, var(--gold), transparent);
}

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

h1,
h2,
h3 {
  margin: 0;
  font-family: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 0.98;
}

h1 {
  max-width: 690px;
  font-size: clamp(54px, 8.2vw, 118px);
}

h2 {
  font-size: clamp(38px, 5vw, 72px);
}

h3 {
  font-size: 27px;
}

.hero-copy {
  max-width: 550px;
  margin: 26px 0 0;
  color: rgba(247, 241, 229, 0.82);
  font-size: clamp(16px, 1.4vw, 19px);
}

.hero-actions,
.reservation-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid var(--gold);
  text-decoration: none;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.5px;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(217, 184, 102, 0.16);
}

.button-primary {
  color: #050505;
  background: linear-gradient(180deg, #f0d88b, var(--gold));
}

.button-ghost {
  color: var(--ivory);
  background: #000;
}

.hero-strip {
  position: absolute;
  right: clamp(22px, 5vw, 72px);
  bottom: 22px;
  left: clamp(22px, 5vw, 72px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid rgba(212, 175, 55, 0.18);
  background: rgba(5, 5, 5, 0.42);
  backdrop-filter: blur(10px);
}

.hero-strip span {
  min-width: 0;
  padding: 16px 14px;
  color: rgba(247, 241, 229, 0.88);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-align: center;
  text-transform: uppercase;
}

.hero-strip span + span {
  border-left: 1px solid rgba(212, 175, 55, 0.18);
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: clamp(34px, 6vw, 90px);
  align-items: center;
  padding: clamp(72px, 10vw, 132px) clamp(22px, 7vw, 110px);
  background:
    radial-gradient(circle at 82% 12%, rgba(212, 175, 55, 0.12), transparent 28%),
    linear-gradient(180deg, #050505, #0b0a09);
}

.intro-copy p:not(.eyebrow),
.text-panel p,
.band-content p,
.menu-preview p,
.reservation-card p,
.site-footer p {
  color: var(--muted);
}

.intro-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
}

.intro-stats div {
  padding: 28px 18px;
  text-align: center;
}

.intro-stats div + div {
  border-left: 1px solid var(--line);
}

.intro-stats strong {
  display: block;
  color: var(--gold);
  font-family: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  font-size: 42px;
  line-height: 1;
}

.intro-stats span {
  display: block;
  margin-top: 8px;
  color: rgba(247, 241, 229, 0.76);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  min-height: 720px;
  background: var(--black);
}

.split-section.reverse {
  direction: rtl;
}

.split-section.reverse > * {
  direction: ltr;
}

.media-panel {
  min-height: 520px;
  overflow: hidden;
}

.media-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.text-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(48px, 7vw, 104px);
  border-top: 1px solid rgba(212, 175, 55, 0.12);
  border-bottom: 1px solid rgba(212, 175, 55, 0.12);
  background:
    linear-gradient(135deg, rgba(212, 175, 55, 0.1), transparent 38%),
    var(--ink);
}

.text-panel p {
  max-width: 620px;
  margin: 22px 0 0;
}

.feature-list {
  display: grid;
  gap: 12px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  border-bottom: 1px solid rgba(212, 175, 55, 0.18);
  padding: 0 0 12px;
  color: rgba(247, 241, 229, 0.9);
}

.feature-list li::before {
  content: "—";
  margin-right: 10px;
  color: var(--gold);
}

.feature-band {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: clamp(70px, 10vw, 140px) clamp(22px, 7vw, 110px);
}

.feature-band img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 5, 5, 0.86), rgba(5, 5, 5, 0.52), rgba(5, 5, 5, 0.18));
}

.band-content {
  position: relative;
  z-index: 1;
  max-width: 580px;
}

.band-content p:not(.eyebrow) {
  font-size: 18px;
}

.inline-link {
  width: fit-content;
  margin-top: 32px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-decoration: none;
  text-transform: uppercase;
  border-bottom: 1px solid var(--gold);
}

.menu-preview,
.prices,
.gallery {
  padding: clamp(72px, 10vw, 132px) clamp(22px, 7vw, 110px);
  background:
    linear-gradient(180deg, #090909, #050505),
    var(--black);
}

.menu-preview > h2,
.section-heading {
  max-width: 820px;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 48px;
  border: 1px solid var(--line);
  background: var(--line);
}

.menu-grid article {
  min-height: 250px;
  padding: 30px 24px;
  background: #0c0b09;
}

.menu-grid span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.5px;
}

.menu-grid h3 {
  margin-top: 34px;
}

.menu-grid p {
  margin-bottom: 0;
}

.prices {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 8%, rgba(212, 175, 55, 0.14), transparent 30%),
    radial-gradient(circle at 92% 62%, rgba(212, 175, 55, 0.1), transparent 34%),
    #060606;
}

.prices::before {
  content: "";
  position: absolute;
  inset: 30px;
  pointer-events: none;
  border: 1px solid rgba(212, 175, 55, 0.18);
}

.prices .section-heading {
  position: relative;
  z-index: 1;
}

.prices .section-heading p:not(.eyebrow) {
  color: var(--muted);
}

.price-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 46px;
}

.price-card {
  min-height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid rgba(212, 175, 55, 0.38);
  background:
    linear-gradient(145deg, rgba(212, 175, 55, 0.11), transparent 34%),
    rgba(13, 12, 10, 0.92);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
}

.price-card.featured {
  border-color: rgba(212, 175, 55, 0.68);
  background:
    linear-gradient(145deg, rgba(212, 175, 55, 0.18), transparent 42%),
    rgba(16, 14, 10, 0.95);
}

.price-card-head {
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.26);
}

.price-card-head span {
  display: block;
  color: rgba(247, 241, 229, 0.78);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.price-card-head strong {
  display: block;
  margin-top: 8px;
  color: var(--gold);
  font-family: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  font-size: clamp(32px, 3.6vw, 48px);
  font-weight: 500;
  line-height: 1;
}

.price-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 0 0;
}

.price-row span {
  color: rgba(247, 241, 229, 0.9);
  font-size: 20px;
  font-weight: 700;
}

.price-row small {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.price-row strong {
  flex: 0 0 auto;
  color: var(--gold);
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 900;
  line-height: 0.92;
}

.price-note {
  position: relative;
  z-index: 1;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr 1fr;
  grid-auto-rows: 300px;
  gap: 16px;
  margin-top: 44px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.2);
  padding: 0;
  background: #111;
}

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

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

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

.gallery-item:hover img {
  transform: scale(1.04);
  filter: brightness(1.08);
}

.reservation {
  position: relative;
  min-height: 650px;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 90px 22px;
}

.reservation > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reservation::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(5, 5, 5, 0.54);
}

.reservation-card {
  position: relative;
  z-index: 1;
  width: min(680px, 100%);
  padding: clamp(36px, 5vw, 58px);
  border: 1px solid var(--line);
  background: rgba(5, 5, 5, 0.72);
  backdrop-filter: blur(16px);
  text-align: center;
}

.reservation-actions {
  justify-content: center;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 26px;
  align-items: center;
  padding: 34px clamp(22px, 5vw, 72px);
  border-top: 1px solid var(--line);
  background: #050505;
}

.site-footer strong {
  font-family: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  font-size: 25px;
  font-weight: 500;
}

.site-footer p {
  margin: 4px 0 0;
}

address {
  display: grid;
  gap: 2px;
  color: var(--muted);
  font-style: normal;
  text-align: right;
}

.back-top {
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.3px;
  text-decoration: none;
  text-transform: uppercase;
}

.dialog,
.lightbox {
  position: fixed;
  z-index: 80;
  inset: 0;
  display: none;
  place-items: center;
  padding: 22px;
  background: rgba(0, 0, 0, 0.82);
}

.dialog.active,
.lightbox.active {
  display: grid;
}

.dialog-panel {
  width: min(620px, 100%);
  padding: clamp(30px, 5vw, 48px);
  border: 1px solid var(--gold);
  background: #090806;
  box-shadow: 0 30px 90px var(--shadow);
}

.dialog-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 30px;
}

.dialog-list span {
  padding: 14px 16px;
  border: 1px solid rgba(212, 175, 55, 0.22);
  color: rgba(247, 241, 229, 0.9);
}

.close-dialog,
.close-lightbox {
  position: absolute;
  top: 20px;
  right: 20px;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  color: var(--gold);
  background: rgba(5, 5, 5, 0.7);
  font-size: 26px;
}

.lightbox img {
  max-width: min(1100px, 92vw);
  max-height: 86vh;
  object-fit: contain;
  border: 1px solid var(--line);
  box-shadow: 0 30px 90px var(--shadow);
}

@media (max-width: 980px) {
  .site-header {
    padding: 14px 20px;
  }

  .brand-logo {
    width: clamp(166px, 34vw, 220px);
  }

  .brand-location {
    letter-spacing: 2px;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 72px;
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border: 1px solid rgba(217, 184, 102, 0.42);
    background: #000;
    padding: 8px;
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.72);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    padding: 14px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.12);
  }

  .hero {
    min-height: 92svh;
    padding: 112px 22px 92px;
  }

  .hero-bg {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.44) 40%, rgba(0, 0, 0, 0.92)),
      url("assets/moon-mobile-story.jpg") center / cover;
  }

  .hero-strip {
    grid-template-columns: repeat(2, 1fr);
    right: 16px;
    left: 16px;
  }

  .hero-strip span:nth-child(3) {
    border-left: 0;
    border-top: 1px solid rgba(212, 175, 55, 0.18);
  }

  .hero-strip span:nth-child(4) {
    border-top: 1px solid rgba(212, 175, 55, 0.18);
  }

  .intro,
  .split-section {
    grid-template-columns: 1fr;
  }

  .intro-stats {
    grid-template-columns: 1fr;
  }

  .intro-stats div + div {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .split-section {
    min-height: auto;
  }

  .media-panel {
    min-height: 380px;
  }

  .text-panel {
    padding: 48px 22px;
  }

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

  .price-grid {
    grid-template-columns: 1fr;
  }

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

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

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

  .site-footer {
    grid-template-columns: 1fr;
  }

  address {
    text-align: left;
  }
}

@media (max-width: 620px) {
  h1 {
    font-size: 52px;
  }

  h2 {
    font-size: 39px;
  }

  .hero-copy {
    font-size: 16px;
  }

  .brand {
    gap: 10px;
  }

  .brand-logo {
    width: min(154px, 42vw);
  }

  .brand-location {
    min-height: 24px;
    padding-left: 10px;
    font-size: 10px;
    letter-spacing: 1.6px;
  }

  .hero-logo {
    width: min(440px, 92vw);
    margin-bottom: 12px;
  }

  .hero-location {
    gap: 10px;
    margin-bottom: 20px;
    font-size: 12px;
    letter-spacing: 4px;
  }

  .hero-location::before,
  .hero-location::after {
    width: 34px;
  }

  .hero-actions,
  .reservation-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-strip {
    display: none;
  }

  .intro,
  .menu-preview,
  .prices,
  .gallery {
    padding: 64px 22px;
  }

  .prices::before {
    inset: 16px;
  }

  .feature-band {
    min-height: 520px;
    padding: 60px 22px;
  }

  .menu-grid,
  .price-grid,
  .gallery-grid,
  .dialog-list {
    grid-template-columns: 1fr;
  }

  .price-card {
    min-height: 0;
  }

  .price-row {
    align-items: flex-start;
  }

  .price-row strong {
    font-size: 34px;
  }

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

  .reservation-card {
    text-align: left;
  }

  .reservation-actions {
    align-items: stretch;
  }
}
