/* Moonlight Coast Hotel & Casino — styles.css
   Visual DNA: "Obsidian" dark theme (near-black abyss, amethyst/lavender accent,
   system UI font, 1px inset glow instead of drop shadows). Character: moonlit
   evening coast, silver-blue twilight. */

:root {
  /* Colours (Obsidian tokens) */
  --abyss: #171717;
  --abyss-2: #131316;
  --surface: #1e1e1e;
  --surface-2: #232326;
  --white: #ffffff;
  --bright: #eeeeee;
  --medium: #bcbcbc;
  --muted: #a3a3a3;
  --graphite: #3f3f3f;
  --amethyst: #7c3aed;
  --amethyst-strong: #8b53f0;
  --lavender: #a78bfa;
  --tag-bg: rgba(138, 92, 245, 0.15);

  /* Type */
  --font-ui: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", Roboto, sans-serif;

  /* Spacing */
  --sp-4:4px; --sp-8:8px; --sp-12:12px; --sp-16:16px; --sp-20:20px;
  --sp-24:24px; --sp-32:32px; --sp-40:40px; --sp-48:48px; --sp-64:64px;
  --sp-80:80px; --sp-96:96px;

  /* Shape */
  --r-card:12px; --r-btn:8px; --r-input:8px; --r-pill:9999px;
  --glow: rgba(255,255,255,0.06) 0 0 0 1px inset;
  --glow-2: rgba(255,255,255,0.10) 0 0 0 1px inset;

  --maxw: 1120px;
  --header-h: 68px;
}

/* Reset-ish */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  margin: 0;
  font-family: var(--font-ui);
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: -0.011em;
  color: var(--bright);
  background: var(--abyss);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; height: auto; }
a { color: var(--lavender); text-decoration: none; }
a:hover { color: #c4b2fc; }
h1,h2,h3,h4 { margin: 0; font-weight: 600; letter-spacing: -0.02em; line-height: 1.15; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
:focus-visible { outline: 2px solid var(--lavender); outline-offset: 3px; border-radius: 4px; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 40px);
}

/* Section rhythm — deliberately uneven */
.section { padding-block: clamp(64px, 9vw, 104px); }
.section--tight { padding-block: clamp(48px, 6vw, 72px); }
.section--alt { background: var(--abyss-2); }

.section__label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.18em; color: var(--lavender);
  margin: 0 0 18px;
}
.section__label::before {
  content: ""; width: 22px; height: 1px; background: var(--amethyst);
}
.section__title {
  font-size: clamp(28px, 4.2vw, 40px);
  letter-spacing: -0.03em; color: var(--bright); max-width: 20ch;
}
.section__intro {
  margin-top: 18px; color: var(--medium); max-width: 60ch;
  font-size: 17px;
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font: inherit; font-weight: 500; font-size: 15px;
  border: 0; border-radius: var(--r-btn); cursor: pointer;
  padding: 14px 24px; transition: background .18s ease, transform .18s ease, color .18s ease;
}
.btn--primary {
  background: var(--amethyst); color: var(--white);
  box-shadow: var(--glow-2);
}
.btn--primary:hover { background: var(--amethyst-strong); color: var(--white); transform: translateY(-1px); }
.btn--ghost {
  background: transparent; color: var(--medium);
  box-shadow: rgba(255,255,255,0.10) 0 0 0 1px inset;
}
.btn--ghost:hover { color: var(--bright); background: rgba(255,255,255,0.03); }
.btn--block { width: 100%; }

/* Badge 18+ */
.badge-18 {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; color: var(--lavender);
  padding: 6px 12px 6px 8px; border-radius: var(--r-pill);
  background: var(--tag-bg); box-shadow: var(--glow);
}
.badge-18 strong {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 30px; height: 22px; padding-inline: 6px;
  border-radius: var(--r-pill); background: var(--amethyst); color: #fff;
  font-size: 12px;
}
.tag {
  display: inline-block; font-size: 12px; color: var(--lavender);
  background: var(--tag-bg); border-radius: var(--r-pill);
  padding: 4px 12px; letter-spacing: .01em;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(19,19,22,0.82);
  backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--header-h); gap: 24px;
}
.logo { display: inline-flex; align-items: baseline; gap: 10px; }
.logo__mark {
  font-weight: 700; font-size: 15px; letter-spacing: 0.14em;
  color: var(--white); background: var(--amethyst);
  padding: 6px 9px; border-radius: 7px; box-shadow: var(--glow-2);
}
.logo__name {
  font-weight: 600; font-size: 15px; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--bright);
}
.logo__name em { font-style: normal; color: var(--lavender); }

.nav { display: flex; align-items: center; gap: 28px; }
.nav__list { display: flex; align-items: center; gap: 26px; }
.nav__link {
  color: var(--medium); font-size: 15px; font-weight: 450;
  transition: color .15s ease;
}
.nav__link:hover, .nav__link:focus-visible { color: var(--bright); }
.nav__cta { padding: 10px 18px; font-size: 14px; }

.burger {
  display: none; width: 42px; height: 42px; border: 0; cursor: pointer;
  background: transparent; color: var(--bright);
  border-radius: 8px; box-shadow: var(--glow);
  align-items: center; justify-content: center;
}
.burger svg { width: 22px; height: 22px; }
.burger__close { display: none; }
.burger[aria-expanded="true"] .burger__open { display: none; }
.burger[aria-expanded="true"] .burger__close { display: block; }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(1100px 520px at 78% -6%, rgba(124,58,237,0.30), transparent 60%),
    radial-gradient(700px 380px at 8% 4%, rgba(60,64,110,0.35), transparent 62%),
    var(--abyss);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.hero__inner {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(28px, 4vw, 64px);
  align-items: center;
  padding-block: clamp(56px, 8vw, 96px);
}
.hero__kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--lavender); margin-bottom: 22px;
}
.hero__kicker::before { content:""; width: 26px; height:1px; background: var(--lavender); opacity:.7; }
.hero__title {
  font-size: clamp(38px, 6.4vw, 62px); line-height: 1.04; letter-spacing: -0.035em;
  color: var(--bright); max-width: 15ch;
}
.hero__title span { color: var(--lavender); }
.hero__lead {
  margin-top: 22px; color: var(--medium); font-size: clamp(16px, 1.6vw, 18px);
  max-width: 46ch;
}
.hero__actions {
  margin-top: 32px; display: flex; flex-wrap: wrap; align-items: center; gap: 14px;
}
.hero__badge-wrap { margin-top: 26px; display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.hero__note { font-size: 13px; color: var(--muted); }

/* Hero right panel (pure text, replaces the former photo) */
.hero__panel {
  position: relative; overflow: hidden;
  background: linear-gradient(180deg, rgba(32,32,37,0.92), rgba(20,20,24,0.92));
  border-radius: 18px; padding: clamp(24px, 3vw, 34px);
  box-shadow: var(--glow-2);
}
.hero__moon {
  position: absolute; top: -42px; right: -26px; width: 148px; height: 148px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 38%, rgba(228,224,246,0.92), rgba(167,139,250,0.42) 52%, rgba(124,58,237,0) 72%);
  box-shadow: 0 0 62px 18px rgba(124,58,237,0.22);
  opacity: .85; pointer-events: none;
}
.hero__panel-label {
  position: relative; z-index: 1;
  font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.16em;
  color: var(--lavender); margin-bottom: 4px;
}
.hero__stats { position: relative; z-index: 1; display: grid; }
.hero__stats li {
  display: flex; align-items: baseline; justify-content: space-between; gap: 18px;
  padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,0.09);
}
.hero__stats li:last-child { border-bottom: 0; padding-bottom: 4px; }
.hero__stat-num {
  font-size: clamp(30px, 3.8vw, 40px); font-weight: 600; letter-spacing: -0.03em;
  color: var(--bright); font-variant-numeric: tabular-nums; line-height: 1;
}
.hero__stat-label { font-size: 13px; color: var(--muted); text-align: right; max-width: 15ch; }
.hero__chips {
  position: relative; z-index: 1; display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px;
}

/* ---------- Casino ---------- */
.stat-strip {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 1px;
  margin-top: 44px; background: rgba(255,255,255,0.08);
  border-radius: var(--r-card); overflow: hidden; box-shadow: var(--glow);
}
.stat-strip__item {
  background: var(--surface); padding: clamp(20px,2.4vw,28px) 20px;
  display: flex; flex-direction: column; gap: 8px;
}
.stat-strip__num {
  font-size: clamp(26px, 3.2vw, 36px); font-weight: 600; letter-spacing: -0.03em;
  color: var(--bright); font-variant-numeric: tabular-nums; line-height: 1;
}
.stat-strip__num em { font-style: normal; color: var(--lavender); font-size: .5em; margin-left: 3px; }
.stat-strip__label { font-size: 13px; color: var(--muted); }

.casino__detail {
  margin-top: 40px; display: grid; grid-template-columns: 0.8fr 1.6fr;
  gap: clamp(20px, 4vw, 56px); align-items: start;
}
.casino__lead { color: var(--bright); font-size: 18px; font-weight: 500; }
.feature-list { display: grid; gap: 2px; }
.feature-list li {
  display: grid; grid-template-columns: auto 1fr; gap: 14px; align-items: baseline;
  padding: 15px 0; border-top: 1px solid rgba(255,255,255,0.07);
}
.feature-list li:last-child { border-bottom: 1px solid rgba(255,255,255,0.07); }
.feature-list dt, .feature-list b { color: var(--bright); font-weight: 600; }
.feature-list span { color: var(--muted); font-size: 15px; }
.feature-list .fnum { color: var(--lavender); font-variant-numeric: tabular-nums; font-weight: 600; }

.casino__salons {
  margin-top: 40px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
}
.mini-card {
  background: var(--surface); border-radius: var(--r-card); padding: 22px 20px;
  box-shadow: var(--glow);
}
.mini-card h3 { font-size: 17px; color: var(--bright); }
.mini-card p { margin-top: 8px; color: var(--muted); font-size: 14px; }
.mini-card .tag { margin-bottom: 14px; }

/* ---------- Nightlife ---------- */
.venue-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 44px;
}
.venue-card {
  position: relative; background: var(--surface); border-radius: var(--r-card); overflow: hidden;
  box-shadow: var(--glow); display: flex; flex-direction: column;
}
.venue-card::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 3px;
  background: linear-gradient(90deg, var(--amethyst), rgba(124,58,237,0));
}
.venue-card__body { padding: 30px 24px 28px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.venue-card__index {
  font-size: 40px; font-weight: 700; letter-spacing: -0.03em; line-height: 1;
  color: var(--lavender); opacity: .5; font-variant-numeric: tabular-nums; margin-bottom: 6px;
}
.venue-card__kicker { font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--lavender); }
.venue-card h3 { font-size: 20px; color: var(--bright); letter-spacing: -0.02em; }
.venue-card p { color: var(--muted); font-size: 15px; }
.venue-card__meta { margin-top: auto; padding-top: 12px; font-size: 13px; color: var(--medium); }

/* ---------- Responsible play ---------- */
.responsible {
  background:
    radial-gradient(800px 300px at 50% 0%, rgba(124,58,237,0.14), transparent 65%),
    var(--abyss-2);
  border-block: 1px solid rgba(255,255,255,0.06);
}
.rg-head { max-width: 62ch; }
.rg-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 40px; }
.rg-card {
  background: var(--surface); border-radius: var(--r-card); padding: 26px 24px;
  box-shadow: var(--glow-2); display: flex; flex-direction: column; gap: 14px;
}
.rg-card__icon {
  width: 44px; height: 44px; display: inline-flex; align-items: center; justify-content: center;
  border-radius: 11px; background: var(--tag-bg); color: var(--lavender); box-shadow: var(--glow);
}
.rg-card__icon svg { width: 22px; height: 22px; }
.rg-card h3 { font-size: 19px; color: var(--bright); }
.rg-list { display: grid; gap: 10px; margin-top: 4px; }
.rg-list li { display: grid; grid-template-columns: auto 1fr; gap: 10px; color: var(--medium); font-size: 15px; }
.rg-list li svg { width: 16px; height: 16px; color: var(--lavender); margin-top: 4px; }
.rg-card__foot { margin-top: 6px; font-size: 14px; color: var(--muted); }
.rg-card a { font-weight: 500; }

/* ---------- About ---------- */
.about__grid {
  display: grid; grid-template-columns: 1.5fr 0.9fr; gap: clamp(28px, 4vw, 56px);
  align-items: start; margin-top: 12px;
}
.about__facts {
  background: var(--surface); border-radius: 16px; padding: clamp(24px,3vw,32px);
  box-shadow: var(--glow-2); position: sticky; top: calc(var(--header-h) + 24px);
}
.about__facts-label {
  font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.16em;
  color: var(--lavender); margin-bottom: 8px;
}
.about__dl { display: grid; }
.about__dl > div {
  display: flex; justify-content: space-between; gap: 16px; align-items: baseline;
  padding: 15px 0; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.about__dl > div:last-child { border-bottom: 0; padding-bottom: 2px; }
.about__dl dt { color: var(--muted); font-size: 14px; }
.about__dl dd { margin: 0; color: var(--bright); font-size: 15px; font-weight: 500; text-align: right; }
.about__text p { color: var(--medium); font-size: 17px; margin-top: 18px; }
.about__text p:first-of-type { margin-top: 0; }
.about__text .lead { color: var(--bright); font-size: 19px; }
.about__signature { margin-top: 24px; font-size: 14px; color: var(--muted); }
.about__signature b { color: var(--bright); font-weight: 600; }
.about__caveat {
  margin-top: 22px; padding: 16px 18px; border-radius: var(--r-card);
  background: var(--surface); box-shadow: var(--glow); color: var(--muted);
  font-size: 14px; border-left: 2px solid var(--amethyst);
}

/* ---------- VIP form ---------- */
.vip {
  background:
    radial-gradient(760px 420px at 84% 120%, rgba(124,58,237,0.26), transparent 60%),
    var(--abyss);
}
.vip__inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 56px);
  align-items: center;
  background: var(--surface); border-radius: 20px; padding: clamp(28px, 4vw, 48px);
  box-shadow: var(--glow-2);
}
.vip__title { font-size: clamp(26px, 3.4vw, 34px); letter-spacing: -0.03em; color: var(--bright); }
.vip__lead { margin-top: 16px; color: var(--medium); font-size: 16px; max-width: 44ch; }
.vip__perks { margin-top: 22px; display: grid; gap: 10px; }
.vip__perks li { display: grid; grid-template-columns: auto 1fr; gap: 12px; color: var(--medium); font-size: 15px; }
.vip__perks li svg { width: 18px; height: 18px; color: var(--lavender); margin-top: 3px; }

.form { display: grid; gap: 16px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form__field { display: grid; gap: 7px; }
.form__label { font-size: 13px; color: var(--medium); font-weight: 500; }
.form__label .req { color: var(--lavender); }
.form__input {
  font: inherit; font-size: 15px; color: var(--bright);
  background: var(--abyss); border: 1px solid var(--graphite);
  border-radius: var(--r-input); padding: 13px 14px; width: 100%;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.form__input::placeholder { color: #6f6f74; }
.form__input:focus { outline: none; border-color: var(--amethyst); box-shadow: 0 0 0 3px rgba(124,58,237,0.22); }
.form__consent { display: grid; grid-template-columns: auto 1fr; gap: 12px; align-items: start; }
.form__consent input { margin-top: 3px; width: 18px; height: 18px; accent-color: var(--amethyst); }
.form__consent label { font-size: 13px; color: var(--muted); line-height: 1.5; }
.form__consent a { color: var(--lavender); }
.form__submit { margin-top: 4px; }
.form__success {
  display: none; align-items: center; gap: 12px;
  padding: 16px 18px; border-radius: var(--r-card);
  background: rgba(74,222,128,0.10); color: #b6f0c9;
  box-shadow: rgba(74,222,128,0.35) 0 0 0 1px inset; font-size: 15px;
}
.form__success.is-visible { display: flex; }
.form__success svg { width: 20px; height: 20px; flex: none; color: #4ade80; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--abyss-2); border-top: 1px solid rgba(255,255,255,0.07);
  padding-block: clamp(48px, 6vw, 72px) 32px;
}
.footer__cols {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.1fr; gap: 32px;
}
.footer__brand .logo { margin-bottom: 16px; }
.footer__about { color: var(--muted); font-size: 14px; max-width: 34ch; }
.footer__col h4 { font-size: 12px; text-transform: uppercase; letter-spacing: .14em; color: var(--muted); margin-bottom: 16px; }
.footer__col ul { display: grid; gap: 11px; }
.footer__col a, .footer__col address { color: var(--medium); font-size: 14px; font-style: normal; line-height: 1.6; }
.footer__col a:hover { color: var(--bright); }
.footer__contact { color: var(--lavender) !important; }
.footer__rg {
  margin-top: 36px; padding: 18px 20px; border-radius: var(--r-card);
  background: var(--surface); box-shadow: var(--glow);
  display: flex; gap: 16px; align-items: center; flex-wrap: wrap;
  color: var(--muted); font-size: 14px;
}
.footer__bottom {
  margin-top: 28px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,0.07);
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  color: var(--muted); font-size: 13px;
}
.footer__bottom a { color: var(--muted); }
.footer__bottom a:hover { color: var(--bright); }

/* ---------- Cookie banner ---------- */
.cookie {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 80;
  max-width: 620px; margin-inline: auto;
  background: var(--surface); border-radius: var(--r-card);
  box-shadow: var(--glow-2), rgba(0,0,0,0.5) 0 20px 40px -16px;
  padding: 18px 20px; display: none; gap: 16px; align-items: center; flex-wrap: wrap;
}
.cookie.is-open { display: flex; }
.cookie p { color: var(--medium); font-size: 14px; flex: 1 1 260px; }
.cookie p a { color: var(--lavender); }
.cookie__actions { display: flex; gap: 10px; }
.cookie__actions .btn { padding: 10px 18px; font-size: 14px; }

/* ---------- To top ---------- */
.to-top {
  position: fixed; right: 20px; bottom: 20px; z-index: 70;
  width: 46px; height: 46px; border: 0; cursor: pointer;
  background: var(--surface); color: var(--bright); border-radius: 12px;
  box-shadow: var(--glow-2); display: grid; place-items: center;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s;
}
.to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top svg { width: 20px; height: 20px; }

/* ---------- Legal pages ---------- */
.legal { padding-block: clamp(48px, 7vw, 88px); }
.legal__inner { max-width: 760px; }
.legal h1 { font-size: clamp(30px, 4.5vw, 44px); letter-spacing: -0.03em; color: var(--bright); }
.legal__updated { margin-top: 14px; color: var(--muted); font-size: 14px; }
.legal__back { display: inline-flex; align-items: center; gap: 8px; margin-top: 24px; font-size: 14px; }
.legal h2 { font-size: 22px; color: var(--bright); margin-top: 44px; letter-spacing: -0.02em; }
.legal h3 { font-size: 17px; color: var(--bright); margin-top: 26px; }
.legal p { color: var(--medium); font-size: 16px; margin-top: 14px; }
.legal ul.legal__list { margin-top: 14px; display: grid; gap: 9px; }
.legal ul.legal__list li { position: relative; padding-left: 20px; color: var(--medium); font-size: 16px; }
.legal ul.legal__list li::before { content:""; position:absolute; left:2px; top:10px; width:6px; height:6px; border-radius:50%; background: var(--amethyst); }
.legal a { color: var(--lavender); }

/* 404 */
.err { min-height: 62vh; display: grid; place-items: center; text-align: center; padding-block: 80px; }
.err__code { font-size: clamp(64px, 14vw, 128px); font-weight: 700; letter-spacing: -0.05em; color: var(--lavender); line-height: 1; }
.err h1 { font-size: clamp(24px, 4vw, 34px); margin-top: 12px; color: var(--bright); }
.err p { color: var(--medium); margin-top: 14px; max-width: 42ch; }
.err .btn { margin-top: 28px; }

/* Skip link */
.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--amethyst); color: #fff; padding: 10px 16px; border-radius: 8px;
  transition: top .18s ease;
}
.skip-link:focus { top: 12px; color:#fff; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero__inner { grid-template-columns: 1fr; }
  .casino__detail, .about__grid, .vip__inner { grid-template-columns: 1fr; }
  .about__facts { position: static; }
  .stat-strip { grid-template-columns: repeat(3, 1fr); }
  .footer__cols { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .nav {
    position: fixed; inset: var(--header-h) 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--abyss-2); border-bottom: 1px solid rgba(255,255,255,0.08);
    padding: 12px 20px 22px; transform: translateY(-120%);
    transition: transform .28s ease; box-shadow: rgba(0,0,0,0.5) 0 24px 40px -20px;
  }
  .nav.is-open { transform: translateY(0); }
  .nav__list { flex-direction: column; align-items: stretch; gap: 0; }
  .nav__link { padding: 15px 4px; border-bottom: 1px solid rgba(255,255,255,0.06); font-size: 16px; }
  .nav__cta { margin-top: 14px; }
  .burger { display: inline-flex; }
  .venue-grid, .rg-grid, .casino__salons { grid-template-columns: 1fr; }
  .stat-strip { grid-template-columns: repeat(2, 1fr); }
  .form__row { grid-template-columns: 1fr; }
  .footer__cols { grid-template-columns: 1fr; gap: 28px; }
  .footer__bottom { flex-direction: column; }
}
@media (max-width: 420px) {
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { width: 100%; }
}
