/* ===================================================================
   ZONE PROTÉGÉE — NE PAS MODIFIER sans vérification
   Thème "Premium Atlantique" surf-atlantique.fr
   Palette officielle :
     --forest:#1a3a28  --moss:#2d6a4f  --cream:#ede9e2  --ink:#0f172a
   Fonts : Barlow Condensed 700 (hero h1) + Fraunces + Inter (body)
   ATTENTION : .hero { overflow:visible } est CRITIQUE pour le dropdown
   Mobile ed-map-section : background-attachment:scroll (fixed non supporté iOS)
   Cache-buster à incrémenter après chaque modif : ?v=20260713a
   =================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@800&family=Fraunces:ital,wght@0,700;0,800;0,900;1,700;1,900&family=Inter:wght@400;500;600;700&display=swap');

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

:root {
  --bg:      #ede9e2;
  --card:    #ffffff;
  --card2:   #faf8f5;
  --blue:    #0077b6;
  --blue2:   #005f8a;
  --teal:    #0ea5e9;
  --teal2:   #0284c7;
  --ocean:   #0a1f3d;
  --text:    #0f172a;
  --muted:   #64748b;
  --border:  #e2e8f0;
  --border2: #cbd5e1;
  --green:   #059669;
  --yellow:  #d97706;
  --orange:  #ea580c;
  --red:     #dc2626;
  --radius:  12px;
  /* Palette premium redesign */
  --forest:  #1a3a28;
  --moss:    #2d6a4f;
  --cream:   #ede9e2;
  --ink:     #0f172a;
}

html { scroll-behavior: smooth; }
body { font-family: 'Inter', system-ui, sans-serif; background: var(--bg); color: var(--text); min-height: 100vh; }

/* ── NAV ─────────────────────────────────────────────────────────────── */
nav {
  position: sticky; top: 0; z-index: 100;
  background: #377ae5;
  border-bottom: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 2px 16px rgba(0,0,0,.20);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 60px; padding: 0 2rem; gap: 1.5rem;
  max-width: 1320px; margin: 0 auto;
}
.nav-logo {
  display: flex; align-items: center; gap: .6rem;
  text-decoration: none; flex-shrink: 0;
}
.nav-logo span {
  font-size: .95rem; font-weight: 800; color: #fff;
  letter-spacing: -.01em;
}
.nav-links {
  display: flex; align-items: center; gap: 2rem;
  list-style: none;
  margin-left: auto;
}
@media (max-width: 768px) { .nav-links { display: none; } }
.nav-links a {
  font-size: .84rem; font-weight: 600; color: rgba(255,255,255,.82);
  text-decoration: none; transition: none;
  position: relative; padding-bottom: 2px;
}
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: -2px;
  width: 0; height: 1.5px; background: #fff;
  transition: width .25s;
}
.nav-links a:hover, .nav-links a.active { color: #fff; }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta-btn {
  padding: .4rem 1rem; border-radius: 8px;
  background: #fff; color: #1e3a8a !important;
  font-size: .78rem; font-weight: 700; text-decoration: none;
  white-space: nowrap; flex-shrink: 0;
  transition: background .2s; display: inline-block;
  margin-left: 1.5rem;
}
.nav-cta-btn:hover { background: rgba(255,255,255,.9); color: #1e3a8a !important; }
@media (max-width: 640px) { .nav-cta-btn { display: none !important; } }

/* Hamburger */
.hamburger {
  background: none; border: none; cursor: pointer;
  display: flex; flex-direction: column; justify-content: center; gap: 5px;
  padding: .4rem; border-radius: 6px; transition: background .15s;
}
@media (min-width: 769px) { .hamburger { display: none; } }
.hamburger:hover { background: rgba(0,0,0,.05); }
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: #fff; border-radius: 2px;
  transition: transform .25s, opacity .25s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Dropdown mobile */
.nav-dropdown {
  position: fixed; top: 60px; right: 0;
  width: 220px; background: var(--ocean);
  border-left: 1px solid rgba(255,255,255,.1); border-bottom: 1px solid rgba(255,255,255,.1);
  box-shadow: -4px 8px 24px rgba(0,0,0,.3);
  border-radius: 0 0 0 12px;
  z-index: 99;
  transform: translateX(100%); opacity: 0;
  transition: transform .25s ease, opacity .2s ease;
  pointer-events: none;
}
.nav-dropdown.open { transform: translateX(0); opacity: 1; pointer-events: auto; }
.nav-dropdown ul { list-style: none; padding: .5rem 0; }
.nav-dropdown ul li a {
  display: block; padding: .85rem 1.4rem;
  color: rgba(255,255,255,.65); text-decoration: none;
  font-size: .9rem; font-weight: 500;
  transition: background .15s;
}
.nav-dropdown ul li a:hover, .nav-dropdown ul li a.active {
  background: rgba(255,255,255,.08); color: #fff;
}
.nav-dropdown ul li:last-child a { color: var(--teal); font-weight: 600; }

/* ── HERO ─────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: min(88svh, 820px);
  min-height: 520px;
  display: flex;
  flex-direction: column;
  overflow: visible;
}
.hero-photo-bg {
  position: absolute; inset: 0;
  background: url('/img/hero-beach.webp') center center/cover no-repeat fixed;
}
@media (max-width: 768px) {
  .hero-photo-bg {
    background-attachment: scroll;
    background-position: center 30%;
  }
}
.hero-photo-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(5,15,10,.28) 0%, rgba(5,20,15,.16) 55%, rgba(5,15,25,.12) 100%);
}
.hero-copyright {
  position: absolute;
  bottom: 4.8rem;
  right: .75rem;
  font-size: .62rem;
  color: rgba(255,255,255,.55);
  letter-spacing: .02em;
  pointer-events: none;
  z-index: 20;
  user-select: none;
  text-shadow: 0 1px 3px rgba(0,0,0,.4);
}
.hero-inner {
  flex: 1; position: relative; z-index: 10;
  display: flex; align-items: center; justify-content: center;
  padding: 2rem 2rem 5rem;
}
.hero-content { text-align: center; max-width: 660px; width: 100%; }
.hero-eyebrow {
  display: inline-block;
  background: rgba(255,255,255,.15); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.28);
  color: #fff; font-size: .72rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; padding: .34rem .9rem; border-radius: 100px;
  margin-bottom: 1.2rem;
}
.hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1.9rem, 3.8vw, 2.8rem);
  font-weight: 700; color: #fff;
  line-height: 1.1; letter-spacing: .01em;
  margin-bottom: 3.5rem;
  text-wrap: balance;
}
.hero h1 em { font-style: italic; font-weight: 700; opacity: .9; }
/* Ancien h1 span conservé pour compat */
.hero h1 span { color: var(--teal); }
/* Ancien hero p conservé pour compat */
.hero p { margin-top: .8rem; font-size: 1rem; color: rgba(255,255,255,.9); line-height: 1.75; }
.hero-search-wrap {
  display: flex; align-items: center;
  background: #fff; border-radius: 12px;
  padding: 5px 5px 5px 18px;
  box-shadow: 0 8px 40px rgba(0,0,0,.28);
  max-width: 540px; margin: 0 auto;
}
.hero-search-input {
  flex: 1; border: none; outline: none; background: transparent;
  font-size: 15px; color: var(--text);
  padding: 9px 12px 9px 0; font-family: inherit;
}
.hero-search-input::placeholder { color: var(--muted); }
.hero-search-btn {
  background: var(--forest); color: #fff;
  border: none; border-radius: 8px; padding: 11px 22px;
  font-size: .82rem; font-weight: 700; letter-spacing: .04em;
  cursor: pointer; white-space: nowrap; flex-shrink: 0;
  font-family: inherit; transition: background .2s;
}
.hero-search-btn:hover { background: var(--moss); }
@media (max-width: 540px) {
  .hero-search-wrap { flex-direction: column; padding: 10px; gap: 8px; }
  .hero-search-input { width: 100%; padding: 8px; }
  .hero-search-btn { width: 100%; text-align: center; }
}

/* ── Bouton géolocalisation dans la barre hero ─────── */
.hero-geo-btn {
  background: none; border: none; cursor: pointer;
  padding: 6px 8px; color: var(--muted);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; border-radius: 6px;
  transition: background .2s;
  margin-right: 2px;
}
.hero-geo-btn:hover { color: var(--forest); background: rgba(0,0,0,.04); }
.hero-geo-btn.geo-loading svg {
  animation: spin .9s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.hero-stats-bottom {
  position: relative; z-index: 1;
  display: flex; align-items: center; justify-content: center; flex-wrap: wrap;
  gap: 1rem 3rem; padding: 1.1rem 2rem;
  background: rgba(0,0,0,.38); backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255,255,255,.1);
}
.hero-stats-bottom .hero-stat { text-align: center; }
.hero-stats-bottom .hero-stat strong { display: block; font-size: 1.5rem; font-weight: 800; color: #fff; }
.hero-stats-bottom .hero-stat span {
  font-size: .6rem; color: rgba(255,255,255,.55);
  text-transform: uppercase; letter-spacing: .1em; font-weight: 600;
}
/* Ancien hero-stats (hero gradient) conservé pour compat */
.hero-stats { display: flex; gap: 2.5rem; margin-top: 2.5rem; flex-wrap: wrap; justify-content: center; }
.hero-stat strong { display: block; font-size: 1.9rem; font-weight: 800; color: #fff; letter-spacing: -.025em; }
.hero-stat span { font-size: .68rem; color: rgba(255,255,255,.55); text-transform: uppercase; letter-spacing: .12em; font-weight: 600; }

/* ── TICKER (conservé, caché sur la home v2) ────────────────────── */
.hero-ticker-outer {
  width: 100%; padding: 12px 0; overflow: hidden; position: relative; z-index: 1;
  background:
    linear-gradient(90deg,#023e8a 0%,#0077b6 45%,#00b4d8 100%) no-repeat top / 100% 3px,
    #f8fafc;
  box-shadow: 0 6px 32px rgba(0,0,0,.12);
}
.hero-ticker-outer::before,
.hero-ticker-outer::after {
  content:''; position:absolute; top:0; bottom:0; width:90px; z-index:2; pointer-events:none;
}
.hero-ticker-outer::before { left:0;  background:linear-gradient(to right,#f8fafc 10%,transparent); }
.hero-ticker-outer::after  { right:0; background:linear-gradient(to left, #f8fafc 10%,transparent); }
.hero-ticker-track {
  display: inline-flex; align-items: center; gap: 0;
  white-space: nowrap; animation: hero-ticker 55s linear infinite; will-change: transform;
}
.hero-ticker-track:hover { animation-play-state: paused; }
.ticker-slot {
  position: relative; display: inline-flex; align-items: center; gap: 11px;
  width: 230px; height: 72px; margin: 0 8px; flex-shrink: 0; overflow: hidden;
  border-radius: 14px; padding: 0 14px 0 11px;
  background: #fff; border: 1.5px solid #e2e8f0;
  box-shadow: 0 2px 10px rgba(2,62,138,.07);
  cursor: pointer; text-decoration: none;
  transition: box-shadow .25s, border-color .25s, transform .25s;
}
.ticker-slot:hover { box-shadow: 0 8px 28px rgba(0,119,182,.2); border-color: #0077b6; transform: translateY(-3px); }
.ticker-slot .ts-avatar { width: 42px; height: 42px; border-radius: 10px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: .78rem; font-weight: 700; color: #fff; letter-spacing: .03em; font-family: 'Inter', system-ui, sans-serif; }
.ticker-slot .ts-body { display: flex; flex-direction: column; gap: 1px; min-width: 0; flex: 1; }
.ticker-slot .ts-tag { font-size: .56rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: #0077b6; line-height: 1.2; }
.ticker-slot .ts-nom { font-size: .84rem; font-weight: 700; color: #0f172a; line-height: 1.2; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ticker-slot .ts-badge { font-size: .6rem; font-weight: 600; color: #059669; display: inline-flex; align-items: center; gap: 3px; margin-top: 1px; }
.ticker-slot .ts-hover { position: absolute; inset: 0; border-radius: 13px; background: linear-gradient(135deg,#023e8a 0%,#0077b6 60%,#00b4d8 100%); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px; text-align: center; padding: 10px; opacity: 0; transform: translateY(6px); transition: opacity .25s, transform .25s; pointer-events: none; }
.ticker-slot:hover .ts-hover { opacity: 1; transform: translateY(0); pointer-events: all; }
.ticker-slot .ts-hover strong { font-size: .82rem; font-weight: 800; color: #fff; letter-spacing: .02em; }
.ticker-slot .ts-hover em { font-size: .65rem; color: rgba(255,255,255,.7); font-style: normal; }
.ticker-slot .ts-hover a { font-size: .68rem; color: #7dd3fc; text-decoration: none; font-weight: 700; background: rgba(255,255,255,.15); padding: 3px 10px; border-radius: 20px; margin-top: 2px; }
.ticker-slot .ts-hover a:hover { background: rgba(255,255,255,.28); }
.ticker-cta { background: linear-gradient(135deg,#eff6ff,#dbeafe); border-color: #bfdbfe; justify-content: center; gap: 8px; }
.ticker-cta .ts-plus { width: 32px; height: 32px; border-radius: 50%; background: #0077b6; color: #fff; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; font-weight: 300; flex-shrink: 0; }
.ticker-cta .ts-body .ts-tag { color: #3b82f6; }
.ticker-cta .ts-body .ts-nom { color: #1d4ed8; }
.ticker-cta:hover { border-color: #3b82f6; background: linear-gradient(135deg,#dbeafe,#bfdbfe); }
@keyframes hero-ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ── EDITORIAL HOME V2 ──────────────────────────────────────────────── */
.ed-home-v2 {}

/* Section carte */
.ed-map-section {
  background: url('/img/hero-beach.webp') center center/cover no-repeat;
  background-attachment: fixed;
  height: 340px;
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
@media (max-width: 768px) {
  .ed-map-section {
    background: #377ae5;
    background-attachment: scroll;
    height: 220px;
  }
}
#ed-sat-map { display: none !important; }
.ed-map-grid {
  position: absolute; inset: 0; opacity: .06;
  background-image: linear-gradient(rgba(255,255,255,.6) 1px,transparent 1px), linear-gradient(90deg,rgba(255,255,255,.6) 1px,transparent 1px);
  background-size: 44px 44px;
}
.ed-map-dots { position: absolute; inset: 0; }
.ed-map-dot {
  position: absolute; width: 8px; height: 8px; border-radius: 50%;
  background: #3ABDE0; box-shadow: 0 0 0 4px rgba(58,189,224,.2);
}
.ed-map-dot::after {
  content: ''; position: absolute; inset: -6px; border-radius: 50%;
  border: 1px solid rgba(58,189,224,.3); animation: edMapPulse 2.5s ease-in-out infinite;
}
@keyframes edMapPulse { 0%,100%{transform:scale(1);opacity:.5} 50%{transform:scale(1.6);opacity:0} }
.ed-map-inner { position: relative; z-index: 1; text-align: center; padding: 0 2rem; }
.ed-map-inner h2 {
  font-family: 'Fraunces', serif; font-style: italic;
  font-size: clamp(1.5rem,3vw,2.2rem); font-weight: 700;
  color: #fff; margin-bottom: .5rem;
}
.ed-map-inner p { font-size: .85rem; color: rgba(255,255,255,.55); margin-bottom: 1.4rem; }
.ed-map-btn {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(255,255,255,.12); border: 1.5px solid rgba(255,255,255,.3);
  color: #fff; padding: .75rem 1.8rem; border-radius: 8px;
  font-size: .82rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
  cursor: pointer; backdrop-filter: blur(8px); font-family: inherit;
  transition: background .2s, border-color .2s;
}
.ed-map-btn:hover { background: rgba(255,255,255,.22); border-color: rgba(255,255,255,.6); }

/* Section partenaires proches */
.ed-nearby-section { background: #fff; padding: 3.5rem 2rem; }
.ed-nearby-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem;
}
@media (max-width: 700px) { .ed-nearby-grid { grid-template-columns: 1fr; gap: 2.5rem; } }
.ed-nearby-col-header {
  font-size: .65rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 1rem;
  padding-bottom: .75rem; border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
}
.ed-nearby-col-header a {
  font-size: .7rem; color: var(--moss); font-weight: 700; text-decoration: none; cursor: pointer;
}
.ed-nearby-col-header a:hover { text-decoration: underline; }
.ed-pcard-sm {
  display: flex; align-items: center; gap: 12px;
  padding: 13px 14px;
  background: var(--bg); border: 1px solid var(--border);
  border-radius: 10px; margin-bottom: 8px; cursor: pointer;
  transition: box-shadow .2s, border-color .2s, transform .15s;
}
.ed-pcard-sm:hover { box-shadow: 0 4px 18px rgba(0,0,0,.07); border-color: var(--border2); transform: translateY(-1px); }
.ed-pcard-avatar {
  width: 44px; height: 44px; border-radius: 9px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: .78rem; font-weight: 800; color: #fff;
}
.ed-pcard-body { flex: 1; min-width: 0; }
.ed-pcard-name { font-size: .88rem; font-weight: 700; color: var(--text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; margin-bottom: 2px; }
.ed-pcard-sub  { font-size: .72rem; color: var(--muted); }
.ed-pcard-dist { font-size: .68rem; font-weight: 700; color: var(--moss); background: #EBF4EF; padding: 2px 7px; border-radius: 100px; white-space: nowrap; flex-shrink: 0; }

/* Section spots vedettes */
.ed-spots-section { background: var(--bg); padding: 3.5rem 2rem; }
.ed-spots-inner { max-width: 1100px; margin: 0 auto; }

/* Section articles */
.ed-articles-section { background: #fff; padding: 3.5rem 2rem; }
.ed-articles-inner { max-width: 1100px; margin: 0 auto; }
.ed-articles-grid {
  display: grid; grid-template-columns: repeat(auto-fill,minmax(240px,1fr)); gap: 1.5rem;
  margin-top: 1.5rem;
}
.ed-article-card { cursor: pointer; }
.ed-article-thumb {
  height: 175px; border-radius: 12px; margin-bottom: 13px;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem; overflow: hidden;
}
.ed-article-thumb-1 { background: linear-gradient(135deg,#2C5F3E,#1A5276); }
.ed-article-thumb-2 { background: linear-gradient(135deg,#0B3D6B,#3A96C4); }
.ed-article-thumb-3 { background: linear-gradient(135deg,#1A3A28,#2D6A4F); }
.ed-article-thumb-4 { background: linear-gradient(135deg,#3D2B1F,#8B6B4A); }
.ed-article-cat { font-size: .62rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--moss); margin-bottom: 5px; }
.ed-article-title { font-size: .92rem; font-weight: 700; color: var(--text); line-height: 1.35; margin-bottom: 4px; }
.ed-article-date { font-size: .72rem; color: var(--muted); }

/* Section header générique editorial */
.ed-sec-hdr {
  display: flex; align-items: baseline; justify-content: space-between;
  margin-bottom: 1.5rem; gap: 1rem;
}
.ed-sec-title {
  font-family: 'Fraunces', serif; font-style: italic;
  font-size: clamp(1.3rem,2.5vw,1.8rem); font-weight: 700;
  color: var(--forest);
}
.ed-sec-more {
  font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--muted); white-space: nowrap; cursor: pointer;
  border-bottom: 1px solid var(--border); padding-bottom: 1px; text-decoration: none;
  transition: border-color .2s;
}
.ed-sec-more:hover { color: var(--forest); border-color: var(--forest); }

/* Ancienne editorial home (gardée pour les autres sections) */
.ed-home { max-width:1100px; margin:0 auto; padding:2rem 1.2rem 4rem; }
.ed-section { margin-bottom:3rem; }
.ed-section-eco { background:linear-gradient(135deg,rgba(14,165,233,.05),rgba(16,185,129,.06)); border-radius:16px; padding:2rem; }
.ed-header { display:flex; align-items:baseline; justify-content:space-between; margin-bottom:1.2rem; padding-bottom:.6rem; border-bottom:2px solid var(--teal2,#0ea5e9); }
.ed-title { font-size:1.15rem; font-weight:800; color:var(--text,#0f172a); margin:0; letter-spacing:-.02em; }
.ed-more  { font-size:.82rem; color:var(--teal2,#0ea5e9); text-decoration:none; font-weight:600; white-space:nowrap; }
.ed-more:hover { text-decoration:underline; }
.ed-spots-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(260px,1fr)); gap:1rem; }
.ed-eco-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(200px,1fr)); gap:1.2rem; }
.ed-eco-card { background:var(--card,#fff); border-radius:12px; padding:1.5rem; border:1px solid var(--border,#e2e8f0); }
.ed-eco-icon { font-size:2rem; margin-bottom:.8rem; }
.ed-eco-card h3 { font-size:.92rem; font-weight:700; color:var(--text); margin:0 0 .5rem; }
.ed-eco-card p  { font-size:.83rem; color:var(--muted); line-height:1.55; margin:0; }
.ed-partners-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(240px,1fr)); gap:1rem; }
.ed-partner-card { display:flex; align-items:center; gap:1rem; background:var(--card); border:1px solid var(--border); border-radius:12px; padding:1rem 1.2rem; text-decoration:none; color:var(--text); transition: box-shadow .15s, transform .15s; }
.ed-partner-card:hover { box-shadow:0 4px 20px rgba(0,0,0,.08); transform:translateY(-2px); }
.ed-partner-avatar { width:46px; height:46px; border-radius:10px; color:#fff; display:flex; align-items:center; justify-content:center; font-weight:700; font-size:1rem; flex-shrink:0; }
.ed-partner-name { font-weight:700; font-size:.9rem; margin-bottom:.2rem; }
.ed-partner-sub { font-size:.78rem; color:var(--muted); }

/* ── BLOG ────────────────────────────────────────────────────────────── */
.blog-index { max-width: 1200px; margin: 0 auto; padding: 2.5rem 1.5rem 4rem; }
.blog-header { margin-bottom: 2rem; border-bottom: 1px solid var(--border); padding-bottom: 1.5rem; }
.blog-header h1 { font-family: 'Fraunces', serif; font-size: 2rem; font-weight: 700; color: #0f172a; margin-bottom: .4rem; }
.blog-subtitle { font-size: .85rem; color: var(--muted); }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
@media (max-width: 900px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .blog-grid { grid-template-columns: 1fr; } }
.blog-grid .blog-card { min-width: 0; width: 100%; box-shadow: 0 2px 12px rgba(0,0,0,.08); transition: transform .2s, box-shadow .2s; }
.blog-grid .blog-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,.13); }
.blog-card-link { display: block; text-decoration: none; color: inherit; height: 100%; }
.blog-card-tags { display: flex; flex-wrap: wrap; gap: .3rem; margin-bottom: .45rem; }
.blog-tag { font-size: .65rem; font-weight: 700; padding: 2px 7px; border-radius: 4px; background: rgba(0,119,182,.1); color: var(--blue); text-transform: uppercase; letter-spacing: .06em; }
.blog-tag-region { background: rgba(0,200,150,.1); color: #059669; }
.blog-card-resume { font-size: .77rem; color: #555; line-height: 1.65; margin-bottom: .5rem; }
.blog-card-date { font-size: .72rem; color: var(--muted); display: block; }
.blog-carousel { width: 320px; flex-shrink: 0; border-radius: 16px; overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,.3); }
.blog-carousel-track { display: flex; transition: transform .5s cubic-bezier(.4, 0, .2, 1); }
.blog-card { min-width: 320px; background: #fff; border-radius: 16px; overflow: hidden; text-decoration: none; display: block; }
.blog-card-img { width: 100%; height: 180px; object-fit: cover; }
.blog-card-img-placeholder { width: 100%; height: 180px; background: linear-gradient(135deg,#0a1f3d,#0077b6); display: flex; align-items: center; justify-content: center; font-size: 3rem; }
.blog-card-body { padding: 1.1rem 1.2rem; }
.blog-card-region { font-size: .68rem; color: var(--blue); font-weight: 700; text-transform: uppercase; letter-spacing: .07em; margin-bottom: .3rem; }
.blog-card-title { font-family: 'Fraunces', serif; font-size: .95rem; font-weight: 700; color: #111; line-height: 1.35; margin-bottom: .4rem; }
.blog-card-desc { font-size: .77rem; color: #666; line-height: 1.65; }
.blog-card-cta { display: inline-block; margin-top: .55rem; font-size: .77rem; font-weight: 600; color: var(--blue); }
.blog-carousel-dots { display: flex; justify-content: center; gap: .45rem; padding: .5rem; background: #fff; }
.carousel-dot { width: 6px; height: 6px; border-radius: 50%; background: #ddd; transition: all .3s; cursor: pointer; border: none; }
.carousel-dot.active { background: var(--blue); width: 18px; border-radius: 3px; }
.blog-carousel-empty { min-width: 320px; height: 260px; background: rgba(0,0,0,.04); border: 2px dashed var(--border); border-radius: 16px; display: flex; align-items: center; justify-content: center; color: var(--muted); font-size: .85rem; text-align: center; }
@media (max-width: 768px) { .hero { min-height: 480px; } }

/* ── REGION TABS ────────────────────────────────────────────────────── */
.region-tabs { display: flex; gap: .5rem; margin-bottom: 1.5rem; flex-wrap: wrap; }
.region-tab { padding: .4rem 1.2rem; border-radius: 20px; font-size: .83rem; font-weight: 600; cursor: pointer; border: 1.5px solid var(--border2); background: var(--card); color: var(--muted); transition: all .18s; font-family: 'Inter', system-ui, sans-serif; }
.region-tab:hover { border-color: var(--teal); color: var(--teal2); }
.region-tab.active { border-color: var(--teal2); background: var(--teal2); color: #fff; }
.region-cards { display: none; }
.back-region { display: none; }
.region-title-big { display: none; }

/* ── SECTIONS ────────────────────────────────────────────────────────── */
.section { max-width: 1200px; margin: 0 auto; padding: 2.5rem 1.5rem; }
.section-title { font-family: 'Fraunces', serif; font-size: 1.4rem; font-weight: 700; color: var(--text); margin-bottom: 1.4rem; display: flex; align-items: center; gap: .7rem; }
.section-title::after { content: ''; flex: 1; height: 1px; background: var(--border); }

/* ── SPOT CARDS ──────────────────────────────────────────────────────── */
.spots-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(265px, 1fr)); gap: 1rem; }
.spot-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.2rem 1.3rem 1.2rem 1.5rem; cursor: pointer; box-shadow: 0 1px 4px rgba(0,0,0,.06); transition: box-shadow .2s, border-color .2s, transform .2s; position: relative; overflow: hidden; }
.spot-card::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: var(--border2); transition: background .3s; }
.spot-card[data-score-cat="s5"]::before { background: linear-gradient(180deg, #0ea5e9, #0284c7); }
.spot-card[data-score-cat="s4"]::before { background: linear-gradient(180deg, #10b981, #059669); }
.spot-card[data-score-cat="s3"]::before { background: linear-gradient(180deg, #f59e0b, #d97706); }
.spot-card[data-score-cat="s2"]::before { background: linear-gradient(180deg, #f97316, #ea580c); }
.spot-card[data-score-cat="s1"]::before { background: linear-gradient(180deg, #ef4444, #dc2626); }
.spot-card:hover { box-shadow: 0 8px 28px rgba(0,0,0,.12); border-color: var(--teal); transform: translateY(-2px); }
.spot-card-name { font-size: .98rem; font-weight: 700; color: var(--text); margin-bottom: .2rem; }
.spot-card-region { font-size: .7rem; color: var(--muted); margin-bottom: .9rem; text-transform: uppercase; letter-spacing: .06em; font-weight: 500; }
.spot-card-score { display: flex; align-items: center; gap: .8rem; }

/* ── SCORE BADGES ────────────────────────────────────────────────────── */
.score-badge { width: 46px; height: 46px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .95rem; font-weight: 800; flex-shrink: 0; color: #fff; box-shadow: 0 3px 10px rgba(0,0,0,.18); }
.score-badge.s0 { background: #94a3b8; }
.score-badge.s1 { background: linear-gradient(135deg, #ef4444, #dc2626); box-shadow: 0 3px 10px rgba(220,38,38,.3); }
.score-badge.s2 { background: linear-gradient(135deg, #f97316, #ea580c); box-shadow: 0 3px 10px rgba(234,88,12,.3); }
.score-badge.s3 { background: linear-gradient(135deg, #f59e0b, #d97706); box-shadow: 0 3px 10px rgba(217,119,6,.3); }
.score-badge.s4 { background: linear-gradient(135deg, #10b981, #059669); box-shadow: 0 3px 10px rgba(5,150,105,.3); }
.score-badge.s5 { background: linear-gradient(135deg, #0ea5e9, #0284c7); box-shadow: 0 3px 10px rgba(14,165,233,.35); }
.score-label { font-size: .84rem; color: var(--muted); }
.score-label strong { display: block; color: var(--text); font-size: .92rem; font-weight: 700; }
.score-emoji { font-size: 1rem; margin-left: .3rem; }
.spot-card-meta { display: flex; gap: 1rem; margin-top: .9rem; padding-top: .9rem; border-top: 1px solid var(--border); }
.spot-meta-item { font-size: .77rem; color: var(--muted); display: flex; flex-direction: column; gap: .1rem; }
.spot-meta-item strong { color: var(--text); font-size: .85rem; font-weight: 600; }
.spot-card-loading { height: 76px; display: flex; align-items: center; justify-content: center; }
.spinner { width: 24px; height: 24px; border: 2px solid var(--border); border-top-color: var(--teal); border-radius: 50%; animation: spin .7s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.wind-light  { color: var(--green);  font-weight: 700; }
.wind-mid    { color: var(--yellow); font-weight: 700; }
.wind-strong { color: var(--orange); font-weight: 700; }
.wind-gale   { color: var(--red);    font-weight: 700; }

/* ── SPOT DETAIL ─────────────────────────────────────────────────────── */
#page-spot { display: none; background: var(--bg); }
.back-btn { display: inline-flex; align-items: center; gap: .4rem; background: var(--card); border: 1px solid var(--border); border-radius: 8px; padding: .4rem .9rem; color: var(--muted); font-size: .83rem; cursor: pointer; text-decoration: none; transition: all .18s; margin-bottom: 1.5rem; font-weight: 500; box-shadow: 0 1px 3px rgba(0,0,0,.06); }
.back-btn:hover { color: var(--teal2); border-color: var(--teal); }
.spot-header { margin-bottom: 1.8rem; }
.spot-header h1 { font-family: 'Fraunces', serif; font-size: 2rem; font-weight: 700; color: var(--text); letter-spacing: -.03em; }
.spot-header p { color: var(--muted); margin-top: .35rem; }
.forecast-days { display: flex; flex-direction: column; gap: .8rem; }
.day-block { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; box-shadow: 0 1px 3px rgba(0,0,0,.05); }
.day-header { display: flex; align-items: center; justify-content: space-between; padding: .8rem 1.2rem; cursor: pointer; border-bottom: 1px solid var(--border); transition: background .18s; }
.day-header:hover { background: #f5f2ec; }
.day-header h3 { font-size: .9rem; font-weight: 700; color: var(--text); }
.day-best { display: flex; align-items: center; gap: .5rem; font-size: .78rem; color: var(--muted); }
.day-toggle { color: var(--muted); transition: transform .2s; font-size: .78rem; }
.day-block.open .day-toggle { transform: rotate(180deg); }
.hours-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 0; }
.hour-slot { padding: .8rem 1rem; border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); transition: background .18s; }
.hour-slot:hover { background: #f5f2ec; }
.hour-time { font-size: .7rem; color: var(--muted); margin-bottom: .4rem; font-weight: 600; letter-spacing: .05em; }
.hour-score { display: flex; align-items: center; gap: .4rem; margin-bottom: .4rem; }
.hour-score .score-badge { width: 30px; height: 30px; font-size: .76rem; }
.hour-label { font-size: .76rem; font-weight: 600; }
.hour-data { display: flex; flex-direction: column; gap: .15rem; }
.hour-data span { font-size: .72rem; color: var(--muted); }
.hour-data span strong { color: var(--text); font-weight: 600; }

/* ── PARTENAIRES ─────────────────────────────────────────────────────── */
.partenaires-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1rem; }
.partner-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.2rem; display: flex; flex-direction: column; gap: .4rem; box-shadow: 0 1px 3px rgba(0,0,0,.05); }
.partner-type { display: inline-block; font-size: .67rem; text-transform: uppercase; letter-spacing: .09em; padding: .2rem .65rem; border-radius: 4px; font-weight: 700; }
.partner-type.ecole      { background: rgba(14,165,233,.12); color: var(--teal2); }
.partner-type.shop       { background: rgba(5,150,105,.1);   color: var(--green); }
.partner-type.shop-ecole { background: rgba(217,119,6,.1);   color: var(--yellow); }
.partner-name { font-size: .98rem; font-weight: 700; color: var(--text); }
.partner-premium { border-color: #f59e0b; box-shadow: 0 0 0 2px rgba(245,158,11,.2); }
.partner-badge-premium { display: inline-block; background: linear-gradient(135deg,#f59e0b,#d97706); color: #fff; font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; padding: .25rem .75rem; border-radius: 20px; margin-bottom: .3rem; }
.partner-region { font-size: .78rem; color: var(--muted); }
.partner-desc { font-size: .82rem; color: var(--muted); line-height: 1.6; flex: 1; }
.partner-actions { display: flex; gap: .4rem; margin-top: .4rem; flex-wrap: wrap; }
.btn-google-reviews { background: #fff; border: 1.5px solid #fbbc04; color: #1a73e8; font-weight: 700; }
.btn-google-reviews:hover { background: #fefce8; border-color: #1a73e8; }
.btn-google-reviews:disabled { opacity:.6; cursor:default; }
.google-reviews-block { margin-top: .8rem; border-top: 1px solid var(--border); padding-top: .8rem; }
.greview-header { display:flex; align-items:center; gap:.6rem; margin-bottom:.8rem; }
.greview-score { font-size:2rem; font-weight:900; color:#1a73e8; line-height:1; }
.greview-stars { color:#fbbc04; font-size:1rem; letter-spacing:.1em; }
.greview-total { font-size:.78rem; color:#94a3b8; }
.greview-item { display:flex; gap:.7rem; margin-bottom:.9rem; align-items:flex-start; }
.greview-avatar { width:36px; height:36px; border-radius:50%; object-fit:cover; flex-shrink:0; }
.greview-avatar-placeholder { width:36px; height:36px; border-radius:50%; background:linear-gradient(135deg,#1a73e8,#34a853); color:#fff; display:flex; align-items:center; justify-content:center; font-weight:700; font-size:.9rem; flex-shrink:0; }
.greview-body { flex:1; min-width:0; }
.greview-meta { display:flex; align-items:center; gap:.5rem; flex-wrap:wrap; margin-bottom:.3rem; font-size:.78rem; color:#64748b; }
.greview-meta strong { color:#0f172a; font-size:.82rem; }
.greview-stars-sm { color:#fbbc04; font-size:.75rem; letter-spacing:.05em; }
.greview-text { font-size:.8rem; color:#374151; line-height:1.55; margin:0; }
.greview-powered { display:flex; align-items:center; gap:.4rem; font-size:.7rem; color:#94a3b8; margin-top:.6rem; padding-top:.6rem; border-top:1px solid var(--border); }
.btn { padding: .4rem .9rem; border-radius: 7px; font-size: .81rem; font-weight: 600; cursor: pointer; text-decoration: none; border: none; transition: all .18s; font-family: 'Inter', system-ui, sans-serif; }
.btn-primary { background: var(--teal2); color: #fff; }
.btn-primary:hover { background: var(--blue2); }
.btn-outline { background: transparent; border: 1.5px solid var(--border2); color: var(--muted); }
.btn-outline:hover { border-color: var(--teal); color: var(--teal2); }

/* ── HOME SIDEBAR (legacy) ──────────────────────────────────────────── */
.home-layout { display: grid; grid-template-columns: 1fr; gap: 1.5rem; max-width: 1400px; margin: 0 auto; padding: 1.5rem 1.5rem 0; align-items: start; }
.home-sidebar { position: sticky; top: 74px; }
.home-main { min-width: 0; }
.home-sidebar-title { font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); font-weight: 700; margin-bottom: .85rem; }
.home-sidebar-card { display: block; background: var(--card); border-radius: 10px; border: 1px solid var(--border); margin-bottom: .85rem; overflow: hidden; text-decoration: none; transition: box-shadow .18s, transform .18s; }
.home-sidebar-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,.1); transform: translateY(-2px); }
.home-sidebar-card-img { width: 100%; height: 130px; background: linear-gradient(135deg,#023e8a,#0294ba); display: flex; align-items: center; justify-content: center; font-size: 2.2rem; }
.home-sidebar-card-body { padding: .8rem; }
.home-sidebar-card-cat { font-size: .65rem; text-transform: uppercase; letter-spacing: .09em; color: var(--teal2); font-weight: 700; margin-bottom: .25rem; }
.home-sidebar-card-title { font-size: .88rem; font-weight: 700; color: var(--text); margin-bottom: .3rem; line-height: 1.4; }
.home-sidebar-card-desc { font-size: .76rem; color: var(--muted); line-height: 1.65; }
.home-sidebar-card-cta { display: block; font-size: .74rem; color: var(--teal2); font-weight: 600; margin-top: .45rem; }
@media (max-width: 900px) { .home-layout { grid-template-columns: 1fr; } .home-sidebar { position: static; order: 2; } .home-main { order: 1; } }

/* ── ECO POP-UP ──────────────────────────────────────────────────────── */
.eco-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.55); z-index: 2000; display: flex; align-items: center; justify-content: center; padding: 1rem; }
.eco-modal { background: var(--card); border-radius: 16px; padding: 2rem; max-width: 460px; width: 100%; box-shadow: 0 20px 60px rgba(0,0,0,.25); text-align: center; }
.eco-icon { font-size: 3rem; margin-bottom: .5rem; }
.eco-modal h3 { font-size: 1.25rem; font-weight: 800; color: #0f172a; margin: 0 0 1rem; font-family: 'Fraunces',serif; }
.eco-list { text-align: left; list-style: none; padding: 1rem 1.2rem; margin: 0 0 1.2rem; background: #f0fdf4; border-radius: 10px; }
.eco-list li { font-size: .88rem; color: #334155; line-height: 1.7; }
.eco-cta-text { font-size: .84rem; color: var(--muted); margin-bottom: 1.2rem; font-style: italic; }

/* ── STALE / LOADING / ERROR ────────────────────────────────────────── */
.stale-warning { background: rgba(234,88,12,.07); border: 1px solid rgba(234,88,12,.25); border-radius: 8px; padding: .7rem 1rem; color: var(--orange); font-size: .81rem; margin-bottom: 1.2rem; }
.page-loading { text-align: center; padding: 4rem; color: var(--muted); }
.page-loading .spinner { margin: 0 auto 1rem; width: 36px; height: 36px; border-width: 3px; }
.error-msg { background: rgba(220,38,38,.07); border: 1px solid rgba(220,38,38,.2); border-radius: 8px; padding: .9rem 1.3rem; color: var(--red); margin: 1rem 0; }

/* ── MAP ─────────────────────────────────────────────────────────────── */
#map { background: #dce8f0; }
.leaflet-popup-content-wrapper { background: var(--card); border: 1px solid var(--border); border-radius: 10px; color: var(--text); box-shadow: 0 8px 24px rgba(0,0,0,.12); }
.leaflet-popup-tip { background: var(--card); }
.leaflet-popup-close-button { color: var(--muted) !important; }
.map-popup-name { font-weight: 700; color: var(--text); font-size: .92rem; margin-bottom: .28rem; }
.map-popup-region { font-size: .73rem; color: var(--muted); margin-bottom: .5rem; }
.map-popup-score { display: flex; align-items: center; gap: .5rem; margin-bottom: .5rem; }
.map-popup-meta { font-size: .75rem; color: var(--muted); }
.map-popup-meta strong { color: var(--text); }
.map-popup-btn { display: block; margin-top: .5rem; text-align: center; background: var(--teal2); color: #fff; border-radius: 6px; padding: .32rem .7rem; font-size: .78rem; font-weight: 600; text-decoration: none; cursor: pointer; transition: background .18s; }
.map-popup-btn:hover { background: var(--blue2); }

/* ── SERVICES ────────────────────────────────────────────────────────── */
.services-page { max-width: 1100px; padding-bottom: 3.5rem; }
.services-hero { text-align: center; padding: 2rem 0 3rem; }
.services-hero h1 { font-family: 'Fraunces', serif; font-size: clamp(1.6rem,3vw,2.3rem); font-weight: 700; color: var(--text); margin-bottom: 1rem; letter-spacing: -.03em; }
.services-hero p { font-size: 1rem; color: var(--muted); max-width: 580px; margin: 0 auto; line-height: 1.75; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.2rem; margin-bottom: 2.5rem; }
.service-card { background: var(--card); border: 1px solid var(--border); border-radius: 14px; padding: 1.8rem; position: relative; box-shadow: 0 1px 4px rgba(0,0,0,.06); }
.service-card-featured { border-color: var(--teal); box-shadow: 0 0 0 1px var(--teal), 0 4px 12px rgba(14,165,233,.12); }
.service-badge { position: absolute; top: -11px; right: 1.4rem; background: var(--teal2); color: #fff; font-size: .68rem; font-weight: 700; padding: .22rem .8rem; border-radius: 20px; }
.service-icon { font-size: 2rem; margin-bottom: .8rem; }
.service-card h3 { font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: .5rem; }
.service-card p { font-size: .86rem; color: var(--muted); line-height: 1.65; margin-bottom: .9rem; }
.service-list { list-style: none; display: flex; flex-direction: column; gap: .4rem; }
.service-list li { font-size: .82rem; color: var(--muted); display: flex; gap: .4rem; }
.service-list li::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; }
.services-cta { background: linear-gradient(135deg, #0a1f3d, #023e8a); border-radius: 14px; padding: 2.5rem; margin-bottom: 2.5rem; text-align: center; }
.services-cta h2 { font-family: 'Fraunces', serif; font-size: 1.5rem; font-weight: 700; color: #fff; margin-bottom: .5rem; letter-spacing: -.02em; }
.services-cta p { color: rgba(255,255,255,.7); margin-bottom: 1.5rem; }
.services-cta-actions { display: flex; align-items: center; justify-content: center; gap: 2rem; flex-wrap: wrap; }
.btn-cta-primary { background: var(--teal); color: #fff; padding: .75rem 2rem; border-radius: 9px; font-size: .95rem; font-weight: 700; text-decoration: none; transition: background .18s; }
.btn-cta-primary:hover { background: var(--teal2); }
.services-contact-info { text-align: left; color: #fff; font-size: .88rem; }
.services-contact-info span { color: rgba(255,255,255,.6); font-size: .8rem; }
.services-faq { margin-bottom: 2rem; }
.services-faq h2 { font-size: 1.2rem; font-weight: 700; color: var(--text); margin-bottom: 1rem; }
.faq-item { background: var(--card); border: 1px solid var(--border); border-radius: 8px; padding: 1.1rem; margin-bottom: .6rem; }
.faq-item h4 { font-size: .9rem; font-weight: 700; color: var(--text); margin-bottom: .35rem; }
.faq-item p { font-size: .83rem; color: var(--muted); line-height: 1.65; }

/* ── SEO ─────────────────────────────────────────────────────────────── */
.seo-section { background: var(--card); border-top: 1px solid var(--border); margin-top: 2rem; }
.seo-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.2rem; }
.seo-card { padding: 1.4rem; }
.seo-card-icon { font-size: 1.6rem; margin-bottom: .5rem; }
.seo-card h3 { font-size: .95rem; font-weight: 700; color: var(--text); margin-bottom: .4rem; }
.seo-card p { font-size: .83rem; color: var(--muted); line-height: 1.75; }

/* ── MODAL RÉFÉRENT ──────────────────────────────────────────────────── */
.referral-overlay { display: none; position: fixed; inset: 0; z-index: 9999; background: rgba(10,31,61,.65); backdrop-filter: blur(6px); align-items: center; justify-content: center; }
.referral-overlay.open { display: flex; }
.referral-modal { background: var(--card); border-radius: 18px; padding: 2.2rem 2rem; max-width: 420px; width: 92%; text-align: center; box-shadow: 0 24px 64px rgba(0,0,0,.22); animation: modal-in .22s cubic-bezier(.34,1.56,.64,1); }
@keyframes modal-in { from { transform: scale(.9); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.referral-icon { font-size: 2.4rem; margin-bottom: .9rem; }
.referral-titre { font-family: 'Fraunces', serif; font-size: 1.25rem; font-weight: 700; color: var(--text); margin-bottom: .6rem; }
.referral-body { color: var(--muted); font-size: .88rem; line-height: 1.65; margin-bottom: 1.6rem; }
.referral-body strong { color: var(--teal2); }
.referral-actions { display: flex; gap: .75rem; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ──────────────────────────────────────────────────────────── */
footer { border-top: 1px solid var(--border); padding: 3rem 2rem 1.5rem; color: var(--muted); font-size: .83rem; margin-top: 3rem; background: var(--ocean); }
footer a { color: var(--teal); text-decoration: none; }
footer a:hover { text-decoration: underline; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 2rem; max-width: 1200px; margin: 0 auto 2rem; }
.footer-logo { font-family: 'Fraunces', serif; font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: .6rem; }
.footer-title { font-weight: 700; color: rgba(255,255,255,.35); margin-bottom: .6rem; font-size: .76rem; text-transform: uppercase; letter-spacing: .09em; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .4rem; }
.footer-col ul a { color: rgba(255,255,255,.45); text-decoration: none; cursor: pointer; transition: none; }
.footer-col ul a:hover { color: var(--teal); }
.footer-col p { line-height: 1.65; color: rgba(255,255,255,.45); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 1.2rem; text-align: center; max-width: 1200px; margin: 0 auto; font-size: .76rem; color: rgba(255,255,255,.18); }
@media (max-width: 640px) { .footer-grid { grid-template-columns: 1fr; gap: 1.2rem; } }

/* ── MENTIONS ────────────────────────────────────────────────────────── */
.mentions-legales { max-width: 760px; padding: 1rem 0 3rem; }
.mentions-legales h1 { font-family: 'Fraunces', serif; font-size: 1.8rem; font-weight: 700; color: var(--text); margin-bottom: 1.8rem; }
.mentions-legales h2 { font-size: .9rem; font-weight: 700; color: var(--teal2); margin: 1.8rem 0 .5rem; text-transform: uppercase; letter-spacing: .05em; }
.mentions-legales p { line-height: 1.75; color: var(--muted); margin-bottom: .55rem; }
.mentions-legales strong { color: var(--text); }
.mentions-legales a { color: var(--teal2); }
@media (max-width: 640px) { nav { padding: 0; } .section { padding: 2rem 1rem; } .hours-grid { grid-template-columns: repeat(2, 1fr); } }

/* ═══════════════════════════════════════════════
   PARTENAIRES PAGE
═══════════════════════════════════════════════ */
.ph-hero { background: linear-gradient(135deg,#023e8a 0%,#0077b6 60%,#00b4d8 100%); padding: 1.8rem 1.2rem 2.5rem; }
.ph-hero h1 { color:#fff; font-size:1.4rem; font-weight:900; font-family:'Barlow Condensed',sans-serif; font-style:italic; margin-bottom:.25rem; }
.ph-hero p  { color:rgba(255,255,255,.75); font-size:.85rem; }
.ph-stats   { display:flex; gap:.6rem; margin-top:.9rem; flex-wrap:wrap; }
.ph-stat    { background:rgba(255,255,255,.15); border-radius:8px; padding:.3rem .8rem; color:#fff; font-size:.75rem; font-weight:600; }
.ph-stat strong { font-size:.95rem; font-weight:800; margin-right:.2rem; }
.ph-mobile-bar { display:flex; align-items:center; gap:.45rem; padding:.7rem 1rem; background:var(--card); border-bottom:1px solid var(--border); overflow-x:auto; scrollbar-width:none; position:sticky; top:60px; z-index:50; }
.ph-mobile-bar::-webkit-scrollbar { display:none; }
@media (min-width:900px) { .ph-mobile-bar { display:none; } }
.ph-filter-btn { display:flex; align-items:center; gap:.35rem; flex-shrink:0; padding:.4rem .85rem; border-radius:50px; background:var(--text); color:#fff; font-size:.76rem; font-weight:700; border:none; cursor:pointer; font-family:inherit; white-space:nowrap; }
.ph-msep  { width:1px; height:20px; background:var(--border); flex-shrink:0; }
.ph-mchip { padding:.35rem .8rem; border-radius:50px; flex-shrink:0; white-space:nowrap; font-size:.75rem; font-weight:600; border:1.5px solid var(--border); background:var(--card); color:var(--muted); cursor:pointer; transition: all .15s; }
.ph-mchip.active { background:var(--teal2); border-color:var(--teal2); color:#fff; }
.ph-layout { display:block; background:var(--bg); }
@media (min-width:900px) { .ph-layout { display:grid; grid-template-columns:272px 1fr; } }
.ph-sidebar { display:none; background:var(--card); border-right:1px solid var(--border); padding:1.3rem 1.1rem; position:sticky; top:64px; height:calc(100vh - 64px); overflow-y:auto; }
@media (min-width:900px) { .ph-sidebar { display:block; } }
.ph-search { width:100%; padding:.5rem .85rem; border:1.5px solid var(--border); border-radius:9px; font-size:.83rem; color:var(--text); outline:none; background:#f8fafc; margin-bottom:1.1rem; font-family:inherit; }
.ph-search:focus { border-color:var(--teal2); }
.ph-sb-section  { margin-bottom:1.3rem; }
.ph-sb-title { font-size:.63rem; font-weight:800; text-transform:uppercase; letter-spacing:.1em; color:var(--muted); margin-bottom:.65rem; display:flex; align-items:center; justify-content:space-between; }
.ph-sb-title span { color:var(--teal2); font-size:.65rem; font-weight:600; text-transform:none; letter-spacing:0; cursor:pointer; }
.ph-radio-list   { display:flex; flex-direction:column; gap:.2rem; }
.ph-item { display:flex; align-items:center; gap:.55rem; padding:.4rem .65rem; border-radius:8px; cursor:pointer; font-size:.82rem; transition: background .15s; }
.ph-item:hover   { background:#f8fafc; }
.ph-item.active  { background:rgba(14,165,233,.1); color:var(--teal2); font-weight:600; }
.ph-dot { width:13px; height:13px; border-radius:50%; border:2px solid var(--border); flex-shrink:0; display:flex; align-items:center; justify-content:center; transition: all .15s; }
.ph-item.active .ph-dot { border-color:var(--teal2); background:var(--teal2); }
.ph-item.active .ph-dot::after { content:''; width:4px; height:4px; border-radius:50%; background:#fff; }
.ph-cnt { margin-left:auto; font-size:.66rem; color:var(--muted); background:#f1f5f9; padding:.08rem .4rem; border-radius:4px; flex-shrink:0; }
.ph-divider { height:1px; background:var(--border); margin:.9rem 0; }
.ph-content  { min-width:0; }
.ph-results-bar { display:flex; align-items:center; justify-content:space-between; padding:.75rem 1rem; background:var(--bg); }
@media (min-width:768px) { .ph-results-bar { padding:.8rem 1.3rem; } }
.ph-count    { font-size:.8rem; color:var(--muted); }
.ph-count strong { color:var(--text); font-weight:700; }
.ph-sort { border:1.5px solid var(--border); border-radius:7px; padding:.3rem .55rem; font-size:.75rem; font-family:inherit; color:var(--text); background:var(--card); }
.ph-active-tags { display:flex; gap:.4rem; flex-wrap:wrap; padding:0 1rem .6rem; }
@media (min-width:768px) { .ph-active-tags { padding:0 1.3rem .6rem; } }
.ph-af-tag { display:inline-flex; align-items:center; gap:.25rem; background:#e0f2fe; color:#0369a1; font-size:.7rem; font-weight:600; padding:.2rem .55rem; border-radius:5px; }
.ph-af-tag button { background:none; border:none; cursor:pointer; color:#0369a1; font-size:.75rem; line-height:1; }
.ph-af-clear { background:#fee2e2; color:#b91c1c; cursor:pointer; }
.ph-af-clear button { color:#b91c1c; }
.ph-grid { display:grid; grid-template-columns:1fr; gap:.75rem; padding:0 1rem 1rem; }
@media (min-width:560px)  { .ph-grid { grid-template-columns:1fr 1fr; } }
@media (min-width:1100px) { .ph-grid { grid-template-columns:repeat(3,1fr); } }
.ph-empty { color:var(--muted); font-size:.88rem; padding:1.5rem 0; grid-column:1/-1; }
.ph-pcard { background:var(--card); border:1px solid var(--border); border-radius:var(--radius); overflow:hidden; transition: box-shadow .2s, transform .2s; }
@media (min-width:768px) { .ph-pcard:hover { box-shadow:0 8px 28px rgba(0,0,0,.09); transform:translateY(-2px); } }
.ph-pcard-premium { border-color:#f59e0b; box-shadow:0 0 0 2px rgba(245,158,11,.12); }
.ph-pcard-inner   { display:flex; flex-direction:column; gap:.4rem; padding:1rem 1.1rem 1.1rem; }
.ph-pcard-head    { display:flex; gap:.8rem; align-items:flex-start; }
.ph-pavatar { width:42px; height:42px; border-radius:10px; flex-shrink:0; display:flex; align-items:center; justify-content:center; font-size:.8rem; font-weight:800; color:#fff; }
.ph-pmeta   { flex:1; min-width:0; }
.ph-ptags   { display:flex; gap:.3rem; flex-wrap:wrap; align-items:center; margin-bottom:.28rem; }
.ph-ppremium { display:inline-flex; align-items:center; gap:.2rem; background:linear-gradient(135deg,#f59e0b,#d97706); color:#fff; font-size:.58rem; font-weight:700; text-transform:uppercase; letter-spacing:.06em; padding:.16rem .5rem; border-radius:4px; }
.ph-ptype { display:inline-block; font-size:.61rem; text-transform:uppercase; letter-spacing:.08em; padding:.16rem .5rem; border-radius:4px; font-weight:700; }
.ph-ptype-ecole     { background:rgba(14,165,233,.1);  color:var(--teal2); }
.ph-ptype-shop      { background:rgba(5,150,105,.1);   color:var(--green); }
.ph-ptype-shop-ecole{ background:rgba(217,119,6,.1);   color:var(--yellow); }
.ph-pname   { font-size:.92rem; font-weight:700; color:var(--text); line-height:1.3; }
.ph-ploc    { font-size:.72rem; color:var(--muted); margin-top:.1rem; }
.ph-prating { font-size:.72rem; font-weight:700; color:#d97706; }
.ph-pdesc   { font-size:.78rem; color:var(--muted); line-height:1.55; }
.ph-pactions{ display:flex; gap:.35rem; flex-wrap:wrap; margin-top:.25rem; }
.ph-pbtn    { padding:.32rem .75rem; border-radius:7px; font-size:.72rem; font-weight:600; border:none; cursor:pointer; font-family:inherit; text-decoration:none; display:inline-block; }
.ph-pbtn-primary { background:var(--teal2); color:#fff; }
.ph-pbtn-outline  { background:transparent; border:1.5px solid var(--border); color:var(--muted); }
.ph-pbtn-google   { background:transparent; border:1.5px solid var(--border); color:var(--muted); }
.ph-cta { margin:0 1rem 5rem; border-radius:var(--radius); padding:2rem 1.2rem; text-align:center; background:linear-gradient(135deg,#023e8a,#0077b6); color:#fff; }
@media (min-width:768px) { .ph-cta { margin:0 1.3rem 2rem; padding:2.5rem 2rem; } }
.ph-cta h3 { font-size:1.05rem; font-weight:800; margin-bottom:.35rem; }
.ph-cta p  { font-size:.82rem; opacity:.8; margin-bottom:1rem; line-height:1.6; max-width:400px; margin-left:auto; margin-right:auto; }
.ph-cta-btn { display:inline-block; background:#fff; color:#0077b6; font-weight:700; font-size:.85rem; padding:.55rem 1.4rem; border-radius:50px; text-decoration:none; }
.ph-overlay { display:none; position:fixed; inset:0; background:rgba(0,0,0,.4); z-index:200; backdrop-filter:blur(3px); }
.ph-overlay.open { display:block; }
.ph-drawer { position:fixed; bottom:0; left:0; right:0; z-index:201; background:var(--card); border-radius:20px 20px 0 0; padding:1rem 1.2rem 2rem; transform:translateY(100%); transition: transform .32s cubic-bezier(.4, 0, .2, 1); max-height:88vh; overflow-y:auto; }
.ph-drawer.open { transform:translateY(0); }
.ph-dhandle { width:36px; height:4px; background:var(--border); border-radius:2px; margin:0 auto .8rem; }
.ph-dheader { display:flex; align-items:center; justify-content:space-between; margin-bottom:1.2rem; }
.ph-dtitle  { font-size:.98rem; font-weight:800; }
.ph-dreset  { font-size:.78rem; color:var(--teal2); font-weight:600; background:none; border:none; cursor:pointer; font-family:inherit; }
.ph-d-section { margin-bottom:1.3rem; }
.ph-d-stitle  { font-size:.67rem; font-weight:800; text-transform:uppercase; letter-spacing:.1em; color:var(--muted); margin-bottom:.7rem; }
.ph-dchips  { display:flex; gap:.4rem; flex-wrap:wrap; }
.ph-dchip { padding:.38rem .85rem; border-radius:50px; font-size:.78rem; font-weight:600; border:1.5px solid var(--border); background:var(--card); color:var(--muted); cursor:pointer; transition: all .15s; }
.ph-dchip.active { background:var(--teal2); border-color:var(--teal2); color:#fff; }
.ph-ddivider { height:1px; background:var(--border); margin:1rem 0; }
.ph-d-rgrid { display:grid; grid-template-columns:1fr 1fr; gap:.4rem; }
.ph-d-ritem { padding:.5rem .75rem; border-radius:9px; font-size:.78rem; font-weight:500; border:1.5px solid var(--border); background:var(--card); color:var(--text); cursor:pointer; display:flex; align-items:center; justify-content:space-between; transition: all .15s; }
.ph-d-ritem.active { border-color:var(--teal2); background:rgba(14,165,233,.08); color:var(--teal2); font-weight:600; }
.ph-d-ritem:first-child { grid-column:span 2; }
.ph-dcnt { font-size:.63rem; color:var(--muted); background:#f1f5f9; padding:.08rem .38rem; border-radius:4px; flex-shrink:0; }
.ph-d-ritem.active .ph-dcnt { background:rgba(14,165,233,.15); color:var(--teal2); }
.ph-d-villes { margin-top:.8rem; padding:.8rem; background:#f8fafc; border-radius:10px; }
.ph-d-vlabel { font-size:.64rem; font-weight:700; text-transform:uppercase; letter-spacing:.08em; color:var(--muted); margin-bottom:.5rem; }
.ph-dapply { width:100%; padding:.72rem; border-radius:12px; background:var(--teal2); color:#fff; font-size:.9rem; font-weight:700; border:none; cursor:pointer; margin-top:.8rem; font-family:inherit; }
#sidebar-blog { display: none !important; }
.ph-mchips { display:flex; gap:.4rem; overflow-x:auto; padding:.6rem 1rem; scrollbar-width:none; -webkit-overflow-scrolling:touch; background:var(--bg); border-bottom:1px solid var(--border); }
.ph-mchips::-webkit-scrollbar { display:none; }
@media (min-width:900px) { .ph-mchips { display:none; } }
.ph-filter-active { display:inline-flex;align-items:center;justify-content:center;background:#fff;color:var(--teal2);border-radius:50%;width:1.25em;height:1.25em;font-size:.72em;font-weight:700;margin-left:.3rem;vertical-align:middle; }
.ph-filter-bar { padding:.6rem 1rem; border-bottom:1px solid var(--border); background:var(--bg); }
@media (min-width:900px) { .ph-filter-bar { display:none; } }

/* Spots page hero */
#stat-spots-page { color:rgba(255,255,255,.85); font-size:.95rem; margin:.2rem 0 0; }

/* ── Article carousel fade ────────────────────────────────────────── */
@keyframes artFadeIn {
  from { opacity:0; transform:translateY(10px); }
  to   { opacity:1; transform:translateY(0);    }
}
.ed-articles-grid.art-fade .ed-article-card {
  animation: artFadeIn .45s ease both;
}
.ed-articles-grid.art-fade .ed-article-card:nth-child(1) { animation-delay:0s; }
.ed-articles-grid.art-fade .ed-article-card:nth-child(2) { animation-delay:.08s; }
.ed-articles-grid.art-fade .ed-article-card:nth-child(3) { animation-delay:.16s; }
.ed-articles-grid.art-fade .ed-article-card:nth-child(4) { animation-delay:.24s; }

/* ── Hero search dropdown ───────────────────────────────── */
.hero-search-wrap { position: relative; }
.hero-sdrop {
  position: absolute; top: calc(100% + 10px); left: 0; right: 0;
  background: #fff; border-radius: 14px;
  box-shadow: 0 24px 64px rgba(0,0,0,.22), 0 2px 8px rgba(0,0,0,.08);
  z-index: 1000; overflow: hidden; display: none;
  text-align: left;
}
.hero-sdrop-group { border-bottom: 1px solid #f0ece6; }
.hero-sdrop-group:last-child { border-bottom: none; }
.hero-sdrop-label {
  font-size: .6rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--muted);
  padding: .75rem 1.1rem .2rem;
}
.hero-sdrop-item {
  display: flex; align-items: center; justify-content: space-between;
  padding: .6rem 1.1rem; cursor: pointer; transition: background .12s; gap: 1rem;
}
.hero-sdrop-item:hover { background: #f7f4ef; }
.hero-sdrop-name { font-size: .88rem; font-weight: 600; color: #0f172a; }
.hero-sdrop-sub  { font-size: .72rem; color: var(--muted); white-space: nowrap; }
.hero-sdrop-more {
  display: block; padding: .35rem 1.1rem .7rem;
  font-size: .76rem; color: var(--moss); font-weight: 700; cursor: pointer;
}
.hero-sdrop-more:hover { text-decoration: underline; }
.hero-sdrop-empty { padding: 1rem 1.1rem; font-size: .85rem; color: var(--muted); }


/* -- Geoloc labels cliquables + banniere -------- */
.hero-sdrop-label-link { cursor: pointer; }
.hero-sdrop-label-link:hover { color: var(--forest, #2d6a4f); }
.geo-banner {
  display: flex; align-items: center; gap: .6rem;
  background: #e8f5e9; color: #1b5e3b; border-radius: 8px;
  padding: .55rem 1rem; margin-bottom: 1rem; font-size: .85rem;
}
.geo-banner-reset {
  margin-left: auto; background: none; border: 1.5px solid #2d6a4f;
  color: #2d6a4f; border-radius: 5px; padding: 2px 10px;
  cursor: pointer; font-size: .8rem;
  transition: background .15s;
}
.geo-banner-reset:hover { background: #377ae5; color: #fff; }
@media (prefers-color-scheme: dark) {
  .geo-banner { background: #112a1c; color: #81c995; }
  .geo-banner-reset { border-color: #81c995; color: #81c995; }
  .geo-banner-reset:hover { background: #81c995; color: #111; }
}
:root[data-theme="dark"] .geo-banner { background: #112a1c; color: #81c995; }
:root[data-theme="dark"] .geo-banner-reset { border-color: #81c995; color: #81c995; }

/* ── Artisan Local ────────────────────────────────────────────── */
.ph-ptype-artisan-local { background:#dcfce7; color:#166534; border:1px solid #bbf7d0; }
.ph-eco-label {
  display:inline-flex; align-items:center; gap:.25rem;
  background:#dcfce7; color:#166534; border:1px solid #bbf7d0;
  font-size:.68rem; font-weight:700; padding:.12rem .45rem;
  border-radius:20px; letter-spacing:.03em; text-transform:uppercase;
}


/* ── Language toggle ─────────────────────────────────────────────────────── */
.nav-actions {
  display: flex; align-items: center; gap: .5rem;
}
.lang-toggle {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  color: #fff;
  font-size: .72rem; font-weight: 700; letter-spacing: .08em;
  padding: .22rem .55rem; border-radius: 4px;
  cursor: pointer; transition: background .18s;
}
.lang-toggle:hover { background: rgba(255,255,255,.22); }
.lang-toggle-mobile {
  background: none; border: 1px solid rgba(255,255,255,.3);
  color: #fff; font-size: .8rem; font-weight: 700;
  padding: .3rem .7rem; border-radius: 4px;
  cursor: pointer; width: 100%;
}

@media (max-width: 768px) {
  .hero-photo-bg {
    background-image: url('/img/hero-beach-mobile.webp');
  }
}

/* Réserve d'espace pour contenu JS dynamique — anti-CLS */
#ed-schools-section { min-height: 320px; }
#ed-spots-section   { min-height: 320px; }
#ed-blog-section    { min-height: 200px; }





/* ── Preview fiche partenaire ─────────────────────────────────────── */
/* Tooltip blanc qui apparaît AU-DESSUS des cartes au survol */
.ph-pcard {
  position: relative;
  overflow: visible !important;   /* laisser le tooltip dépasser au-dessus */
}
.ph-pcard-inner {
  border-radius: var(--radius);
  overflow: hidden;               /* clip le contenu de la carte */
}
.ph-pdesc-tip {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 0; right: 0;
  background: var(--card);        /* blanc — identique aux cartes */
  color: var(--text);             /* #0f172a — pas de noir pur */
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 -4px 20px rgba(15,23,42,0.10);
  padding: 1rem 1.1rem .9rem;
  font-family: 'Inter', system-ui, sans-serif;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .18s ease, transform .18s ease;
  pointer-events: none;
  z-index: 300;
}
.ph-pcard:hover .ph-pdesc-tip {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.ph-pdesc-tip p {
  font-size: .81rem;
  font-weight: 400;
  line-height: 1.65;              /* Adham Dannaway : ≥ 1.5 */
  color: var(--muted);            /* #64748b — secondaire */
  margin: 0 0 .75rem;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.ph-pdesc-tip-link {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;               /* Adham Dannaway : seulement 400/700 */
  color: var(--teal2);            /* bleu = interactif uniquement */
  text-decoration: none;
  border: 1.5px solid var(--teal2);
  padding: .28rem .75rem;
  border-radius: 6px;
  transition: background .15s, color .15s;
}
.ph-pdesc-tip-link:hover { background: var(--teal2); color: #fff; }

/* "Voir la fiche" toujours visible dans la carte */
.ph-fiche-btn {
  display: inline-block;
  font-size: .73rem;
  font-weight: 600;
  color: var(--muted);
  text-decoration: none;
  border: 1.5px solid var(--border2);
  padding: .26rem .65rem;
  border-radius: 6px;
  margin-top: .15rem;
  transition: border-color .15s, color .15s;
}
.ph-fiche-btn:hover { border-color: var(--teal2); color: var(--teal2); }

@media (max-width: 640px) {
  .ph-pdesc-tip { display: none !important; }
}
/* ──────────────────────────────────────────────────────────────────── */
