/* ===== Padel All Stars — Design tokens ===== */
:root {
  --bg: #060608;
  --bg-soft: #0d0d12;
  --panel: #131318;
  --border: rgba(255, 255, 255, 0.08);
  --gold: #f0c419;
  --gold-soft: #d4af37;
  --gold-gradient: linear-gradient(135deg, #f7d774, #d4af37 45%, #a67c00 100%);
  --gold-text-gradient: linear-gradient(180deg, #ffdc73 0%, #f2a93c 50%, #c96a1f 100%);
  --text: #f5f5f7;
  --text-muted: #e6e6ea;
  --radius: 14px;
  --font-head: "Oswald", sans-serif;
  --font-body: "Poppins", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; margin: 0; padding: 0; }

h1, h2, h3 {
  font-family: var(--font-head);
  text-transform: uppercase;
  margin: 0;
  letter-spacing: 0.5px;
}

.text-gold,
.text-gold-gradient {
  background: var(--gold-text-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 8px;
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 1px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn--gold {
  background: var(--gold-gradient);
  color: #1a1305;
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.25);
}
.btn--gold:hover { box-shadow: 0 10px 28px rgba(212, 175, 55, 0.4); }
.btn--outline {
  background: transparent;
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.25);
}
.btn--outline:hover {
  border-color: var(--gold-soft);
  background: var(--gold-text-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.btn--gold-outline {
  background: rgba(212, 175, 55, 0.06);
  color: var(--gold);
  border-color: var(--gold-soft);
}
.btn--gold-outline:hover {
  background: rgba(212, 175, 55, 0.14);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.2);
}
.btn__label {
  background: var(--gold-text-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.btn--small { padding: 10px 20px; font-size: 0.75rem; }
.btn--nav { padding: 10px 18px; }
.icon-cal { display: inline-flex; align-items: center; color: var(--gold-soft); }
.navbar__whatsapp {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}
.navbar__whatsapp:hover { border-color: var(--gold-soft); transform: translateY(-2px); }

.link-gold {
  background: var(--gold-text-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-family: var(--font-head);
  font-size: 0.85rem;
  letter-spacing: 0.5px;
}

/* ===== Logo ===== */
.logo {
  display: flex;
  align-items: center;
}
.logo__img {
  height: 52px;
  width: auto;
}
.logo__img--footer {
  height: 110px;
}

/* ===== Navbar ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(6, 6, 8, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.navbar__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 14px 32px;
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links {
  display: flex;
  gap: 22px;
  flex: 1;
  justify-content: center;
  flex-wrap: wrap;
}
.nav-links a {
  font-family: var(--font-head);
  font-size: 0.75rem;
  letter-spacing: 1px;
  color: var(--text-muted);
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.nav-links a:hover,
.nav-links a.active {
  background: var(--gold-text-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  border-color: var(--gold-soft);
}
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.burger span {
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
}

/* ===== Hero (video plein écran) ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  max-width: none;
  margin: 0;
  padding: 0 32px;
  overflow: hidden;
  isolation: isolate;
}
.hero__video-wrap {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6,6,8,0.75) 0%, rgba(6,6,8,0.45) 45%, rgba(6,6,8,0.9) 100%),
    linear-gradient(90deg, rgba(6,6,8,0.85) 0%, rgba(6,6,8,0.15) 55%);
}
.hero__content {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  padding-top: 90px;
}
.hero__title {
  font-size: clamp(2.6rem, 6vw, 5rem);
  line-height: 1.02;
  text-shadow: 0 4px 30px rgba(0,0,0,0.5);
}
.hero__lead {
  font-family: var(--font-head);
  font-size: 1.15rem;
  margin: 20px 0 10px;
  line-height: 1.5;
}
.hero__sub {
  color: var(--text-muted);
  max-width: 700px;
  margin: 10px 0 30px;
}
.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero__sound-toggle {
  position: absolute;
  bottom: 30px;
  right: 32px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.3);
  background: rgba(6,6,8,0.5);
  color: var(--text);
  font-size: 1.1rem;
  cursor: pointer;
  backdrop-filter: blur(6px);
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.hero__sound-toggle:hover { border-color: var(--gold); transform: scale(1.06); }
.hero__socials {
  position: absolute;
  top: 50%;
  right: 32px;
  transform: translateY(-50%);
  flex-direction: column;
  gap: 16px;
  z-index: 2;
}
.hero__socials.socials a {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(6,6,8,0.5);
  backdrop-filter: blur(6px);
  border: 1.5px solid rgba(255,255,255,0.6);
  color: #fff;
  font-size: 1.4rem;
}
.hero__socials.socials a:hover { border-color: #fff; background: rgba(6,6,8,0.75); }
.hero__socials.socials svg { width: 32px; height: 32px; }

.stats-bar {
  max-width: 1400px;
  margin: 0 auto;
  transform: translateY(-60px);
  background: rgba(9, 8, 7, 0.88);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: var(--radius);
  padding: 24px 32px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 4px 24px;
}
.stat:not(:last-child) { border-right: 1px solid rgba(255, 255, 255, 0.1); }
.stat__icon-box {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 10px;
  border: 1.5px solid rgba(212, 175, 55, 0.45);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
}
.stat__text { display: flex; flex-direction: column; gap: 4px; }
.stat__value {
  font-family: var(--font-head);
  font-size: 1.5rem;
  line-height: 1;
  background: var(--gold-text-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat__label {
  font-size: 0.68rem;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  line-height: 1.4;
  text-transform: uppercase;
}
.stat--schedule .stat__value { font-size: 1rem; }
.stat--schedule .stat__label { font-size: 0.7rem; }

/* ===== Sections shared ===== */
section { padding: 60px 32px; max-width: 1400px; margin: 0 auto; }
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.section-head h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
.section-head p { color: var(--text-muted); margin-top: 10px; max-width: 560px; }
.section-head--center { justify-content: center; text-align: center; flex-direction: column; align-items: center; }
.eyebrow {
  font-family: var(--font-head);
  letter-spacing: 3px;
  font-size: 0.8rem;
  background: var(--gold-text-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}


/* ===== Terrains carousel ===== */
.carousel { display: flex; align-items: center; gap: 16px; }
.carousel__track-wrapper { overflow: hidden; flex: 1; }
.carousel__track {
  display: flex;
  gap: 20px;
  transition: transform 0.45s ease;
}
.terrain-card {
  flex: 0 0 calc(20% - 16px);
  min-width: 220px;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}
.terrain-card__img {
  aspect-ratio: 4/5;
  background: linear-gradient(160deg, #16345c, #0a1a2e);
  position: relative;
}
.terrain-card__img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(90deg, transparent 0 18px, rgba(255,255,255,0.04) 18px 20px);
}
.terrain-card p {
  padding: 14px;
  font-family: var(--font-head);
  font-size: 0.75rem;
  letter-spacing: 1px;
  color: var(--text-muted);
}
.carousel__arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--panel);
  color: var(--gold);
  font-size: 1.3rem;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s ease, transform 0.2s ease;
}
.carousel__arrow:hover { background: rgba(212,175,55,0.12); transform: scale(1.05); }
.carousel__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}
.terrains__clubhouse {
  text-align: center;
  margin: 32px auto 0;
  font-family: var(--font-head);
  font-size: clamp(1.55rem, 2.5vw, 2.05rem);
  font-weight: 500;
}
.clubhouse-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1180px;
  margin: 28px auto 0;
}
.clubhouse-gallery__item {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--border);
}
.clubhouse-gallery__item img {
  display: block;
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}
.clubhouse-gallery__item figcaption {
  padding: 14px;
  font-family: var(--font-head);
  font-size: 0.75rem;
  letter-spacing: 1px;
  color: var(--text-muted);
  text-align: center;
}
@media (max-width: 760px) {
  .clubhouse-gallery { grid-template-columns: repeat(2, 1fr); }
}
.carousel__dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
.carousel__dots span.active { background: var(--gold); transform: scale(1.2); }

/* ===== Booking strip ===== */
.booking-strip {
  max-width: 100%;
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 30px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.booking-strip p {
  font-family: var(--font-head);
  font-size: 1.1rem;
  margin: 0;
}
.booking-steps {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.booking-step {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 0.75rem;
  letter-spacing: 0.5px;
  color: var(--text-muted);
}
.booking-step__num {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  flex-shrink: 0;
}
.booking-step__arrow { color: var(--text-muted); }

/* ===== Horaires ===== */
.hours__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.hours-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.hours-card:hover { transform: translateY(-6px); border-color: var(--gold-soft); }
.hours-card h3 {
  font-size: 0.85rem;
  margin: 14px 0 10px;
  letter-spacing: 0.5px;
  line-height: 1.4;
}
.hours-card p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.6; }
.hours-card__note { font-size: 0.75rem; color: var(--gold); }

/* ===== Offers ===== */
.offers__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}
.offer-card {
  display: block;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px 26px;
  text-align: center;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.offer-card:hover { transform: translateY(-6px); border-color: var(--gold-soft); }
.offer-card h3 { margin: 16px 0 10px; font-size: 1.05rem; }
.offer-card p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 16px; }

.video-teaser { margin-top: 50px; text-align: center; }
.video-teaser h3 {
  font-family: var(--font-head);
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  font-weight: 500;
  margin-bottom: 24px;
}
.video-teaser__frame {
  max-width: 780px;
  margin: 0 auto;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: #000;
}
.video-teaser__frame video { display: block; width: 100%; aspect-ratio: 16/9; background: #000; }

/* ===== Pricing ===== */
.pricing-tabs {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 36px;
}
.pricing-tab {
  background: var(--panel);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-family: var(--font-head);
  font-size: 0.75rem;
  letter-spacing: 0.5px;
  line-height: 1.3;
  padding: 12px 20px;
  border-radius: 8px;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}
.pricing-tab:hover { color: var(--text); border-color: var(--gold-soft); }
.pricing-tab.is-active {
  background: var(--gold-gradient);
  color: #1a1305;
  border-color: transparent;
}
.pricing-panel { display: none; }
.pricing-panel.is-active { display: block; }
.pricing-panel__title {
  font-size: 0.9rem;
  background: var(--gold-text-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.price-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.price-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 560px;
}
.price-table th,
.price-table td {
  padding: 12px 16px;
  text-align: left;
  font-size: 0.85rem;
  white-space: nowrap;
}
.price-table thead th {
  background: var(--panel);
  color: var(--gold);
  font-family: var(--font-head);
  font-size: 0.7rem;
  letter-spacing: 1px;
  white-space: normal;
  line-height: 1.3;
}
.price-table thead th:last-child,
.price-table td:last-child { width: 1%; white-space: nowrap; }
.price-table tbody td { color: var(--text-muted); border-top: 1px solid var(--border); }
.price-table tbody tr:hover td { color: var(--text); }
.tag {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.7rem;
  letter-spacing: 0.5px;
  padding: 3px 9px;
  border-radius: 5px;
}
.tag--hc { background: rgba(212,175,55,0.15); color: var(--gold); }
.tag--hp { background: rgba(224,82,82,0.15); color: #e07b52; }
.pricing-weekend {
  margin-top: 20px;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}
.pricing-weekend strong { color: var(--gold); }
.pricing-flat {
  text-align: center;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 26px;
}
#tab-abonnement {
  display: none;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
#tab-abonnement.is-active { display: grid; }
.pricing-subscription,
.pricing-credits {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 26px;
}
.pricing-list { margin: 20px 0 0; }
.pricing-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
}
.pricing-list li:first-child { border-top: none; }
.pricing-credits .pricing-weekend { margin-top: 20px; font-size: 0.78rem; }
.pricing-flat__price {
  font-family: var(--font-head);
  font-size: 2.4rem;
  background: var(--gold-text-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 0 0 6px;
}
.pricing-flat__price span { font-size: 1rem; color: var(--text-muted); }
.pricing-flat__price--secondary { font-size: 1.4rem; color: var(--text); }
.pricing-cta { text-align: center; margin-top: 40px; }

/* ===== Réservation en ligne ===== */
.app-promo {
  background: var(--bg-soft);
  max-width: none;
  padding: 60px 32px;
}
.app-promo__inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 50px;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}
.app-promo__content h2 { margin: 10px 0 18px; font-size: clamp(1.6rem, 3vw, 2.2rem); }
.app-promo__content > p { color: var(--text-muted); line-height: 1.7; margin-bottom: 30px; }
.app-promo__features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-bottom: 34px;
  text-align: left;
}
.app-feature { display: flex; gap: 14px; align-items: flex-start; }
.app-feature__icon {
  font-size: 1.3rem;
  color: var(--gold);
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--panel);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}
.app-feature h3 { font-size: 0.9rem; margin-bottom: 4px; }
.app-feature p { color: var(--text-muted); font-size: 0.85rem; line-height: 1.5; }

.app-download {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 30px;
  text-align: center;
}
.app-download h3 { font-size: 1rem; margin-bottom: 10px; }
.app-download p { color: var(--text-muted); font-size: 0.85rem; line-height: 1.5; margin-bottom: 20px; }
.app-phone {
  position: relative;
  width: 240px;
  height: 460px;
  margin: 8px auto 28px;
  border: 9px solid var(--text);
  border-radius: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
}
.app-phone::before {
  content: "";
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 8px;
  border-radius: 999px;
  background: var(--text);
}
.app-phone::after {
  content: "";
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 6px;
  border-radius: 999px;
  background: var(--text);
}
.app-phone__qr {
  width: 200px;
  height: 200px;
  background: #fff;
  padding: 10px;
  border-radius: 8px;
}
.app-download__stores {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.store-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #000;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 8px;
  padding: 8px 16px;
}
.store-badge:hover { border-color: var(--gold-soft); transform: translateY(-2px); }
.store-badge__icon { display: flex; flex-shrink: 0; }
.store-badge__text { display: flex; flex-direction: column; line-height: 1.15; text-align: left; }
.store-badge__text small { font-size: 0.6rem; color: #ccc; }
.store-badge__text strong { font-size: 1.05rem; font-family: Arial, sans-serif; font-weight: 600; }
.app-download__note {
  display: block;
  margin-top: 16px;
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}

/* ===== Localisation ===== */
.map-wrap {
  aspect-ratio: 21/9;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}
.map-wrap iframe { width: 100%; height: 100%; display: block; filter: grayscale(0.2) contrast(1.05); }
.map-link { display: inline-block; margin-top: 20px; }

/* ===== Legal / info pages ===== */
.legal-page { max-width: 900px; }
.legal-page__text { color: var(--text-muted); line-height: 1.7; text-align: center; }
.legal-page--standalone { max-width: 820px; padding-top: 150px; }
.legal-back { display: inline-block; margin-bottom: 30px; }
.legal-page__banner {
  background: rgba(212,175,55,0.1);
  border: 1px solid var(--gold-soft);
  color: var(--gold);
  border-radius: 8px;
  padding: 14px 18px;
  font-size: 0.85rem;
  margin-bottom: 40px;
}
.legal-page__body h3 {
  font-size: 1rem;
  background: var(--gold-text-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 34px 0 12px;
  letter-spacing: 0.5px;
}
.legal-page__body h3:first-child { margin-top: 0; }
.legal-page__body p { color: var(--text-muted); line-height: 1.8; }
.legal-page__body ul { list-style: disc; color: var(--text-muted); line-height: 1.8; padding-left: 20px; margin: 0 0 16px; }
.legal-page__body ul ul { margin-bottom: 0; }
.legal-page__body li { list-style: disc; }
.legal-page__body li::marker { color: var(--gold); }
.legal-page__subtitle {
  margin: 50px 0 4px;
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  color: var(--text);
}
.legal-page__date { color: var(--gold); font-size: 0.8rem; margin-bottom: 20px; }

/* ===== Reglement interieur (affiche) ===== */
.legal-page--wide { max-width: 1220px; }
.reglement-card {
  border: 2px solid var(--gold-soft);
  border-radius: 22px;
  background: var(--bg-soft);
  padding: 40px 44px 30px;
}
.reglement-card__header {
  display: flex;
  align-items: center;
  gap: 28px;
  padding-bottom: 22px;
  margin-bottom: 30px;
  border-bottom: 1px solid rgba(217,154,50,.3);
}
.reglement-card__logo { flex-shrink: 0; }
.reglement-card__logo img { height: 90px; width: auto; }
.reglement-card__titles { text-align: center; flex: 1; }
.reglement-card__title {
  font-size: clamp(2rem, 4.4vw, 3.1rem);
  line-height: 1.05;
  background: var(--gold-text-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 0;
}
.reglement-card__subtitle {
  margin: 14px 0 0;
  font-style: italic;
  font-size: 0.85rem;
  color: var(--text-muted);
  letter-spacing: 0.3px;
}
.reglement-card__subtitle span { color: var(--gold); margin: 0 12px; }
.reglement-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 50px;
}
.reglement-col { border-left: 1px solid rgba(217,154,50,.25); padding-left: 50px; }
.reglement-col:first-child { border-left: none; padding-left: 0; }
.reglement-item { padding: 20px 0; border-bottom: 1px solid rgba(217,154,50,.16); }
.reglement-item:first-child { padding-top: 0; }
.reglement-item--last { border-bottom: none; }
.reglement-item__head { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.reglement-item__num {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--gold-text-gradient);
  color: #1a1206;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.reglement-item__head h3 {
  margin: 0;
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--gold);
}
.reglement-item__body { display: flex; gap: 18px; align-items: flex-start; }
.reglement-item__icon {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}
.reglement-item__icon svg { width: 64px; height: 64px; fill: none; stroke: currentColor; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }
.reglement-item__body p, .reglement-item__body ul, .reglement-item__body > div { color: var(--text-muted); font-size: 0.85rem; line-height: 1.6; margin: 0; flex: 1; }
.reglement-item__body ul { padding-left: 18px; }
.reglement-item__body ul ul { margin-top: 4px; }
.reglement-item__lead { margin: 10px 0 4px !important; color: var(--text) !important; }
.reglement-item__lead:first-child { margin-top: 0 !important; }
.reglement-item--highlight { border: 1px solid var(--gold-soft); border-radius: 12px; padding: 18px 20px; background: rgba(217,154,50,.05); }
.reglement-item--highlight.reglement-item--last { border-bottom: 1px solid var(--gold-soft); }
.reglement-date {
  margin-top: 24px;
  text-align: center;
  border: 1px solid rgba(217,154,50,.4);
  border-radius: 10px;
  padding: 12px;
  color: var(--gold);
  font-family: var(--font-head);
  font-size: 0.9rem;
}
.reglement-card__footer {
  margin-top: 30px;
  padding-top: 22px;
  border-top: 1px solid rgba(217,154,50,.3);
  text-align: center;
  font-style: italic;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.5px;
}
.reglement-card__footer span { margin: 0 10px; }
@media (max-width: 900px) {
  .reglement-card { padding: 30px 22px 22px; }
  .reglement-card__header { flex-direction: column; gap: 14px; text-align: center; }
  .reglement-grid { grid-template-columns: 1fr; }
  .reglement-col { border-left: none; padding-left: 0; }
  .reglement-col + .reglement-col { border-top: 1px solid rgba(217,154,50,.25); padding-top: 20px; margin-top: 10px; }
}

/* ===== Partenaires ===== */
.partners__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.partner-card {
  display: flex;
  flex-direction: column;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.partner-card:hover { transform: translateY(-6px); border-color: var(--gold-soft); }
.partner-card__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 30px 20px;
  background: var(--bg-soft);
  font-family: var(--font-head);
  font-size: 1rem;
  letter-spacing: 1px;
  color: var(--gold);
  border-bottom: 1px solid var(--border);
}
.partner-card__logo-full {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  background: var(--bg-soft);
  padding: 20px;
  border-bottom: 1px solid var(--border);
}
.partner-card__logo-full img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.partner-card__logo--muted {
  color: var(--text-muted);
  font-size: 1.8rem;
}
.partner-card__body { padding: 22px 24px; text-align: center; }
.partner-card__body h3 { font-size: 1rem; margin-bottom: 8px; }
.partner-card__body p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.5; margin-bottom: 14px; }
.partner-card--placeholder { opacity: 0.6; }

/* ===== Contact ===== */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}
.contact__info h2 { margin: 10px 0 24px; font-size: clamp(1.6rem, 3vw, 2.2rem); }
.contact__list { margin-bottom: 24px; }
.contact__list li {
  padding: 10px 0;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
}
.socials { display: flex; gap: 12px; }
.socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: background 0.2s ease, transform 0.2s ease;
}
.socials a:hover { background: rgba(212,175,55,0.12); transform: translateY(-2px); }

.contact__form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
}
.contact__form input,
.contact__form textarea {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--text);
  font-family: var(--font-body);
  resize: vertical;
}
.contact__form input:focus,
.contact__form textarea:focus {
  outline: none;
  border-color: var(--gold-soft);
}
.contact__form button { align-self: flex-start; }
.form-note { color: var(--gold); font-size: 0.85rem; min-height: 1.2em; }

/* ===== Footer ===== */
.footer {
  border-top: 1px solid var(--border);
  padding: 50px 32px 0;
}
.footer__grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1.4fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
}
.footer__brand p { color: var(--text-muted); margin-top: 14px; max-width: 260px; }
.footer__nav-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 24px;
}
.footer__col h4 {
  font-family: var(--font-head);
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  background: var(--gold-text-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 16px;
}
.footer__col a {
  display: block;
  color: var(--text-muted);
  padding: 6px 0;
  transition: color 0.2s ease;
}
.footer__col a:hover {
  background: var(--gold-text-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.footer__bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--text-muted);
  font-size: 0.8rem;
}
.footer__bottom p { margin: 0; }
.footer__legal-links { display: flex; gap: 20px; }
.footer__legal-links a { color: var(--text-muted); transition: color 0.2s ease; }
.footer__legal-links a:hover {
  background: var(--gold-text-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ===== Mobile CTA ===== */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  background: var(--gold-gradient);
  color: #1a1305;
  text-align: center;
  padding: 16px;
  font-family: var(--font-head);
  font-size: 0.85rem;
  letter-spacing: 1px;
}

/* ===== Scroll reveal ===== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ===== Responsive ===== */
@media (max-width: 1080px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(6, 6, 8, 0.97);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 32px 24px;
    gap: 14px;
    max-height: calc(100vh - 70px);
    overflow-y: auto;
  }
  .nav-links.is-open { display: flex; }
  .burger { display: flex; }
  .burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .burger.is-open span:nth-child(2) { opacity: 0; }
  .burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .stats-bar { grid-template-columns: repeat(2, 1fr); row-gap: 20px; }
  .stat:not(:last-child) { border-right: none; }
  .stat:nth-child(odd) { border-right: 1px solid rgba(255, 255, 255, 0.1); }
  .stat:nth-child(-n+2) { border-bottom: 1px solid rgba(255, 255, 255, 0.1); padding-bottom: 18px; }
  .app-promo__inner { grid-template-columns: 1fr; }
  .contact__grid { grid-template-columns: 1fr; }
  .offers__grid { grid-template-columns: 1fr; }
  .pricing-tabs { flex-direction: column; }
  .pricing-tab { text-align: center; }
  #tab-abonnement.is-active { grid-template-columns: 1fr; }
  .hours__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: repeat(2, 1fr); }
  .partners__grid { grid-template-columns: repeat(2, 1fr); }
  .terrain-card { flex: 0 0 calc(50% - 10px); }
  .btn--nav { display: none; }
  .mobile-cta { display: block; }
  body { padding-bottom: 60px; }
}

@media (max-width: 640px) {
  .terrain-card { flex: 0 0 100%; }
  section { padding: 44px 20px; }
  .hero { padding: 0 20px; }
  .booking-strip { flex-direction: column; text-align: center; }
  .footer__grid { grid-template-columns: 1fr; }
  .app-promo__features { grid-template-columns: 1fr; }
  .partners__grid { grid-template-columns: 1fr; }
  .map-wrap { aspect-ratio: 4/5; }
}

/* ========================================================================== */
/* 2026 — Premium visual refresh based on the approved black / amber charter  */
/* ========================================================================== */
:root {
  --bg: #020202;
  --bg-soft: #080808;
  --panel: #0b0b0b;
  --panel-2: #101010;
  --border: rgba(217, 154, 50, 0.22);
  --border-soft: rgba(255, 255, 255, 0.09);
  --gold: #d99a32;
  --gold-light: #e8b04a;
  --gold-soft: #b97c28;
  --gold-dark: #8e5b1b;
  --gold-gradient: linear-gradient(135deg, #e7ad45 0%, #d99a32 55%, #b97c28 100%);
  --gold-text-gradient: linear-gradient(180deg, #e9b44e 0%, #d99a32 100%);
  --text: #f5f3ef;
  --text-muted: #aaa7a1;
  --radius: 2px;
}

body {
  background:
    radial-gradient(circle at 75% 10%, rgba(217,154,50,.035), transparent 26%),
    var(--bg);
  line-height: 1.55;
}

::selection { background: var(--gold); color: #070707; }

h1, h2, h3 { letter-spacing: .15px; }
.text-gold, .text-gold-gradient { background: none; color: var(--gold); }

/* Controls */
.btn {
  min-height: 44px;
  border-radius: 1px;
  padding: 12px 22px;
  font-size: .78rem;
  letter-spacing: .7px;
  font-weight: 600;
  transition: background-color .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn--gold {
  background: var(--gold);
  color: #090704;
  border-color: var(--gold);
  box-shadow: none;
}
.btn--gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  box-shadow: none;
}
.btn--outline {
  background: rgba(0,0,0,.28);
  color: var(--text);
  border-color: rgba(217,154,50,.48);
}
.btn--outline:hover {
  background: rgba(217,154,50,.08);
  border-color: var(--gold);
  color: var(--gold-light);
}
.btn--gold-outline {
  background: transparent;
  color: var(--gold-light);
  border-color: rgba(217,154,50,.65);
}
.btn--gold-outline:hover { background: rgba(217,154,50,.08); box-shadow: none; }
.btn__label, .link-gold, .eyebrow, .pricing-panel__title,
.footer__col h4 { background: none; color: var(--gold); }
.link-gold:hover { color: var(--gold-light); }

/* Navigation */
.navbar {
  background: rgba(2,2,2,.91);
  backdrop-filter: blur(6px);
  border-bottom-color: rgba(217,154,50,.18);
}
.navbar__inner { max-width: 1400px; min-height: 92px; padding: 16px 28px; gap: 22px; }
.logo__img { height: 64px; }
.logo__img--footer { height: 110px; }
.nav-links { gap: 14px; flex-wrap: nowrap; }
.nav-links a {
  font-family: var(--font-body);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .3px;
  color: #c7c3bc;
  padding: 8px 0 7px;
  border-bottom-width: 1px;
}
.nav-links a:hover, .nav-links a.active { background: none; color: var(--gold); border-color: var(--gold); }
.btn--nav { min-height: 38px; padding: 8px 16px; }

/* Hero */
.hero { min-height: 760px; height: 100vh; max-height: 960px; padding: 0 32px; }
.hero__video { filter: saturate(.82) contrast(1.08) brightness(.9); }
.hero__overlay {
  background:
    linear-gradient(180deg, rgba(2,2,2,.55) 0%, rgba(2,2,2,.14) 43%, rgba(2,2,2,.88) 100%),
    linear-gradient(90deg, rgba(2,2,2,.94) 0%, rgba(2,2,2,.68) 31%, rgba(2,2,2,.16) 64%, rgba(2,2,2,.22) 100%);
}
.hero__content { max-width: 1180px; padding-top: 76px; }
.hero__title {
  font-size: clamp(2.3rem, 4.4vw, 4.1rem);
  line-height: 1.05;
  font-weight: 600;
  letter-spacing: -1.5px;
  text-shadow: 0 6px 35px rgba(0,0,0,.65);
}
.hero__lead {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  margin: 22px 0 8px;
  line-height: 1.55;
}
.hero__sub {
  max-width: 430px;
  margin: 5px 0 25px;
  font-size: .82rem;
  line-height: 1.7;
  color: #b9b5ae;
}
.hero__actions { gap: 12px; }
.hero__sound-toggle {
  width: auto;
  height: 34px;
  padding: 0 12px;
  border-radius: 1px;
  border-color: rgba(217,154,50,.38);
  background: rgba(2,2,2,.65);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #d8d4ce;
  font-family: var(--font-head);
  font-size: .62rem;
  letter-spacing: .8px;
}
.hero__sound-toggle:hover { border-color: var(--gold); transform: none; }
.sound-dot { width: 6px; height: 6px; border-radius: 50%; background: #696969; }
.hero__sound-toggle.is-on .sound-dot { background: var(--gold); box-shadow: 0 0 10px rgba(217,154,50,.55); }

/* Statistics / signature band */
.stats-bar {
  max-width: 1180px;
  margin-bottom: -28px;
  transform: translateY(-74px);
  background: rgba(3,3,3,.96);
  backdrop-filter: none;
  border-color: rgba(217,154,50,.34);
  border-radius: 1px;
  padding: 17px 15px;
}
.stat { padding: 2px 25px; gap: 13px; }
.stat:not(:last-child) { border-right-color: rgba(217,154,50,.18); }
.stat__icon-box {
  width: 52px; height: 52px; border-radius: 0;
  border: 0; color: var(--gold); background: transparent;
}
.stat__icon-box svg { width: 41px; height: 41px; stroke-width: 1.2; }
.stat__value { background: none; color: var(--gold); font-size: 1.42rem; }
.stat__label { color: #b8b4ad; font-size: .59rem; line-height: 1.3; }

/* Shared sections */
section { max-width: 1180px; padding: 20px 24px; }
.section-head { margin-bottom: 30px; }
.section-head h2 { font-size: clamp(1.55rem, 2.5vw, 2.05rem); font-weight: 500; }
.section-head p { color: #9e9b95; font-size: .8rem; line-height: 1.65; max-width: 640px; }
.section-head--center { max-width: 700px; margin-left: auto; margin-right: auto; margin-bottom: 36px; }
.eyebrow { font-size: .68rem; letter-spacing: 2.2px; font-weight: 600; }

/* Cards */
.hours-card, .offer-card, .partner-card, .app-download, .contact__form {
  background: linear-gradient(180deg, #0d0d0d 0%, #080808 100%);
  border-color: rgba(217,154,50,.19);
  border-radius: 1px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.018);
}
.hours-card, .offer-card { transition: border-color .2s ease, transform .2s ease, background .2s ease; }
.hours-card:hover, .offer-card:hover, .partner-card:hover {
  transform: translateY(-3px);
  border-color: rgba(217,154,50,.62);
  background: #0c0c0c;
}
.offer-card h3 { font-weight: 500; color: var(--gold); }

/* Terrain showcase: use actual site photography */
.terrains { padding-top: 48px; }
.carousel { gap: 12px; }
.carousel__track { gap: 12px; }
.terrain-card {
  flex-basis: calc(20% - 10px);
  min-width: 190px;
  background: #070707;
  border-color: rgba(217,154,50,.25);
  border-radius: 1px;
}
.terrain-card__img { aspect-ratio: 1.28/1; background-size: cover !important; background-position: center !important; filter: saturate(.78) contrast(1.08); }
.terrain-card__img::after { background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,.58)); }
.terrain-card p { padding: 12px 10px; margin: 0; color: #d3d0ca; font-size: .85rem; line-height: 1.35; }
.carousel__arrow {
  width: 36px; height: 36px; background: transparent;
  border-color: rgba(217,154,50,.45); color: var(--gold); font-size: 1.2rem;
}
.carousel__arrow:hover { background: rgba(217,154,50,.08); transform: none; }
.carousel__dots { margin-top: 17px; gap: 6px; }
.carousel__dots span { width: 5px; height: 5px; }

/* Hours */
.hours__grid { gap: 12px; }
.hours-card { padding: 25px 17px; }
.app-feature__icon {
  color: var(--gold);
  font-family: var(--font-head);
  font-weight: 500;
}
.hours-card h3 { font-weight: 500; color: var(--gold); }
.hours-card p { color: #a6a39d; font-size: .8rem; }

/* Booking strip */
.booking-strip {
  max-width: 100%;
  padding: 20px max(24px, calc((100vw - 1180px)/2));
  background: #070707;
  border-top-color: rgba(217,154,50,.18);
  border-bottom-color: rgba(217,154,50,.18);
}
.booking-strip p { font-size: 1rem; font-weight: 500; }
.booking-step { font-size: .62rem; }
.booking-step__num { width: 27px; height: 27px; border-color: rgba(217,154,50,.7); }


/* Offers */
.offers__grid { gap: 14px; }
.offer-card { padding: 30px 24px; }

/* Pricing */
.pricing-tabs { gap: 8px; }
.pricing-tab {
  background: #090909; border-color: rgba(217,154,50,.19); border-radius: 0;
  color: #aaa7a1; font-size: .67rem; padding: 11px 18px;
}
.pricing-tab.is-active { background: var(--gold); color: #090704; border-color: var(--gold); }
.price-table-wrap { border-radius: 0; border-color: rgba(217,154,50,.18); }
.price-table thead th { background: #0d0d0d; color: var(--gold); }
.price-table tbody td { border-top-color: rgba(255,255,255,.055); }
.tag { border-radius: 0; }
.tag--hc { background: rgba(217,154,50,.12); color: var(--gold-light); }
.pricing-flat { background: #090909; border-color: rgba(217,154,50,.2); border-radius: 0; }

/* Reservation app */
.app-promo { background: #070707; padding: 20px 24px; }
.app-promo__inner { max-width: 1180px; gap: 55px; }
.app-feature__icon { width: 36px; height: 36px; border-radius: 0; background: transparent; border-color: rgba(217,154,50,.28); font-size: .72rem; }
.app-download { padding: 46px 36px; }
.app-phone { border-radius: 30px; }
.app-phone__qr { border-radius: 0; }

/* Map */
.map-wrap { border-radius: 0; border-color: rgba(217,154,50,.23); }
.map-wrap iframe { filter: grayscale(.72) contrast(1.1) brightness(.8); }

/* Contact */
.contact__grid { gap: 60px; }
.contact__list li { border-bottom-color: rgba(217,154,50,.12); font-size: 1rem; }
.socials a { border-radius: 0; border-color: rgba(217,154,50,.3); }
.footer .socials {
  justify-content: center;
}
.footer .socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  width: 52px;
  height: 52px;
  font-size: 1.3rem;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(6px);
  border: 1.5px solid rgba(255,255,255,0.6);
  color: #fff;
}
.footer .socials a:hover {
  background: rgba(255,255,255,0.14);
  border-color: #fff;
}
.footer .socials svg {
  width: 26px;
  height: 26px;
}
.contact__form { padding: 28px; }
.contact__form input, .contact__form textarea {
  border-radius: 0; background: #070707; border-color: rgba(255,255,255,.1); font-size: .84rem;
}
.contact__form input:focus, .contact__form textarea:focus { border-color: var(--gold); }

/* Partners */
.partner-card { border-radius: 0; }
.partner-card__logo { background: #080808; border-bottom-color: rgba(217,154,50,.16); }
.partner-card__logo-full { background: #080808; border-bottom-color: rgba(217,154,50,.16); }
.partner-mark { width: 30px; height: 30px; border: 1px solid rgba(217,154,50,.4); display:inline-flex; align-items:center; justify-content:center; color:var(--gold); }

/* Footer */
.footer { background: #030303; border-top-color: rgba(217,154,50,.18); }
.footer__grid { max-width: 1180px; }
.footer__col a, .footer__brand p, .footer__bottom { color: #96938d; font-size: .78rem; }
.footer__col a:hover, .footer__legal-links a:hover { background: none; color: var(--gold); }
.footer__bottom { border-top-color: rgba(217,154,50,.12); }

/* Legal pages */
.legal-page__banner { border-radius: 0; background: rgba(217,154,50,.07); border-color: rgba(217,154,50,.4); }
.legal-page__body h3 { background: none; color: var(--gold); }

/* Mobile CTA */
.mobile-cta { background: var(--gold); color: #080604; }

/* Accessibility */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

@media (max-width: 1240px) {
  .nav-links { gap: 12px; }
  .nav-links a { font-size: .59rem; }
  .navbar__inner { padding-left: 18px; padding-right: 18px; }
}

@media (max-width: 1080px) {
  .hero { min-height: 720px; height: 90vh; }
  .nav-links {
    background: rgba(2,2,2,.98);
    border-bottom-color: rgba(217,154,50,.2);
    padding: 18px 24px 26px;
    gap: 7px;
  }
  .nav-links a { font-size: .72rem; padding: 8px 0; }
  .stats-bar { margin-left: 20px; margin-right: 20px; }
  .terrain-card { flex-basis: calc(50% - 6px); }
  .booking-strip { padding-left: 24px; padding-right: 24px; }
}

@media (max-width: 640px) {
  .navbar__inner { min-height: 64px; padding: 7px 16px; }
  .logo__img { height: 43px; }
  .logo__img--footer { height: 85px; }
  .hero { min-height: 680px; height: 88vh; padding: 0 20px; align-items: flex-end; padding-bottom: 140px; }
  .hero__overlay {
    background: linear-gradient(180deg, rgba(2,2,2,.28) 0%, rgba(2,2,2,.42) 36%, rgba(2,2,2,.96) 90%), linear-gradient(90deg, rgba(2,2,2,.55), rgba(2,2,2,.16));
  }
  .hero__content { padding-top: 65px; }
  .hero__title { font-size: clamp(1.9rem, 8vw, 2.6rem); }
  .hero__lead { font-size: .9rem; }
  .hero__sub { font-size: .78rem; max-width: 100%; }
  .hero__actions { display: grid; grid-template-columns: 1fr; width: 100%; }
  .hero__actions .btn { justify-content: center; }
  .hero__sound-toggle { right: 20px; bottom: 88px; }
  .hero__socials { top: 78px; right: 20px; transform: none; gap: 10px; }
  .hero__socials.socials a { width: 38px; height: 38px; font-size: 1.05rem; }
  .hero__socials.socials svg { width: 22px; height: 22px; }
  .stats-bar {
    transform: none; margin: -44px 16px 18px; position: relative; z-index: 4;
    grid-template-columns: 1fr 1fr; padding: 14px 6px;
  }
  .stat { padding: 10px 12px; gap: 8px; }
  .stat__icon-box { width: 34px; height: 34px; }
  .stat__icon-box svg { width: 27px; height: 27px; }
  .stat__value { font-size: 1.1rem; }
  .stat__label { font-size: .52rem; }
  section { padding: 18px 18px; }
  .section-head { margin-bottom: 24px; }
  .section-head h2 { font-size: 1.55rem; }
  .section-head p { font-size: .78rem; }
  .terrain-card { flex-basis: 100%; min-width: 100%; }
  .terrain-card__img { aspect-ratio: 16/10; }
  .carousel__arrow { width: 32px; height: 32px; }
  .hours__grid { gap: 10px; }
  .hours-card { padding: 22px 12px; }
  .booking-strip { padding: 24px 18px; }
  .booking-steps { justify-content: center; }
  .booking-step__arrow { display: none; }
  .app-promo { padding: 18px 18px; }
  .contact__form { padding: 22px 18px; }
}

/* ===== V2 CONTENT ENHANCEMENTS ===== */
.terrain-card__img {
  overflow: hidden;
  background: #080808;
}
.terrain-card__img img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .45s ease, filter .35s ease;
  filter: saturate(.92) contrast(1.05) brightness(.88);
}
.terrain-card:hover .terrain-card__img img {
  transform: scale(1.035);
  filter: saturate(1) contrast(1.08) brightness(.98);
}
.terrain-card__img::after {
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,.38));
  pointer-events: none;
}
.app-feature__icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.app-feature__icon {
  color: var(--gold);
  width: 54px;
  height: 54px;
}
.app-feature__icon svg { width: 30px; height: 30px; }

/* Pricing readability */
.pricing-tab {
  font-size: .86rem;
  line-height: 1.35;
  padding: 14px 22px;
}
.pricing-panel__title {
  font-size: 1.08rem;
}
.price-table th,
.price-table td {
  padding: 9px 16px;
  font-size: 1rem;
}
.price-table thead th {
  font-size: .82rem;
}
.tag { font-size: .78rem; padding: 4px 10px; }
.pricing-weekend { font-size: 1rem; }
.pricing-flat__price { font-size: 2.7rem; }
.pricing-flat__price--secondary { font-size: 1.65rem; }

/* App phone preview */
.app-download {
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media (max-width: 760px) {
  .price-table th,
  .price-table td { font-size: .92rem; padding: 8px 14px; }
  .price-table thead th { font-size: .76rem; }
  .pricing-tab { font-size: .78rem; }
  .app-phone { width: 190px; height: 380px; border-width: 7px; }
  .app-phone__qr { width: 150px; height: 150px; }
}
