/* =========================================================
   CEMBRO 1900 · DESIGN SYSTÈME PALACE ALPIN
   Inspiré Courchevel 1850 / Airelles / Cheval Blanc
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400;1,500&family=Inter:wght@300;400;500;600&display=swap');

/* ── Variables ── */
:root {
  /* Backgrounds */
  --bg-dark:     #0D0D0D;
  --bg-surface:  #141210;
  --bg-cream:    #F4F1EB;
  --bg-cream-2:  #EDE9E1;

  /* Or */
  --gold:        #C9A227;
  --gold-muted:  #BFA36A;
  --gold-deep:   #987654;
  --gold-faint:  rgba(201,162,39,0.12);

  /* Texte */
  --text-cream:  #E8E4DC;
  --text-dim:    #8A8278;       /* corps sur fond sombre */
  --text-dark:   #1A1A1A;
  --text-grey:   #6B6460;       /* corps sur fond clair */

  /* Typographie */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-ui:      'Inter', Helvetica Neue, sans-serif;

  /* Espacement */
  --sv: clamp(80px, 9vw, 140px);   /* section vertical padding */
  --sh: clamp(20px, 5vw, 80px);    /* section horizontal padding */
  --mw: 1200px;                     /* max-width contenu */
  --tw: 640px;                      /* max-width texte prose */

  /* Transitions */
  --ease-out: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font-ui); font-size: 16px; line-height: 1.75; color: var(--text-dark); background: var(--bg-cream); }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Navigation ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 0 var(--sh);
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out);
}
.nav--scrolled {
  background: rgba(13,13,13,0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(201,162,39,0.18);
}

/* Logo */
.nav__logo {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: 1.25rem;
  letter-spacing: 0.08em;
  color: var(--text-cream);
  white-space: nowrap;
}
.nav__logo em {
  font-style: normal;
  color: var(--gold);
  font-weight: 400;
}

/* Liens */
.nav__center {
  display: flex;
  gap: clamp(20px, 2.8vw, 40px);
  align-items: center;
}
.nav__link {
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(232,228,220,0.72);
  transition: color 0.25s;
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
  transition: color 0.25s, border-color 0.25s;
}
.nav__link:hover,
.nav__link.is-active { color: var(--text-cream); border-color: var(--gold); }

/* Right side */
.nav__right {
  display: flex;
  align-items: center;
  gap: 24px;
}

/* Language toggle */
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid rgba(201,162,39,0.35);
  border-radius: 2px;
  overflow: hidden;
}
.lang-btn {
  font-family: var(--font-ui);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(232,228,220,0.5);
  padding: 5px 10px;
  transition: all 0.2s;
}
.lang-btn.is-active {
  background: var(--gold);
  color: #0D0D0D;
}
.lang-btn:hover:not(.is-active) { color: var(--text-cream); }

/* Bouton Réserver */
.nav__book {
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 8px 20px;
  border: 1px solid var(--gold);
  border-radius: 1px;
  transition: background 0.3s, color 0.3s;
}
.nav__book:hover { background: var(--gold); color: #0D0D0D; }

/* Burger mobile */
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav__burger span {
  display: block; width: 22px; height: 1px;
  background: var(--text-cream);
  transition: 0.3s;
}

/* ── Overlay mobile ── */
.nav__overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--bg-dark);
  z-index: 190;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
}
.nav__overlay.is-open { display: flex; }
.nav__overlay .nav__link {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 2.2rem;
  font-weight: 300;
  letter-spacing: 0.04em;
  text-transform: none;
  color: var(--text-cream);
  border: none;
}
.nav__overlay .nav__link:hover { color: var(--gold); }
.nav__overlay .lang-toggle {
  margin-top: 20px;
}
.nav__overlay-close {
  position: absolute;
  top: 24px; right: 24px;
  color: var(--text-dim);
  font-size: 1.5rem;
  padding: 8px;
}

/* ── Révéal au scroll ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal--d1 { transition-delay: 0.15s; }
.reveal--d2 { transition-delay: 0.30s; }
.reveal--d3 { transition-delay: 0.45s; }
.reveal--d4 { transition-delay: 0.60s; }

/* ── Utilitaires partagés ── */
.overline {
  font-family: var(--font-ui);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}
.gold-rule {
  display: block;
  width: 48px;
  height: 1px;
  background: var(--gold-muted);
  margin: 18px 0;
}
.gold-rule--center { margin: 18px auto; }

.display-title {
  font-family: var(--font-display);
  font-weight: 300;
  line-height: 1.08;
}
.display-title em { font-style: italic; color: var(--gold); }

/* ── Boutons CTA ── */
.cta {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 14px 36px;
  border-radius: 1px;
  transition: all 0.35s;
}
.cta--gold {
  background: var(--gold);
  color: #0D0D0D;
}
.cta--gold:hover { background: #b8921e; }
.cta--ghost-light {
  border: 1px solid rgba(232,228,220,0.5);
  color: var(--text-cream);
}
.cta--ghost-light:hover { border-color: var(--gold); color: var(--gold); }
.cta--ghost-dark {
  border: 1px solid rgba(26,26,26,0.4);
  color: var(--text-dark);
}
.cta--ghost-dark:hover { border-color: var(--gold); color: var(--gold); }

/* ── Sections ── */
.section {
  padding: var(--sv) var(--sh);
}
.section--dark { background: var(--bg-dark); }
.section--cream { background: var(--bg-cream); }
.section--cream-2 { background: var(--bg-cream-2); }
.section__inner {
  max-width: var(--mw);
  margin: 0 auto;
}

/* ── Hero ── */
.hero {
  position: relative;
  height: 100svh;
  min-height: 620px;
  display: flex;
  align-items: flex-end;
  padding: 0 var(--sh) clamp(60px, 8vh, 100px);
  overflow: hidden;
  background: var(--bg-dark);
}
.hero__bg {
  position: absolute;
  inset: 0;
  background: url('../images/hero.jpg') center/cover no-repeat;
  transform: scale(1.03);
  transition: transform 8s ease;
}
.hero.loaded .hero__bg { transform: scale(1); }
.hero__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(13,13,13,0.20) 0%,
    rgba(13,13,13,0.45) 50%,
    rgba(13,13,13,0.82) 85%,
    rgba(13,13,13,0.92) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--mw);
  width: 100%;
  margin: 0 auto;
}
.hero__tag {
  font-family: var(--font-ui);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.30em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 300;
  font-style: italic;
  color: var(--text-cream);
  line-height: 1.05;
  margin-bottom: 24px;
  max-width: 820px;
}
.hero__title strong {
  font-style: normal;
  font-weight: 300;
  color: var(--gold);
}
.hero__rule {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 32px;
  color: rgba(232,228,220,0.45);
  font-family: var(--font-ui);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.hero__rule::before {
  content: '';
  display: block;
  width: 56px;
  height: 1px;
  background: var(--gold-muted);
  flex-shrink: 0;
}
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero__scroll {
  position: absolute;
  right: var(--sh);
  bottom: clamp(40px, 5vh, 64px);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(232,228,220,0.35);
  font-family: var(--font-ui);
  font-size: 8px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.hero__scroll::after {
  content: '';
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gold-muted), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse { 0%,100%{opacity:.4} 50%{opacity:1} }

/* ── Bandeau chiffres ── */
.stats-band {
  background: var(--bg-surface);
  border-top: 1px solid rgba(201,162,39,0.15);
  border-bottom: 1px solid rgba(201,162,39,0.15);
  padding: 0 var(--sh);
}
.stats-band__inner {
  max-width: var(--mw);
  margin: 0 auto;
  display: flex;
  align-items: stretch;
}
.stat {
  flex: 1;
  padding: 36px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-right: 1px solid rgba(201,162,39,0.12);
}
.stat:last-child { border-right: none; }
.stat__num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}
.stat__label {
  font-family: var(--font-ui);
  font-size: 8.5px;
  font-weight: 400;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--text-dim);
}

/* ── Deux colonnes texte / image ── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 6vw, 96px);
  align-items: center;
}
.split--reverse { direction: rtl; }
.split--reverse > * { direction: ltr; }

.split__image {
  position: relative;
  overflow: hidden;
}
.split__image img {
  width: 100%;
  height: clamp(380px, 45vw, 560px);
  object-fit: cover;
  display: block;
  transition: transform 0.8s var(--ease-out);
}
.split__image:hover img { transform: scale(1.04); }
.split__image-accent {
  position: absolute;
  bottom: -1px;
  left: -1px;
  width: 48px;
  height: 48px;
  border-bottom: 2px solid var(--gold);
  border-left: 2px solid var(--gold);
  pointer-events: none;
}
.split__image-accent--tr {
  top: -1px;
  right: -1px;
  left: auto;
  bottom: auto;
  border-top: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
  border-bottom: none;
  border-left: none;
}

/* ── Atouts (features dark section) ── */
.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.feature {
  padding: 48px 40px;
  border-right: 1px solid rgba(201,162,39,0.10);
  border-bottom: 1px solid rgba(201,162,39,0.10);
}
.feature:nth-child(even) { border-right: none; }
.feature:nth-last-child(-n+2) { border-bottom: none; }
.feature__overline {
  font-family: var(--font-ui);
  font-size: 8.5px;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.feature__title {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 400;
  font-style: italic;
  color: var(--text-cream);
  margin-bottom: 16px;
  line-height: 1.2;
}
.feature__text {
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 300;
  color: var(--text-dim);
  line-height: 1.9;
}

/* ── Chiffres domaine ── */
.domain-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(201,162,39,0.10);
  border: 1px solid rgba(201,162,39,0.10);
  margin-top: 64px;
}
.domain-stat {
  background: var(--bg-dark);
  padding: 40px 32px;
  text-align: center;
}
.domain-stat__num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 300;
  color: var(--gold);
  display: block;
  line-height: 1;
  margin-bottom: 8px;
}
.domain-stat__label {
  font-family: var(--font-ui);
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-dim);
  display: block;
}

/* ── Activités ── */
.activities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--bg-cream-2);
  margin-top: 56px;
}
.activity {
  background: var(--bg-cream);
  padding: 36px 32px;
}
.activity__label {
  font-family: var(--font-ui);
  font-size: 8.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.activity__title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 400;
  font-style: italic;
  color: var(--text-dark);
  margin-bottom: 10px;
}
.activity__text {
  font-size: 13.5px;
  font-weight: 300;
  color: var(--text-grey);
  line-height: 1.8;
}

/* ── Venir / Access table ── */
.access-table {
  width: 100%;
  margin-top: 48px;
  border-collapse: collapse;
}
.access-table tr { border-bottom: 1px solid rgba(201,162,39,0.12); }
.access-table tr:last-child { border-bottom: none; }
.access-table td {
  padding: 18px 8px;
  font-family: var(--font-ui);
  font-size: 14px;
  color: var(--text-grey);
}
.access-table td:first-child {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  color: var(--text-dark);
  padding-right: 40px;
  white-space: nowrap;
}
.access-table td:last-child {
  text-align: right;
  color: var(--gold);
  font-weight: 500;
  white-space: nowrap;
}
.section--dark .access-table td {
  color: var(--text-dim);
}
.section--dark .access-table td:first-child {
  color: var(--text-cream);
}

/* ── CTA bande finale ── */
.cta-band {
  background: var(--bg-surface);
  border-top: 1px solid rgba(201,162,39,0.15);
  padding: var(--sv) var(--sh);
  text-align: center;
}

/* ── Page Hero (pages internes) ── */
.page-hero {
  background: var(--bg-dark);
  padding: clamp(120px, 14vh, 180px) var(--sh) clamp(60px, 7vh, 90px);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(201,162,39,0.06) 0%, transparent 65%);
  pointer-events: none;
}
.page-hero__over { margin-bottom: 16px; }
.page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 300;
  font-style: italic;
  color: var(--text-cream);
  line-height: 1.1;
  margin-bottom: 14px;
}
.page-hero__sub {
  font-family: var(--font-ui);
  font-size: 12px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--text-dim);
}

/* ── Galerie grid ── */
.gallery-filters {
  display: flex;
  gap: 1px;
  border: 1px solid rgba(26,26,26,0.12);
  display: inline-flex;
  margin-bottom: 48px;
}
.filter-btn {
  font-family: var(--font-ui);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--text-grey);
  padding: 10px 20px;
  background: var(--bg-cream);
  border-right: 1px solid rgba(26,26,26,0.10);
  transition: all 0.2s;
}
.filter-btn:last-child { border-right: none; }
.filter-btn:hover { color: var(--text-dark); }
.filter-btn.is-active { background: var(--text-dark); color: var(--bg-cream); }

.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 180px;
  gap: 6px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid transparent;
  transition: border-color 0.35s;
  pointer-events: none;
  z-index: 2;
}
.gallery-item:hover::after { border-color: rgba(201,162,39,0.55); }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item__cap {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(13,13,13,0.72));
  padding: 32px 16px 14px;
  font-family: var(--font-ui);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(232,228,220,0.8);
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 1;
}
.gallery-item:hover .gallery-item__cap { opacity: 1; }

.gallery-item--w8  { grid-column: span 8; }
.gallery-item--w6  { grid-column: span 6; }
.gallery-item--w4  { grid-column: span 4; }
.gallery-item--w12 { grid-column: span 12; }
.gallery-item--h2  { grid-row: span 2; }

/* ── Lightbox ── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(9,9,9,0.95);
  display: none;
  align-items: center;
  justify-content: center;
}
.lightbox.is-open { display: flex; }
.lightbox__img {
  max-width: 88vw;
  max-height: 86vh;
  object-fit: contain;
}
.lightbox__close {
  position: absolute;
  top: 20px; right: 24px;
  color: var(--text-dim);
  font-size: 1.2rem;
  width: 40px; height: 40px;
  border: 1px solid rgba(201,162,39,0.25);
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.2s, color 0.2s;
}
.lightbox__close:hover { border-color: var(--gold); color: var(--gold); }
.lightbox__nav {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  color: var(--text-dim);
  font-size: 1.4rem;
  width: 48px; height: 48px;
  border: 1px solid rgba(201,162,39,0.20);
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.2s, color 0.2s;
}
.lightbox__nav:hover { border-color: var(--gold); color: var(--gold); }
.lightbox__prev { left: 24px; }
.lightbox__next { right: 24px; }
.lightbox__info {
  position: absolute;
  bottom: 24px; left: 50%; transform: translateX(-50%);
  font-family: var(--font-ui);
  font-size: 9px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--text-dim);
  white-space: nowrap;
}

/* ── Réservation ── */
.booking-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: clamp(40px, 5vw, 72px);
  align-items: start;
}
.booking-card {
  background: var(--bg-cream);
  border: 1px solid rgba(26,26,26,0.12);
}
.booking-card iframe { display: block; width: 100%; }

.info-sidebar {
  position: sticky;
  top: 90px;
}
.info-block {
  background: var(--bg-dark);
  border: 1px solid rgba(201,162,39,0.12);
  padding: 36px 32px;
  margin-bottom: 12px;
}
.info-block__title {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--text-cream);
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(201,162,39,0.15);
}
.info-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.info-item__label {
  font-family: var(--font-ui);
  font-size: 8.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.info-item__value {
  font-family: var(--font-ui);
  font-size: 13.5px;
  color: var(--text-cream);
  line-height: 1.6;
}
.info-item__sub {
  font-size: 12px;
  color: var(--text-dim);
  margin-top: 2px;
}

/* ── Contact ── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.contact-details { display: flex; flex-direction: column; gap: 32px; }
.contact-item { display: flex; flex-direction: column; gap: 4px; }
.contact-item__label {
  font-family: var(--font-ui);
  font-size: 8.5px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
}
.contact-item__value {
  font-family: var(--font-display);
  font-size: 1rem;
  font-style: italic;
  color: var(--text-dark);
}
.contact-item__sub { font-size: 13px; color: var(--text-grey); }

/* Formulaire */
.form-card {
  background: var(--bg-dark);
  border: 1px solid rgba(201,162,39,0.12);
  padding: clamp(28px, 4vw, 48px);
}
.form-card__title {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--text-cream);
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(201,162,39,0.12);
}
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-family: var(--font-ui);
  font-size: 8.5px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,162,39,0.18);
  color: var(--text-cream);
  font-family: var(--font-ui);
  font-size: 14px;
  outline: none;
  transition: border-color 0.25s;
  border-radius: 0;
  -webkit-appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-dim); }
.form-group input:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { min-height: 130px; resize: vertical; }
.form-group select { color: var(--text-cream); }
.form-group select option { background: var(--bg-dark); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-error {
  display: none;
  font-size: 12px;
  color: #e57373;
  margin-bottom: 16px;
  padding: 10px 14px;
  border-left: 2px solid #e57373;
  background: rgba(229,115,115,0.08);
}
.form-success {
  display: none;
  font-size: 13px;
  color: #81c784;
  padding: 14px 18px;
  border-left: 2px solid #81c784;
  background: rgba(129,199,132,0.08);
  margin-bottom: 20px;
  font-family: var(--font-display);
  font-style: italic;
}
.map-container {
  margin-top: 64px;
  border: 1px solid rgba(26,26,26,0.12);
  overflow: hidden;
  min-height: 500px;
}
.map-header {
  background: var(--bg-dark);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.map-header__text {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--text-cream);
  font-size: 0.95rem;
}
.map-header__link {
  font-family: var(--font-ui);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 6px 14px;
  border: 1px solid rgba(201,162,39,0.35);
  transition: all 0.2s;
}
.map-header__link:hover { background: var(--gold); color: #0D0D0D; }
.map-placeholder {
  height: 340px;
  background: #1a1a18;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--text-dim);
  font-family: var(--font-ui);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* ── Footer ── */
.footer {
  background: #080808;
  border-top: 1px solid rgba(201,162,39,0.12);
  padding: clamp(56px, 7vw, 96px) var(--sh) 40px;
}
.footer__inner {
  max-width: var(--mw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: clamp(32px, 4vw, 64px);
  margin-bottom: 56px;
}
.footer__logo {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: 1.4rem;
  color: var(--text-cream);
  margin-bottom: 14px;
}
.footer__logo em { font-style: normal; color: var(--gold); }
.footer__tagline {
  font-size: 13px;
  font-weight: 300;
  color: var(--text-dim);
  line-height: 1.8;
}
.footer__col-title {
  font-family: var(--font-ui);
  font-size: 8.5px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer__links { display: flex; flex-direction: column; gap: 10px; }
.footer__links li {
  font-size: 13px;
  font-weight: 300;
  color: var(--text-dim);
}
.footer__links a {
  font-size: 13px;
  font-weight: 300;
  color: var(--text-dim);
  transition: color 0.2s;
}
.footer__links a:hover { color: var(--text-cream); }
.footer__bottom {
  max-width: var(--mw);
  margin: 0 auto;
  padding-top: 28px;
  border-top: 1px solid rgba(201,162,39,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 11px;
  color: rgba(138,130,120,0.6);
  font-family: var(--font-ui);
  letter-spacing: 0.05em;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .split { grid-template-columns: 1fr; }
  .split--reverse { direction: ltr; }
  .booking-layout { grid-template-columns: 1fr; }
  .domain-grid { grid-template-columns: repeat(2, 1fr); }
  .activities-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-layout { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav__center { display: none; }
  .nav__book { display: none; }
  .nav__burger { display: flex; }
  .features-grid { grid-template-columns: 1fr; }
  .feature { border-right: none; }
  .feature:nth-last-child(-n+2) { border-bottom: 1px solid rgba(201,162,39,0.10); }
  .feature:last-child { border-bottom: none; }
  .stats-band__inner { flex-wrap: wrap; }
  .stat { min-width: 50%; border-bottom: 1px solid rgba(201,162,39,0.12); }
  .gallery-masonry { grid-template-columns: repeat(6, 1fr); grid-auto-rows: 140px; }
  .gallery-item--w8, .gallery-item--w12 { grid-column: span 6; }
  .gallery-item--w4 { grid-column: span 3; }
  .gallery-item--w6 { grid-column: span 6; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .activities-grid { grid-template-columns: 1fr; }
  .domain-grid { grid-template-columns: repeat(2, 1fr); }
  .hero__title { font-size: clamp(2.4rem, 8vw, 3.5rem); }
  .hero__scroll { display: none; }
  .nav__right { gap: 12px; }
}
@media (max-width: 480px) {
  .footer__inner { grid-template-columns: 1fr; }
  .domain-grid { grid-template-columns: 1fr 1fr; }
  .gallery-masonry { grid-auto-rows: 120px; }
  .hero__actions { flex-direction: column; }
  .cta { text-align: center; }
}
