/* ============================================================
   RÉUNION STAYS — style.css
   Stack : HTML5 + CSS3 Vanilla, Mobile-first
   ============================================================ */

/* ============================================================
   1. CSS CUSTOM PROPERTIES (Design Tokens)
   ============================================================ */
:root {
  /* Colors */
  --color-white:       #FFFFFF;
  --color-bg:          #F5F5F5;
  --color-text:        #1A1A1A;
  --color-text-muted:  #6B7280;
  --color-accent:      #0077B6;
  --color-accent-dark: #005E8E;
  --color-accent-light:#EBF6FD;
  --color-sand:        #F4E9D8;
  --color-sand-dark:   #E8D5B7;
  --color-border:      #E5E7EB;
  --color-star:        #FFB800;

  /* Typography */
  --font-title:  'Playfair Display', Georgia, serif;
  --font-body:   'DM Sans', system-ui, sans-serif;

  /* Spacing */
  --space-xs:   0.5rem;
  --space-sm:   1rem;
  --space-md:   1.5rem;
  --space-lg:   2.5rem;
  --space-xl:   4rem;
  --space-2xl:  6rem;

  /* Layout */
  --container-max: 1200px;
  --container-pad: 1.25rem;

  /* Radius */
  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;

  /* Shadows */
  --shadow-sm:  0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.05);
  --shadow-md:  0 4px 16px rgba(0,0,0,.10);
  --shadow-lg:  0 12px 40px rgba(0,0,0,.15);

  /* Transitions */
  --transition: 0.25s ease;
  --transition-slow: 0.4s ease;

  /* Header height */
  --header-h: 72px;
}

/* ============================================================
   2. RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

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

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

a {
  color: var(--color-accent);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--color-accent-dark);
}

ul {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  font-size: 1rem;
}

/* ============================================================
   3. LAYOUT UTILITIES
   ============================================================ */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.section {
  padding: var(--space-xl) 0;
}

@media (min-width: 768px) {
  .section {
    padding: var(--space-2xl) 0;
  }
}

.section__header {
  text-align: center;
  margin-bottom: var(--space-lg);
}

@media (min-width: 768px) {
  .section__header {
    margin-bottom: var(--space-xl);
  }
}

.section__tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  background: var(--color-accent-light);
  padding: 0.3rem 0.9rem;
  border-radius: 999px;
  margin-bottom: var(--space-sm);
}

.section__title {
  font-family: var(--font-title);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text);
  margin-bottom: var(--space-xs);
}

.section__subtitle {
  font-size: 1rem;
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

/* ============================================================
   4. BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition), transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
}

.btn--primary {
  background: var(--color-accent);
  color: var(--color-white);
  border: 2px solid var(--color-accent);
  padding: 0.85rem 1.75rem;
  font-size: 1rem;
  box-shadow: 0 4px 15px rgba(0,119,182,.35);
}

.btn--primary:hover {
  background: var(--color-accent-dark);
  border-color: var(--color-accent-dark);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,119,182,.45);
}

.btn--outline {
  background: transparent;
  color: var(--color-accent);
  border: 2px solid var(--color-accent);
  padding: 0.75rem 1.5rem;
  font-size: 0.95rem;
}

.btn--outline:hover {
  background: var(--color-accent);
  color: var(--color-white);
  transform: translateY(-2px);
}

.btn--sm {
  padding: 0.55rem 1.1rem;
  font-size: 0.875rem;
}

.btn--lg {
  padding: 1rem 2.25rem;
  font-size: 1.05rem;
}

/* ============================================================
   5. HEADER & NAVIGATION
   ============================================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  transition: box-shadow var(--transition);
}

.header.scrolled {
  box-shadow: var(--shadow-md);
}

.nav {
  display: flex;
  align-items: center;
  height: 100%;
  gap: var(--space-md);
}

.nav__logo {
  font-family: var(--font-title);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-text);
  margin-right: auto;
  white-space: nowrap;
}

.nav__logo:hover {
  color: var(--color-accent);
}

.nav__links {
  display: none;
  align-items: center;
  gap: var(--space-md);
}

@media (min-width: 900px) {
  .nav__links {
    display: flex;
  }
}

.nav__link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text-muted);
  transition: color var(--transition);
  position: relative;
  padding-bottom: 2px;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-accent);
  transition: width var(--transition);
}

.nav__link:hover,
.nav__link.active {
  color: var(--color-text);
}

.nav__link:hover::after,
.nav__link.active::after {
  width: 100%;
}

.nav__cta {
  display: none;
}

@media (min-width: 900px) {
  .nav__cta {
    display: inline-flex;
  }
}

.nav__burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}

.nav__burger:hover {
  background: var(--color-bg);
}

@media (min-width: 900px) {
  .nav__burger {
    display: none;
  }
}

.nav__burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
  transform-origin: center;
}

.nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav overlay */
.nav__links.open {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-white);
  padding: var(--space-lg) var(--container-pad);
  gap: 0;
  align-items: flex-start;
  overflow-y: auto;
  z-index: 99;
}

.nav__links.open li {
  width: 100%;
  border-bottom: 1px solid var(--color-border);
}

.nav__links.open .nav__link {
  display: block;
  font-size: 1.1rem;
  padding: 1rem 0;
  color: var(--color-text);
}

.nav__links.open .nav__link::after {
  display: none;
}

/* ============================================================
   6. HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  height: calc(100svh - var(--header-h));
  min-height: 520px;
  max-height: 900px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,.35) 0%,
    rgba(0,0,0,.55) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--color-white);
  padding: var(--space-lg) var(--container-pad);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
}

.hero__tag {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.3);
  padding: 0.35rem 1rem;
  border-radius: 999px;
}

.hero__title {
  font-family: var(--font-title);
  font-size: clamp(2.8rem, 8vw, 6rem);
  font-weight: 700;
  line-height: 1.1;
  text-shadow: 0 2px 20px rgba(0,0,0,.4);
}

.hero__subtitle {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  font-weight: 300;
  max-width: 540px;
  opacity: 0.9;
}

.hero__badges {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 0.25rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 500;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.25);
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  color: var(--color-white);
}

.hero__cta {
  margin-top: 0.5rem;
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  color: white;
  opacity: 0.7;
  transition: opacity var(--transition), transform var(--transition);
  animation: bounce 2s ease infinite;
}

.hero__scroll:hover {
  opacity: 1;
  color: white;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ============================================================
   7. LOGEMENT SECTION
   ============================================================ */
.logement {
  background: var(--color-white);
}

.logement__grid {
  display: grid;
  gap: var(--space-xl);
}

@media (min-width: 900px) {
  .logement__grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

.logement__description p {
  color: var(--color-text-muted);
  margin-bottom: 1rem;
  font-size: 1.02rem;
  line-height: 1.75;
}

.logement__description p:last-of-type {
  margin-bottom: 0;
}

.logement__details {
  display: flex;
  gap: var(--space-md);
  margin-top: var(--space-md);
  padding-top: var(--space-md);
  border-top: 1px solid var(--color-border);
  flex-wrap: wrap;
}

.detail {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text-muted);
}

.detail svg {
  color: var(--color-accent);
  flex-shrink: 0;
}

/* Equipements */
.logement__equipements {
  background: var(--color-bg);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
}

.equipements__title {
  font-family: var(--font-title);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: var(--space-md);
}

.equipements__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
}

@media (min-width: 480px) {
  .equipements__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 900px) {
  .equipements__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1100px) {
  .equipements__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.equipement {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: var(--space-sm);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--color-text);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.equipement:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.equipement__icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-accent-light);
  border-radius: var(--radius-sm);
  color: var(--color-accent);
  flex-shrink: 0;
}

/* Plan du logement */
.logement__plan {
  margin-top: var(--space-xl);
  text-align: center;
}

.logement__plan-title {
  font-family: var(--font-title);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: var(--space-md);
  color: var(--color-text);
}

.logement__plan-img-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--color-bg);
  display: inline-block;
  max-width: 720px;
  width: 100%;
}

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

/* ============================================================
   8. GALERIE SECTION
   ============================================================ */
.galerie {
  background: var(--color-bg);
}

.galerie__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto auto;
  gap: 0.5rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

@media (min-width: 640px) {
  .galerie__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
  }

  .galerie__item--large {
    grid-column: span 2;
    grid-row: span 2;
  }
}

.galerie__item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  aspect-ratio: 4/3;
  cursor: pointer;
  background: var(--color-border);
}

.galerie__item--large {
  aspect-ratio: 16/9;
}

@media (min-width: 640px) {
  .galerie__item--large {
    aspect-ratio: auto;
  }
}

.galerie__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.galerie__item:hover img {
  transform: scale(1.06);
}

.galerie__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 119, 182, 0.5);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}

.galerie__item:hover .galerie__overlay {
  opacity: 1;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-slow);
}

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

.lightbox__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: calc(100vw - 8rem);
  max-height: calc(100vh - 6rem);
  gap: 1rem;
}

.lightbox__content img {
  max-width: 100%;
  max-height: calc(100vh - 10rem);
  object-fit: contain;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
}

.lightbox__caption {
  color: rgba(255,255,255,.7);
  font-size: 0.9rem;
  text-align: center;
}

.lightbox__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  color: white;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.1);
  border-radius: 50%;
  transition: background var(--transition);
}

.lightbox__close:hover {
  background: rgba(255,255,255,.2);
}

.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.1);
  border-radius: 50%;
  transition: background var(--transition);
}

.lightbox__nav:hover {
  background: rgba(255,255,255,.25);
}

.lightbox__nav--prev { left: 1.5rem; }
.lightbox__nav--next { right: 1.5rem; }

/* ============================================================
   9. RÉSERVATION SECTION
   ============================================================ */
.reserver {
  background: linear-gradient(160deg, #071C35 0%, #0A2647 45%, #0C2D55 100%);
  position: relative;
  overflow: hidden;
}

/* Halo décoratif */
.reserver::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(0, 119, 182, 0.25) 0%, transparent 68%);
  pointer-events: none;
}

.reserver::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(0, 168, 232, 0.12) 0%, transparent 68%);
  pointer-events: none;
}

/* Header textes sur fond sombre */
.reserver .section__tag {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.reserver .section__title {
  color: #ffffff;
}

.reserver .section__subtitle {
  color: rgba(255, 255, 255, 0.65);
}

/* Wrapper iframe — pleine largeur, hors container */
.reserver__iframe-wrapper {
  position: relative;
  z-index: 1;
  overflow: hidden;
  box-shadow:
    0 40px 100px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.07);
  background: var(--color-white);
  width: calc(100% - 3rem);
  max-width: 1600px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
}

@media (min-width: 900px) {
  .reserver__iframe-wrapper {
    width: calc(100% - 4rem);
  }
}

.reserver__iframe-wrapper iframe {
  display: block;
  width: 100%;
  min-height: 820px;
}

.reserver__note {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: var(--space-md);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

.reserver__note svg {
  color: rgba(255, 255, 255, 0.6);
  flex-shrink: 0;
}

/* ============================================================
   10. LOCALISATION SECTION
   ============================================================ */
.localisation {
  background: var(--color-bg);
}

.localisation__grid {
  display: grid;
  gap: var(--space-lg);
}

@media (min-width: 768px) {
  .localisation__grid {
    grid-template-columns: 1fr 380px;
    align-items: start;
  }
}

.localisation__map-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  min-height: 380px;
}

#map {
  width: 100%;
  height: 380px;
}

@media (min-width: 768px) {
  #map {
    height: 440px;
  }
}

.localisation__infos {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
}

.localisation__address {
  display: flex;
  gap: var(--space-sm);
  align-items: flex-start;
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--color-border);
  margin-bottom: var(--space-md);
  font-size: 0.95rem;
  line-height: 1.5;
}

.address__icon {
  color: var(--color-accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.localisation__poi {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.localisation__poi li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.localisation__poi li svg {
  color: var(--color-accent);
  flex-shrink: 0;
}

/* ============================================================
   11. AVIS SECTION
   ============================================================ */
.avis {
  background: var(--color-white);
}

.avis__score {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  margin-top: var(--space-sm);
}

.stars {
  display: flex;
  gap: 2px;
}

.stars--lg svg {
  width: 22px;
  height: 22px;
}

.avis__score-text {
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

.avis__grid {
  display: grid;
  gap: var(--space-md);
}

@media (min-width: 640px) {
  .avis__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .avis__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.avis__card {
  background: var(--color-bg);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.avis__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.avis__card-header {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.avis__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-accent);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.avis__name {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  line-height: 1.3;
}

.avis__date {
  display: block;
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

.avis__card > p {
  font-size: 0.92rem;
  color: var(--color-text-muted);
  line-height: 1.65;
  font-style: italic;
}

.avis__footer {
  text-align: center;
  margin-top: var(--space-lg);
}

/* ============================================================
   12. FAQ SECTION
   ============================================================ */
.faq {
  background: var(--color-bg);
}

.faq__list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq__item {
  background: var(--color-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  overflow: hidden;
  transition: box-shadow var(--transition);
}

.faq__item:has(.faq__question[aria-expanded="true"]) {
  box-shadow: var(--shadow-md);
  border-color: var(--color-accent);
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--color-text);
  text-align: left;
  transition: color var(--transition);
}

.faq__question:hover {
  color: var(--color-accent);
}

.faq__question[aria-expanded="true"] {
  color: var(--color-accent);
}

.faq__icon {
  flex-shrink: 0;
  transition: transform var(--transition);
}

.faq__question[aria-expanded="true"] .faq__icon {
  transform: rotate(180deg);
}

.faq__answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 1.25rem;
}

.faq__answer.open {
  max-height: 600px;
  padding: 0 1.25rem 1.25rem;
}

.faq__answer p,
.faq__answer ul {
  font-size: 0.93rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

.faq__answer ul {
  list-style: disc;
  padding-left: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

/* ============================================================
   13. CGV SECTION
   ============================================================ */
.cgv {
  background: var(--color-white);
  padding-top: 0;
}

.cgv__toggle-wrapper {
  max-width: 760px;
  margin: 0 auto;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.cgv__toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--color-text-muted);
  text-align: left;
  background: var(--color-bg);
  transition: color var(--transition);
}

.cgv__toggle:hover {
  color: var(--color-text);
}

.cgv__toggle[aria-expanded="true"] .faq__icon {
  transform: rotate(180deg);
}

.cgv__content {
  padding: var(--space-lg) 1.25rem;
  border-top: 1px solid var(--color-border);
}

.cgv__content[hidden] {
  display: none;
}

.cgv__text h3 {
  font-family: var(--font-title);
  font-size: 1.2rem;
  margin-bottom: var(--space-md);
}

.cgv__text h4 {
  font-size: 0.97rem;
  font-weight: 700;
  margin: 1.25rem 0 0.5rem;
  color: var(--color-text);
}

.cgv__text p,
.cgv__text ul {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

.cgv__text ul {
  list-style: disc;
  padding-left: 1.25rem;
  margin-top: 0.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

/* ============================================================
   14. FOOTER
   ============================================================ */
.footer {
  background: var(--color-text);
  color: rgba(255,255,255,.75);
  padding: var(--space-xl) 0 0;
}

.footer__grid {
  display: grid;
  gap: var(--space-xl);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid rgba(255,255,255,.1);
}

@media (min-width: 640px) {
  .footer__grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

.footer__logo {
  display: block;
  font-family: var(--font-title);
  font-size: 1.4rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.75rem;
}

.footer__brand p {
  font-size: 0.9rem;
  line-height: 1.6;
  max-width: 260px;
}

.footer__social {
  display: flex;
  gap: 0.75rem;
  margin-top: var(--space-md);
}

.footer__social-link {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.08);
  border-radius: 50%;
  color: rgba(255,255,255,.7);
  transition: background var(--transition), color var(--transition);
}

.footer__social-link:hover {
  background: var(--color-accent);
  color: white;
}

.footer__contact h4,
.footer__links h4 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: white;
  margin-bottom: 1rem;
}

.footer__contact ul,
.footer__links ul {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer__contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.88rem;
  line-height: 1.5;
}

.footer__contact li svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--color-accent);
}

.footer__contact a,
.footer__links a {
  color: rgba(255,255,255,.75);
  font-size: 0.88rem;
  transition: color var(--transition);
}

.footer__contact a:hover,
.footer__links a:hover {
  color: white;
}

.footer__bottom {
  padding: 1.25rem 0;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,.4);
}

/* ============================================================
   15. FLOATING ACTION BUTTON (Mobile)
   ============================================================ */
.fab {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 90;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--color-accent);
  color: white;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.85rem 2rem;
  border-radius: 999px;
  box-shadow: 0 6px 24px rgba(0,119,182,.5);
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition), opacity var(--transition);
  white-space: nowrap;
}

.fab:hover {
  color: white;
  transform: translateX(-50%) translateY(-3px);
  box-shadow: 0 10px 32px rgba(0,119,182,.6);
}

.fab.hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(20px);
}

@media (min-width: 900px) {
  .fab {
    display: none;
  }
}

/* ============================================================
   16. LEAFLET MAP CUSTOMIZATION
   ============================================================ */
.leaflet-container {
  font-family: var(--font-body) !important;
}

.leaflet-popup-content-wrapper {
  border-radius: var(--radius-md) !important;
  box-shadow: var(--shadow-md) !important;
}

.leaflet-popup-content {
  font-family: var(--font-body) !important;
  font-size: 0.9rem !important;
  line-height: 1.5 !important;
}

/* ============================================================
   17. SCROLL REVEAL (simple fade-in)
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

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

/* ============================================================
   18. LANGUAGE SWITCHER
   ============================================================ */
.nav__lang {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  flex-shrink: 0;
}

.nav__lang-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-text-muted);
  padding: 0.25rem 0.4rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1;
  transition: color var(--transition), background var(--transition);
  font-family: var(--font-body);
}

.nav__lang-btn:hover {
  color: var(--color-accent);
  background: rgba(0, 119, 182, 0.08);
}

.nav__lang-btn.active,
.nav__lang-btn[aria-pressed='true'] {
  color: var(--color-accent);
  background: rgba(0, 119, 182, 0.12);
}

.nav__lang-sep {
  color: var(--color-border);
  font-size: 0.75rem;
  pointer-events: none;
  user-select: none;
}

/* ============================================================
   19. ACCESSIBILITY & FOCUS
   ============================================================ */
:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
  border-radius: 3px;
}

/* ============================================================
   19. PRINT
   ============================================================ */
@media print {
  .header, .fab, .hero__scroll { display: none; }
}
