
:root {
  --black: #050505;
  --dark: #0d0b08;
  --gold: #d4af37;
  --soft-gold: #f5d77a;
  --champagne: #fff4cf;
  --bronze: #8c6a2f;
  --white: #ffffff;
  --muted: #b8b1a3;
  --panel: rgba(17, 15, 11, 0.76);
  --panel-solid: #11100d;
  --border: rgba(212, 175, 55, 0.28);
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.48);
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 14px;
  --container: 1180px;
  --header-height: 86px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--white);
  background: radial-gradient(circle at top left, rgba(212,175,55,0.12), transparent 34rem), var(--black);
  line-height: 1.7;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

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

p {
  color: var(--muted);
  margin: 0 0 1rem;
}

h1, h2, h3 {
  margin: 0 0 1rem;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.06;
  color: var(--champagne);
  letter-spacing: -0.025em;
}

h1 {
  font-size: clamp(2.35rem, 5.4vw, 5.1rem);
}

h2 {
  font-size: clamp(1.75rem, 3.55vw, 3.2rem);
}

h3 {
  font-size: clamp(1.05rem, 1.65vw, 1.38rem);
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  z-index: 9999;
  padding: 0.7rem 1rem;
  background: var(--gold);
  color: #111;
  border-radius: 999px;
}

.skip-link:focus {
  left: 16px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--header-height);
  z-index: 1000;
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, height 0.3s ease;
  border-bottom: 1px solid rgba(245, 215, 122, 0.12);
  background: linear-gradient(180deg, rgba(5,5,5,0.76), rgba(5,5,5,0.18));
  backdrop-filter: blur(18px);
}

.site-header.scrolled {
  height: 72px;
  background: rgba(5, 5, 5, 0.93);
  border-color: rgba(212, 175, 55, 0.32);
  box-shadow: 0 18px 60px rgba(0,0,0,0.45);
}

.nav-shell {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
}

.logo,
.footer-logo {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  font-size: clamp(1.05rem, 1.9vw, 1.45rem);
  letter-spacing: -0.02em;
  color: var(--champagne);
  white-space: nowrap;
}

.logo span,
.footer-logo span {
  color: var(--gold);
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.nav-link {
  color: rgba(255,255,255,0.78);
  padding: 0.72rem 0.88rem;
  border-radius: 999px;
  font-size: 0.93rem;
  transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-link.active {
  color: var(--champagne);
  background: rgba(212, 175, 55, 0.13);
  transform: translateY(-1px);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.04);
  border-radius: 14px;
  padding: 0.8rem;
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--champagne);
  margin: 5px 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.age-badge,
.age-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(245, 215, 122, 0.72);
  background: radial-gradient(circle at 35% 25%, var(--soft-gold), var(--gold) 48%, #806020);
  color: #080807;
  font-weight: 900;
  box-shadow: 0 12px 34px rgba(212,175,55,0.24);
}

.age-badge.large {
  width: 78px;
  height: 78px;
  font-size: 1.45rem;
  margin-bottom: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 48px;
  padding: 0.9rem 1.25rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  letter-spacing: 0.015em;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-3px);
}

.btn-gold {
  color: #090806;
  background: linear-gradient(135deg, var(--soft-gold), var(--gold) 45%, #a98027);
  box-shadow: 0 16px 44px rgba(212,175,55,0.22);
}

.btn-gold:hover,
.btn-gold:focus-visible {
  box-shadow: 0 24px 64px rgba(212,175,55,0.34);
}

.btn-outline {
  color: var(--champagne);
  background: rgba(255,255,255,0.04);
  border-color: rgba(245,215,122,0.38);
  box-shadow: 0 16px 44px rgba(0,0,0,0.22);
}

.btn-outline:hover,
.btn-outline:focus-visible {
  background: rgba(212,175,55,0.11);
  border-color: rgba(245,215,122,0.72);
}

.btn-dark {
  color: var(--champagne);
  background: rgba(0,0,0,0.38);
  border-color: rgba(255,255,255,0.16);
}

.btn.small {
  min-height: 42px;
  padding: 0.72rem 1rem;
  font-size: 0.9rem;
}

.btn.full {
  width: 100%;
}

.hero {
  position: relative;
  min-height: 74vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-image: var(--hero-image);
  background-size: cover;
  background-position: center;
}

.hero-full {
  min-height: 100svh;
  padding-top: var(--header-height);
}

.page-hero {
  padding-top: var(--header-height);
  min-height: 62vh;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5,5,5,0.92), rgba(5,5,5,0.63) 48%, rgba(5,5,5,0.35)),
    radial-gradient(circle at 70% 34%, rgba(212,175,55,0.23), transparent 28rem),
    linear-gradient(180deg, transparent, rgba(5,5,5,0.84));
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 950px;
  padding: 7rem 0 6rem;
}

.hero-content p {
  max-width: 760px;
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  color: rgba(255,244,207,0.86);
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1rem;
  color: var(--soft-gold);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 900;
}

.luxury-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(22px);
  opacity: 0.68;
  pointer-events: none;
}

.orb-one {
  width: 360px;
  height: 360px;
  right: 8%;
  top: 16%;
  background: radial-gradient(circle, rgba(245,215,122,0.36), rgba(212,175,55,0.08), transparent 70%);
  animation: floatGlow 7s ease-in-out infinite alternate;
}

.orb-two {
  width: 260px;
  height: 260px;
  left: 12%;
  bottom: 10%;
  background: radial-gradient(circle, rgba(255,255,255,0.16), rgba(212,175,55,0.07), transparent 68%);
  animation: floatGlow 9s ease-in-out infinite alternate-reverse;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 30px;
  transform: translateX(-50%);
  color: rgba(255,244,207,0.72);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  display: grid;
  justify-items: center;
  gap: 0.5rem;
  z-index: 2;
}

.scroll-cue span {
  width: 1px;
  height: 48px;
  background: linear-gradient(var(--gold), transparent);
}

.section {
  padding: clamp(5rem, 9vw, 8rem) 0;
  position: relative;
}

.dark-section {
  background:
    radial-gradient(circle at 18% 10%, rgba(212,175,55,0.14), transparent 29rem),
    linear-gradient(180deg, rgba(255,255,255,0.03), transparent),
    #080706;
  border-block: 1px solid rgba(212,175,55,0.14);
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 5rem);
}

.split-section.alt .split-grid {
  grid-template-columns: minmax(360px, 1.05fr) minmax(0, 0.95fr);
}

.split-copy p {
  font-size: 1.04rem;
}

.image-frame {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 1px;
  background: linear-gradient(135deg, rgba(245,215,122,0.78), rgba(212,175,55,0.10), rgba(255,255,255,0.16));
  box-shadow: var(--shadow);
}

.image-frame::before {
  content: "";
  position: absolute;
  inset: -18px;
  border-radius: calc(var(--radius-lg) + 18px);
  background: radial-gradient(circle at 70% 18%, rgba(212,175,55,0.24), transparent 55%);
  z-index: -1;
}

.image-frame img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 3rem;
}

.section-heading.center {
  text-align: center;
  margin-inline: auto;
}

.card-grid {
  display: grid;
  gap: 1.35rem;
}

.card-grid.three {
  grid-template-columns: repeat(3, 1fr);
}

.card-grid.two {
  grid-template-columns: repeat(2, 1fr);
}

.premium-card,
.icon-card,
.testimonial,
.contact-card,
.stat-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: linear-gradient(145deg, rgba(255,255,255,0.065), rgba(255,255,255,0.02));
  box-shadow: 0 22px 70px rgba(0,0,0,0.28);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.premium-card::before,
.icon-card::before,
.testimonial::before,
.contact-card::before,
.stat-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 82% 0%, rgba(245,215,122,0.20), transparent 38%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.premium-card:hover,
.icon-card:hover,
.testimonial:hover,
.contact-card:hover,
.stat-card:hover {
  transform: translateY(-8px);
  border-color: rgba(245,215,122,0.62);
  box-shadow: 0 28px 90px rgba(0,0,0,0.4), 0 0 36px rgba(212,175,55,0.08);
}

.premium-card:hover::before,
.icon-card:hover::before,
.testimonial:hover::before,
.contact-card:hover::before,
.stat-card:hover::before {
  opacity: 1;
}

.room-card img {
  aspect-ratio: 16 / 11;
  object-fit: cover;
}

.card-body {
  padding: 1.45rem;
  position: relative;
}

.price {
  display: inline-flex;
  color: var(--soft-gold);
  font-weight: 900;
  margin-bottom: 0.75rem;
  letter-spacing: 0.04em;
}

.note {
  margin-top: 1.5rem;
  padding: 1rem 1.25rem;
  border: 1px solid rgba(245,215,122,0.22);
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  text-align: center;
}

.vip-section {
  background:
    linear-gradient(135deg, rgba(212,175,55,0.10), transparent 45%),
    url('../images/casino-night.svg') center / cover fixed;
}

.vip-section::before,
.nightlife-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(5,5,5,0.79);
}

.vip-panel,
.neon-panel,
.form-panel,
.map-panel {
  position: relative;
  border: 1px solid rgba(245,215,122,0.34);
  border-radius: var(--radius-lg);
  background: rgba(5,5,5,0.70);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
  padding: clamp(1.5rem, 4vw, 3rem);
}

.vip-panel {
  max-width: 1080px;
  margin: 0 auto;
  text-align: center;
}

.compact {
  margin-top: 2rem;
}

.icon-card,
.testimonial,
.contact-card,
.stat-card,
.taste-card {
  padding: 1.5rem;
}

.icon-card i,
.taste-card i,
.contact-card i,
.testimonial i {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  margin-bottom: 1.1rem;
  color: #080807;
  background: linear-gradient(135deg, var(--soft-gold), var(--gold));
  box-shadow: 0 14px 38px rgba(212,175,55,0.22);
}

.why-section {
  background: radial-gradient(circle at center, rgba(212,175,55,0.13), transparent 38rem), var(--black);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.stat-card {
  min-height: 150px;
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
}

.stat-card span {
  position: relative;
  display: block;
  font-family: Georgia, serif;
  font-size: clamp(1.65rem, 3vw, 2.65rem);
  color: var(--soft-gold);
  font-weight: 900;
  line-height: 1;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--soft-gold);
  font-weight: 900;
  border-bottom: 1px solid rgba(245,215,122,0.45);
  padding-bottom: 0.18rem;
}

.legal-callout {
  border-left: 3px solid var(--gold);
  padding: 1rem 1.1rem;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  background: rgba(212,175,55,0.08);
  color: rgba(255,244,207,0.88);
}

.timeline {
  position: relative;
  display: grid;
  gap: 1rem;
  max-width: 920px;
  margin: 0 auto;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 27px;
  top: 20px;
  bottom: 20px;
  width: 1px;
  background: linear-gradient(var(--gold), transparent);
}

.timeline-item {
  position: relative;
  padding: 1.25rem 1.25rem 1.25rem 5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.04);
}

.timeline-item span {
  position: absolute;
  left: 0.95rem;
  top: 1.25rem;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--soft-gold), var(--gold));
  color: #080807;
  font-weight: 900;
}

.testimonial p {
  position: relative;
  font-size: 1.08rem;
  color: rgba(255,244,207,0.85);
}

.testimonial h3 {
  font-family: Inter, sans-serif;
  font-size: 1rem;
  color: var(--soft-gold);
  letter-spacing: 0.02em;
}

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

.lux-list {
  padding: 0;
  margin: 1.5rem 0 2rem;
  list-style: none;
  display: grid;
  gap: 0.8rem;
}

.lux-list li {
  color: var(--muted);
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
}

.lux-list i {
  color: var(--gold);
  margin-top: 0.34rem;
}

.nightlife-section {
  background: url('../images/casino-night.svg') center / cover fixed;
}

.neon-panel {
  max-width: 920px;
  margin-inline: auto;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(212,175,55,0.16), rgba(255,255,255,0.04)),
    rgba(5,5,5,0.78);
}

.contact-card {
  text-align: center;
}

.contact-card a:not(.btn) {
  color: var(--soft-gold);
}

.form-map-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1.35rem;
  align-items: start;
}

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

.form-group {
  margin-bottom: 1rem;
}

label {
  display: block;
  color: var(--champagne);
  font-weight: 800;
  margin-bottom: 0.45rem;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(245,215,122,0.24);
  border-radius: var(--radius-sm);
  background: rgba(0,0,0,0.36);
  color: var(--white);
  padding: 0.9rem 1rem;
  font: inherit;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

select option {
  color: #111;
}

input:focus,
select:focus,
textarea:focus,
button:focus-visible,
a:focus-visible {
  outline: none;
  border-color: var(--soft-gold);
  box-shadow: 0 0 0 4px rgba(212,175,55,0.16);
}

.checkbox-row {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin: 1rem 0 0.35rem;
}

.checkbox-row input {
  width: 20px;
  height: 20px;
  accent-color: var(--gold);
}

.error-message {
  display: block;
  min-height: 1.25rem;
  color: #ffcfbd;
  font-size: 0.9rem;
  margin-top: 0.25rem;
}

.success-message {
  margin-top: 1rem;
  color: var(--soft-gold);
  font-weight: 900;
  text-align: center;
}

.map-wrap {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  min-height: 420px;
  background: #090806;
}

.map-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.22) contrast(1.08);
}

.map-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1rem;
}

.site-footer {
  position: relative;
  overflow: hidden;
  background: #050505;
  border-top: 1px solid rgba(212,175,55,0.18);
  padding: 5rem 0 1.5rem;
}

.footer-crest {
  position: absolute;
  width: 620px;
  height: 620px;
  right: -260px;
  top: -260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,175,55,0.18), transparent 65%);
  pointer-events: none;
}

.footer-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 1.25fr 1.1fr;
  gap: 2rem;
}

.footer-col h3 {
  font-family: Inter, sans-serif;
  font-size: 0.94rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--soft-gold);
}

.footer-col ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.footer-col a {
  color: rgba(255,244,207,0.82);
}

.footer-col a:hover,
.footer-col a:focus-visible {
  color: var(--soft-gold);
}

.footer-domain,
.disclaimer {
  color: rgba(255,244,207,0.76);
}

.age-line {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-bottom {
  position: relative;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.back-top {
  color: var(--soft-gold);
}

.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  width: min(1120px, calc(100% - 32px));
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid rgba(245,215,122,0.38);
  border-radius: 24px;
  background: rgba(5,5,5,0.92);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.cookie-banner.show {
  display: flex;
}

.cookie-banner p {
  margin: 0;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: flex-end;
}

.cookie-actions .btn {
  min-height: 42px;
  padding: 0.7rem 1rem;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 2100;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.72);
  padding: 1rem;
}

.modal.open {
  display: flex;
}

.modal-panel {
  width: min(620px, 100%);
  position: relative;
  border: 1px solid rgba(245,215,122,0.44);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, #100f0d, #050505);
  box-shadow: var(--shadow);
  padding: clamp(1.4rem, 4vw, 2.4rem);
}

.modal-close {
  position: absolute;
  right: 1rem;
  top: 1rem;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.04);
  color: var(--champagne);
  font-size: 1.65rem;
  cursor: pointer;
}

.toggle-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 18px;
  padding: 1rem;
  margin: 0.75rem 0;
  background: rgba(255,255,255,0.04);
}

.toggle-row span {
  display: block;
  color: var(--muted);
  font-size: 0.93rem;
  font-weight: 500;
}

.toggle-row input {
  width: 48px;
  height: 24px;
  accent-color: var(--gold);
}

.toggle-row .status {
  color: var(--soft-gold);
  font-weight: 900;
  white-space: nowrap;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes floatGlow {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(18px, -18px, 0) scale(1.04); }
}

@media (max-width: 1100px) {
  .nav-book {
    display: none;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 920px) {
  .nav-toggle {
    display: block;
    order: 3;
  }
  .primary-nav {
    position: fixed;
    top: var(--header-height);
    left: 16px;
    right: 16px;
    display: grid;
    gap: 0.5rem;
    padding: 1rem;
    border: 1px solid rgba(245,215,122,0.32);
    border-radius: 22px;
    background: rgba(5,5,5,0.96);
    box-shadow: var(--shadow);
    transform: translateY(-20px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }
  body.nav-open .primary-nav {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  body.nav-open .nav-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  body.nav-open .nav-toggle span:nth-child(2) {
    opacity: 0;
  }
  body.nav-open .nav-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  .nav-actions {
    margin-left: auto;
  }
  .split-grid,
  .split-section.alt .split-grid,
  .form-map-grid {
    grid-template-columns: 1fr;
  }
  .card-grid.three,
  .amenity-grid,
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .image-frame img {
    max-height: 560px;
  }
  .cookie-banner {
    align-items: flex-start;
    flex-direction: column;
  }
  .cookie-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  :root {
    --header-height: 76px;
  }
  .container {
    width: min(100% - 28px, var(--container));
  }
  .logo {
    font-size: 1rem;
  }
  .age-badge {
    width: 40px;
    height: 40px;
    font-size: 0.85rem;
  }
  .hero-content {
    padding: 5rem 0 4rem;
  }
  .hero-buttons,
  .map-actions,
  .cookie-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .card-grid.three,
  .card-grid.two,
  .amenity-grid,
  .stats-grid,
  .form-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .note {
    border-radius: var(--radius-sm);
  }
  .timeline::before {
    display: none;
  }
  .timeline-item {
    padding: 1.25rem;
  }
  .timeline-item span {
    position: static;
    margin-bottom: 0.9rem;
  }
  .footer-bottom {
    display: grid;
  }
  .cookie-banner {
    bottom: 12px;
    border-radius: 18px;
  }
}



/* Legal pages */
.footer-subtitle {
  margin-top: 1.45rem;
}

.footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.95rem;
}

.footer-bottom-links a,
.footer-legal-link {
  color: var(--soft-gold);
}

.legal-page .page-hero {
  min-height: 54vh;
}

.legal-intro {
  max-width: 980px;
  margin-inline: auto;
  text-align: center;
}

.legal-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.legal-meta span {
  border: 1px solid rgba(245,215,122,0.24);
  border-radius: 999px;
  padding: 0.55rem 0.85rem;
  background: rgba(255,255,255,0.04);
  color: rgba(255,244,207,0.84);
  font-weight: 800;
  font-size: 0.9rem;
}

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

.legal-card {
  position: relative;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: linear-gradient(145deg, rgba(255,255,255,0.06), rgba(255,255,255,0.018));
  box-shadow: 0 22px 70px rgba(0,0,0,0.24);
  padding: clamp(1.25rem, 3vw, 2rem);
}

.legal-card.full-width {
  grid-column: 1 / -1;
}

.legal-card i {
  display: inline-grid;
  place-items: center;
  width: 50px;
  height: 50px;
  margin-bottom: 1rem;
  border-radius: 16px;
  color: #080807;
  background: linear-gradient(135deg, var(--soft-gold), var(--gold));
}

.legal-list {
  padding: 0;
  margin: 1rem 0 0;
  display: grid;
  gap: 0.75rem;
  list-style: none;
}

.legal-list li {
  color: var(--muted);
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
}

.legal-list li::before {
  content: "";
  width: 0.48rem;
  height: 0.48rem;
  margin-top: 0.68rem;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 16px rgba(212,175,55,0.45);
}

.legal-warning {
  border: 1px solid rgba(245,215,122,0.36);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(212,175,55,0.12), rgba(255,255,255,0.035));
  padding: clamp(1.4rem, 4vw, 2.4rem);
  text-align: center;
}

.responsible-badge-row {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

@media (max-width: 920px) {
  .legal-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}
