/* ===== Tokens ===== */
:root {
  --bg: #08040f;
  --bg-2: #0f0819;
  --bg-3: #170c26;
  --ink: #fdf7ff;
  --muted: #b9a9d6;
  --gold: #ffd76a;
  --gold-2: #f0a93c;
  --pink: #ff2e97;
  --cyan: #22e6ff;
  --purple: #a44bff;
  --line: rgba(255, 255, 255, 0.1);
  --radius: 18px;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.6);
  --maxw: 1160px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: "Playfair Display", serif; line-height: 1.08; letter-spacing: -0.01em; }

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

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--cyan);
  margin-bottom: 14px;
  text-shadow: 0 0 12px rgba(34, 230, 255, 0.6);
}

.grad {
  background: linear-gradient(120deg, var(--gold), #fff 45%, var(--gold-2));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ===== Neon text ===== */
.neon { position: relative; }
.neon--pink {
  color: #fff;
  text-shadow: 0 0 6px #fff, 0 0 16px var(--pink), 0 0 32px var(--pink), 0 0 60px var(--pink);
  animation: flickerPink 4.2s infinite alternate;
}
.neon--cyan {
  color: #fff;
  text-shadow: 0 0 6px #fff, 0 0 16px var(--cyan), 0 0 32px var(--cyan), 0 0 60px var(--cyan);
}
.neon--gold {
  color: #fff;
  text-shadow: 0 0 6px #fff, 0 0 16px var(--gold), 0 0 30px var(--gold-2), 0 0 58px var(--gold-2);
  animation: flickerGold 6s infinite alternate;
}
@keyframes flickerPink {
  0%, 18%, 22%, 25%, 53%, 57%, 100% { opacity: 1; }
  20%, 24%, 55% { opacity: 0.72; }
}
@keyframes flickerGold {
  0%, 40%, 43%, 100% { opacity: 1; }
  41%, 42% { opacity: 0.65; }
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  padding: 13px 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.btn--gold {
  background: linear-gradient(120deg, var(--gold), var(--gold-2));
  color: #2a1600;
  box-shadow: 0 0 20px rgba(255, 215, 106, 0.5), 0 10px 30px rgba(240, 169, 60, 0.3);
}
.btn--gold:hover { transform: translateY(-2px); box-shadow: 0 0 32px rgba(255, 215, 106, 0.75), 0 16px 40px rgba(240, 169, 60, 0.45); }
.btn--ghost {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--cyan);
  color: var(--ink);
  box-shadow: inset 0 0 14px rgba(34, 230, 255, 0.15), 0 0 14px rgba(34, 230, 255, 0.25);
}
.btn--ghost:hover { background: rgba(34, 230, 255, 0.12); transform: translateY(-2px); box-shadow: inset 0 0 18px rgba(34, 230, 255, 0.3), 0 0 24px rgba(34, 230, 255, 0.4); }
.btn--lg { padding: 16px 32px; font-size: 1.02rem; }
.btn--full { width: 100%; }

/* ===== Nav ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(8, 4, 15, 0.8);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 46, 151, 0.25);
  box-shadow: 0 2px 24px rgba(255, 46, 151, 0.12);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand { display: flex; align-items: center; gap: 11px; font-weight: 700; }
.brand__logo {
  width: 52px; height: 52px; object-fit: contain; display: block;
  -webkit-mask-image: radial-gradient(circle, #000 74%, transparent 96%);
  mask-image: radial-gradient(circle, #000 74%, transparent 96%);
  filter: drop-shadow(0 0 8px rgba(255, 215, 106, 0.35));
}
.brand__text { display: flex; flex-direction: column; line-height: 1.04; }
.brand__mark {
  font-family: "Playfair Display", serif;
  font-weight: 800;
  font-size: 1.18rem;
  letter-spacing: 0.03em;
  color: #fff;
  text-shadow: 0 0 8px var(--gold), 0 0 18px var(--gold-2);
}
.brand__word { color: var(--pink); font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; text-shadow: 0 0 10px rgba(255, 46, 151, 0.6); }
.nav__links { display: flex; gap: 30px; }
.nav__links a { color: var(--muted); font-size: 0.92rem; font-weight: 600; transition: color 0.15s, text-shadow 0.15s; }
.nav__links a:hover { color: #fff; text-shadow: 0 0 12px var(--cyan); }
.nav__cta { padding: 10px 20px; }
.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; }
.nav__toggle span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; }

/* ===== Hero ===== */
.hero {
  position: relative;
  overflow: hidden;
  padding: 120px 0 96px;
  background:
    radial-gradient(1000px 460px at 78% -8%, rgba(255, 46, 151, 0.35), transparent 60%),
    radial-gradient(900px 460px at 12% 12%, rgba(34, 230, 255, 0.22), transparent 58%),
    radial-gradient(700px 500px at 50% 110%, rgba(164, 75, 255, 0.28), transparent 60%),
    linear-gradient(180deg, #08040f, #0d0618);
}
.hero__glow {
  position: absolute;
  inset: auto 0 -30% 0;
  height: 55%;
  background: radial-gradient(600px 240px at 50% 0, rgba(255, 215, 106, 0.18), transparent 70%);
  pointer-events: none;
}
/* faux neon skyline strip along the bottom */
.hero__skyline {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 120px;
  background:
    repeating-linear-gradient(90deg,
      rgba(164, 75, 255, 0.0) 0 40px,
      rgba(164, 75, 255, 0.18) 40px 46px,
      rgba(34, 230, 255, 0.18) 70px 76px,
      rgba(255, 46, 151, 0.16) 110px 118px,
      rgba(164, 75, 255, 0.0) 118px 150px);
  mask-image: linear-gradient(180deg, transparent, #000 80%);
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 80%);
  opacity: 0.7;
  pointer-events: none;
}
.hero__inner { position: relative; max-width: 840px; z-index: 1; }
.hero__logo {
  display: block;
  width: clamp(160px, 24vw, 280px);
  height: auto;
  margin: 0 0 6px -10px;
  -webkit-mask-image: radial-gradient(circle, #000 73%, transparent 95%);
  mask-image: radial-gradient(circle, #000 73%, transparent 95%);
  filter: drop-shadow(0 0 28px rgba(255, 215, 106, 0.4));
}
.welcome {
  display: inline-block;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--gold);
  padding: 8px 18px;
  border: 1px solid rgba(255, 215, 106, 0.45);
  border-radius: 999px;
  margin-bottom: 22px;
  text-shadow: 0 0 12px rgba(255, 215, 106, 0.7);
  box-shadow: 0 0 20px rgba(255, 215, 106, 0.18), inset 0 0 14px rgba(255, 215, 106, 0.1);
}
.hero__title { font-size: clamp(2.6rem, 6.5vw, 4.6rem); font-weight: 800; }
.hero__sub { color: var(--muted); font-size: 1.14rem; margin: 26px 0 32px; max-width: 640px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero__stats { display: flex; gap: 42px; margin-top: 50px; }
.hero__stats strong {
  font-family: "Playfair Display", serif; font-size: 2rem; display: block; color: #fff;
  text-shadow: 0 0 14px rgba(34, 230, 255, 0.5);
}
.hero__stats span { color: var(--muted); font-size: 0.85rem; }

/* ===== Trust bar (marquee bulbs) ===== */
.trustbar {
  background: linear-gradient(90deg, #1a0a2e, #240d33, #1a0a2e);
  border-block: 2px solid transparent;
  border-image: linear-gradient(90deg, var(--pink), var(--gold), var(--cyan)) 1;
}
.trustbar__inner { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 16px; padding: 16px 24px; }
.trustbar span { color: #fff; font-size: 0.86rem; font-weight: 600; letter-spacing: 0.03em; }
.trustbar span::before { content: "✦"; color: var(--gold); margin-right: 8px; text-shadow: 0 0 10px var(--gold); }

/* ===== Sections ===== */
.section { padding: 96px 0; position: relative; }
.section--alt { background: var(--bg-2); }
/* keep section headings clear of the sticky nav when jumping via anchor links */
section[id], .vipstrip { scroll-margin-top: 84px; }
.section__head { max-width: 640px; margin: 0 auto 54px; text-align: center; }
.section__head h2 {
  font-size: clamp(2rem, 4.4vw, 3rem);
  color: #fff;
  text-shadow: 0 0 18px rgba(255, 46, 151, 0.35);
}
.section__lead { color: var(--muted); margin-top: 14px; }

.grid { display: grid; gap: 24px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

/* ===== Cards / Fleet ===== */
.card {
  background: linear-gradient(180deg, var(--bg-3), var(--bg-2));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.card__body { padding: 24px; }
.fleet-card { transition: transform 0.2s ease, border-color 0.2s, box-shadow 0.2s; }
.fleet-card:hover {
  transform: translateY(-6px);
  border-color: var(--pink);
  box-shadow: 0 0 30px rgba(255, 46, 151, 0.35), var(--shadow);
}
.fleet-card__img { position: relative; height: 200px; background-size: cover; background-position: center; }
.fleet-card__img--1 { background: linear-gradient(135deg, #3a0f52, var(--pink) 130%), repeating-linear-gradient(45deg, rgba(255,255,255,0.06) 0 12px, transparent 12px 24px); }
.fleet-card__img--2 { background: linear-gradient(135deg, #06283d, var(--cyan) 160%); }
.fleet-card__img--3 { background: linear-gradient(135deg, #3d2a00, var(--gold) 150%); }
.badge {
  position: absolute; top: 14px; left: 14px;
  background: var(--pink); color: #fff;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.04em;
  padding: 5px 12px; border-radius: 999px;
  box-shadow: 0 0 16px rgba(255, 46, 151, 0.7);
}
.fleet-card h3 { font-size: 1.32rem; margin-bottom: 10px; color: #fff; }
.fleet-card p { color: var(--muted); font-size: 0.95rem; }
.specs { list-style: none; margin-top: 16px; display: grid; gap: 8px; }
.specs li { color: var(--ink); font-size: 0.88rem; padding-left: 22px; position: relative; }
.specs li::before { content: "✓"; position: absolute; left: 0; color: var(--cyan); font-weight: 700; text-shadow: 0 0 8px var(--cyan); }

/* ===== Services ===== */
.service {
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 22px;
  transition: transform 0.18s, box-shadow 0.18s, border-color 0.18s;
}
.service:hover {
  transform: translateY(-4px);
  border-color: var(--cyan);
  box-shadow: 0 0 24px rgba(34, 230, 255, 0.28);
}
.service__ico { font-size: 1.9rem; margin-bottom: 12px; }
.service h3 { font-size: 1.12rem; margin-bottom: 6px; color: #fff; }
.service p { color: var(--muted); font-size: 0.88rem; }

/* ===== Pricing ===== */
.price {
  position: relative;
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 26px;
  display: flex;
  flex-direction: column;
}
.price--featured {
  border-color: var(--gold);
  background: linear-gradient(180deg, #2a1a05, var(--bg-3));
  box-shadow: 0 0 34px rgba(255, 215, 106, 0.28);
  transform: translateY(-8px);
}
.price__tag {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(120deg, var(--gold), var(--gold-2)); color: #2a1600;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.05em;
  padding: 5px 16px; border-radius: 999px;
  box-shadow: 0 0 18px rgba(255, 215, 106, 0.6);
}
.price h3 { font-size: 1.42rem; margin-bottom: 8px; color: #fff; }
.price__amt { font-family: "Playfair Display", serif; font-size: 2.7rem; font-weight: 700; color: #fff; }
.price__amt span { font-family: "Inter"; font-size: 1rem; color: var(--muted); font-weight: 500; }
.price ul { list-style: none; margin: 20px 0 26px; display: grid; gap: 11px; }
.price li { color: var(--muted); font-size: 0.9rem; padding-left: 22px; position: relative; }
.price li::before { content: "✓"; position: absolute; left: 0; color: var(--gold); font-weight: 700; text-shadow: 0 0 8px var(--gold); }
.price .btn { margin-top: auto; }

/* ===== Gallery ===== */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 180px;
  gap: 16px;
}
.gallery__item { border-radius: 14px; background-size: cover; background-position: center; box-shadow: inset 0 0 40px rgba(0,0,0,0.4); transition: transform 0.2s, box-shadow 0.2s; }
.gallery__item:hover { transform: scale(1.02); box-shadow: 0 0 26px rgba(255, 46, 151, 0.4); }
.gallery__item--a { grid-column: span 2; grid-row: span 2; background: linear-gradient(135deg, #3a0f52, var(--pink)); }
.gallery__item--b { background: linear-gradient(135deg, #06283d, var(--cyan)); }
.gallery__item--c { background: linear-gradient(135deg, #1a0a2e, var(--purple)); }
.gallery__item--d { background: linear-gradient(135deg, #3d2a00, var(--gold)); }
.gallery__item--e { grid-column: span 2; background: linear-gradient(135deg, #24063a, var(--purple) 140%); }

/* ===== Reviews ===== */
.quote {
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 26px;
}
.stars { color: var(--gold); letter-spacing: 2px; margin-bottom: 14px; text-shadow: 0 0 12px rgba(255, 215, 106, 0.6); }
.quote p { font-size: 1.02rem; margin-bottom: 16px; }
.quote cite { color: var(--cyan); font-style: normal; font-weight: 600; font-size: 0.9rem; }

/* ===== Booking ===== */
.booking { background: linear-gradient(180deg, var(--bg-2), var(--bg)); }
.booking__inner { display: grid; grid-template-columns: 1fr 1.05fr; gap: 56px; align-items: start; }
.booking__copy h2 { font-size: clamp(2rem, 4.4vw, 3rem); margin-bottom: 16px; color: #fff; text-shadow: 0 0 18px rgba(34, 230, 255, 0.35); }
.booking__copy p { color: var(--muted); }
.booking__perks { list-style: none; margin-top: 24px; display: grid; gap: 12px; }
.booking__perks li { color: var(--ink); font-size: 0.95rem; }
.booking__form {
  padding: 30px; display: grid; gap: 16px;
  border: 1px solid rgba(255, 46, 151, 0.3);
  box-shadow: 0 0 34px rgba(255, 46, 151, 0.15), var(--shadow);
}
.field { display: grid; gap: 7px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field label { font-size: 0.82rem; color: var(--muted); font-weight: 500; }
.field input, .field select, .field textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
  color: var(--ink);
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(34, 230, 255, 0.18), 0 0 16px rgba(34, 230, 255, 0.2);
}
.booking__note { text-align: center; color: var(--muted); font-size: 0.82rem; margin-top: 2px; line-height: 1.5; }
.booking__note a { color: var(--gold); font-weight: 600; text-decoration: none; }
.booking__note a:hover { text-decoration: underline; }
.booking__note--ok { color: var(--gold); text-shadow: 0 0 10px rgba(255, 215, 106, 0.5); }
.booking__note--err { color: #ff7a9c; }

/* ===== Footer ===== */
.footer { background: var(--bg-2); border-top: 1px solid rgba(164, 75, 255, 0.3); padding-top: 56px; }
.footer__inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 32px; padding-bottom: 40px; }
.footer__brand p { color: var(--muted); font-size: 0.9rem; margin-top: 14px; max-width: 280px; }
.footer__col h4 { font-family: "Inter"; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--cyan); margin-bottom: 14px; }
.footer__col a, .footer__col span { display: block; color: var(--ink); font-size: 0.92rem; margin-bottom: 9px; opacity: 0.85; }
.footer__col a:hover { color: var(--gold); }
.footer__base { border-top: 1px solid var(--line); padding: 20px 0; }
.footer__base .container { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.footer__base span { color: var(--muted); font-size: 0.82rem; }

/* ===== Chase-light welcome badge ===== */
.welcome {
  position: relative;
}
.welcome::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 999px;
  padding: 2px;
  background: linear-gradient(90deg, var(--pink), var(--gold), var(--cyan), var(--pink));
  background-size: 300% 100%;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.85;
  animation: chase 4s linear infinite;
  pointer-events: none;
}
@keyframes chase { to { background-position: 300% 0; } }

/* shimmer sweep across gold buttons */
.btn--gold { position: relative; overflow: hidden; }
.btn--gold::after {
  content: "";
  position: absolute;
  top: 0; left: -60%;
  width: 45%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.65), transparent);
  transform: skewX(-20deg);
  animation: shimmer 3.4s ease-in-out infinite;
}
@keyframes shimmer { 0%, 60% { left: -60%; } 100% { left: 140%; } }

/* ===== Venue ticker ===== */
.ticker {
  background: #08040f;
  border-block: 1px solid rgba(34, 230, 255, 0.25);
  overflow: hidden;
  white-space: nowrap;
  padding: 12px 0;
}
.ticker__track {
  display: inline-flex;
  align-items: center;
  gap: 26px;
  animation: scroll-left 34s linear infinite;
}
.ticker span {
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #fff;
  text-shadow: 0 0 10px rgba(255, 46, 151, 0.5);
}
.ticker__dot { color: var(--gold) !important; text-shadow: 0 0 10px var(--gold) !important; font-size: 0.7rem !important; }
@keyframes scroll-left { to { transform: translateX(-50%); } }

/* ===== Sub section head ===== */
.section__head--sub { margin-top: 84px; }

/* ===== Sport cards ===== */
.service--sport {
  background: linear-gradient(180deg, #1c0a2e, var(--bg-3));
  border-color: rgba(255, 215, 106, 0.22);
}
.service--sport:hover {
  border-color: var(--gold);
  box-shadow: 0 0 26px rgba(255, 215, 106, 0.3);
}
.service--sport h3 { display: flex; align-items: center; }
.service--sport p { font-size: 0.92rem; }

/* ===== VIP treatment strip ===== */
.vipstrip {
  position: relative;
  padding: 76px 0;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='150' height='150'%3E%3Ctext x='18' y='48' font-family='serif' font-size='36' fill='%23ffffff' fill-opacity='0.035'%3E%E2%99%A0%3C/text%3E%3Ctext x='95' y='118' font-family='serif' font-size='36' fill='%23ff2e97' fill-opacity='0.05'%3E%E2%99%A6%3C/text%3E%3C/svg%3E"),
    radial-gradient(700px 300px at 50% -20%, rgba(255, 46, 151, 0.18), transparent 60%),
    linear-gradient(180deg, var(--bg), var(--bg-2));
  border-block: 1px solid rgba(255, 46, 151, 0.2);
}
.vipstrip__head { text-align: center; margin-bottom: 40px; }
.vipstrip__head h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); color: #fff; text-shadow: 0 0 18px rgba(255, 215, 106, 0.35); }
.vipstrip__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }

/* ===== Casino card suits ===== */
.suits { display: flex; justify-content: center; gap: 14px; margin-top: 16px; font-size: 1.5rem; }
.suits--hero { justify-content: flex-start; margin-top: 20px; }
.suits .s-red { color: var(--pink); text-shadow: 0 0 12px rgba(255, 46, 151, 0.8); }
.suits .s-black { color: #fff; text-shadow: 0 0 12px var(--cyan); }
.suits span { animation: suitPulse 2.6s ease-in-out infinite; }
.suits span:nth-child(2) { animation-delay: 0.35s; }
.suits span:nth-child(3) { animation-delay: 0.7s; }
.suits span:nth-child(4) { animation-delay: 1.05s; }
@keyframes suitPulse { 0%, 100% { transform: translateY(0); opacity: 0.85; } 50% { transform: translateY(-4px); opacity: 1; } }
.perk {
  text-align: center;
  padding: 22px 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.02);
  transition: transform 0.18s, box-shadow 0.18s;
}
.perk:hover { transform: translateY(-4px); box-shadow: 0 0 22px rgba(255, 46, 151, 0.25); }
.perk__ico { font-size: 1.7rem; display: block; margin-bottom: 10px; }
.perk h4 { font-family: "Inter"; font-size: 0.9rem; font-weight: 700; margin-bottom: 4px; color: #fff; }
.perk p { color: var(--muted); font-size: 0.78rem; }

/* ===== Responsive ===== */

/* Tablet / laptop */
@media (max-width: 1024px) {
  .container { padding: 0 22px; }
  .hero__stats { gap: 34px; }
}

@media (max-width: 900px) {
  .vipstrip__grid { grid-template-columns: repeat(3, 1fr); }
  .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .booking__inner { grid-template-columns: 1fr; gap: 32px; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .gallery__item--a, .gallery__item--e { grid-column: span 2; grid-row: span 1; }
}

/* Collapse nav to a hamburger on tablets & phones; keep Book Now visible */
@media (max-width: 820px) {
  .nav__links { display: none; }
  .nav__toggle { display: flex; }
  .nav__cta { display: inline-flex; margin-left: auto; margin-right: 8px; padding: 9px 16px; font-size: 0.88rem; }
  body.nav-open .nav__links {
    display: flex; flex-direction: column; gap: 18px;
    position: absolute; top: 72px; left: 0; right: 0;
    background: var(--bg-2); padding: 22px 24px;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 20px 44px rgba(0, 0, 0, 0.55);
  }
}

/* Phones */
@media (max-width: 640px) {
  .section { padding: 64px 0; }
  .brand__text { display: none; }
  .brand__logo { width: 44px; height: 44px; }
  .nav__cta { margin-right: 4px; padding: 8px 14px; font-size: 0.82rem; }
  .hero { padding: 84px 0 60px; }
  .hero__logo { width: 190px; margin: 0 0 8px; }
  .hero__sub { font-size: 1.02rem; margin: 20px 0 26px; }
  .hero__stats { gap: 22px; }
  .hero__stats strong { font-size: 1.7rem; }
  .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; }
  .price--featured { transform: none; }
  .vipstrip { padding: 56px 0; }
  .vipstrip__grid { grid-template-columns: repeat(2, 1fr); }
  .ticker span { font-size: 0.95rem; }
  .section__head { margin-bottom: 40px; }
  .section__head--sub { margin-top: 48px; }
  .hero__actions .btn { flex: 1 1 auto; }
}

/* Small phones */
@media (max-width: 380px) {
  .vipstrip__grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .hero__stats { flex-wrap: wrap; }
}
