
/* ============================================================
   ANTIBES-INFO.FR : Design system v1
   Direction : Méditerranée, azur profond, sable doré, soleil
   ============================================================ */

:root {
  --primary:       #005A9E;   /* bleu Méditerranée profond */
  --primary-dark:  #002D5C;   /* marine foncé */
  --primary-light: #1E88E5;   /* bleu clair */
  --primary-pale:  #DBEEFE;   /* bleu très pâle */
  --accent:        #F59E0B;   /* doré soleil / sable */
  --accent-pale:   #FEF3C7;   /* doré très pâle */
  --dark:          #0D1B2A;   /* quasi-noir bleuté */
  --text:          #1A3A5C;   /* texte principal */
  --text-light:    #557A9A;   /* texte secondaire bleu-gris */
  --bg:            #F3F8FD;   /* fond azur très léger */
  --bg-alt:        #E4F1FA;   /* fond alternatif */
  --border:        rgba(0,90,158,0.13);
  --shadow-sm:     0 2px 12px rgba(0,45,92,0.08);
  --shadow-md:     0 6px 28px rgba(0,45,92,0.14);
  --radius:        10px;
}

/* ============================================================
   RESET & BASE
   ============================================================ */

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 18px;
  line-height: 1.9;
  color: var(--text);
  background: var(--bg);
}

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

a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }

ul, ol { padding-left: 1.4em; }

h1, h2, h3 {
  font-family: 'Playfair Display', 'Georgia', serif;
}

/* ============================================================
   CONTENEUR
   ============================================================ */

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ============================================================
   DISCLAIMER
   ============================================================ */

.disclaimer-bar {
  background: var(--primary-light);
  border-bottom: 2px solid rgba(255,255,255,0.2);
  padding: 0;
  text-align: left;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  color: #fff;
  line-height: 1.5;
  letter-spacing: 0.02em;
}

/* ============================================================
   HEADER
   ============================================================ */

.site-header {
  background: var(--primary-dark);
  border-bottom: none;
  position: sticky;
  top: 0;
  z-index: 1200;
  box-shadow: 0 2px 24px rgba(0,0,0,0.28);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  text-decoration: none;
  line-height: 1;
}
.site-logo .logo-image { display: block; height: 36px; width: auto; }

/* Nav principal */
.site-nav > ul {
  display: flex;
  gap: 0;
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-nav > ul > li {
  position: relative;
}

.site-nav > ul > li > a {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #fff;
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  padding: 7px 9px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.18s, color 0.18s;
  white-space: nowrap;
}
.site-nav > ul > li > a:hover,
.site-nav > ul > li > a.active {
  background: rgba(255,255,255,0.12);
  color: #fff;
  text-decoration: none;
}
.site-nav > ul > li > a.active {
  background: rgba(245,158,11,0.22);
  color: var(--accent);
}

.nav-arrow {
  font-size: 0.65rem;
  opacity: 0.55;
  transition: transform 0.18s;
}
.has-dropdown:hover .nav-arrow,
.has-dropdown.open .nav-arrow {
  transform: rotate(180deg);
  opacity: 0.9;
}

/* Dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 230px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.18);
  padding: 6px 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.18s, transform 0.18s, visibility 0.18s;
  z-index: 1300;
}

.dropdown::before {
  content: '';
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 10px;
  height: 10px;
  background: #fff;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

.has-dropdown:hover .dropdown,
.has-dropdown.open .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown li { margin: 0; padding: 0; }

.dropdown a {
  display: block;
  padding: 9px 18px;
  color: var(--text);
  font-size: 0.87rem;
  font-weight: 400;
  text-decoration: none;
  transition: background 0.13s, color 0.13s;
}
.dropdown a:hover {
  background: var(--primary-pale);
  color: var(--primary);
  text-decoration: none;
}

.dropdown-more a {
  color: var(--primary-light) !important;
  font-weight: 600;
  font-size: 0.82rem;
  border-top: 1px solid var(--border);
  margin-top: 3px;
  padding-top: 10px;
}
.dropdown-more a:hover {
  background: var(--primary-pale) !important;
  color: var(--primary) !important;
}

/* Burger menu mobile */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: rgba(255,255,255,0.85);
  border-radius: 2px;
  transition: 0.2s;
}

/* ============================================================
   FIL D'ARIANE
   ============================================================ */

.breadcrumb {
  padding: 12px 0;
  font-size: 0.82rem;
  color: var(--text-light);
}
.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  list-style: none;
  padding: 0;
}
.breadcrumb li + li::before { content: "›"; margin-right: 6px; }
.breadcrumb a { color: var(--primary); }

/* ============================================================
   BANDEAU PAGE
   ============================================================ */

.couverture-page {
  position: relative;
  height: 340px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.couverture-fond {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-color: #004080;
}

.couverture-degrade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,20,50,0.88) 0%,
    rgba(0,20,50,0.56) 50%,
    rgba(0,20,50,0.34) 100%
  );
}

.couverture-texte {
  position: relative;
  padding-bottom: 40px;
  z-index: 1;
}

.couverture-surtitre {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}

.couverture-texte h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.7rem, 3.2vw, 2.6rem);
  color: #fff;
  font-weight: 700;
  line-height: 1.18;
  margin-bottom: 10px;
}

.couverture-intro {
  font-size: 1rem;
  color: rgba(255,255,255,0.80);
  max-width: 620px;
  line-height: 1.65;
}

/* Bandeau accueil (plus grand) */
.couverture-accueil {
  height: 480px;
}
.couverture-accueil .couverture-texte {
  padding-bottom: 60px;
}
.couverture-accueil h1 {
  font-size: clamp(2.1rem, 4.5vw, 3.4rem);
}

/* ============================================================
   LAYOUT ARTICLE
   ============================================================ */

.article-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 52px;
  align-items: start;
  padding: 52px 20px 88px;
  max-width: 1160px;
  margin: 0 auto;
}

/* ARTICLE BODY */
.article-body h2 {
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--dark);
  margin: 2.6em 0 0.7em;
  padding-top: 0;
}
.article-body h2:first-child { margin-top: 0; }

.article-body h2::after {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: var(--accent);
  margin-top: 8px;
  border-radius: 2px;
}

.article-body h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--dark);
  margin: 1.8em 0 0.5em;
}

.article-body p { margin-bottom: 1.2em; }

.article-body ul,
.article-body ol { margin-bottom: 1.2em; }

.article-body li { margin-bottom: 0.35em; }

.article-body strong { color: var(--dark); }
.article-body em { font-style: italic; }
.article-body { overflow-wrap: break-word; }

/* Tableau */
.article-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.8em 0;
  font-size: 0.92rem;
  display: block;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.article-body th {
  background: var(--primary);
  color: #fff;
  font-weight: 600;
  padding: 10px 14px;
  text-align: left;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.article-body td {
  padding: 9px 14px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}
.article-body tr:last-child td { border-bottom: none; }
.article-body tr:nth-child(even) td { background: var(--bg-alt); }

/* Info-box */
/* Fiches d'etablissement : une liste de lieux, pas un tableau.
   Utilisee sur les pages restauration. Les faits seulement, jamais d'avis. */
.lieux-liste {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(258px, 1fr));
  gap: 0.9rem;
  margin: 1.4em 0 1.8em;
}
.lieu-carte {
  background: #fff;
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius);
  padding: 0.9rem 1.05rem;
}
.lieu-carte h4 {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin: 0 0 0.3rem;
  line-height: 1.35;
}
.lieu-adresse {
  font-size: 0.86rem;
  color: var(--text);
  line-height: 1.5;
  margin: 0 0 0.3rem;
}
.lieu-faits {
  font-size: 0.8rem;
  color: var(--text-light);
  line-height: 1.5;
  margin: 0;
}

.info-box {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 26px;
  margin: 2em 0;
  box-shadow: var(--shadow-sm);
}
.info-box h3 {
  margin-top: 0;
  color: var(--primary);
  font-size: 1rem;
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 700;
}
.info-box ul { margin-bottom: 0; }

/* Highlight-box */
.highlight-box {
  background: var(--accent-pale);
  border: 1px solid rgba(245,158,11,0.25);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius);
  padding: 22px 26px;
  margin: 2em 0;
  box-shadow: var(--shadow-sm);
}
.highlight-box h3 {
  margin-top: 0;
  color: var(--primary);
  font-size: 1rem;
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 700;
}

/* SIDEBAR */
.sidebar {
  position: sticky;
  top: 84px;
}

.sidebar-block {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 18px;
  box-shadow: var(--shadow-sm);
}

.sidebar-block h4 {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-light);
  margin-bottom: 12px;
}

.sidebar-toc {
  list-style: none;
  padding: 0;
}
.sidebar-toc li { margin-bottom: 5px; }
.sidebar-toc a {
  font-size: 0.87rem;
  color: var(--text);
  line-height: 1.4;
}
.sidebar-toc a:hover { color: var(--primary); }

.sidebar-toc ul {
  list-style: none;
  padding-left: 12px;
  margin-top: 4px;
}
.sidebar-toc ul li { margin-bottom: 3px; }

.sidebar-links {
  list-style: none;
  padding: 0;
}
.sidebar-links li {
  margin-bottom: 5px;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--border);
}
.sidebar-links li:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.sidebar-links a { font-size: 0.87rem; }

.sidebar-cta {
  background: var(--primary);
  border-radius: var(--radius);
  padding: 22px;
  color: #fff;
}
.sidebar-cta h4 {
  font-family: 'Inter', system-ui, sans-serif;
  color: rgba(255,255,255,0.65);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}
.sidebar-cta p { font-size: 0.9rem; margin-bottom: 14px; line-height: 1.5; }
.sidebar-cta a {
  display: inline-block;
  background: #fff;
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 9px 18px;
  border-radius: 20px;
  text-decoration: none;
  transition: opacity 0.18s;
}
.sidebar-cta a:hover { opacity: 0.9; text-decoration: none; }

/* ============================================================
   PAGE D'ACCUEIL
   ============================================================ */

/* Boutons bandeau */
.couverture-liens {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 22px;
}
.btn-azur {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: 0.92rem;
  font-weight: 700;
  padding: 12px 26px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.18s, transform 0.15s;
}
.btn-azur:hover {
  background: #D97706;
  transform: translateY(-1px);
  text-decoration: none;
  color: #fff;
}
.btn-riviera {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  color: #fff;
  font-size: 0.92rem;
  font-weight: 600;
  padding: 12px 26px;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.35);
  text-decoration: none;
  transition: background 0.18s;
}
.btn-riviera:hover {
  background: rgba(255,255,255,0.25);
  text-decoration: none;
  color: #fff;
}

/* Crédit photo */
.photo-credit-bar {
  text-align: right;
  padding: 5px 0 0;
  font-size: 0.72rem;
  color: var(--text-light);
  opacity: 0.7;
}
.photo-credit-bar a {
  color: var(--text-light);
  text-decoration: underline;
}

/* Stats strip */
.home-stats {
  background: var(--primary);
  padding: 30px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  text-align: center;
  padding: 0 16px;
  border-right: 1px solid rgba(255,255,255,0.15);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  display: block;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 4px;
}
.stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.3;
}

/* Discover cards */
.home-discover {
  padding: 64px 0 52px;
  background: #fff;
}
.discover-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.discover-card {
  position: relative;
  height: 230px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s, transform 0.2s;
  cursor: pointer;
}
.discover-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.discover-card-bg {
  position: absolute;
  inset: 0;
  background-image: var(--card-bg);
  background-size: cover;
  background-position: center;
  background-color: var(--card-color, var(--primary));
  transition: transform 0.45s ease;
}
.discover-card:hover .discover-card-bg {
  transform: scale(1.06);
}
.discover-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,20,50,0.90) 0%,
    rgba(0,20,50,0.28) 55%,
    rgba(0,20,50,0.05) 100%
  );
}
.spot-contenu {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 18px 20px;
  z-index: 1;
}
.discover-card-eyebrow {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 4px;
}
.discover-card h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0 0 8px;
  line-height: 1.2;
}
.discover-card-link {
  color: #fff;
  text-decoration: none;
}
.discover-card-link::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
}
.discover-card-link:hover { color: #fff; text-decoration: none; }
.discover-card-links {
  position: relative;
  z-index: 1;
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0 6px;
}
.discover-card-links li { display: inline; }
.discover-card-links a {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color 0.15s;
  position: relative;
  z-index: 1;
}
.discover-card-links a:hover { color: #fff; }
.discover-card-links li:not(:last-child)::after {
  content: " › ";
  color: rgba(255,255,255,0.3);
}

/* Dégradés fallback */
.discover-card:nth-child(1) .discover-card-bg { background-image: var(--card-bg, linear-gradient(135deg,#005A9E,#003D6B)); }
.discover-card:nth-child(2) .discover-card-bg { background-image: var(--card-bg, linear-gradient(135deg,#002D5C,#004F8A)); }
.discover-card:nth-child(3) .discover-card-bg { background-image: var(--card-bg, linear-gradient(135deg,#003F7A,#1E88E5)); }
.discover-card:nth-child(4) .discover-card-bg { background-image: var(--card-bg, linear-gradient(135deg,#001F4D,#003D6B)); }
.discover-card:nth-child(5) .discover-card-bg { background-image: var(--card-bg, linear-gradient(135deg,#00336B,#1565C0)); }
.discover-card:nth-child(6) .discover-card-bg { background-image: var(--card-bg, linear-gradient(135deg,#002450,#005A9E)); }

/* Vie pratique */
.home-pratique {
  padding: 52px 0 64px;
  background: var(--bg);
}
.pratique-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.pratique-card {
  background: #fff;
  border: 1px solid var(--border);
  border-top: 3px solid var(--primary);
  border-radius: var(--radius);
  padding: 20px 20px 16px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.18s, transform 0.18s;
}
.pratique-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.pratique-icon {
  width: 26px; height: 26px;
  color: var(--primary);
  margin-bottom: 10px;
}
.pratique-icon svg { width: 100%; height: 100%; }
.pratique-title {
  display: block;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark);
  text-decoration: none;
  margin-bottom: 12px;
  transition: color 0.15s;
}
.pratique-title:hover {
  color: var(--primary);
  text-decoration: none;
}
.cat-links {
  list-style: none;
  padding: 0;
  margin: 0 0 14px;
  flex: 1;
}
.cat-links li {
  margin-bottom: 0;
  border-bottom: 1px solid var(--border);
}
.cat-links li:last-child { border-bottom: none; }
.cat-links a {
  display: block;
  font-size: 0.85rem;
  color: var(--text);
  text-decoration: none;
  padding: 5px 0;
  transition: color 0.15s, padding-left 0.15s;
}
.cat-links a:hover {
  color: var(--primary);
  padding-left: 4px;
  text-decoration: none;
}

/* CTA section */
.home-cta {
  background: var(--primary);
  padding: 52px 0;
}
.home-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.home-cta h2 {
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 8px;
  font-family: 'Playfair Display', Georgia, serif;
}
.home-cta p {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  margin: 0;
}
.home-cta-buttons {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}
.btn-cta-light {
  display: inline-block;
  background: #fff;
  color: var(--primary);
  font-size: 0.9rem;
  font-weight: 700;
  padding: 11px 24px;
  border-radius: 6px;
  text-decoration: none;
  transition: opacity 0.18s;
}
.btn-cta-light:hover { opacity: 0.9; text-decoration: none; color: var(--primary); }
.btn-cta-outline {
  display: inline-block;
  background: transparent;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 11px 24px;
  border-radius: 6px;
  border: 2px solid rgba(255,255,255,0.45);
  text-decoration: none;
  transition: border-color 0.18s, background 0.18s;
}
.btn-cta-outline:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.1);
  text-decoration: none;
  color: #fff;
}

.titre-rubrique {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 28px;
  font-family: 'Playfair Display', Georgia, serif;
}

/* ============================================================
   PAGE GÉNÉRIQUE (contact, mentions légales...)
   ============================================================ */

.page-simple {
  max-width: 760px;
  margin: 0 auto;
  padding: 56px 20px 80px;
}
.page-simple h1 { font-size: 2.2rem; margin-bottom: 32px; color: var(--dark); }
.page-simple h2 { font-size: 1.3rem; margin: 2em 0 0.6em; color: var(--dark); }
.page-simple p, .page-simple li { margin-bottom: 0.9em; }

/* ============================================================
   404
   ============================================================ */

.error-404 { padding: 80px 20px; text-align: center; }
.error-404-inner { max-width: 560px; margin: 0 auto; }
.error-code {
  display: block;
  font-size: 6rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 16px;
  font-family: 'Playfair Display', Georgia, serif;
}
.error-404 h1 { font-size: 1.8rem; margin-bottom: 12px; }
.error-404 > .error-404-inner > p { color: var(--text-light); margin-bottom: 32px; }
.btn-home {
  display: inline-block;
  padding: 12px 28px;
  background: var(--primary);
  color: #fff;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 600;
  margin-bottom: 48px;
}
.error-suggestions h2 { font-size: 1rem; color: var(--text-light); margin-bottom: 12px; }
.error-suggestions ul { list-style: none; padding: 0; }
.error-suggestions li { margin-bottom: 8px; }
.error-suggestions a { color: var(--primary); text-decoration: underline; }

/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.62);
  padding: 60px 0 0;
  font-size: 0.88rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(5, 1fr);
  gap: 32px 28px;
  padding-bottom: 52px;
}

.footer-meta {
  margin-bottom: 8px;
  font-size: 0.85rem;
  opacity: 0.85;
}
.footer-meta a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  transition: color .15s;
}
.footer-meta a:hover {
  color: #fff;
}

.footer-logo {
  line-height: 1;
  margin-bottom: 12px;
}
.footer-logo .logo-image { display: block; height: 32px; width: auto; }

.footer-desc { line-height: 1.7; max-width: 280px; }

.footer-col h4 {
  font-family: 'Inter', system-ui, sans-serif;
  color: #fff;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 14px;
}
.footer-col ul { list-style: none; padding: 0; }
.footer-col li { margin-bottom: 8px; }
.footer-col a { color: rgba(255,255,255,0.55); text-decoration: none; transition: color 0.15s; }
.footer-col a:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 18px 0;
  text-align: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 768px) {
  .disclaimer-bar { padding: 0.4rem 1rem; font-size: 0.7rem; }
}

@media (max-width: 1100px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media (max-width: 900px) {
  .article-layout {
    grid-template-columns: 1fr;
  }
  /* Evite le blowout de grille (colonne 1fr elargie par le min-content d'un enfant) */
  .article-layout > * { min-width: 0; }
  .sidebar {
    position: static;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 0; }
  .stat-item { padding: 12px 16px; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.12); }
  .stat-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.12); }
  .stat-item:last-child, .stat-item:nth-last-child(2):nth-child(odd) { border-bottom: none; }
  .discover-grid { grid-template-columns: repeat(2, 1fr); }
  .pratique-grid { grid-template-columns: repeat(2, 1fr); }
  .home-cta-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 640px) {
  body { font-size: 17px; }
  /* Les regles du menu burger sont regroupees dans le bloc max-width:900px plus bas */
  .discover-grid { grid-template-columns: 1fr; }
  .pratique-grid { grid-template-columns: repeat(2, 1fr); }
  .couverture-liens { flex-direction: column; }
  .btn-azur, .btn-riviera { text-align: center; }
  .home-cta-buttons { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; }
  .article-layout { padding: 32px 16px 60px; gap: 32px; }
  /* Bandeau : hauteur auto sur mobile pour éviter que le texte soit coupé */
  .couverture-page { height: auto; min-height: 260px; padding-top: 52px; }
  .couverture-accueil { min-height: 340px; padding-top: 60px; }
  /* Tableaux déjà scroll via display:block, min-width pour les tableaux à 4+ colonnes */
  .article-body table { min-width: 480px; }
}

@media (max-width: 420px) {
  .pratique-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   AMÉLIORATIONS RESPONSIVE & ACCESSIBILITÉ FINALES
   ============================================================ */

/* Tables : indication visuelle du scroll horizontal sur mobile */
.article-body table {
  background:
    linear-gradient(to right, #fff 30%, rgba(255,255,255,0)) left center,
    linear-gradient(to right, rgba(255,255,255,0), #fff 70%) right center,
    radial-gradient(farthest-side at 0% 50%, rgba(0,0,0,0.12), rgba(0,0,0,0)) left center,
    radial-gradient(farthest-side at 100% 50%, rgba(0,0,0,0.12), rgba(0,0,0,0)) right center;
  background-repeat: no-repeat;
  background-size: 28px 100%, 28px 100%, 14px 100%, 14px 100%;
  background-attachment: local, local, scroll, scroll;
}

/* Liens dans les tableaux : zone tactile généreuse */
.article-body td a {
  display: inline-block;
  padding: 2px 0;
  font-weight: 600;
}

/* Cartes Leaflet : éviter que la carte vole le scroll de la page sur mobile */
.leaflet-container {
  touch-action: pan-x pan-y;
}

/* Footer : zones cliquables tactiles correctes sur mobile */
@media (max-width: 640px) {
  .footer-col ul li {
    margin-bottom: 4px;
  }
  .footer-col ul a {
    display: inline-block;
    padding: 6px 0;
    min-height: 32px;
  }
  .footer-meta a {
    padding: 4px 8px;
    display: inline-block;
  }
}

/* Print : version propre pour l'impression */
@media print {
  .site-header, .site-footer, .sidebar, .nav-toggle,
  #restos-map, .leaflet-container,
  .btn-azur, .btn-riviera {
    display: none !important;
  }
  .article-layout {
    display: block;
    padding: 0;
  }
  .article-body table {
    display: table;
    overflow: visible;
    background: none;
  }
  body {
    font-size: 11pt;
  }
}

/* Reduced motion : respecte les préférences utilisateur */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

.courriel-protege { unicode-bidi: bidi-override; direction: rtl; white-space: nowrap; }

/* ============================================================
   AGENDA DYNAMIQUE (bloc "Prochains événements")
   ============================================================ */
.agenda-live { margin: 0 0 40px; }
.agenda-live-head { margin-bottom: 18px; }
.agenda-live-head h2 { margin-bottom: 4px; }
.agenda-maj { font-size: 0.82rem; color: var(--text-light); margin: 0; }
.agenda-maj a { color: var(--text-light); text-decoration: underline; }

.agenda-mois {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.15rem;
  color: var(--primary-dark);
  margin: 24px 0 12px;
  padding-bottom: 6px;
  border-bottom: 2px solid var(--accent);
  display: inline-block;
}
.agenda-liste { display: flex; flex-direction: column; gap: 10px; }

.agenda-event {
  display: flex;
  gap: 16px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.18s, transform 0.18s;
}
.agenda-event:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

.agenda-date {
  flex: 0 0 58px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: #fff;
  border-radius: 8px;
  padding: 8px 0;
  height: 58px;
  align-self: center;
}
.agenda-jour { font-size: 1.5rem; font-weight: 700; line-height: 1; font-family: 'Playfair Display', Georgia, serif; }
.agenda-mois-abr { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.06em; opacity: 0.9; margin-top: 2px; }

.agenda-corps { flex: 1; min-width: 0; }
.agenda-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--primary);
  background: var(--primary-pale);
  padding: 2px 9px;
  border-radius: 20px;
  margin-bottom: 5px;
}
.agenda-titre { font-size: 1rem; margin: 0 0 5px; line-height: 1.3; }
.agenda-titre a { color: var(--text); text-decoration: none; }
.agenda-titre a:hover { color: var(--primary); text-decoration: underline; }

.agenda-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 14px;
  font-size: 0.84rem;
  color: var(--text-light);
  margin: 0;
}
.agenda-quand { font-weight: 600; color: var(--text); }
.agenda-prix {
  color: #0B7A3B;
  font-weight: 600;
  background: #E6F6EC;
  padding: 0 8px;
  border-radius: 12px;
}

.agenda-note {
  font-size: 0.8rem;
  color: var(--text-light);
  font-style: italic;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

@media (max-width: 640px) {
  .agenda-event { gap: 12px; padding: 12px; }
  .agenda-date { flex-basis: 48px; height: 48px; }
  .agenda-jour { font-size: 1.25rem; }
}

/* Bloc agenda sur la page d'accueil */
.home-agenda { padding: 46px 0 10px; background: var(--bg); }
.home-agenda-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.home-agenda-head .titre-rubrique { margin-bottom: 0; }
.home-agenda-all {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  white-space: nowrap;
}
.home-agenda-all:hover { text-decoration: underline; }
.home-agenda .agenda-liste {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
@media (max-width: 720px) {
  .home-agenda .agenda-liste { grid-template-columns: 1fr; }
}

/* ============================================================
   CORRECTIF RESPONSIVE : tableaux d'article scrollables sur mobile
   (evite qu'un min-width force le debordement horizontal de la page)
   ============================================================ */
@media (max-width: 900px) {
  .article-body table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    min-width: 0;
    max-width: 100%;
    white-space: normal;
  }
}

/* ==================================================================
   BULLETIN MÉTÉO EN DIRECT (composant autonome, préfixe mto-)
   Remplace les widgets météo tiers : pas d'iframe, pas de cookie,
   pas de script externe. Données Open-Meteo, sans clé d'API.
   La couleur d'accent se règle avec --mto-accent (voir plus bas).
   ================================================================== */
.mto {
  --mto-accent: #005A9E;
  --mto-fond: #F6F8FB;
  --mto-bord: #E2E7EF;
  --mto-encre: #1A2333;
  --mto-doux: #5D6A80;
  background: #fff;
  border: 1px solid var(--mto-bord);
  border-top: 4px solid var(--mto-accent);
  border-radius: 10px;
  padding: 1.4rem 1.5rem;
  margin: 1.8rem 0;
  color: var(--mto-encre);
}
.mto-attente { color: var(--mto-doux); margin: 0; font-size: 0.95rem; }

.mto-actuel { display: flex; flex-wrap: wrap; gap: 1.5rem; align-items: center; justify-content: space-between; }
.mto-tete { display: flex; align-items: center; gap: 1rem; }
.mto-emoji { font-size: 3.4rem; line-height: 1; }
.mto-tete-txt { display: flex; flex-direction: column; }
.mto-temp { font-size: 2.6rem; font-weight: 800; line-height: 1.05; }
.mto-temp span { font-size: 1.3rem; font-weight: 600; color: var(--mto-doux); }
.mto-etat { font-size: 1rem; color: var(--mto-doux); }

.mto-details { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.35rem 1.6rem; }
.mto-details li { display: flex; justify-content: space-between; gap: 1rem; font-size: 0.92rem; padding: 0.2rem 0; border-bottom: 1px dashed var(--mto-bord); }
.mto-details li:last-child, .mto-details li:nth-last-child(2) { border-bottom: 0; }
.mto-details span { color: var(--mto-doux); }

.mto-mer {
  display: flex; align-items: center; gap: 0.9rem;
  margin-top: 1.2rem; padding: 0.8rem 1rem;
  background: var(--mto-fond); border-left: 4px solid var(--mto-accent);
  border-radius: 0 8px 8px 0;
}
.mto-mer-emoji { font-size: 1.8rem; }
.mto-mer div { display: flex; flex-direction: column; }
.mto-mer span { font-size: 0.88rem; color: var(--mto-doux); }

.mto-conseil {
  margin: 1.2rem 0 0; padding: 0.8rem 1rem;
  background: var(--mto-fond); border-left: 4px solid var(--mto-accent);
  border-radius: 0 8px 8px 0; font-size: 0.95rem; font-weight: 600;
}

.mto-jours { display: grid; grid-template-columns: repeat(7, minmax(0, 1fr)); gap: 0.4rem; margin-top: 1.3rem; }
.mto-jour {
  display: flex; flex-direction: column; align-items: center; gap: 0.15rem;
  padding: 0.7rem 0.2rem; background: var(--mto-fond);
  border: 1px solid var(--mto-bord); border-radius: 8px; text-align: center;
}
.mto-jour-nom { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.03em; color: var(--mto-accent); }
.mto-jour-date { font-size: 0.7rem; color: var(--mto-doux); }
.mto-jour-emoji { font-size: 1.5rem; line-height: 1.4; }
.mto-jour-max { font-size: 1.05rem; font-weight: 800; }
.mto-jour-min { font-size: 0.85rem; color: var(--mto-doux); }
.mto-jour-pluie { font-size: 0.7rem; color: var(--mto-doux); margin-top: 0.15rem; }

.mto-maj { margin: 1.1rem 0 0; font-size: 0.8rem; color: var(--mto-doux); }

@media (max-width: 900px) {
  .mto-jours { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
@media (max-width: 560px) {
  .mto { padding: 1.1rem 1rem; }
  .mto-actuel { gap: 1rem; }
  .mto-details { grid-template-columns: 1fr; }
  .mto-details li:nth-last-child(2) { border-bottom: 1px dashed var(--mto-bord); }
  .mto-jours { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .mto-emoji { font-size: 2.8rem; }
  .mto-temp { font-size: 2.2rem; }
}
@media (max-width: 360px) {
  .mto-jours { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* --- Photos d'illustration (Wikimedia Commons / Pexels) --- */
.photo-article { margin: 1.8rem 0; }
.photo-article img { width: 100%; border-radius: 10px; box-shadow: 0 2px 10px rgba(0,0,0,.08); }
.photo-article figcaption { font-size: .85rem; color: #6b7280; margin-top: .5rem; line-height: 1.45; }
.credits-photos { margin-top: 2.5rem; padding-top: 1rem; border-top: 1px solid #e5e7eb;
                  font-size: .8rem; color: #6b7280; line-height: 1.6;
                  overflow-wrap: anywhere; word-break: break-word; }
.credits-photos p { overflow-wrap: anywhere; }
.photo-article img { max-width: 100%; height: auto; }
.credits-photos strong { color: #4b5563; }

/* Menu : bascule en burger des 900px (le menu horizontal debordait entre 641 et 900px) */
@media (max-width: 1180px) {
  /* top:100% = sous le header COMPLET (barre d'avertissement incluse). Avec une valeur
     fixe, le panneau remontait par-dessus le logo et le bouton burger, qui devenait
     alors impossible a cliquer pour refermer le menu. */
  .site-nav { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0;
              background: var(--primary-dark); padding: 12px 0 20px; box-shadow: 0 12px 32px rgba(0,0,0,0.35);
              max-height: calc(100vh - 100%); overflow-y: auto; }
  .site-nav.open { display: flex; }
  .site-nav > ul { flex-direction: column; gap: 0; }
  .site-nav > ul > li > a { padding: 12px 24px; border-radius: 0; }
  .dropdown { position: static; transform: none; box-shadow: none; background: rgba(255,255,255,0.06);
              border-radius: 0; opacity: 1; visibility: visible; display: none; }
  .has-dropdown.open .dropdown { display: block; }
  /* Sur ordinateur, le sous-menu est centre sous son parent par translateX(-50%).
     Cette regle (.has-dropdown.open .dropdown) est plus specifique que .dropdown :
     sans la neutraliser ici, le sous-menu deplie partait hors de l'ecran par la
     gauche et ses liens devenaient invisibles. */
  .has-dropdown.open .dropdown,
  .has-dropdown:hover .dropdown { transform: none; left: auto; right: auto; }
  .dropdown a { color: rgba(255,255,255,0.75); padding: 10px 24px 10px 36px; }
  .dropdown a:hover { background: rgba(255,255,255,0.08); color: #fff; }
  .dropdown::before { display: none; }
  .nav-toggle { display: flex; }
  /* Fil d'Ariane : liens de 16px de haut, trop justes au doigt. 4px de part et
     d'autre les amenent a 24px sans changer la mise en page. */
  .breadcrumb a { display: inline-block; padding: 4px 0; }
  .breadcrumb ol { align-items: center; }
}

/* Sous-menus : les derniers du menu s'alignent a droite (ils debordaient la page a 1024px) */
@media (min-width: 901px) {
  .site-nav > ul > li:nth-last-child(-n+2) .dropdown { left: auto; right: 0; transform: none; }
  .site-nav > ul > li:nth-last-child(-n+2) .dropdown::before { left: auto; right: 24px; }
}

/* Formulaires : ne debordent plus sur petits ecrans */
input, textarea, select { max-width: 100%; box-sizing: border-box; }

/* Anti-spam : la ligne passe a la ligne sur petits ecrans (elle debordait a 320px) */
.captcha-row { flex-wrap: wrap; }
.captcha-row input { flex: 1 1 90px; min-width: 0; }

/* ============ Composants data (tableaux, calculateurs, cartes, FAQ) ============ */
.table-responsive { overflow-x: auto; margin: 1.6rem 0; -webkit-overflow-scrolling: touch; }
.data-table { width: 100%; border-collapse: collapse; font-size: .95rem; }
.data-table th { background: var(--primary, #005A9E); color: #fff; text-align: left; padding: .7rem .9rem; font-weight: 600; }
.data-table td { padding: .65rem .9rem; border-bottom: 1px solid #e5e7eb; vertical-align: top; }
.data-table tr:nth-child(even) td { background: #f8fafc; }
.jour-ouvert { color: #15803d; font-weight: 600; }
.jour-ferme { color: #b91c1c; font-weight: 600; }

.source-note { font-size: .82rem; color: #6b7280; line-height: 1.6; margin-top: .6rem; }

.chiffres { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 1rem; margin: 1.8rem 0; }
.chiffre { background: #f8fafc; border: 1px solid #e5e7eb; border-radius: 10px; padding: 1rem; text-align: center; }
.chiffre-valeur { display: block; font-size: 1.6rem; font-weight: 800; color: var(--primary, #005A9E); line-height: 1.15; }
.chiffre-libelle { display: block; font-size: .8rem; color: #6b7280; margin-top: .3rem; }
.chiffre--or .chiffre-valeur { color: #F59E0B; }
.chiffre--accent .chiffre-valeur { color: #b91c1c; }

.calcul { background: #f8fafc; border: 1px solid #e5e7eb; border-radius: 12px; padding: 1.4rem; margin: 1.8rem 0; }
.calcul h3 { margin-top: 0; }
.calcul-intro { font-size: .9rem; color: #4b5563; }
.calcul-champs { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 1rem; margin: 1rem 0; }
.calcul-champ label { display: block; font-size: .85rem; font-weight: 600; margin-bottom: .3rem; color: #374151; }
.calcul-champ input, .calcul-champ select { width: 100%; padding: .55rem .7rem; border: 1px solid #cbd5e1; border-radius: 8px; font: inherit; background: #fff; }
.calcul-sortie { display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); gap: .8rem; margin-top: 1rem; }
.calcul-option { background: #fff; border: 1px solid #e5e7eb; border-radius: 10px; padding: .9rem; }
.calcul-option.est-conseille { border-color: var(--primary, #005A9E); box-shadow: 0 0 0 2px rgba(0,90,158,.12); }
.calcul-option-nom { font-size: .8rem; color: #6b7280; text-transform: uppercase; letter-spacing: .02em; }
.calcul-option-prix { font-size: 1.5rem; font-weight: 800; color: var(--primary, #005A9E); margin: .2rem 0; }
.calcul-option-prix--texte { font-size: 1.15rem; font-weight: 700; color: var(--primary, #005A9E); margin: .2rem 0; }
.calcul-option-detail { font-size: .82rem; color: #6b7280; line-height: 1.45; }
.calcul-verdict { margin-top: 1rem; font-size: .95rem; line-height: 1.6; }
.calcul-note { font-size: .8rem; color: #6b7280; margin-top: .8rem; line-height: 1.55; }

.carte { height: 420px; border-radius: 12px; margin: 1.6rem 0; border: 1px solid #e5e7eb; }
@media (max-width: 640px) { .carte { height: 320px; } }

/* ---- FAQ : cartes avec pastille interrogative ---- */
.faq-item {
  position: relative;
  background: #fff;
  border: 1px solid var(--border);
  border-left: 3px solid transparent;
  border-radius: var(--radius);
  padding: 20px 26px 20px 62px;
  margin: 0 0 14px;
  box-shadow: var(--shadow-sm);
  transition: border-left-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.faq-item:last-of-type { margin-bottom: 1.6rem; }

.faq-item::before {
  content: '?';
  position: absolute;
  top: 21px;
  left: 20px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--primary-pale);
  color: var(--primary);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: .95rem;
  font-weight: 700;
  line-height: 28px;
  text-align: center;
  transition: background .2s ease, color .2s ease;
}

.faq-item h3 {
  margin: 0 0 .45rem;
  font-size: 1.12rem;
  font-weight: 700;
  line-height: 1.45;
  color: var(--primary-dark);
}

.faq-item p { margin: 0; font-size: .95rem; line-height: 1.75; }

.faq-item p + p { margin-top: .7em; }

@media (hover: hover) {
  .faq-item:hover {
    border-left-color: var(--accent);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
  }
  .faq-item:hover::before { background: var(--accent); color: #fff; }
}

@media (prefers-reduced-motion: reduce) {
  .faq-item { transition: none; }
  .faq-item:hover { transform: none; }
}

@media (max-width: 640px) {
  .faq-item { padding: 16px 18px 16px 54px; margin-bottom: 12px; }
  .faq-item::before { top: 17px; left: 16px; width: 26px; height: 26px; line-height: 26px; font-size: .9rem; }
  .faq-item h3 { font-size: 1.04rem; }
  .faq-item p { font-size: .92rem; }
}

@media print {
  .faq-item {
    box-shadow: none;
    border: 1px solid #ccc;
    border-left: 3px solid #999;
    break-inside: avoid;
    page-break-inside: avoid;
  }
  .faq-item::before { background: none; color: #000; }
}

.horaires { border: 1px solid #e5e7eb; border-radius: 10px; overflow: hidden; margin: 1.4rem 0; }
.horaires-ligne { display: flex; justify-content: space-between; gap: 1rem; padding: .6rem .9rem; border-bottom: 1px solid #f1f5f9; }
.horaires-ligne:last-child { border-bottom: 0; }
.graphe { position: relative; height: 320px; margin: 1.6rem 0; }

/* ============================================================
   ACCUEIL : OUVERTURE PHOTO, VEDETTES, VIVRE, ALENTOURS
   Ajout du 9 aout 2026, aligne sur le modele des autres guides
   ============================================================ */

.az-ouverture { position: relative; min-height: 560px; display: flex; align-items: center; overflow: hidden; }
.az-ouverture-photo { position: absolute; inset: 0; background-size: cover; background-position: center 42%; background-color: var(--dark); }
.az-ouverture-voile { position: absolute; inset: 0;
  background: linear-gradient(102deg, rgba(6,20,36,0.94) 0%, rgba(10,32,56,0.76) 48%, rgba(10,32,56,0.42) 100%); }
.az-ouverture-ligne { position: relative; z-index: 1; display: flex; align-items: center;
  justify-content: space-between; gap: 2.5rem; width: 100%; padding: 3.5rem 0; }
.az-ouverture-texte { max-width: 620px; }
.az-ouverture-surtitre { display: inline-block; font-size: 0.78rem; text-transform: uppercase;
  letter-spacing: 0.2em; color: var(--accent); font-weight: 800; margin-bottom: 1rem; }
.az-ouverture-titre { color: #fff; font-size: clamp(2.3rem, 5.6vw, 4.2rem); font-weight: 700;
  line-height: 1.04; margin-bottom: 1.1rem; text-shadow: 0 2px 18px rgba(0,0,0,0.35); }
.az-ouverture-titre b { color: var(--accent); font-weight: 700; }
.az-ouverture-accroche { color: rgba(255,255,255,0.94); font-size: 1.06rem; line-height: 1.7;
  margin-bottom: 1.8rem; text-shadow: 0 1px 10px rgba(0,0,0,0.4); }
.az-ouverture-actions { display: flex; flex-wrap: wrap; gap: 0.8rem; }
.az-bouton { display: inline-block; padding: 0.85rem 1.6rem; border-radius: var(--radius);
  font-weight: 700; font-size: 0.95rem; text-decoration: none; transition: transform .15s, background .15s; }
.az-bouton:hover { transform: translateY(-2px); }
.az-bouton--plein { background: var(--accent); color: #3B2A05; }
.az-bouton--plein:hover { background: #FFB528; }
.az-bouton--clair { background: rgba(255,255,255,0.13); color: #fff; border: 1px solid rgba(255,255,255,0.5); }
.az-bouton--clair:hover { background: rgba(255,255,255,0.24); }

.az-chiffres { display: grid; grid-template-columns: repeat(2, minmax(150px, 1fr)); gap: 0.9rem; flex-shrink: 0; }
.az-chiffre { background: rgba(6,20,36,0.55); border: 1px solid rgba(255,255,255,0.26);
  border-radius: var(--radius); padding: 1rem 1.1rem; backdrop-filter: blur(6px); }
.az-chiffre-ico { display: block; width: 22px; height: 22px; color: var(--accent); margin-bottom: 0.5rem; }
.az-chiffre-ico svg { width: 100%; height: 100%; }
.az-chiffre-val { display: block; color: #fff; font-size: 1.5rem; font-weight: 700; line-height: 1.1; }
.az-chiffre-val a { color: #fff; text-decoration: none; }
.az-chiffre-val a:hover { color: var(--accent); }
.az-chiffre-lib { display: block; color: rgba(255,255,255,0.82); font-size: 0.78rem; margin-top: 0.25rem; line-height: 1.35; }

.az-section { padding: 3.2rem 0; }
.az-section--pale { background: var(--bg-alt); }
.az-soustitre { color: var(--text-light); font-size: 1rem; margin: -0.4rem 0 1.8rem; max-width: 720px; }

.az-vedettes { display: grid; grid-template-columns: repeat(auto-fit, minmax(232px, 1fr)); gap: 1.4rem; }
.az-vedette { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden; text-decoration: none; box-shadow: var(--shadow-sm);
  transition: transform .18s, box-shadow .18s; }
.az-vedette:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.az-vedette-photo { aspect-ratio: 3 / 2; overflow: hidden; background: var(--primary-pale); }
.az-vedette-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.az-vedette-corps { padding: 1.1rem 1.2rem 1.3rem; display: flex; flex-direction: column; gap: 0.4rem; }
.az-vedette-etiquette { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.13em;
  font-weight: 800; color: var(--primary); }
.az-vedette-titre { font-size: 1.12rem; font-weight: 700; color: var(--dark); }
.az-vedette-desc { font-size: 0.9rem; color: var(--text-light); line-height: 1.55; }

.az-vivre { background: var(--primary-dark); color: #fff; padding: 3rem 0; }
.az-vivre h2 { color: #fff; }
.az-vivre .az-soustitre { color: rgba(255,255,255,0.75); }
.az-vivre-cartes { display: grid; grid-template-columns: repeat(auto-fit, minmax(178px, 1fr)); gap: 1rem; }
.az-vivre-carte { display: block; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.16);
  border-radius: var(--radius); padding: 1.2rem; text-decoration: none; color: #fff; transition: background .15s; }
.az-vivre-carte:hover { background: rgba(255,255,255,0.16); }
.az-vivre-carte-ico { display: block; width: 26px; height: 26px; color: var(--accent); margin-bottom: 0.6rem; }
.az-vivre-carte-ico svg { width: 100%; height: 100%; }
.az-vivre-carte b { display: block; font-size: 1rem; margin-bottom: 0.2rem; }
.az-vivre-carte span { font-size: 0.85rem; color: rgba(255,255,255,0.78); line-height: 1.5; }

.az-alentours { display: grid; grid-template-columns: minmax(260px, 1fr) minmax(260px, 1.15fr);
  gap: 2rem; align-items: center; }
.az-alentours-photo img { width: 100%; border-radius: var(--radius); display: block; box-shadow: var(--shadow-sm); }
.az-alentours-liens { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.2rem; }
.az-alentours-liens a { background: #fff; border: 1px solid var(--border); border-radius: 999px;
  padding: 0.45rem 1rem; font-size: 0.9rem; font-weight: 600; color: var(--primary); text-decoration: none; }
.az-alentours-liens a:hover { background: var(--primary); color: #fff; }

.az-independance { background: var(--accent-pale); border-left: 4px solid var(--accent);
  border-radius: var(--radius); padding: 1.4rem 1.6rem; }
.az-independance h2 { font-size: 1.15rem; margin-bottom: 0.5rem; }
.az-independance p { font-size: 0.94rem; color: var(--text); line-height: 1.65; margin-bottom: 0.5rem; }
.az-credit-accueil { font-size: 0.78rem; color: var(--text-light); margin-top: 1.6rem;
  overflow-wrap: anywhere; word-break: break-word; }

@media (max-width: 900px) {
  .az-ouverture-ligne { flex-direction: column; align-items: flex-start; }
  .az-chiffres { grid-template-columns: repeat(2, 1fr); width: 100%; }
  .az-alentours { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .az-ouverture { min-height: 500px; }
  .az-ouverture-voile { background: linear-gradient(180deg, rgba(6,20,36,0.86) 0%, rgba(10,32,56,0.82) 100%); }
  .az-chiffres { grid-template-columns: repeat(2, 1fr); gap: 0.6rem; }
  .az-chiffre { padding: 0.75rem 0.8rem; }
  .az-chiffre-val { font-size: 1.25rem; }
  .az-chiffre-lib { font-size: 0.72rem; }
}
.az-nowrap { white-space: nowrap; }

/* Logo en image : seule la variante mobile reste ici, le reste est dans le bloc HEADER */
@media (max-width: 640px) {
  .site-logo .logo-image { height: 30px; }
}

/* Bandeau du haut : disclaimer a gauche, bouton pro a droite.
   Le bouton ne tient pas dans la ligne du menu : 196 px libres mesures a 1440,
   pour un bouton de 200 px. Il est donc ici, et visible aussi en mobile.
   Le padding et l'alignement de .disclaimer-bar sont poses dans le bloc DISCLAIMER. */
.disclaimer-ligne {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.2rem; padding-top: 0.4rem; padding-bottom: 0.4rem;
}
.disclaimer-texte { flex: 1 1 auto; min-width: 0; }
.bandeau-pro {
  flex: 0 0 auto;
  display: inline-flex; align-items: center; gap: 0.45rem;
  background: var(--accent); color: #3B2A05;
  font-size: 0.76rem; font-weight: 800; letter-spacing: 0.01em;
  padding: 0.34rem 0.85rem; border-radius: 999px;
  text-decoration: none; white-space: nowrap;
  transition: background .15s, transform .15s;
}
.bandeau-pro:hover { background: #FFB528; text-decoration: none; transform: translateY(-1px); }
.bandeau-pro svg { width: 15px; height: 15px; flex: 0 0 auto; }

@media (max-width: 860px) {
  .disclaimer-ligne { flex-direction: column; gap: 0.5rem; text-align: center; }
  .disclaimer-texte { text-align: center; }
}
