/* ===========================================
   FALCONERA 37 — Stylesheet
   =========================================== */

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

:root {
  --gold:       #c9a96e;
  --gold-light: #e8d5b0;
  --dark:       #0e0e0e;
  --dark-2:     #161616;
  --white:      #ffffff;
  --off-white:  #f7f4ef;
  --text:       #2c2c2c;
  --text-muted: #888;
  --serif:      'Cormorant Garamond', Georgia, serif;
  --sans:       'Jost', system-ui, sans-serif;
  --ease:       all 0.3s ease;
  --nav-h:      72px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }

/* ── TYPOGRAPHY ── */
h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

p {
  font-size: 1rem;
  line-height: 1.85;
  font-weight: 300;
  color: var(--text);
  margin-bottom: 1.1rem;
}

p:last-child { margin-bottom: 0; }

/* ── NAVBAR ── */
#navbar {
  position: fixed;
  top: 0; left: 0; width: 100%;
  z-index: 900;
  padding: 1.2rem 0;
  transition: background 0.4s ease, padding 0.3s ease, box-shadow 0.3s ease;
}

#navbar.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  padding: 0.7rem 0;
  box-shadow: 0 1px 24px rgba(0,0,0,0.07);
}

#navbar.scrolled .nav-logo       { color: var(--dark); text-shadow: none; }
#navbar.scrolled .nav-links a    { color: var(--dark); text-shadow: none; }
#navbar.scrolled .lang-btn       { color: var(--text-muted); }
#navbar.scrolled .nav-toggle span{ background: var(--dark); }

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2.5rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-logo {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: var(--white);
  text-decoration: none;
  text-shadow: 0 1px 6px rgba(0,0,0,0.4);
  white-space: nowrap;
  flex-shrink: 0;
}

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

.nav-links {
  display: flex;
  list-style: none;
  gap: 2.25rem;
  margin-left: auto;
}

.nav-links a {
  color: rgba(255,255,255,0.88);
  text-decoration: none;
  font-size: 0.73rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-shadow: 0 1px 4px rgba(0,0,0,0.3);
  transition: color 0.25s;
}

.nav-links a:hover { color: var(--gold); }

.lang-switcher {
  display: flex;
  gap: 0.15rem;
  margin-left: 1.5rem;
}

.lang-btn {
  background: none;
  border: none;
  color: rgba(255,255,255,0.5);
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  cursor: pointer;
  padding: 0.2rem 0.3rem;
  transition: color 0.25s;
}

.lang-btn:hover, .lang-btn.active { color: var(--gold); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--white);
  transition: var(--ease);
}

/* ── MOBILE MENU ── */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 950;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.mobile-menu.open { opacity: 1; pointer-events: all; }

.mobile-menu ul { list-style: none; text-align: center; }

.mobile-menu ul li + li { margin-top: 2rem; }

.mobile-menu ul a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  transition: color 0.25s;
}

.mobile-menu ul a:hover { color: var(--gold); }

.mobile-close {
  position: absolute;
  top: 1.5rem; right: 2rem;
  background: none;
  border: none;
  color: rgba(255,255,255,0.6);
  font-size: 2rem;
  cursor: pointer;
  transition: color 0.25s;
}

.mobile-close:hover { color: var(--white); }

.mobile-langs {
  display: flex;
  gap: 1rem;
}

.mobile-langs .lang-btn {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
}

.mobile-langs .lang-btn.active { color: var(--gold); }

/* ── HERO ── */
#hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 35%;
  transform: scale(1.06);
  transition: transform 7s ease;
}

#hero.loaded .hero-bg { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.28) 0%,
    rgba(0,0,0,0.48) 55%,
    rgba(0,0,0,0.72) 100%
  );
}

.hero-content {
  position: relative;
  text-align: center;
  color: var(--white);
  padding: 0 1.5rem;
  animation: fadeUp 1s ease 0.2s both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-location {
  font-size: 0.92rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  font-weight: 400;
}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 4vw, 3.2rem);
  font-weight: 300;
  letter-spacing: 0.22em;
  line-height: 1;
  margin-bottom: 1.2rem;
}

.hero-subtitle {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-style: italic;
  font-weight: 300;
  color: rgba(255,255,255,0.82);
  margin-bottom: 2.5rem;
  letter-spacing: 0.04em;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
}

.hero-scroll span {
  display: block;
  width: 1px;
  height: 56px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  animation: scrollPulse 2.2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%   { opacity: 0; transform: scaleY(0); transform-origin: top; }
  40%  { opacity: 1; transform: scaleY(1); transform-origin: top; }
  60%  { opacity: 1; transform: scaleY(1); transform-origin: bottom; }
  100% { opacity: 0; transform: scaleY(0); transform-origin: bottom; }
}

/* ── BUTTON ── */
.btn-gold {
  display: inline-block;
  background: var(--gold);
  color: var(--dark);
  text-decoration: none;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 1rem 2.75rem;
  border: none;
  cursor: pointer;
  transition: background 0.25s, transform 0.2s;
}

.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

/* ── STATS ── */
#stats { background: var(--dark); padding: 2.25rem 0; }

.stats-grid {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2.5rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}

.stat-number {
  display: block;
  font-family: var(--serif);
  font-size: 2.8rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

/* ── SECTIONS ── */
.section-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 6rem 2.5rem;
}

.section-header { padding-bottom: 2rem; }

.section-label {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.bg-dark  { background: var(--dark-2); }
.bg-warm  { background: var(--off-white); }

/* dark section text */
.bg-dark h2 { color: var(--white); }
.bg-dark p  { color: rgba(255,255,255,0.62); }

/* ── SPLIT LAYOUT ── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.split-image img {
  width: 100%;
  height: 560px;
  object-fit: cover;
}

/* ── FEATURES ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem 2.5rem;
  margin-top: 3rem;
}

.feature-item {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
}

.feature-icon { font-size: 1.6rem; margin-bottom: 1rem; }

.feature-item h3 {
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.65rem;
}

.feature-item p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.75;
  margin: 0;
}

/* ── GALLERY ── */
.gallery-grid {
  columns: 4;
  column-gap: 3px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: #111;
  break-inside: avoid;
  margin-bottom: 3px;
}

.gallery-item.gallery-wide {
  /* colonnes : pas de spanning, les photos s'empilent naturellement */
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.55s ease;
}

.gallery-item:hover img { transform: scale(1.06); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.gallery-overlay span {
  color: var(--white);
  font-size: 2rem;
  font-weight: 200;
  opacity: 0;
  transform: scale(0.6);
  transition: var(--ease);
}

.gallery-item:hover .gallery-overlay           { background: rgba(0,0,0,0.3); }
.gallery-item:hover .gallery-overlay span      { opacity: 1; transform: scale(1); }

/* ── GO TO TOP ── */
#go-top {
  display: none;
  position: fixed;
  bottom: 1.5rem;
  right: 1.25rem;
  z-index: 900;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  border: none;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 3px 14px rgba(0,0,0,0.25);
  transition: opacity 0.3s, transform 0.3s;
  align-items: center; justify-content: center;
  opacity: 0;
  pointer-events: none;
}
#go-top.visible { opacity: 1; pointer-events: auto; }
@media (max-width: 768px) {
  #go-top { display: flex; }
}

/* ── LIGHTBOX ── */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.94);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
}

.lightbox.open { display: flex; }

.lb-img-container { max-width: 90vw; max-height: 90vh; }

.lb-img-container img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
}

.lb-close {
  position: absolute;
  top: 1.25rem; right: 1.75rem;
  background: none;
  border: none;
  color: rgba(255,255,255,0.65);
  font-size: 2.5rem;
  line-height: 1;
  cursor: pointer;
  transition: color 0.25s;
}

.lb-close:hover { color: var(--white); }

.lb-prev, .lb-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: rgba(255,255,255,0.55);
  font-size: 4rem;
  line-height: 1;
  cursor: pointer;
  padding: 0 1.25rem;
  transition: color 0.25s;
}

.lb-prev { left: 0; }
.lb-next { right: 0; }
.lb-prev:hover, .lb-next:hover { color: var(--gold); }

/* ── TARIF CALCULATOR ── */
.tarif-calculator {
  background: var(--white);
  padding: 2.25rem 2.5rem;
  margin-bottom: 2.5rem;
  box-shadow: 0 2px 40px rgba(0,0,0,0.07);
}

.tarif-inputs {
  display: flex;
  gap: 1.5rem;
  align-items: flex-end;
  flex-wrap: wrap;
}

.input-group { flex: 1; min-width: 170px; }

.input-group label {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.input-group input {
  width: 100%;
  border: 1px solid #ddd;
  padding: 0.8rem 1rem;
  font-family: var(--sans);
  font-size: 0.92rem;
  color: var(--dark);
  outline: none;
  transition: border-color 0.25s;
  -webkit-appearance: none;
}

.input-group input:focus { border-color: var(--gold); }

.tarif-result {
  display: none;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  margin-top: 2rem;
  padding-top: 1.75rem;
  border-top: 1px solid #eee;
}

.tarif-result.visible { display: flex; }

.result-nights { text-align: center; min-width: 100px; }

.result-nights span:first-child {
  display: block;
  font-family: var(--serif);
  font-size: 3rem;
  color: var(--gold);
  line-height: 1;
}

.result-nights span:last-child {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.result-divider {
  width: 1px;
  height: 60px;
  background: #eee;
}

.result-total { display: flex; flex-direction: column; }

.result-total span {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
}

.result-total strong {
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--dark);
}

.tarif-note {
  font-size: 0.7rem;
  font-style: italic;
  font-weight: 300;
  opacity: 0.55;
  margin-left: 0.5rem;
}

.result-note {
  margin-left: auto;
  font-size: 0.78rem;
  font-style: italic;
  color: var(--text-muted);
  white-space: nowrap;
  max-width: 320px;
  margin-bottom: 0;
  line-height: 1.6;
}

/* ── TARIF TABLE ── */
.tarif-table {
  border: 1px solid #e8e8e8;
  background: var(--white);
}

.tarif-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 0.85rem 1.5rem;
  border-bottom: 1px solid #f0f0f0;
  font-size: 0.9rem;
  transition: background 0.2s;
}

.tarif-row:last-child { border-bottom: none; }

.tarif-row.header {
  background: var(--dark);
  color: rgba(255,255,255,0.8);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.tarif-row:not(.header):hover { background: #fafafa; }
.tarif-row.peak { background: #fffcf5; }
.tarif-row.current { font-weight: 700; background: #f7f3ea; border-left: 3px solid var(--gold); padding-left: calc(1.5rem - 3px); }

/* ── AVAILABILITY CALENDAR ─────────────────────────── */
.dispo-wrap {
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(0,0,0,0.08);
}
.dispo-subtitle {
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 1rem;
}
.dispo-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.dispo-legend { display: flex; gap: 1.5rem; }
.leg-item { display: flex; align-items: center; gap: 0.45rem; font-size: 0.82rem; color: #555; }
.leg-dot { width: 13px; height: 13px; border-radius: 3px; flex-shrink: 0; }
.leg-dot.free    { background: #fff; border: 1px solid #ccc; }
.leg-dot.blocked { background: rgba(201,169,110,0.18); border: 1px solid var(--gold); }
.dispo-note { font-size: 0.75rem; color: #999; font-style: italic; margin: 0; }

.cal-wrap { display: flex; align-items: flex-start; gap: 0.75rem; }
.cal-arrow {
  background: none;
  border: 1px solid var(--gold);
  color: var(--gold);
  width: 34px; height: 34px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.4rem;
  line-height: 1;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 2.8rem;
  transition: background 0.2s, color 0.2s;
}
.cal-arrow:hover { background: var(--gold); color: #fff; }

#cal-months { display: flex; gap: 1.25rem; flex: 1; flex-wrap: wrap; }
.cal-month {
  flex: 1; min-width: 230px;
  background: #fff;
  border-radius: 8px;
  padding: 1.25rem 1rem;
  box-shadow: 0 2px 14px rgba(0,0,0,0.06);
}
.cal-month-title {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 400;
  color: var(--dark);
  text-align: center;
  margin-bottom: 0.75rem;
  text-transform: capitalize;
  letter-spacing: 0.02em;
}
.cal-weekdays { display: grid; grid-template-columns: repeat(7,1fr); margin-bottom: 0.25rem; }
.cal-weekdays span { text-align: center; font-size: 0.68rem; font-weight: 600; color: #bbb; padding: 0.2rem 0; }
.cal-grid { display: grid; grid-template-columns: repeat(7,1fr); gap: 2px; }
.cal-day {
  text-align: center;
  padding: 0.32rem 0;
  font-size: 0.8rem;
  border-radius: 4px;
  color: var(--dark);
}
.cal-day.past    { color: #d0d0d0; }
.cal-day.blocked { background: rgba(201,169,110,0.14); color: #b8956a; text-decoration: line-through; }
.cal-day.today   { border: 1.5px solid var(--gold); font-weight: 700; color: var(--dark); }

.rate {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--dark);
  white-space: nowrap;
  padding-left: 2rem;
}

.rate.gold { color: var(--gold); }

/* ── LOCATION ── */
.location-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 2rem;
}

.location-tags span {
  font-size: 0.78rem;
  padding: 0.45rem 0.9rem;
  background: var(--off-white);
  color: var(--text);
  letter-spacing: 0.04em;
}

/* ── MAP ── */
.map-container {
  width: 100%;
  overflow: hidden;
  filter: grayscale(20%) contrast(1.05);
}

/* ── ACTIVITÉS ── */
.section-intro {
  max-width: 640px;
  color: var(--text-light);
  margin-bottom: 3rem;
  font-size: 1rem;
  line-height: 1.75;
}
/* Centrage uniquement dans les containers CTA (text-align:center inline) */
[style*="text-align:center"] .section-intro,
[style*="text-align: center"] .section-intro {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

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

.activite-card {
  background: var(--dark-2);
  overflow: hidden;
}

.activite-photo {
  overflow: hidden;
  height: 220px;
  background: #1a1a1a;
}

.activite-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.55s ease;
}

.activite-card:hover .activite-photo img { transform: scale(1.06); }

.activite-body {
  padding: 1.4rem 1.6rem 1.8rem;
}

.activite-distance {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.6rem;
}

.activite-body h3 {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.6rem;
}

.activite-body p {
  font-size: 0.86rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.75;
}

/* ── FAQ ── */
.faq-list {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 100%;
}
.faq-item {
  border-bottom: 1px solid rgba(0,0,0,0.1);
  padding: 2rem 0;
}
.faq-item:first-child { border-top: 1px solid rgba(0,0,0,0.1); }
.faq-question {
  font-size: 1.05rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
  color: var(--c-gold, #b8956a);
}
.faq-answer {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--c-text, #2a2a2a);
  opacity: 0.85;
  margin: 0;
}
/* faq-item border keeps its light-theme color (section always on white background) */

/* ── WHATSAPP CTA ── */
.whatsapp-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: #25d366;
  color: #fff;
  text-decoration: none;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  margin-bottom: 2.5rem;
  transition: background 0.2s, transform 0.2s;
}

.whatsapp-cta:hover { background: #1ebe5d; transform: translateY(-1px); }

.whatsapp-cta svg { width: 1.35rem; height: 1.35rem; flex-shrink: 0; }

.whatsapp-label {
  font-size: 0.72rem;
  font-weight: 400;
  opacity: 0.85;
  background: rgba(0,0,0,0.15);
  padding: 0.15em 0.5em;
  border-radius: 3px;
}

/* ── CONTACT FORM ── */
.contact-intro {
  color: rgba(255,255,255,0.6) !important;
  max-width: 560px;
  margin-bottom: 2.75rem;
}

.contact-form { max-width: 100%; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

.form-group { display: flex; flex-direction: column; }
.form-full  { margin-bottom: 1.25rem; }

.form-group label {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 0.45rem;
}

.form-group input,
.form-group textarea {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--white);
  padding: 0.8rem 1rem;
  font-family: var(--sans);
  font-size: 0.92rem;
  outline: none;
  transition: border-color 0.25s, background 0.25s;
  resize: vertical;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(255,255,255,0.07);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255,255,255,0.2);
}

.form-group input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(0.5);
  cursor: pointer;
}

.form-success {
  display: none;
  margin-top: 1.5rem;
  padding: 1rem 1.25rem;
  border-left: 3px solid var(--gold);
  color: var(--gold-light);
  font-size: 0.9rem;
}

.form-success.visible { display: block; }

/* ── FOOTER ── */
footer {
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,0.04);
  padding: 3rem 0 2.5rem;
  text-align: center;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2.5rem;
}

.footer-logo {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--white);
  letter-spacing: 0.16em;
  margin-bottom: 0.65rem;
}

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

.footer-addr {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.06em;
  margin-bottom: 0.5rem;
}

.footer-email {
  display: block;
  font-size: 0.85rem;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 0.06em;
  margin-bottom: 0.5rem;
  transition: color 0.25s;
}

.footer-email:hover { color: var(--gold-light); }

.footer-whatsapp {
  display: block;
  font-size: 0.82rem;
  color: #4ade80;
  text-decoration: none;
  letter-spacing: 0.06em;
  margin-bottom: 1.75rem;
  transition: color 0.25s;
  opacity: 0.85;
}

.footer-whatsapp:hover { color: #86efac; opacity: 1; }

.footer-copy {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.18);
  letter-spacing: 0.08em;
}

.footer-credits {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.25);
  margin-top: 0.5rem;
}

.footer-credits a {
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-credits a:hover {
  color: var(--gold-light);
}

/* ── SCROLL ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

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

/* ── RESPONSIVE 1024px ── */
@media (max-width: 1024px) {
  .features-grid  { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid   { columns: 2; }
  .activites-grid { grid-template-columns: repeat(2, 1fr); }
  .split { gap: 3.5rem; }
}

/* ── RESPONSIVE 768px ── */
@media (max-width: 768px) {
  .nav-links, .lang-switcher { display: none; }
  .nav-toggle { display: flex; }

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

  .split {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  /* in #location the image comes first in HTML, keep that order on mobile */
  .section-container { padding: 4rem 1.5rem; }

  .features-grid  { grid-template-columns: 1fr; gap: 2rem; }
  .activites-grid { grid-template-columns: 1fr; }

  .form-row { grid-template-columns: 1fr; }

  .tarif-inputs { flex-direction: column; align-items: stretch; }
  .input-group  { min-width: 100%; }
  .result-note  { margin-left: 0; }
  .result-divider { display: none; }

  .split-image img { height: 280px; }
}

/* ── RESPONSIVE 480px ── */
@media (max-width: 480px) {
  .gallery-grid  { columns: 2; }
  .stats-grid    { grid-template-columns: repeat(2, 1fr); }
  h2 { font-size: 1.9rem; }
}
