/* ============================================================
   TAHITI SURF RENT — feuille de style principale
   Palette issue du logo : ambre / corail / marine / océan / écume
   Typo : Fredoka (titres) · Nunito (texte) · Pacifico (accents)
   ============================================================ */

:root {
  --sand:        #F8B25F;
  --sand-light:  #FCDCA9;
  --coral:       #E8492B;
  --coral-deep:  #C43A1B;
  --navy:        #16455E;
  --navy-deep:   #0F3247;
  --ink:         #123143;
  --ocean:       #2E93BE;
  --ocean-deep:  #1F7DA4;
  --foam:        #CDE9F5;
  --foam-light:  #EAF6FB;
  --cream:       #FFF7EB;
  --white:       #FFFFFF;
  --wa-green:    #128C7E;

  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 10px;

  --shadow-soft: 0 6px 24px rgba(18, 49, 67, .10), 0 2px 6px rgba(18, 49, 67, .06);
  --shadow-lift: 0 14px 34px rgba(18, 49, 67, .16), 0 4px 10px rgba(18, 49, 67, .08);

  --font-head: 'Fredoka', 'Nunito', system-ui, sans-serif;
  --font-body: 'Nunito', system-ui, -apple-system, sans-serif;
  --font-script: 'Pacifico', cursive;

  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 40px;
  --space-5: 64px;
  --space-6: 96px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 600;
  line-height: 1.15;
  color: var(--navy);
  margin: 0 0 .5em;
  letter-spacing: .2px;
}

p { margin: 0 0 1em; }

a { color: var(--ocean-deep); }

:focus-visible {
  outline: 3px solid var(--ocean);
  outline-offset: 3px;
  border-radius: 4px;
}

.container {
  max-width: 1120px;
  margin-inline: auto;
  padding-inline: clamp(18px, 4vw, 32px);
}

.section { padding-block: clamp(56px, 9vw, 96px); }

/* ---------- En-têtes de section ---------- */
.section-head { max-width: 640px; margin: 0 auto var(--space-4); text-align: center; }
.eyebrow {
  font-family: var(--font-script);
  font-size: clamp(20px, 2.6vw, 26px);
  color: var(--coral);
  display: block;
  margin-bottom: 6px;
}
.section-head h2 { font-size: clamp(28px, 4.4vw, 42px); }
.section-head .sub { color: #3D5A6C; font-size: 18px; }

.on-dark h2 { color: var(--white); }
.on-dark .sub { color: var(--foam); }
.on-dark .eyebrow { color: var(--sand); }

/* ---------- Boutons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 12px 28px;
  border: 0;
  border-radius: 999px;
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: .3px;
  text-decoration: none;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease;
  touch-action: manipulation;
}
.btn svg { flex-shrink: 0; }
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-lift); }
.btn:active { transform: translateY(0) scale(.98); }

.btn-primary { background: var(--coral-deep); color: var(--white); box-shadow: var(--shadow-soft); }
.btn-primary:hover { background: var(--coral); }

.btn-ghost {
  background: rgba(255, 255, 255, .14);
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, .75);
  backdrop-filter: blur(4px);
}
.btn-ghost:hover { background: rgba(255, 255, 255, .26); }

.btn-whatsapp { background: var(--wa-green); color: var(--white); box-shadow: var(--shadow-soft); }
.btn-whatsapp:hover { background: #0E7367; }

.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border: 2.5px solid var(--navy);
}
.btn-outline-navy:hover { background: var(--navy); color: var(--white); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 247, 235, .92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(22, 69, 94, .08);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 72px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  margin-right: auto;
}
.brand img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(18, 49, 67, .25);
}
.brand span {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 19px;
  color: var(--navy);
  line-height: 1.1;
}
.brand b { color: var(--coral); font-weight: 600; }

.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav a {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 16px;
  color: var(--navy);
  text-decoration: none;
  padding: 12px 14px;
  border-radius: 999px;
  transition: background-color .2s ease, color .2s ease;
}
.main-nav a:hover { background: var(--foam); color: var(--navy-deep); }

.lang-switch {
  display: inline-flex;
  border: 2px solid var(--navy);
  border-radius: 999px;
  overflow: hidden;
  margin-inline: 8px;
}
.lang-switch button {
  border: 0;
  background: transparent;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 14px;
  color: var(--navy);
  padding: 8px 13px;
  min-height: 40px;
  cursor: pointer;
  transition: background-color .2s ease, color .2s ease;
}
.lang-switch button[aria-pressed="true"] { background: var(--navy); color: var(--white); }

.header-cta { min-height: 44px; padding: 8px 20px; font-size: 15px; }

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 10px;
  cursor: pointer;
  color: var(--navy);
}

/* ---------- Héro ---------- */
.hero {
  position: relative;
  min-height: min(92svh, 860px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  isolation: isolate;
  padding-block: 96px 140px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* Ken Burns discret sur la photo du héro */
html.js .hero-bg { animation: heroZoom 16s ease-out forwards; }
@keyframes heroZoom {
  from { transform: scale(1.08); }
  to   { transform: scale(1); }
}
/* Entrée en cascade du contenu héro */
html.js .hero .container > * {
  opacity: 0;
  animation: fadeUp .8s ease-out forwards;
}
html.js .hero .hero-logo    { animation-delay: .1s; }
html.js .hero .tagline      { animation-delay: .25s; }
html.js .hero h1            { animation-delay: .4s; }
html.js .hero .lead         { animation-delay: .55s; }
html.js .hero .hero-actions { animation-delay: .7s; }
html.js .hero .hero-badges  { animation-delay: .85s; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: none; }
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg,
    rgba(15, 50, 71, .55) 0%,
    rgba(15, 50, 71, .35) 45%,
    rgba(15, 50, 71, .72) 100%);
}
.hero-logo {
  width: clamp(96px, 14vw, 140px);
  height: auto;
  border-radius: 50%;
  margin-inline: auto;
  margin-bottom: 22px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, .35);
}
.hero h1 {
  color: var(--white);
  font-size: clamp(34px, 6.5vw, 64px);
  margin-bottom: 10px;
  text-shadow: 0 3px 18px rgba(0, 0, 0, .35);
}
.hero .tagline {
  font-family: var(--font-script);
  font-size: clamp(20px, 3vw, 30px);
  color: var(--sand);
  margin-bottom: 18px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, .4);
}
.hero .lead {
  max-width: 560px;
  margin-inline: auto;
  font-size: clamp(17px, 2.2vw, 20px);
  margin-bottom: 30px;
}
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.hero-badges {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 34px;
}
.badge-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, .16);
  border: 1px solid rgba(255, 255, 255, .35);
  backdrop-filter: blur(6px);
  border-radius: 999px;
  padding: 9px 16px;
  font-size: 14.5px;
  font-weight: 700;
}
.badge-chip svg { color: var(--sand); }

/* ---------- Séparateurs vague ---------- */
.wave-sep { display: block; width: 100%; height: clamp(48px, 8vw, 96px); }
.wave-sep.flip { transform: scaleX(-1); }
.hero .wave-sep {
  position: absolute;
  bottom: -1px;
  left: 0;
  z-index: 1;
}

/* ---------- Intro ---------- */
.intro-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}
.intro-copy h2 { font-size: clamp(28px, 4vw, 40px); }
.intro-copy .big { font-size: 19px; }
.values-row { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 18px; }
.value-chip {
  background: var(--foam);
  color: var(--navy-deep);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 15px;
  border-radius: 999px;
  padding: 9px 18px;
}
.intro-photos { position: relative; }
.intro-photos .ph-main {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lift);
  aspect-ratio: 4 / 5;
  object-fit: cover;
  width: 100%;
}
.intro-photos .ph-sub {
  position: absolute;
  width: 46%;
  bottom: -26px;
  left: -26px;
  border-radius: var(--radius-md);
  border: 6px solid var(--cream);
  box-shadow: var(--shadow-soft);
  aspect-ratio: 1;
  object-fit: cover;
  transform: rotate(-4deg);
}
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: clamp(40px, 6vw, 72px);
}
.stat-card {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  text-align: center;
  padding: 22px 12px;
  border-bottom: 4px solid var(--sand);
}
.stat-card b {
  display: block;
  font-family: var(--font-head);
  font-size: clamp(24px, 3.4vw, 34px);
  color: var(--coral);
  font-weight: 600;
  line-height: 1.1;
}
.stat-card span { font-size: 14.5px; font-weight: 700; color: #3D5A6C; }

/* ---------- Tarifs ---------- */
.pricing-section { background: var(--foam-light); }
.board-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.board-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 26px 22px 22px;
  text-align: center;
  position: relative;
  transition: transform .22s ease, box-shadow .22s ease;
}
.board-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lift); }
.board-card .board-icon {
  width: 62px;
  height: 128px;
  margin-inline: auto;
  margin-bottom: 12px;
  filter: drop-shadow(0 6px 10px rgba(18, 49, 67, .18));
  transition: transform .25s ease;
}
.board-card:hover .board-icon { transform: rotate(-4deg) translateY(-3px); }
.board-card h3 { font-size: 21px; margin-bottom: 2px; }
.board-card .for-level { font-size: 14px; font-weight: 700; color: #4E6B7C; margin-bottom: 10px; }
.board-card .from { font-size: 13.5px; font-weight: 800; text-transform: uppercase; letter-spacing: .8px; color: #4E6B7C; }
.board-card .price {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 27px;
  color: var(--coral-deep);
  line-height: 1.2;
}
.board-card .price small { font-size: 15px; font-weight: 500; }

.price-tables { margin-top: var(--space-5); }
.tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 22px;
}
.tab-btn {
  border: 2.5px solid var(--navy);
  background: transparent;
  color: var(--navy);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 16px;
  border-radius: 999px;
  min-height: 48px;
  padding: 10px 26px;
  cursor: pointer;
  transition: background-color .2s ease, color .2s ease;
}
.tab-btn[aria-selected="true"] { background: var(--navy); color: var(--white); }

.table-wrap {
  overflow-x: auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 8px;
}
table.prices {
  width: 100%;
  border-collapse: collapse;
  min-width: 560px;
}
table.prices th, table.prices td {
  padding: 15px 18px;
  text-align: left;
}
table.prices th {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 15.5px;
  color: var(--white);
  background: var(--navy);
}
table.prices thead th:first-child { border-radius: var(--radius-md) 0 0 var(--radius-md); }
table.prices thead th:last-child { border-radius: 0 var(--radius-md) var(--radius-md) 0; }
table.prices td {
  font-weight: 700;
  border-bottom: 1px solid var(--foam);
  font-variant-numeric: tabular-nums;
}
table.prices tbody tr:last-child td { border-bottom: 0; }
table.prices td:first-child { color: var(--navy); font-family: var(--font-head); font-weight: 600; }
table.prices tbody tr:hover { background: var(--foam-light); }

.price-notes {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.note-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 15px 18px;
  box-shadow: var(--shadow-soft);
  font-size: 15.5px;
  font-weight: 600;
}
.note-item svg { flex-shrink: 0; color: var(--ocean); margin-top: 2px; }

.accessories { margin-top: 26px; text-align: center; }
.accessories .acc-chips { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }
.acc-chip {
  background: var(--sand-light);
  border-radius: 999px;
  padding: 10px 20px;
  font-weight: 800;
  font-size: 15px;
  color: #6B4A14;
}

/* ---------- Livraison ---------- */
.delivery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.delivery-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 28px 24px;
  border-top: 5px solid var(--ocean);
}
.delivery-card:nth-child(2) { border-top-color: var(--sand); }
.delivery-card:nth-child(3) { border-top-color: var(--coral); }
.delivery-card .d-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--foam);
  color: var(--navy);
  margin-bottom: 14px;
}
.delivery-card h3 { font-size: 20px; }
.delivery-card ul { margin: 0; padding-left: 0; list-style: none; }
.delivery-card li {
  padding: 7px 0;
  font-weight: 600;
  font-size: 15.5px;
  display: flex;
  gap: 10px;
  align-items: baseline;
}
.delivery-card li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sand);
  flex-shrink: 0;
  transform: translateY(-1px);
}
.free-tag {
  display: inline-block;
  background: #DCF5E4;
  color: #146B37;
  font-weight: 800;
  font-size: 13px;
  border-radius: 999px;
  padding: 4px 12px;
  margin-left: 8px;
  vertical-align: middle;
}

/* ---------- Conditions du jour ---------- */
.conditions-section {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: var(--white);
}
.windguru-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lift);
  padding: 20px 22px;
  margin-bottom: 22px;
}
.wg-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.wg-head h3 { color: var(--navy); font-size: 19px; margin: 0; }
.wg-badge {
  background: #DCF5E4;
  color: #146B37;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 1px;
  border-radius: 999px;
  padding: 4px 12px;
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: .55; } }
.wg-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; min-height: 168px; }
.cond-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.cond-grid-2 { grid-template-columns: repeat(2, 1fr); }
.cond-card {
  background: rgba(255, 255, 255, .07);
  border: 1.5px solid rgba(255, 255, 255, .18);
  border-radius: var(--radius-lg);
  padding: 26px 24px;
  text-decoration: none;
  color: var(--white);
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: transform .22s ease, background-color .22s ease;
}
.cond-card:hover { transform: translateY(-4px); background: rgba(255, 255, 255, .13); }
.cond-card h3 { color: var(--sand); font-size: 19px; margin: 0; }
.cond-card p { margin: 0; color: var(--foam); font-size: 15.5px; }
.cond-card .go {
  margin-top: auto;
  padding-top: 12px;
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--white);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* ---------- Spots : carte Leaflet ---------- */
.spots-map-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: clamp(12px, 2.5vw, 22px);
  margin-bottom: var(--space-4);
}
.spots-map {
  height: 520px;
  border-radius: var(--radius-md);
  z-index: 0;
  background: var(--foam-light);
}
.map-legend {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  padding-top: 14px;
  font-size: 14.5px;
  font-weight: 700;
}
.map-legend span { display: inline-flex; align-items: center; gap: 8px; }
.dot { width: 14px; height: 14px; border-radius: 50%; display: inline-block; border: 2.5px solid var(--white); box-shadow: 0 1px 4px rgba(0,0,0,.25); }
.dot-beach { background: var(--sand); }
.dot-point { background: var(--ocean); }
.dot-reef  { background: var(--coral); }

.map-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 12px; }
.map-btn {
  border: 2px solid var(--navy);
  background: transparent;
  color: var(--navy);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 14.5px;
  border-radius: 999px;
  min-height: 44px;
  padding: 8px 20px;
  cursor: pointer;
  transition: background-color .2s ease, color .2s ease;
}
.map-btn.active, .map-btn:hover { background: var(--navy); color: var(--white); }

/* Labels du cluster Est masqués tant qu'on n'a pas zoomé */
.spots-map:not(.show-labels) .tsr-pin-label.lbl-east { display: none; }

/* Marqueurs custom */
.tsr-marker { cursor: pointer; }
.tsr-pin {
  display: block;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  border: 3px solid var(--white);
  box-shadow: 0 2px 8px rgba(0, 0, 0, .35);
  transition: transform .18s ease;
}
.tsr-marker:hover .tsr-pin { transform: scale(1.25); }
.tsr-pin-beach { background: var(--sand); }
.tsr-pin-point { background: var(--ocean); }
.tsr-pin-reef  { background: var(--coral); }
.tsr-pin-label {
  position: absolute;
  left: 21px;
  top: -3px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 13.5px;
  color: var(--navy-deep);
  white-space: nowrap;
  text-shadow: 0 1px 0 #fff, 0 -1px 0 #fff, 1px 0 0 #fff, -1px 0 0 #fff, 0 2px 4px rgba(255,255,255,.9);
  pointer-events: none;
}

/* Popup Leaflet aux couleurs du site */
.leaflet-popup-content-wrapper {
  border-radius: 14px;
  box-shadow: var(--shadow-lift);
  font-family: var(--font-body);
}
.leaflet-popup-content { margin: 14px 18px; }
.tsr-popup { display: flex; flex-direction: column; gap: 6px; min-width: 150px; }
.tsr-popup b { font-family: var(--font-head); font-size: 16.5px; color: var(--navy); }
.pp-type {
  align-self: flex-start;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .6px;
  padding: 3px 10px;
  border-radius: 999px;
}
.pp-beach { background: var(--sand-light); color: #6B4A14; }
.pp-point { background: var(--foam); color: var(--ocean-deep); }
.pp-reef  { background: #FDE7DF; color: #A22F12; }
.pp-lvl { font-size: 13px; font-weight: 700; color: #4E6B7C; display: flex; align-items: center; gap: 5px; }
.pp-dot { width: 9px; height: 9px; border-radius: 50%; background: #D8E4EC; display: inline-block; }
.pp-dot.on { background: var(--coral); }
.pp-link { font-family: var(--font-head); font-weight: 600; color: var(--ocean-deep) !important; text-decoration: none; margin-top: 2px; }
.pp-link:hover { text-decoration: underline; }

.break-types {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: var(--space-4);
}
.break-card {
  border-radius: var(--radius-md);
  padding: 20px 22px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
  border-left: 6px solid var(--sand);
}
.break-card.bt-point { border-left-color: var(--ocean); }
.break-card.bt-reef { border-left-color: var(--coral); }
.break-card h3 { font-size: 18px; margin-bottom: 4px; }
.break-card p { margin: 0; font-size: 15px; }

.spots-subtitle {
  font-family: var(--font-head);
  font-size: clamp(21px, 3vw, 26px);
  color: var(--navy);
  margin: var(--space-4) 0 var(--space-2);
  display: flex;
  align-items: center;
  gap: 12px;
}
.spots-subtitle .tag {
  font-size: 13px;
  font-family: var(--font-body);
  font-weight: 800;
  background: #DCF5E4;
  color: #146B37;
  padding: 5px 13px;
  border-radius: 999px;
}
.spots-subtitle .tag.warn { background: #FDE7DF; color: #A22F12; }

.spot-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.spot-card {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  padding: 20px 22px;
  transition: box-shadow .25s ease, transform .25s ease;
  scroll-margin-top: 110px;
}
.spot-card.flash {
  box-shadow: 0 0 0 4px var(--sand), var(--shadow-lift);
  transform: translateY(-3px);
}
.spot-card .spot-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 6px;
}
.spot-card h4 { font-size: 18.5px; margin: 0; }
.spot-card .break-tag {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .6px;
  padding: 4px 11px;
  border-radius: 999px;
  white-space: nowrap;
}
.break-tag.beach { background: var(--sand-light); color: #6B4A14; }
.break-tag.point { background: var(--foam); color: var(--ocean-deep); }
.break-tag.reef  { background: #FDE7DF; color: #A22F12; }
.spot-card p { font-size: 15px; margin: 8px 0 0; color: #35505F; }

.difficulty { display: inline-flex; gap: 3px; align-items: center; }
.difficulty svg { width: 17px; height: 17px; }
.difficulty .lvl-on  { color: var(--coral); }
.difficulty .lvl-off { color: #D8E4EC; }
.diff-label { font-size: 13px; font-weight: 800; color: #4E6B7C; margin-left: 7px; }

/* ---------- Galerie ---------- */
.gallery-section { background: var(--foam-light); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 215px;
  grid-auto-flow: dense;
  gap: 12px;
}
.gallery-grid a {
  border-radius: var(--radius-md);
  overflow: hidden;
  display: block;
  position: relative;
  box-shadow: var(--shadow-soft);
}
.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}
.gallery-grid a:hover img { transform: scale(1.06); }
.gallery-grid a:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-grid a:nth-child(4) { grid-row: span 2; }
.gallery-grid a:nth-child(6) { grid-column: span 2; }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(10, 30, 43, .93);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: min(92vw, 1100px);
  max-height: 84svh;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 80px rgba(0, 0, 0, .5);
}
.lb-btn {
  position: absolute;
  background: rgba(255, 255, 255, .12);
  border: 1.5px solid rgba(255, 255, 255, .4);
  color: var(--white);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background-color .2s ease;
}
.lb-btn:hover { background: rgba(255, 255, 255, .25); }
.lb-close { top: 20px; right: 20px; }
.lb-prev { left: 16px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 16px; top: 50%; transform: translateY(-50%); }

/* ---------- Avis ---------- */
.rating-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  background: var(--white);
  border-radius: 999px;
  box-shadow: var(--shadow-soft);
  padding: 14px 30px;
  width: fit-content;
  margin: 0 auto 30px;
}
.rating-note {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 34px;
  color: var(--navy);
  line-height: 1;
}
.rating-stars { display: inline-flex; gap: 3px; color: var(--sand); }
.rating-stars .star-part { clip-path: inset(0 40% 0 0); }
.rating-count {
  font-weight: 800;
  font-size: 15.5px;
  color: var(--ocean-deep);
}
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.review-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.review-stars { display: flex; gap: 3px; color: var(--sand); }
.review-card blockquote { margin: 0; font-size: 15.5px; font-style: italic; color: #35505F; flex-grow: 1; }
.review-card .who { display: flex; align-items: center; gap: 12px; }
.review-card .avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--foam);
  color: var(--navy);
  display: grid;
  place-items: center;
  font-family: var(--font-head);
  font-weight: 600;
}
.review-card .who b { font-size: 15px; color: var(--navy); }
.review-card .who span:not(.avatar) { display: block; font-size: 13px; color: #4E6B7C; font-weight: 600; }
.reviews-cta {
  text-align: center;
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* ---------- Contact ---------- */
.contact-section { background: var(--foam-light); }
.contact-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: start;
}
.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: clamp(24px, 4vw, 38px);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { margin-bottom: 16px; }
.field label {
  display: block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 15px;
  color: var(--navy);
  margin-bottom: 6px;
}
.field label .req { color: var(--coral); }
.field input, .field select, .field textarea {
  width: 100%;
  min-height: 50px;
  border: 2px solid #D8E4EC;
  border-radius: var(--radius-sm);
  padding: 12px 15px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  background: var(--white);
  transition: border-color .2s ease;
}
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--ocean);
  box-shadow: 0 0 0 3px rgba(46, 147, 190, .18);
}
.form-status {
  display: none;
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 14px;
}
.form-status.ok { display: block; background: #DCF5E4; color: #146B37; }
.form-status.err { display: block; background: #FDE7DF; color: #A22F12; }

.contact-aside { display: flex; flex-direction: column; gap: 16px; }
.contact-info-card {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 28px 26px;
}
.contact-info-card h3 { color: var(--sand); font-size: 20px; }
.contact-line {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 0;
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
  border-radius: var(--radius-sm);
}
.contact-line:hover { color: var(--sand); }
.contact-line svg { flex-shrink: 0; color: var(--sand); }
.map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  background: var(--white);
}
.zone-map { height: 300px; z-index: 0; background: var(--foam-light); }
.map-open-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 15px;
  color: var(--navy);
  text-decoration: none;
  background: var(--white);
}
.map-open-link:hover { background: var(--foam-light); }
.wg-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 150px;
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--ocean-deep);
  text-decoration: none;
  background: var(--foam-light);
  border-radius: var(--radius-sm);
}
.wg-fallback:hover { text-decoration: underline; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-deep);
  color: var(--foam);
  padding: 56px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 36px;
}
.site-footer .brand span { color: var(--white); }
.site-footer h4 { color: var(--sand); font-size: 16px; margin-bottom: 12px; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { padding: 5px 0; }
.site-footer a { color: var(--foam); text-decoration: none; font-weight: 600; }
.site-footer a:hover { color: var(--white); text-decoration: underline; }
.footer-tagline { font-family: var(--font-script); color: var(--sand); font-size: 21px; margin-top: 12px; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .14);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 14px;
}
.socials { display: flex; gap: 12px; }
.socials a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .1);
  display: grid;
  place-items: center;
  color: var(--white);
  transition: background-color .2s ease, transform .2s ease;
}
.socials a:hover { background: var(--coral); transform: translateY(-2px); }

/* ---------- Bouton WhatsApp flottant ---------- */
.wa-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 200;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--wa-green);
  color: var(--white);
  display: grid;
  place-items: center;
  box-shadow: 0 8px 26px rgba(18, 140, 126, .45);
  transition: transform .2s ease;
}
.wa-float:hover { transform: scale(1.08); }

/* ---------- Apparition au scroll (uniquement si JS actif) ---------- */
html.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity .6s ease, transform .6s ease; }
html.js .reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1023px) {
  .board-cards, .delivery-grid, .cond-grid, .spot-cards, .reviews-grid, .break-types { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-auto-rows: 180px; }
}

@media (max-width: 767px) {
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: var(--cream);
    padding: 12px 18px 20px;
    box-shadow: 0 18px 30px rgba(18, 49, 67, .14);
    border-bottom: 1px solid rgba(22, 69, 94, .08);
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 14px 16px; font-size: 17px; }
  .nav-toggle { display: block; }
  .header-cta { display: none; }

  .intro-grid, .contact-grid { grid-template-columns: 1fr; }
  .intro-photos { margin-top: 26px; }
  .intro-photos .ph-sub { left: auto; right: -8px; bottom: -20px; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .board-cards, .delivery-grid, .cond-grid, .spot-cards, .reviews-grid, .break-types { grid-template-columns: 1fr; }
  .price-notes { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; }
  .gallery-grid a:nth-child(1) { grid-column: span 2; grid-row: span 2; }
  .gallery-grid a:nth-child(8) { grid-column: span 2; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .hero { padding-bottom: 120px; }

  .spots-map { height: 400px; }
  .cond-grid-2 { grid-template-columns: 1fr; }
}
