/* ============================================================
   ORCHARD TABLE HOUSE — Main Stylesheet
   ============================================================
   1.  Fonts & Variables
   2.  Reset & Base
   3.  Typography
   4.  Layout Utilities
   5.  Skip Link & Focus
   6.  Scrollbar
   7.  Scroll Reveal
   8.  Section Patterns
   9.  Header & Navigation
   10. Footer
   11. Buttons
   12. Card Base Classes
   13. Promo Popup
   14. Responsive Breakpoints
   ============================================================ */

/* ── 1. Fonts & Variables ──────────────────────────────── */

@font-face {
  font-family: 'Lato';
  src: url('/assets/fonts/Lato/Lato-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Lato';
  src: url('/assets/fonts/Lato/Lato-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --color-bg: #070604;
  --color-bg-soft: #100b08;
  --color-panel: #15100c;
  --color-orange: #f65a17;
  --color-orange-soft: #ff8145;
  --color-gold: #c88736;
  --color-cream: #fff3df;
  --color-white: #ffffff;
  --color-muted: #d9c8b3;
  --color-border: rgba(246, 90, 23, 0.35);
  --color-border-sub: rgba(255, 255, 255, 0.1);

  --font-primary: 'Lato', ui-sans-serif, system-ui, sans-serif;

  --radius-sm: 16px;
  --radius-md: 28px;
  --radius-lg: 40px;
  --radius-pill: 999px;

  --shadow-card: 0 24px 64px rgba(0, 0, 0, 0.5);
  --shadow-orange: 0 16px 36px rgba(246, 90, 23, 0.22);

  --section-pad: clamp(60px, 8vw, 100px);
  --wrap-width: min(1180px, calc(100% - 36px));

  --header-height: 80px;
}

/* ── 2. Reset & Base ───────────────────────────────────── */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--color-bg);
  background: -webkit-linear-gradient(
    to bottom right,
    var(--color-bg),
    var(--color-bg-soft)
  );
  background: linear-gradient(
    to bottom right,
    var(--color-bg),
    var(--color-bg-soft)
  );
  color: var(--color-cream);
  font-family: var(--font-primary);
  font-size: 1rem;
  line-height: 1.55;
  overflow-x: hidden;
  min-height: 100vh;
}

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

ul,
ol {
  list-style: none;
}

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

button {
  font-family: var(--font-primary);
}

address {
  font-style: normal;
}

/* ── 3. Typography ─────────────────────────────────────── */

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-primary);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--color-white);
}

h1 {
  font-size: clamp(2.8rem, 7vw, 7.5rem);
}
h2 {
  font-size: clamp(2.2rem, 4.5vw, 4.8rem);
}
h3 {
  font-size: clamp(1.5rem, 2.4vw, 2.3rem);
}
h4 {
  font-size: 1.4rem;
}

p {
  color: var(--color-muted);
  font-size: 1.05rem;
  line-height: 1.65;
}

strong {
  font-weight: 700;
  color: var(--color-cream);
}

em {
  font-style: italic;
  color: var(--color-cream);
}

/* ── 4. Layout Utilities ───────────────────────────────── */

.wrap {
  width: var(--wrap-width);
  margin-inline: auto;
}

.section {
  padding: var(--section-pad) 0;
  position: relative;
}

.section--alt {
  background: linear-gradient(180deg, var(--color-bg-soft), var(--color-bg));
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ── 5. Skip Link & Focus ──────────────────────────────── */

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 99999;
  background: var(--color-orange);
  color: #160804;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.6rem 1.2rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 1rem;
}

:focus-visible {
  outline: 2px solid var(--color-orange);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ── 6. Scrollbar ──────────────────────────────────────── */

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--color-bg);
}

::-webkit-scrollbar-thumb {
  background: var(--color-orange);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-orange-soft);
}

* {
  scrollbar-width: thin;
  scrollbar-color: var(--color-orange) var(--color-bg);
}

/* ── 7. Scroll Reveal ──────────────────────────────────── */

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal][data-reveal-delay='1'] {
  transition-delay: 0.1s;
}
[data-reveal][data-reveal-delay='2'] {
  transition-delay: 0.2s;
}
[data-reveal][data-reveal-delay='3'] {
  transition-delay: 0.3s;
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ── 8. Section Patterns ───────────────────────────────── */

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--color-orange-soft);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 0.85rem;
}

.section-eyebrow::before {
  content: '';
  display: block;
  width: 36px;
  height: 1px;
  background: var(--color-orange);
  flex-shrink: 0;
}

.section-title {
  font-size: clamp(2.2rem, 4.5vw, 4.8rem);
  font-weight: 700;
  line-height: 0.97;
  letter-spacing: -0.03em;
  color: var(--color-white);
  margin-bottom: 1rem;
}

.section-lead {
  font-size: 1.05rem;
  color: var(--color-muted);
  line-height: 1.65;
  max-width: 560px;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  margin-bottom: 2.8rem;
}

.section-head .section-lead {
  text-align: right;
  margin-left: auto;
}

/* ── 9. Header & Navigation ────────────────────────────── */

.site-header {
  position: fixed;
  inset: 14px 0 auto 0;
  z-index: 100;
  pointer-events: none;
}

.site-header__inner {
  /* isolation: isolate creates a stacking context so ::before z-index:-1 works,
     but does NOT make this a containing block for position:fixed children —
     unlike backdrop-filter which would trap the mobile nav inside the pill. */
  isolation: isolate;
  position: relative;
  pointer-events: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.65rem 0.8rem;
  border-radius: var(--radius-pill);
}

/* Pill glass background lives on ::before so backdrop-filter never
   becomes a containing block for position:fixed descendants. */
.site-header__inner::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-pill);
  background: rgba(7, 5, 3, 0.65);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
  transition: background 0.3s ease, box-shadow 0.3s ease;
  z-index: -1;
  pointer-events: none;
}

.site-header.header--scrolled .site-header__inner::before {
  background: rgba(7, 5, 3, 0.92);
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.55);
}

.site-header__brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.site-header__brand img {
  width: 140px;
  height: auto;
  display: block;
}

.site-header__cta {
  font-size: 0.88rem;
  min-height: 44px;
  padding: 0 1.1rem;
  flex-shrink: 0;
}

/* ── Navigation ── */

.main-nav__list {
  display: flex;
  gap: 0;
  align-items: center;
}

.main-nav__link {
  display: block;
  padding: 0.65rem 0.85rem;
  border-radius: var(--radius-pill);
  color: #d4c4b0;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition:
    color 0.2s ease,
    background 0.2s ease;
  white-space: nowrap;
}

.main-nav__link:hover {
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.08);
}

.main-nav__link--active {
  color: var(--color-orange-soft);
}

.main-nav__link--active:hover {
  color: var(--color-orange);
  background: rgba(246, 90, 23, 0.08);
}

/* ── Hamburger Toggle ── */

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
  z-index: 110;
  position: relative;
}

.nav-toggle__bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-cream);
  border-radius: 2px;
  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}

.nav-toggle--active .nav-toggle__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle--active .nav-toggle__bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-toggle--active .nav-toggle__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── 10. Footer ────────────────────────────────────────── */

.site-footer {
  border-top: 1px solid var(--color-border-sub);
  background: linear-gradient(
    180deg,
    var(--color-bg-soft) 0%,
    var(--color-bg) 100%
  );
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr 1fr;
  gap: 3rem;
  padding: clamp(48px, 6vw, 80px) 0 clamp(32px, 4vw, 56px);
}

.site-footer__logo img {
  width: 148px;
  height: auto;
  display: block;
}

.site-footer__tagline {
  color: var(--color-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-top: 1rem;
}

.site-footer__desc {
  color: rgba(217, 200, 179, 0.55);
  font-size: 0.88rem;
  line-height: 1.6;
  margin-top: 0.6rem;
}

.site-footer__heading {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-orange-soft);
  margin-bottom: 1.1rem;
}

.site-footer__nav {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.site-footer__nav a,
.site-footer__address a,
.site-footer__address p {
  color: var(--color-muted);
  font-size: 0.93rem;
  line-height: 1.8;
  transition: color 0.2s ease;
  display: block;
}

.site-footer__nav a:hover,
.site-footer__address a:hover {
  color: var(--color-orange-soft);
}

.site-footer__hours {
  color: rgba(217, 200, 179, 0.55);
  font-size: 0.85rem;
  line-height: 1.7;
  margin-top: 1rem;
}

.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  padding: 1.25rem 0;
  border-top: 1px solid var(--color-border-sub);
  flex-wrap: wrap;
}

.site-footer__copy {
  color: rgba(217, 200, 179, 0.4);
  font-size: 0.82rem;
  margin: 0;
  line-height: 1.5;
}

.site-footer__legal {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.site-footer__legal a {
  color: rgba(217, 200, 179, 0.4);
  font-size: 0.82rem;
  transition: color 0.2s ease;
}

.site-footer__legal a:hover {
  color: var(--color-muted);
}

/* ── 11. Buttons ───────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 52px;
  padding: 0 1.4rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease,
    color 0.2s ease;
  white-space: nowrap;
  line-height: 1;
}

.btn:focus-visible {
  outline: 2px solid var(--color-orange);
  outline-offset: 3px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-orange), #b83b0a);
  color: #160804;
  box-shadow: var(--shadow-orange);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 46px rgba(246, 90, 23, 0.36);
  color: #160804;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  color: var(--color-cream);
  border: 1px solid var(--color-border-sub);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--color-white);
}

.btn-ghost {
  background: transparent;
  color: var(--color-orange);
  text-decoration: underline;
  text-underline-offset: 3px;
  min-height: auto;
  padding: 0.25rem 0;
}

.btn-ghost:hover {
  color: var(--color-orange-soft);
}

/* ── 12. Card Base Classes ─────────────────────────────── */

.card {
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border-sub);
  background: var(--color-panel);
  overflow: hidden;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: var(--color-border);
}

.card--glass {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-color: rgba(255, 255, 255, 0.12);
}

/* Atlas card: image left + content right */
.card--atlas {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 1.1rem;
  padding: 1rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border-sub);
  background: rgba(255, 255, 255, 0.04);
  transition:
    transform 0.25s ease,
    border-color 0.25s ease;
}

.card--atlas:hover {
  transform: translateY(-4px);
  border-color: var(--color-border);
}

.card--atlas__img {
  width: 160px;
  height: 160px;
  object-fit: cover;
  border-radius: 18px;
  flex-shrink: 0;
}

/* Tile card: full-image fill + bottom text overlay */
.card--tile {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid var(--color-border-sub);
  transition:
    transform 0.25s ease,
    border-color 0.25s ease;
}

.card--tile:hover {
  transform: translateY(-5px);
  border-color: var(--color-border);
}

.card--tile__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: transform 0.5s ease;
}

.card--tile:hover .card--tile__img {
  transform: scale(1.04);
}

.card--tile::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.88) 0%,
    rgba(0, 0, 0, 0.2) 55%,
    transparent 100%
  );
  z-index: 1;
}

.card--tile__body {
  position: relative;
  z-index: 2;
  padding: 1.5rem 1.25rem 1.25rem;
}

/* Event poster card */
.card--event {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow-card);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.card--event:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 36px 80px rgba(0, 0, 0, 0.6);
}

.card--event img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  display: block;
}

/* VIP tier card */
.card--vip {
  border-radius: var(--radius-md);
  padding: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  box-shadow: var(--shadow-card);
}

.card--vip:hover {
  transform: rotate(0deg) translateY(-6px) !important;
  box-shadow: 0 36px 80px rgba(0, 0, 0, 0.6);
}

.card--vip img {
  border-radius: calc(var(--radius-md) - 6px);
  width: 100%;
  aspect-ratio: 1055 / 1491;
  object-fit: contain;
  max-height: 480px;

  display: block;
}

/* Menu category card */
.card--menu {
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border-sub);
  background: var(--color-panel);
  overflow: hidden;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease;
}

.card--menu:hover {
  transform: translateY(-4px);
  border-color: var(--color-border);
}

.menu-category__image {
  position: relative;
  overflow: hidden;
}

.menu-category__image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.card--menu:hover .menu-category__image img {
  transform: scale(1.04);
}

/* ── 13. Promo Popup ───────────────────────────────────── */

.promo-popup {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.promo-popup[hidden] {
  display: none;
}

.promo-popup__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.promo-popup__card {
  position: relative;
  z-index: 1;
  background: var(--color-panel);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  max-width: 480px;
  width: 100%;
  box-shadow:
    var(--shadow-card),
    0 0 0 1px rgba(246, 90, 23, 0.08);
  animation: popup-in 0.35s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes popup-in {
  from {
    transform: scale(0.96) translateY(10px);
    opacity: 0;
  }
  to {
    transform: scale(1) translateY(0);
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .promo-popup__card {
    animation: none;
  }
}

.promo-popup__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--color-border-sub);
  color: var(--color-muted);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition:
    background 0.2s ease,
    color 0.2s ease;
}

.promo-popup__close:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--color-white);
}

.promo-popup__close svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  fill: none;
}

.promo-popup__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-orange-soft);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.promo-popup__eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--color-orange);
}

.promo-popup__title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.1;
  margin-bottom: 0.75rem;
  color: var(--color-white);
}

.promo-popup__text {
  font-size: 0.98rem;
  color: var(--color-muted);
  line-height: 1.65;
  margin-bottom: 1.75rem;
}

.promo-popup__actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.promo-popup__actions .btn {
  flex: 1;
  min-width: 140px;
  font-size: 0.92rem;
  min-height: 48px;
}

/* ── 14. Responsive Breakpoints ────────────────────────── */

@media (max-width: 1200px) {
  .site-footer__grid {
    gap: 2rem;
  }
}

@media (max-width: 980px) {
  /* ── Header mobile ── */
  .nav-toggle {
    display: flex;
  }

  .site-header__cta {
    display: none;
  }

  /* ── Full-screen mobile nav ── */
  .main-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(7, 6, 4, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    /* Higher than site-header (100) so the overlay covers the pill */
    z-index: 110;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* Top padding = header height + gap so first link is never clipped */
    padding: 100px 2rem 2rem;
    gap: 0;
  }

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

  /* Close button area — the X hamburger must be visible above the nav */
  .site-header {
    z-index: 120;
  }

  .main-nav__list {
    flex-direction: column;
    align-items: center;
    gap: 0;
    width: 100%;
  }

  .main-nav__link {
    font-size: clamp(1.35rem, 5vw, 1.75rem);
    padding: 0.75rem 1.5rem;
    letter-spacing: 0.02em;
    color: var(--color-cream);
    width: 100%;
    text-align: center;
    border-radius: var(--radius-md);
  }

  .main-nav__link:hover {
    background: rgba(255, 255, 255, 0.06);
    color: var(--color-white);
  }

  .main-nav__link--active {
    color: var(--color-orange);
  }

  /* Mobile-only CTA inside nav */
  .main-nav::after {
    content: '';
    display: block;
    width: 48px;
    height: 2px;
    background: rgba(246, 90, 23, 0.35);
    border-radius: 1px;
    margin-top: 1.5rem;
  }

  /* ── Section head stacked ── */
  .section-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .section-head .section-lead {
    text-align: left;
    margin-left: 0;
  }

  /* ── Cards ── */
  .card--atlas {
    grid-template-columns: 1fr;
  }

  .card--atlas__img {
    width: 100%;
    height: 200px;
  }

  /* ── Footer 2-col ── */
  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .site-footer__col--brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .site-header__brand img {
    width: 120px;
  }

  .card--tile {
    min-height: 300px;
  }
}

@media (max-width: 640px) {
  /* ── Footer single col ── */
  .site-footer__grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .site-footer__col--brand {
    grid-column: auto;
  }

  .site-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .site-footer__legal {
    gap: 1rem;
  }

  /* ── Promo popup ── */
  .promo-popup__actions {
    flex-direction: column;
  }

  .promo-popup__actions .btn {
    min-width: unset;
    width: 100%;
  }

  /* ── Sections ── */
  .section {
    padding: clamp(48px, 10vw, 70px) 0;
  }
}

@media (max-width: 480px) {
  .site-header__inner {
    padding: 0.55rem 0.7rem;
  }

  .site-header__brand img {
    width: 110px;
  }

  .btn {
    min-height: 52px;
    font-size: 0.97rem;
  }
}

/* ============================================================
   HOMEPAGE — Section styles
   ============================================================ */

/* ── Shared: chips ─────────────────────────────────────── */

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.25rem;
}

.chip {
  display: inline-flex;
  align-items: center;
  padding: 0.52rem 0.88rem;
  border: 1px solid var(--color-border);
  background: rgba(246, 90, 23, 0.07);
  color: var(--color-cream);
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 700;
  white-space: nowrap;
}

/* ── 1. Hero ───────────────────────────────────────────── */

.hero {
  min-height: 100svh;
  display: grid;
  align-items: end;
  position: relative;
  padding: 140px 0 72px;
  isolation: isolate;
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.05) contrast(1.04);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.9) 0%,
      rgba(0, 0, 0, 0.62) 42%,
      rgba(0, 0, 0, 0.16) 75%
    ),
    linear-gradient(0deg, rgba(7, 6, 4, 1) 0%, transparent 32%);
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 82px 82px;
  mask-image: linear-gradient(
    180deg,
    transparent,
    black 22%,
    black 68%,
    transparent
  );
  -webkit-mask-image: linear-gradient(
    180deg,
    transparent,
    black 22%,
    black 68%,
    transparent
  );
  opacity: 0.38;
  pointer-events: none;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 2rem;
  align-items: end;
}

.hero__title {
  font-size: clamp(2.8rem, 6.5vw, 7.5rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: var(--color-white);
  margin: 0.5rem 0 1.25rem;
  max-width: 900px;
}

.hero__lead {
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  color: #e8d7c2;
  max-width: 680px;
  margin-bottom: 1.75rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero__card {
  padding: 1.5rem 1.25rem;
  border-radius: var(--radius-md);
}

.hero__card-title {
  display: block;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.25;
  margin-bottom: 0.5rem;
}

.hero__card-sub {
  color: var(--color-muted);
  font-size: 0.9rem;
  margin-bottom: 0;
}

.hero__chips {
  margin-top: 1rem;
  flex-direction: column;
}

/* ── 2. Intro — editorial split ────────────────────────── */

.intro {
  background:
    linear-gradient(135deg, rgba(246, 90, 23, 0.05), transparent 45%),
    var(--color-bg-soft);
}

.intro__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.intro__frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.intro__img {
  width: 100%;
  height: 580px;
  object-fit: cover;
  display: block;
}

.intro__quote {
  position: absolute;
  left: 1.25rem;
  right: 1.25rem;
  bottom: 1.25rem;
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-sm);
}

.intro__quote em {
  font-size: 1.3rem;
  color: var(--color-white);
  display: block;
  line-height: 1.35;
}

.intro__copy {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.intro__copy .btn-ghost {
  align-self: flex-start;
  margin-top: 0.5rem;
}

.intro__chips {
  margin-top: 0.25rem;
}

/* ── 3. Restaurant — image stack ───────────────────────── */

.restaurant {
  background:
    radial-gradient(
      circle at 80% 30%,
      rgba(246, 90, 23, 0.1),
      transparent 28rem
    ),
    #090705;
}

.restaurant__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.restaurant__stack {
  position: relative;
  min-height: 540px;
}

.stack-img {
  position: absolute;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--color-border-sub);
}

.stack-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.stack-img--primary {
  width: 72%;
  height: 420px;
  left: 0;
  top: 0;
  z-index: 2;
}

.stack-img--secondary {
  width: 50%;
  height: 280px;
  right: 0;
  bottom: 0;
  z-index: 3;
}

.stack-img--accent {
  width: 44%;
  height: 255px;
  left: 14%;
  bottom: 28px;
  z-index: 1;
  border-color: var(--color-border);
}

.restaurant__content {
  padding: 2.25rem 2rem;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.menu-highlights {
  list-style: none;
  margin: 0.5rem 0;
}

.menu-highlights__item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--color-border-sub);
  font-size: 0.97rem;
}

.menu-highlights__item:last-child {
  border-bottom: none;
}

.menu-highlights__name {
  color: var(--color-cream);
  font-weight: 700;
}

.menu-highlights__price {
  color: var(--color-orange-soft);
  font-weight: 700;
  flex-shrink: 0;
}

/* ── 4. Lounge — side image with mask ──────────────────── */

.lounge {
  background:
    radial-gradient(
      circle at 20% 50%,
      rgba(246, 90, 23, 0.08),
      transparent 26rem
    ),
    var(--color-bg);
}

.lounge__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.lounge__copy {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.lounge__chips {
  margin-top: 0.25rem;
}

.lounge__images {
  position: relative;
}

.lounge__img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0%, black 20%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 20%);
}

.lounge__img-main img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
}

.lounge__img-accent {
  position: absolute;
  bottom: -24px;
  left: -24px;
  width: 46%;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 2px solid var(--color-border);
  box-shadow: var(--shadow-card);
}

.lounge__img-accent img {
  width: 100%;
  height: 195px;
  object-fit: cover;
  display: block;
}

/* ── 5. Casino — 2×2 atlas grid ────────────────────────── */

.casino {
  background: linear-gradient(
    180deg,
    transparent,
    rgba(246, 90, 23, 0.04),
    transparent
  );
}

.casino__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.card--atlas__body {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0.25rem 0;
}

.card--atlas__title {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.2;
}

.card--atlas__desc {
  color: var(--color-muted);
  font-size: 0.93rem;
  line-height: 1.6;
  margin: 0;
}

.card--atlas__list {
  list-style: none;
  margin-top: 0.5rem;
}

.card--atlas__list li {
  color: rgba(217, 200, 179, 0.65);
  font-size: 0.85rem;
  padding: 0.2rem 0;
  padding-left: 1rem;
  position: relative;
}

.card--atlas__list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--color-orange);
  font-size: 0.75rem;
}

.casino__footer {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.casino__note {
  color: rgba(217, 200, 179, 0.4);
  font-size: 0.82rem;
  margin: 0;
  line-height: 1.5;
}

/* ── 6. VIP Rooms — tiles ──────────────────────────────── */

.vip-rooms {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.025), transparent),
    radial-gradient(
      circle at 20% 70%,
      rgba(200, 135, 54, 0.08),
      transparent 24rem
    );
}

.vip-rooms__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.card--tile__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 0.4rem;
}

.card--tile__desc {
  color: var(--color-muted);
  font-size: 0.9rem;
  line-height: 1.55;
  margin: 0;
}

.vip-rooms__cta {
  text-align: center;
}

/* ── 7. Events — poster wall ───────────────────────────── */

.events {
  background:
    radial-gradient(
      circle at 50% 10%,
      rgba(246, 90, 23, 0.08),
      transparent 32rem
    ),
    #080605;
}

.events__wall {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
  align-items: start;
  margin-bottom: 2.5rem;
}

.events__wall .card--event {
  grid-column: span 2;
}

.events__wall .card--event:nth-child(2),
.events__wall .card--event:nth-child(5) {
  transform: translateY(28px);
}

.events__wall .card--event:nth-child(2):hover,
.events__wall .card--event:nth-child(5):hover {
  transform: translateY(20px) scale(1.01);
}

.events__cta {
  text-align: center;
  padding-top: 1.5rem;
}

/* ── 8. VIP Membership — angled cards ──────────────────── */

.vip-membership {
  background:
    radial-gradient(
      circle at 80% 20%,
      rgba(200, 135, 54, 0.09),
      transparent 28rem
    ),
    var(--color-bg-soft);
}

.vip-membership__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  perspective: 1600px;
  margin-bottom: 2.5rem;
}

.vip-tier--silver {
  transform: rotate(-2deg);
}
.vip-tier--gold {
  transform: rotate(0.5deg);
}
.vip-tier--platinum {
  transform: rotate(2deg);
}

.vip-tier__copy {
  padding: 1rem 0.5rem 0.25rem;
}

.vip-tier__name {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-cream);
  margin-bottom: 0.35rem;
}

.vip-tier__desc {
  color: var(--color-muted);
  font-size: 0.92rem;
  line-height: 1.6;
  margin: 0;
}

.vip-membership__cta {
  text-align: center;
}

/* ── 9. Menu Preview ───────────────────────────────────── */

.menu-preview {
  background: var(--color-bg-soft);
}

.menu-preview__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.menu-preview__body {
  padding: 1.25rem 1rem 1rem;
}

.menu-preview__category {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 0.75rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--color-border);
}

.menu-preview__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.menu-preview__list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.5rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.88rem;
}

.menu-preview__list li:last-child {
  border-bottom: none;
}

.menu-preview__list li span:first-child {
  color: var(--color-cream);
}

.menu-preview__list li span:last-child {
  color: var(--color-orange-soft);
  font-weight: 700;
  flex-shrink: 0;
}

.menu-preview__cta {
  text-align: center;
}

/* ── 10. Gallery ───────────────────────────────────────── */

.gallery {
  background: var(--color-bg);
}

.gallery-grid--full {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.gallery-grid__item {
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--color-panel);
}

.gallery-grid__item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.gallery-grid__item:hover img {
  transform: scale(1.04);
}

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

.gallery-grid__item--wide img {
  height: 340px;
}

/* ── 11. Location ──────────────────────────────────────── */

.location {
  background:
    linear-gradient(135deg, rgba(246, 90, 23, 0.04), transparent 40%),
    var(--color-bg);
}

.location__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.location__details {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.location__address {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0.25rem 0;
}

.location__address-item {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 0.5rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--color-border-sub);
  font-size: 0.95rem;
  align-items: baseline;
}

.location__address-item:last-child {
  border-bottom: none;
}

.location__address-item strong {
  color: var(--color-orange-soft);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
}

.location__address-item span,
.location__address-item a {
  color: var(--color-muted);
  line-height: 1.6;
}

.location__address-item a:hover {
  color: var(--color-orange-soft);
}

.location__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

.location__image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.location__image img {
  width: 100%;
  height: 580px;
  object-fit: cover;
  display: block;
}

/* ── 12. Contact CTA — glassmorphism panel ─────────────── */

.contact-cta {
  padding: var(--section-pad) 0;
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.contact-cta__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.contact-cta__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.8);
}

.contact-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(0, 0, 0, 0.72);
}

.contact-cta__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 480px;
}

.contact-cta__card {
  max-width: 680px;
  width: 100%;
  text-align: center;
  padding: 3rem 2.5rem;
  border-radius: var(--radius-lg);
}

.contact-cta__title {
  font-size: clamp(1.8rem, 3.5vw, 3.2rem);
  line-height: 1.1;
  color: var(--color-white);
  margin: 0.5rem 0 1rem;
}

.contact-cta__lead {
  color: #e4d3c0;
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

.contact-cta__actions {
  display: flex;
  gap: 0.85rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Homepage responsive overrides ─────────────────────── */

@media (max-width: 1100px) {
  .hero__grid {
    grid-template-columns: 1fr;
  }
  .hero__card {
    display: none;
  }
  .restaurant__grid,
  .intro__grid,
  .lounge__grid,
  .location__grid {
    gap: 2rem;
  }
}

@media (max-width: 980px) {
  .hero {
    padding: 120px 0 56px;
  }
  .hero__title {
    font-size: clamp(2.4rem, 6vw, 4.5rem);
  }
  .intro__grid,
  .restaurant__grid,
  .lounge__grid,
  .location__grid {
    grid-template-columns: 1fr;
  }
  .intro__img {
    height: 420px;
  }
  .restaurant__stack {
    min-height: 400px;
  }
  .stack-img--primary {
    height: 320px;
  }
  .stack-img--secondary {
    height: 220px;
  }
  .stack-img--accent {
    height: 195px;
  }
  .lounge__img-main img {
    height: 380px;
    mask-image: none;
    -webkit-mask-image: none;
  }
  .lounge__img-accent {
    display: none;
  }
  .casino__grid {
    grid-template-columns: 1fr;
  }
  .vip-rooms__grid {
    grid-template-columns: 1fr 1fr;
  }
  .vip-rooms__grid .card--tile:last-child {
    grid-column: 1 / -1;
  }
  .events__wall {
    grid-template-columns: repeat(4, 1fr);
  }
  .events__wall .card--event {
    grid-column: span 2;
  }
  .events__wall .card--event:nth-child(2),
  .events__wall .card--event:nth-child(5) {
    transform: none;
  }
  .events__wall .card--event:nth-child(2):hover,
  .events__wall .card--event:nth-child(5):hover {
    transform: translateY(-8px) scale(1.01);
  }
  .vip-membership__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
  }
  .menu-preview__grid {
    grid-template-columns: 1fr 1fr;
  }
  .menu-preview__grid .card--menu:last-child {
    grid-column: 1 / -1;
  }
  .gallery-grid--full {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-grid__item--wide {
    grid-column: span 2;
  }
  .location__image img {
    height: 420px;
  }
}

@media (max-width: 640px) {
  .hero {
    padding: 110px 0 48px;
    align-items: end;
  }
  .hero__actions {
    flex-direction: column;
    align-items: flex-start;
  }
  .hero__actions .btn {
    width: 100%;
    justify-content: center;
  }
  .restaurant__stack {
    display: none;
  }
  .restaurant__grid {
    grid-template-columns: 1fr;
  }
  .vip-rooms__grid {
    grid-template-columns: 1fr;
  }
  .vip-rooms__grid .card--tile:last-child {
    grid-column: auto;
  }
  .events__wall {
    grid-template-columns: 1fr;
  }
  .events__wall .card--event {
    grid-column: span 1;
  }
  .vip-membership__grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .vip-tier--silver,
  .vip-tier--gold,
  .vip-tier--platinum {
    transform: none;
  }
  .menu-preview__grid {
    grid-template-columns: 1fr;
  }
  .menu-preview__grid .card--menu:last-child {
    grid-column: auto;
  }
  .gallery-grid--full {
    grid-template-columns: 1fr;
  }
  .gallery-grid__item--wide {
    grid-column: auto;
  }
  .gallery-grid__item img,
  .gallery-grid__item--wide img {
    height: 220px;
  }
  .location__address-item {
    grid-template-columns: 1fr;
    gap: 0.2rem;
  }
  .contact-cta__card {
    padding: 2rem 1.5rem;
  }
  .contact-cta__actions {
    flex-direction: column;
  }
  .contact-cta__actions .btn {
    width: 100%;
  }
  .casino__footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ============================================================
   PHASE 5 — Content Pages
   ============================================================ */

/* ── Page Hero (shared across content pages) ───────────── */

.page-hero {
  position: relative;
  min-height: 65vh;
  display: flex;
  align-items: flex-end;
  padding: 140px 0 60px;
  isolation: isolate;
  overflow: hidden;
}

.page-hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.page-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.04) contrast(1.03);
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(
      0deg,
      rgba(7, 6, 4, 1) 0%,
      rgba(7, 6, 4, 0.55) 40%,
      rgba(7, 6, 4, 0.12) 70%
    ),
    linear-gradient(90deg, rgba(0, 0, 0, 0.5) 0%, transparent 60%);
}

.page-hero__content {
  position: relative;
  z-index: 1;
}

.page-hero__title {
  font-size: clamp(2.4rem, 5vw, 5.5rem);
  color: var(--color-white);
  line-height: 1;
  letter-spacing: -0.03em;
  margin: 0.6rem 0 1rem;
  max-width: 860px;
}

.page-hero__lead {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: #e4d0bc;
  max-width: 580px;
  line-height: 1.6;
}

/* ── Content Split (editorial split — content pages) ───── */

.content-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.content-split--reversed .content-split__media {
  order: -1;
}

.content-split__body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.content-split__body .btn {
  align-self: flex-start;
  margin-top: 0.5rem;
}

.content-split__media--rounded {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.content-split__media--rounded img {
  width: 100%;
  height: 580px;
  object-fit: cover;
  display: block;
}

/* ── Page CTA (shared simple CTA) ─────────────────────── */

.page-cta {
  background:
    linear-gradient(135deg, rgba(246, 90, 23, 0.08), transparent 50%),
    var(--color-bg-soft);
}

.page-cta__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
}

.page-cta__title {
  font-size: clamp(1.8rem, 3.5vw, 3.2rem);
  line-height: 1.1;
  max-width: 640px;
  color: var(--color-white);
}

.page-cta__lead {
  max-width: 480px;
  font-size: 1rem;
}

.page-cta__actions {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 0.5rem;
}

/* ── Restaurant: Signature dishes ─────────────────────── */

.rest-concept {
  background:
    radial-gradient(
      circle at 90% 20%,
      rgba(246, 90, 23, 0.08),
      transparent 28rem
    ),
    var(--color-bg-soft);
}

.rest-dishes {
  background: var(--color-bg);
}

.rest-menu-photos {
  background: var(--color-bg-soft);
}

.rest-menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.signature-dishes {
  border-top: 1px solid var(--color-border-sub);
  margin-top: 0.5rem;
}

.signature-dish {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 1.5rem;
  align-items: start;
  padding: 2rem 0;
  border-bottom: 1px solid var(--color-border-sub);
  transition: background 0.2s ease;
}

.signature-dish:hover {
  background: rgba(246, 90, 23, 0.03);
}

.signature-dish__num {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--color-orange);
  line-height: 1;
  opacity: 0.65;
  padding-top: 4px;
}

.signature-dish__name {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 0.2rem;
  line-height: 1.2;
}

.signature-dish__en {
  color: rgba(217, 200, 179, 0.45);
  font-size: 0.83rem;
  font-style: italic;
  margin: 0.2rem 0 0.6rem;
  line-height: 1;
}

.signature-dish__desc {
  color: var(--color-muted);
  font-size: 0.92rem;
  line-height: 1.6;
  margin: 0;
}

.signature-dish__price {
  color: var(--color-orange-soft);
  font-size: 1.15rem;
  font-weight: 700;
  white-space: nowrap;
  padding-top: 6px;
}

/* ── Lounge: Cocktail grid ─────────────────────────────── */

.lounge-concept {
  background:
    radial-gradient(
      circle at 10% 50%,
      rgba(246, 90, 23, 0.06),
      transparent 28rem
    ),
    var(--color-bg-soft);
}

.lounge-cocktails {
  background: var(--color-bg);
}

.lounge-atmosphere {
  background: var(--color-bg-soft);
}

.cocktail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.cocktail-card {
  padding: 1.5rem;
  background: var(--color-panel);
  border: 1px solid var(--color-border-sub);
  border-left: 3px solid var(--color-orange);
  border-radius: var(--radius-sm);
  transition:
    border-color 0.2s ease,
    background 0.2s ease;
}

.cocktail-card:hover {
  border-left-color: var(--color-orange-soft);
  background: rgba(255, 255, 255, 0.03);
}

.cocktail-card__name {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 0.4rem;
}

.cocktail-card__desc {
  color: var(--color-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 0.85rem;
}

.cocktail-card__price {
  color: var(--color-orange-soft);
  font-size: 1rem;
  font-weight: 700;
}

.lounge-menu-note {
  color: rgba(217, 200, 179, 0.4);
  font-size: 0.85rem;
  text-align: center;
  margin-top: 1.25rem;
  font-style: italic;
}

.lounge-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.lounge-gallery__item {
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.lounge-gallery__item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.lounge-gallery__item:hover img {
  transform: scale(1.04);
}

/* ── About Us: Story & Pillars ─────────────────────────── */

.about-story-section {
  background:
    linear-gradient(135deg, rgba(246, 90, 23, 0.04), transparent 40%),
    var(--color-bg-soft);
}

.about-pillars {
  background: var(--color-bg);
}

.about-find-us {
  background:
    radial-gradient(
      circle at 80% 30%,
      rgba(200, 135, 54, 0.07),
      transparent 28rem
    ),
    var(--color-bg-soft);
}

.about-story {
  display: grid;
  grid-template-columns: 1.2fr 0.85fr;
  gap: 4rem;
  align-items: start;
}

.about-story__text {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.about-story__lead {
  font-size: clamp(1.1rem, 1.8vw, 1.45rem);
  color: var(--color-cream);
  line-height: 1.5;
  font-weight: 400;
}

.about-story__quote {
  border-left: 3px solid var(--color-orange);
  padding: 1rem 1.5rem;
  background: rgba(246, 90, 23, 0.04);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 0.5rem 0;
}

.about-story__quote em {
  font-size: 1.15rem;
  color: var(--color-cream);
  line-height: 1.5;
  display: block;
}

.about-story__image {
  position: sticky;
  top: 100px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.about-story__image img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  display: block;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.pillar-card {
  padding: 2rem 1.5rem;
  border: 1px solid var(--color-border-sub);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.03);
  transition:
    border-color 0.25s ease,
    background 0.25s ease;
}

.pillar-card:hover {
  border-color: var(--color-border);
  background: rgba(246, 90, 23, 0.04);
}

.pillar-card__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  background: rgba(246, 90, 23, 0.08);
  color: var(--color-orange);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}

.pillar-card__title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 0.6rem;
  line-height: 1.2;
}

.pillar-card__desc {
  color: var(--color-muted);
  font-size: 0.92rem;
  line-height: 1.65;
  margin: 0;
}

/* ── Casino: Game cards & Responsible gaming ───────────── */

.casino-concept {
  background:
    radial-gradient(
      circle at 80% 30%,
      rgba(246, 90, 23, 0.09),
      transparent 28rem
    ),
    var(--color-bg-soft);
}

.casino-games {
  background: var(--color-bg);
}

.casino-responsible {
  background: var(--color-bg-soft);
}

.game-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.game-card {
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border-sub);
  background: var(--color-panel);
  overflow: hidden;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease;
}

.game-card:hover {
  transform: translateY(-5px);
  border-color: var(--color-border);
}

.game-card__media {
  overflow: hidden;
}

.game-card__img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.game-card:hover .game-card__img {
  transform: scale(1.04);
}

.game-card__body {
  padding: 1.5rem;
}

.game-card__title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 0.6rem;
  line-height: 1.2;
}

.game-card__desc {
  color: var(--color-muted);
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.game-card__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.game-card__list li {
  color: rgba(217, 200, 179, 0.6);
  font-size: 0.85rem;
  padding-left: 1.2rem;
  position: relative;
  line-height: 1.5;
}

.game-card__list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--color-orange);
  font-size: 0.8rem;
  top: 1px;
}

.responsible-gaming {
  border-left: 4px solid var(--color-orange);
  padding: 1.75rem 2rem;
  background: rgba(246, 90, 23, 0.05);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  max-width: 860px;
}

.responsible-gaming__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 0.75rem;
}

.responsible-gaming__text {
  color: var(--color-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.responsible-gaming__text:last-child {
  margin-bottom: 0;
}

.responsible-gaming__text a {
  color: var(--color-orange-soft);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.responsible-gaming__text a:hover {
  color: var(--color-orange);
}

/* ── Phase 5 Responsive ─────────────────────────────────── */

@media (max-width: 980px) {
  .page-hero {
    min-height: 55vh;
    padding: 120px 0 48px;
  }
  .content-split,
  .about-story {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .content-split--reversed .content-split__media {
    order: 0;
  }
  .about-story__image {
    position: static;
  }
  .about-story__image img {
    height: 380px;
  }
  .content-split__media--rounded img {
    height: 420px;
  }
  .pillars-grid {
    grid-template-columns: 1fr 1fr;
  }
  .game-cards {
    grid-template-columns: 1fr 1fr;
  }
  .rest-menu-grid {
    grid-template-columns: 1fr 1fr;
  }
  .rest-menu-grid .card--menu:last-child {
    grid-column: 1 / -1;
  }
  .lounge-gallery {
    grid-template-columns: 1fr 1fr;
  }
  .lounge-gallery .lounge-gallery__item:last-child {
    display: none;
  }
}

@media (max-width: 640px) {
  .page-hero {
    min-height: 50vh;
    padding: 110px 0 40px;
  }
  .page-hero__title {
    font-size: clamp(2rem, 7vw, 3rem);
  }
  .signature-dish {
    grid-template-columns: 44px 1fr;
    gap: 1rem;
  }
  .signature-dish__price {
    grid-column: 2;
  }
  .cocktail-grid {
    grid-template-columns: 1fr;
  }
  .pillars-grid {
    grid-template-columns: 1fr;
  }
  .game-cards {
    grid-template-columns: 1fr;
  }
  .game-card__img {
    height: 200px;
  }
  .rest-menu-grid {
    grid-template-columns: 1fr;
  }
  .rest-menu-grid .card--menu:last-child {
    grid-column: auto;
  }
  .lounge-gallery {
    grid-template-columns: 1fr;
  }
  .lounge-gallery .lounge-gallery__item:last-child {
    display: block;
  }
  .page-cta__actions {
    flex-direction: column;
    width: 100%;
  }
  .page-cta__actions .btn {
    width: 100%;
    justify-content: center;
  }
  .responsible-gaming {
    padding: 1.25rem 1.25rem;
  }
}

/* ============================================================
   PHASE 6 — Contact & Thank-You
   ============================================================ */

/* ── Page Hero short variant ───────────────────────────── */

.page-hero--short {
  min-height: 52vh;
}

/* ── Contacts layout ────────────────────────────────────── */

.contacts-section {
  background:
    radial-gradient(
      circle at 80% 20%,
      rgba(246, 90, 23, 0.07),
      transparent 28rem
    ),
    var(--color-bg);
}

.contacts-layout {
  display: grid;
  grid-template-columns: 1.55fr 1fr;
  gap: 3.5rem;
  align-items: start;
}

.contacts-form-wrap {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--color-border-sub);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
}

.contacts-form-title {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  color: var(--color-white);
  margin-bottom: 1.75rem;
  font-weight: 700;
}

/* ── Form base ──────────────────────────────────────────── */

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-row--three {
  grid-template-columns: 1fr 1fr 1fr;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-label {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--color-cream);
  letter-spacing: 0.02em;
}

.form-required {
  color: var(--color-orange);
  margin-left: 0.2rem;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--color-border-sub);
  border-radius: var(--radius-sm);
  color: var(--color-cream);
  font-family: var(--font-primary);
  font-size: 1rem;
  padding: 0.85rem 1rem;
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
  -webkit-appearance: none;
  appearance: none;
  line-height: 1.5;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--color-orange);
  background: rgba(246, 90, 23, 0.05);
  box-shadow: 0 0 0 3px rgba(246, 90, 23, 0.12);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(217, 200, 179, 0.3);
}

.form-input.is-error,
.form-textarea.is-error,
.form-select.is-error {
  border-color: #e06060;
  box-shadow: 0 0 0 3px rgba(224, 96, 96, 0.12);
}

.form-textarea {
  resize: vertical;
  min-height: 130px;
}

/* ── Select custom arrow ────────────────────────────────── */

.form-select-wrap {
  position: relative;
}

.form-select-wrap::after {
  content: '';
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 6px;
  background: var(--color-muted);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  pointer-events: none;
}

.form-select option {
  background: var(--color-panel);
  color: var(--color-cream);
}

/* ── Form error & alert ─────────────────────────────────── */

.form-error {
  display: block;
  color: #e06060;
  font-size: 0.82rem;
  margin-top: 0.25rem;
  line-height: 1.4;
}

.form-alert {
  padding: 1rem 1.25rem;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.form-alert--error {
  background: rgba(224, 96, 96, 0.12);
  border: 1px solid rgba(224, 96, 96, 0.35);
  color: #e8a0a0;
}

/* ── Checkbox ───────────────────────────────────────────── */

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.form-check__input {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--color-orange);
  cursor: pointer;
  border-radius: 3px;
}

.form-check__input.is-error {
  outline: 2px solid #e06060;
  outline-offset: 2px;
}

.form-check__label {
  color: var(--color-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  cursor: pointer;
}

.form-check__label a {
  color: var(--color-orange-soft);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s ease;
}

.form-check__label a:hover {
  color: var(--color-orange);
}

/* ── Privacy note & submit ──────────────────────────────── */

.form-privacy-note {
  color: rgba(217, 200, 179, 0.4);
  font-size: 0.8rem;
  line-height: 1.55;
  margin: 0;
}

.form-submit {
  align-self: flex-start;
  margin-top: 0.5rem;
}

/* ── Contact details (right column) ────────────────────── */

.contacts-details {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  position: sticky;
  top: 100px;
}

.contacts-detail-block {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--color-border-sub);
}

.contacts-detail-block:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.contacts-detail-heading {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-orange-soft);
  margin-bottom: 0.2rem;
}

.contacts-phone {
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 700;
  color: var(--color-white);
  text-decoration: none;
  transition: color 0.2s ease;
  line-height: 1.2;
  display: block;
}

.contacts-phone:hover {
  color: var(--color-orange-soft);
}

.contacts-email {
  font-size: 1rem;
  color: var(--color-muted);
  text-decoration: none;
  transition: color 0.2s ease;
  word-break: break-all;
}

.contacts-email:hover {
  color: var(--color-orange-soft);
}

.contacts-detail-note {
  color: rgba(217, 200, 179, 0.45);
  font-size: 0.85rem;
  margin: 0.15rem 0 0;
}

.contacts-address {
  font-style: normal;
  color: var(--color-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.contacts-map-btn {
  align-self: flex-start;
  margin-top: 0.5rem;
  font-size: 0.88rem;
  min-height: 44px;
  padding: 0 1rem;
}

.contacts-hours {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contacts-hours__row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.9rem;
}

.contacts-hours__row dt {
  color: var(--color-cream);
  font-weight: 700;
}

.contacts-hours__row dd {
  color: var(--color-muted);
  margin: 0;
}

/* ── Thank-you page ─────────────────────────────────────── */

.thankyou-section {
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
  padding: var(--section-pad) 0;
  background:
    radial-gradient(
      circle at 30% 40%,
      rgba(246, 90, 23, 0.07),
      transparent 28rem
    ),
    var(--color-bg);
}

.thankyou-wrap {
  display: flex;
  justify-content: center;
}

.thankyou-card {
  max-width: 600px;
  width: 100%;
  padding: 3rem 2.5rem;
  border-radius: var(--radius-lg);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.thankyou-icon {
  width: 72px;
  height: 72px;
  color: var(--color-orange);
  flex-shrink: 0;
}

.thankyou-icon svg {
  width: 100%;
  height: 100%;
}

.thankyou-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.15;
  color: var(--color-white);
  margin: 0;
}

.thankyou-lead {
  font-size: 1.05rem;
  color: var(--color-muted);
  line-height: 1.65;
  max-width: 480px;
  margin: 0;
}

.thankyou-urgent {
  background: rgba(246, 90, 23, 0.07);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  width: 100%;
}

.thankyou-urgent p {
  color: var(--color-muted);
  font-size: 0.93rem;
  margin: 0 0 0.5rem;
}

.thankyou-phone {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-white);
  text-decoration: none;
  transition: color 0.2s ease;
  line-height: 1.2;
}

.thankyou-phone:hover {
  color: var(--color-orange-soft);
}

.thankyou-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 0.5rem;
}

/* ── Phase 6 Responsive ─────────────────────────────────── */

@media (max-width: 980px) {
  .contacts-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .contacts-details {
    position: static;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
  .contacts-detail-block {
    border-bottom: none;
    padding-bottom: 0;
    border-right: 1px solid var(--color-border-sub);
    padding-right: 1.5rem;
  }
  .contacts-detail-block:nth-child(even) {
    border-right: none;
    padding-right: 0;
  }
  .form-row--three {
    grid-template-columns: 1fr 1fr;
  }
  .form-row--three .form-group:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .contacts-form-wrap {
    padding: 1.75rem 1.25rem;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .form-row--three {
    grid-template-columns: 1fr;
  }
  .form-row--three .form-group:last-child {
    grid-column: auto;
  }
  .contacts-details {
    grid-template-columns: 1fr;
  }
  .contacts-detail-block {
    border-right: none;
    padding-right: 0;
    border-bottom: 1px solid var(--color-border-sub);
    padding-bottom: 1.5rem;
  }
  .contacts-detail-block:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
  .form-submit {
    width: 100%;
    justify-content: center;
  }
  .thankyou-card {
    padding: 2rem 1.5rem;
  }
  .thankyou-nav {
    flex-direction: column;
    width: 100%;
  }
  .thankyou-nav .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ============================================================
   PHASE 7 — VIP & Menu Pages
   ============================================================ */

/* ── VIP page hero actions ──────────────────────────────── */

.page-hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

/* ── VIP intro section ──────────────────────────────────── */

.vip-intro-section {
  background:
    radial-gradient(
      circle at 15% 60%,
      rgba(246, 90, 23, 0.06),
      transparent 30rem
    ),
    var(--color-bg-soft);
}

.vip-intro-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 4rem;
  align-items: center;
}

.vip-intro-body {
  color: var(--color-muted);
  font-size: 1.02rem;
  line-height: 1.7;
  margin-top: 0.75rem;
}

.vip-intro-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--color-border-sub);
}

.vip-stat {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.vip-stat__number {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--color-orange);
  line-height: 1;
}

.vip-stat__label {
  font-size: 0.82rem;
  color: var(--color-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.vip-intro-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.vip-intro-quote {
  padding: 2.5rem 2rem;
  border-radius: var(--radius-lg);
  border-left: 3px solid var(--color-orange);
}

.vip-quote__text {
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  color: var(--color-cream);
  line-height: 1.6;
  font-style: italic;
  margin: 0 0 1rem;
}

.vip-quote__attr {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--color-orange-soft);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ── VIP tiers section ──────────────────────────────────── */

.vip-tiers-section {
  background:
    radial-gradient(
      circle at 90% 30%,
      rgba(200, 135, 54, 0.05),
      transparent 30rem
    ),
    var(--color-bg);
}

.vip-tiers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.vip-tier-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-panel);
  border: 1px solid var(--color-border-sub);
  display: flex;
  flex-direction: column;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.vip-tier-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
}

.vip-tier-card--silver {
  border-color: rgba(192, 192, 192, 0.25);
}

.vip-tier-card--gold {
  border-color: rgba(200, 135, 54, 0.45);
  box-shadow: 0 0 0 1px rgba(200, 135, 54, 0.15);
}

.vip-tier-card--platinum {
  border-color: rgba(255, 255, 255, 0.2);
}

.vip-tier-card__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  height: 480px;

  flex-shrink: 0;
}

.vip-tier-card__img {
  width: 100%;
  height: 100%;
  object-fit: contain;

  display: block;
  transition: transform 0.4s ease;
}

.vip-tier-card:hover .vip-tier-card__img {
  transform: scale(1.04);
}

.vip-tier-card__badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.3rem 0.9rem;
  border-radius: var(--radius-pill);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(192, 192, 192, 0.25);
  color: #ddd;
  border: 1px solid rgba(192, 192, 192, 0.4);
  backdrop-filter: blur(8px);
}

.vip-tier-card__badge--gold {
  background: rgba(200, 135, 54, 0.25);
  color: var(--color-gold);
  border-color: rgba(200, 135, 54, 0.55);
}

.vip-tier-card__badge--platinum {
  background: rgba(255, 255, 255, 0.12);
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.35);
}

.vip-tier-card__body {
  padding: 1.75rem 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}

.vip-tier-card__name {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-white);
  margin: 0;
}

.vip-tier-card--gold .vip-tier-card__name {
  color: var(--color-gold);
}

.vip-tier-card__tagline {
  font-size: 0.92rem;
  color: var(--color-muted);
  margin: 0;
  line-height: 1.5;
}

.vip-benefits {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.vip-benefits__item {
  font-size: 0.9rem;
  color: var(--color-cream);
  line-height: 1.45;
  padding-left: 1.4rem;
  position: relative;
}

.vip-benefits__item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-orange);
  opacity: 0.75;
}

.vip-tier-card--gold .vip-benefits__item::before {
  background: var(--color-gold);
}

.vip-tier-card--platinum .vip-benefits__item::before {
  background: var(--color-white);
}

.vip-tier-card__cta {
  margin-top: 1.25rem;
  text-align: center;
}

/* ── VIP compare table ──────────────────────────────────── */

.vip-compare-section {
  background:
    radial-gradient(
      circle at 50% 50%,
      rgba(246, 90, 23, 0.04),
      transparent 36rem
    ),
    var(--color-bg-soft);
}

.vip-compare-wrap {
  margin-top: 2.5rem;
  overflow-x: auto;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border-sub);
}

.vip-compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.93rem;
}

.vip-compare-table thead {
  background: rgba(255, 255, 255, 0.04);
}

.vip-compare-table th,
.vip-compare-table td {
  padding: 1rem 1.25rem;
  text-align: left;
  border-bottom: 1px solid var(--color-border-sub);
  vertical-align: middle;
}

.vip-compare-table tbody tr:last-child td {
  border-bottom: none;
}

.vip-compare-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.02);
}

.vip-compare-table__feature {
  color: var(--color-cream);
  font-weight: 700;
  min-width: 220px;
}

.vip-compare-table__col {
  text-align: center;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  min-width: 120px;
}

.vip-compare-table td {
  color: var(--color-muted);
}

.vip-col--silver {
  color: #c8c8c8 !important;
}
.vip-col--gold {
  color: var(--color-gold) !important;
}
.vip-col--platinum {
  color: var(--color-white) !important;
}

.vip-check {
  color: var(--color-orange);
  font-size: 1.1rem;
  display: block;
  text-align: center;
}

.vip-col--gold .vip-check {
  color: var(--color-gold);
}
.vip-col--platinum .vip-check {
  color: var(--color-white);
}

.vip-dash {
  color: rgba(217, 200, 179, 0.25);
  display: block;
  text-align: center;
}

/* ── VIP join CTA ───────────────────────────────────────── */

.vip-join-section {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: var(--section-pad) 0;
}

.vip-join-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.vip-join-bg__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.vip-join-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(7, 6, 4, 0.75);
  z-index: 1;
}

.vip-join-content {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
}

.vip-join-card {
  max-width: 680px;
  width: 100%;
  padding: 3.5rem 3rem;
  border-radius: var(--radius-lg);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.vip-join-card__title {
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  color: var(--color-white);
  line-height: 1.25;
  margin: 0;
}

.vip-join-card__lead {
  font-size: 0.98rem;
  color: var(--color-muted);
  line-height: 1.7;
  max-width: 540px;
  margin: 0;
}

.vip-join-card__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 0.5rem;
}

/* ── Phase 7 VIP Responsive ─────────────────────────────── */

@media (max-width: 980px) {
  .vip-intro-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .vip-intro-visual {
    display: none;
  }
  .vip-tiers-grid {
    grid-template-columns: 1fr 1fr;
  }
  .vip-tiers-grid .vip-tier-card:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .vip-tiers-grid {
    grid-template-columns: 1fr;
  }
  .vip-tiers-grid .vip-tier-card:last-child {
    grid-column: auto;
  }
  .vip-intro-stats {
    gap: 1.25rem;
  }
  .vip-join-card {
    padding: 2rem 1.5rem;
  }
  .vip-join-card__actions {
    flex-direction: column;
    width: 100%;
  }
  .vip-join-card__actions .btn {
    width: 100%;
    justify-content: center;
  }
  .page-hero__actions {
    flex-direction: column;
  }
  .page-hero__actions .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ── Menu photo cards ───────────────────────────────────── */

.menu-gallery-section {
  background: var(--color-bg-soft);
}

.menu-photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.menu-photo-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--color-panel);
  border: 1px solid var(--color-border-sub);
  display: flex;
  flex-direction: column;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.menu-photo-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-card);
}

.menu-photo-card__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: zoom-in;
}

.menu-photo-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.menu-photo-card:hover .menu-photo-card__img {
  transform: scale(1.04);
}

.menu-photo-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(7, 6, 4, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
  pointer-events: none;
}

.menu-photo-card:hover .menu-photo-card__overlay {
  background: rgba(7, 6, 4, 0.4);
}

.menu-photo-card__zoom {
  font-size: 2rem;
  color: var(--color-white);
  opacity: 0;
  font-weight: 300;
  transition: opacity 0.3s ease;
  line-height: 1;
}

.menu-photo-card:hover .menu-photo-card__zoom {
  opacity: 1;
}

.menu-photo-card__body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.menu-photo-card__title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-white);
  margin: 0;
}

.menu-photo-card__desc {
  font-size: 0.88rem;
  color: var(--color-muted);
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

.menu-photo-card__link {
  align-self: flex-start;
  margin-top: 0.5rem;
  font-size: 0.88rem;
}

/* ── Menu tabs ──────────────────────────────────────────── */

.menu-full-section {
  background: var(--color-bg);
}

.menu-lang-note {
  font-size: 0.84rem;
  color: rgba(217, 200, 179, 0.45);
  margin-top: 0.75rem;
}

.menu-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 3rem;
  border-bottom: 1px solid var(--color-border-sub);
  padding-bottom: 0;
}

.menu-tab {
  padding: 0.65rem 1.25rem;
  border-radius: var(--radius-pill) var(--radius-pill) 0 0;
  border: 1px solid transparent;
  border-bottom: none;
  background: transparent;
  color: var(--color-muted);
  font-family: var(--font-primary);
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  transition:
    color 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
  letter-spacing: 0.03em;
  position: relative;
  bottom: -1px;
}

.menu-tab:hover {
  color: var(--color-cream);
  background: rgba(255, 255, 255, 0.04);
}

.menu-tab--active,
.menu-tab[aria-selected='true'] {
  color: var(--color-orange);
  background: var(--color-panel);
  border-color: var(--color-border-sub);
  border-bottom-color: var(--color-panel);
}

/* ── Menu panels ────────────────────────────────────────── */

.menu-panel {
  display: none;
  background: var(--color-panel);
  border: 1px solid var(--color-border-sub);
  border-top: none;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
}

.menu-panel--active,
.menu-panel:not([hidden]) {
  display: block;
}

.menu-panel__inner {
  padding: 2.5rem 2rem;
}

.menu-panel__heading {
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  color: var(--color-white);
  margin: 0 0 1.75rem;
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.menu-panel__heading-en {
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--color-muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

/* ── Menu table ─────────────────────────────────────────── */

.menu-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.menu-table__head th {
  padding: 0.6rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(217, 200, 179, 0.5);
  border-bottom: 1px solid var(--color-border-sub);
  text-align: left;
}

.menu-table tbody tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  transition: background 0.15s ease;
}

.menu-table tbody tr:last-child {
  border-bottom: none;
}

.menu-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.03);
}

.menu-table td {
  padding: 0.85rem 0.75rem;
  vertical-align: middle;
  line-height: 1.45;
}

.menu-table td:first-child {
  color: var(--color-cream);
  font-weight: 700;
}

.menu-table td:nth-child(2) {
  color: rgba(217, 200, 179, 0.5);
  font-size: 0.87rem;
  font-style: italic;
}

.menu-table__price-col {
  text-align: right !important;
  width: 90px;
}

.menu-table__price {
  text-align: right;
  color: var(--color-orange-soft) !important;
  font-weight: 700 !important;
  font-style: normal !important;
  white-space: nowrap;
}

.menu-cocktail-note {
  margin-top: 1.5rem;
  font-size: 0.84rem;
  color: rgba(217, 200, 179, 0.45);
  line-height: 1.6;
  font-style: italic;
}

/* ── Phase 7 Menu Responsive ────────────────────────────── */

@media (max-width: 980px) {
  .menu-photo-grid {
    grid-template-columns: 1fr 1fr;
  }
  .menu-photo-grid .menu-photo-card:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .menu-tabs {
    gap: 0.35rem;
  }
  .menu-tab {
    padding: 0.55rem 0.9rem;
    font-size: 0.82rem;
  }
  .menu-panel__inner {
    padding: 1.75rem 1.25rem;
  }
  .menu-table td:nth-child(2) {
    display: none;
  }
  .menu-table__head th:nth-child(2) {
    display: none;
  }
}

@media (max-width: 640px) {
  .menu-photo-grid {
    grid-template-columns: 1fr;
  }
  .menu-photo-grid .menu-photo-card:last-child {
    grid-column: auto;
  }
  .menu-tabs {
    overflow-x: auto;
    flex-wrap: nowrap;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 0;
  }
  .menu-tabs::-webkit-scrollbar {
    display: none;
  }
  .menu-tab {
    white-space: nowrap;
    flex-shrink: 0;
  }
}

/* ============================================================
   PHASE 8 — Legal Pages & 404
   ============================================================ */

/* ── Legal hero banner ──────────────────────────────────── */

.legal-hero {
  padding: calc(var(--section-pad) + 80px) 0 var(--section-pad);
  background:
    linear-gradient(180deg, rgba(246, 90, 23, 0.06) 0%, transparent 100%),
    var(--color-bg-soft);
  border-bottom: 1px solid var(--color-border-sub);
}

.legal-hero__title {
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  color: var(--color-white);
  font-weight: 700;
  margin: 0 0 0.6rem;
  line-height: 1.15;
}

.legal-hero__meta {
  font-size: 0.85rem;
  color: rgba(217, 200, 179, 0.45);
  margin: 0;
}

/* ── Legal body content ─────────────────────────────────── */

.legal-section {
  padding: var(--section-pad) 0;
  background: var(--color-bg);
}

.legal-content {
  max-width: 740px;
}

.legal-content h2 {
  font-size: clamp(1.1rem, 1.8vw, 1.45rem);
  color: var(--color-white);
  font-weight: 700;
  margin: 2.75rem 0 0.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-border-sub);
}

.legal-content h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.legal-content p {
  color: var(--color-muted);
  font-size: 0.97rem;
  line-height: 1.8;
  margin: 0.7rem 0;
}

.legal-content strong {
  color: var(--color-cream);
  font-weight: 700;
}

.legal-content ul {
  color: var(--color-muted);
  font-size: 0.97rem;
  line-height: 1.8;
  margin: 0.7rem 0;
  padding-left: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.legal-content li {
  padding-left: 0.25rem;
}

.legal-content a {
  color: var(--color-orange-soft);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s ease;
}

.legal-content a:hover {
  color: var(--color-orange);
}

/* ── 404 page ───────────────────────────────────────────── */

.notfound-section {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: var(--section-pad) 0;
}

.notfound-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.notfound-bg__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.35) saturate(0.7);
}

.notfound-content {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
}

.notfound-card {
  max-width: 580px;
  width: 100%;
  padding: 3.5rem 3rem;
  border-radius: var(--radius-lg);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.notfound-code {
  display: block;
  font-size: clamp(5rem, 15vw, 10rem);
  font-weight: 700;
  line-height: 1;
  color: var(--color-orange);
  opacity: 0.18;
  letter-spacing: -0.04em;
  margin-bottom: -1rem;
}

.notfound-title {
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  color: var(--color-white);
  line-height: 1.3;
  margin: 0;
}

.notfound-lead {
  font-size: 0.97rem;
  color: var(--color-muted);
  line-height: 1.7;
  max-width: 440px;
  margin: 0;
}

.notfound-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 0.5rem;
}

/* ── Phase 8 responsive ─────────────────────────────────── */

@media (max-width: 640px) {
  .notfound-card {
    padding: 2.25rem 1.5rem;
  }
  .notfound-nav {
    flex-direction: column;
    width: 100%;
  }
  .notfound-nav .btn {
    width: 100%;
    justify-content: center;
  }
  .legal-content {
    font-size: 0.93rem;
  }
}
