:root {
  --navy: #0b2436;
  --navy-2: #123c5f;
  --sea: #1b5e8a;
  --sea-light: #2e8bc0;
  --gold: #d9a441;
  --coral: #e8762d;
  --sand: #f5f3ee;
  --white: #ffffff;
  --text: #24303a;
  --muted: #5c6b7a;
  --radius: 16px;
  --shadow: 0 14px 40px rgba(9, 30, 48, 0.12);
  --header-h: 72px;
}

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

html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
}

.container { width: min(1120px, 92%); margin: 0 auto; }

/* ================= Header ================= */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(9, 26, 40, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 22px;
  min-height: var(--header-h);
}

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  color: var(--white);
}

.brand-icon {
  font-size: 1.3rem;
  color: var(--gold);
  background: rgba(217, 164, 65, 0.15);
  border-radius: 10px;
  padding: 8px;
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.brand-name {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.08rem;
  letter-spacing: 0.2px;
  white-space: nowrap;
}

.review-link {
  color: var(--gold);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 16px;
  border: 1px solid rgba(217, 164, 65, 0.5);
  border-radius: 999px;
  white-space: nowrap;
  transition: all 0.25s;
}

.review-link:hover { background: var(--gold); color: var(--navy); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-left: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}

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

/* ===== Sélecteur de langue (globe + dropdown) ===== */
.lang-switcher { position: relative; }

.lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--white);
  font-family: inherit;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 8px 13px;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.2s;
}

.lang-btn:hover { background: rgba(255, 255, 255, 0.18); }

.lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: #102c43;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  min-width: 150px;
  padding: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: all 0.2s ease;
  z-index: 110;
}

.lang-dropdown.open { opacity: 1; visibility: visible; transform: translateY(0); }

.lang-dropdown button {
  display: block;
  width: 100%;
  text-align: left;
  padding: 9px 14px;
  background: none;
  border: none;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.75);
  font-family: inherit;
  font-size: 0.88rem;
  cursor: pointer;
  transition: all 0.15s;
}

.lang-dropdown button:hover { color: var(--gold); background: rgba(255, 255, 255, 0.06); }

.lang-dropdown button.active { color: var(--gold); font-weight: 600; }

/* ===== Hamburger ===== */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  border-radius: 2px;
  background: var(--white);
  transition: all 0.3s;
}

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

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 10px 4% 18px;
  background: #0d2235;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  padding: 13px 12px;
  border-radius: 10px;
  transition: all 0.2s;
}

.mobile-menu a:hover { background: rgba(255, 255, 255, 0.06); color: var(--gold); }

.mobile-menu .review-link-mobile { color: var(--gold); }

/* ================= Hero ================= */
.hero {
  position: relative;
  background: linear-gradient(165deg, #081d30 0%, var(--navy) 45%, var(--navy-2) 100%);
  color: var(--white);
  padding: 96px 0 140px;
  text-align: center;
  overflow: hidden;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 18% 25%, rgba(46, 139, 192, 0.18) 0, transparent 34%),
    radial-gradient(circle at 82% 18%, rgba(217, 164, 65, 0.12) 0, transparent 30%),
    radial-gradient(circle at 75% 75%, rgba(232, 118, 45, 0.10) 0, transparent 28%);
}

.hero-inner { position: relative; z-index: 2; }

.hero-badge {
  display: inline-block;
  background: rgba(46, 139, 192, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.22);
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 6.5vw, 4.2rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 18px;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.hero-sub {
  max-width: 640px;
  margin: 0 auto 26px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.08rem;
  font-weight: 300;
}

.hero-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 32px;
  font-size: 0.95rem;
}

.hero-rating-text { color: rgba(255, 255, 255, 0.85); }

.stars { color: var(--gold); letter-spacing: 2px; }

.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== Vagues SVG ===== */
.hero-waves {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 110px;
  z-index: 1;
}

.wave-1 { fill: rgba(255, 255, 255, 0.14); animation: waveMove 14s ease-in-out infinite alternate; }
.wave-2 { fill: var(--sand); animation: waveMove 18s ease-in-out infinite alternate-reverse; }

@keyframes waveMove {
  from { transform: translateX(0); }
  to { transform: translateX(-32px); }
}

/* ===== Boutons ===== */
.btn {
  display: inline-block;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
  transition: all 0.25s;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 10px 26px rgba(217, 164, 65, 0.35);
}

.btn-primary:hover { background: #e5b34f; transform: translateY(-2px); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
}

.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

/* ================= Sections ================= */
.section { padding: 84px 0; }

.section-alt { background: var(--sand); }

.section-heading { text-align: center; margin-bottom: 48px; }

.eyebrow {
  display: inline-block;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 10px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 12px;
}

.section-sub {
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto;
  font-size: 1rem;
}

/* ===== Cartes spécialités ===== */
.grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px 24px;
  box-shadow: var(--shadow);
  border: 1px solid #e8e4db;
  transition: transform 0.25s, box-shadow 0.25s;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 50px rgba(9, 30, 48, 0.16);
}

.card-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--sea-light), var(--navy-2));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 18px;
  box-shadow: 0 8px 18px rgba(46, 139, 192, 0.3);
}

.card h3 {
  font-family: 'Playfair Display', serif;
  color: var(--navy);
  font-size: 1.18rem;
  margin-bottom: 8px;
}

.card p { font-size: 0.92rem; color: var(--muted); }

/* ===== Services ===== */
.services-row {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}

.service-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--white);
  border: 1px solid #e2ddd2;
  border-radius: 999px;
  padding: 11px 20px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
}

.service-pill i { color: var(--sea-light); }

.service-pill.lgbtq {
  background: linear-gradient(135deg, #f9a8d4, #a5b4fc);
  border: none;
  color: #312e81;
}

/* ===== Avis ===== */
.rating-big {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-bottom: 44px;
}

.rating-big-score {
  font-family: 'Playfair Display', serif;
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}

.stars-big { font-size: 1.5rem; }

.rating-big-count { color: var(--muted); font-size: 0.95rem; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.review {
  position: relative;
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 26px 24px;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--gold);
}

.review::before {
  content: "“";
  position: absolute;
  top: 6px;
  right: 18px;
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  color: rgba(217, 164, 65, 0.25);
  line-height: 1;
}

.review p {
  font-size: 0.95rem;
  font-style: italic;
  margin: 12px 0 16px;
  color: var(--text);
  position: relative;
  z-index: 1;
}

.review footer {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--muted);
}

.review-cta {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

/* ===== Infos ===== */
.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 900px;
  margin: 0 auto;
}

.info-block {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 26px;
  box-shadow: var(--shadow);
  border: 1px solid #e8e4db;
  text-align: center;
  transition: transform 0.25s;
}

.info-block:hover { transform: translateY(-4px); }

.info-block > i {
  font-size: 1.7rem;
  color: var(--coral);
  background: rgba(232, 118, 45, 0.12);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.info-block h3 {
  font-family: 'Playfair Display', serif;
  color: var(--navy);
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.info-block p { color: var(--muted); font-size: 0.95rem; }

.info-link {
  display: inline-block;
  margin-top: 12px;
  color: var(--sea-light);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
}

.info-link:hover { color: var(--coral); text-decoration: underline; }

.info-phone { font-size: 1.15rem; color: var(--navy); }

/* ================= Footer ================= */
.footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.65);
  text-align: center;
  padding: 40px 0;
  font-size: 0.88rem;
}

.footer a { color: var(--white); font-weight: 600; text-decoration: none; }
.footer a:hover { color: var(--gold); }

.footer-review { color: var(--gold) !important; display: inline-block; margin: 10px 0; }

.footer-credit { margin-top: 6px; }

/* ================= Responsive : tablette ================= */
@media (max-width: 900px) {
  .grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; max-width: 620px; margin: 0 auto; }
  .info-grid { grid-template-columns: 1fr; max-width: 480px; }
  .brand-name { font-size: 1rem; }
  .review-link { display: none; }
}

/* ================= Responsive : mobile ================= */
@media (max-width: 640px) {
  .nav { display: none; }
  .hamburger { display: flex; }
  .header-inner { gap: 14px; }
  .brand-name { display: none; }
  .hero { padding: 70px 0 120px; }
  .hero-actions { flex-direction: column; align-items: stretch; max-width: 320px; margin: 0 auto; }
  .grid { grid-template-columns: 1fr; }
  .section { padding: 60px 0; }
  .services-row { flex-direction: column; align-items: stretch; max-width: 340px; margin: 36px auto 0; }
  .service-pill { justify-content: center; }
  .reviews-grid { max-width: 100%; }
}
/* Logo cabane (logo-v2) : remplace l'ancienne icone ancre */
.brand-icon-img {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  flex-shrink: 0;
}
