/* Destination Abruzzes — styles partagés (cartes, filtres, grilles).
   Chargé globalement pour que les fiches générées côté client (Explorer,
   Carte) partagent exactement le même rendu que les fiches statiques. */

/* ── Hero ─────────────────────────────────────────────────────────── */
.abz-hero {
  padding: 72px 0 40px;
  background: linear-gradient(180deg, rgba(17, 130, 56, 0.07) 0%, var(--abz-crema) 100%);
  text-align: center;
}
.abz-hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--abz-verde);
  margin-bottom: 14px;
}
.abz-hero-eyebrow::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--abz-rouge);
  margin-right: 8px;
  vertical-align: middle;
}
.abz-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  margin-bottom: 10px;
}
.abz-hero p {
  font-size: 1.1rem;
  color: var(--abz-fumee);
  max-width: 560px;
  margin: 0 auto;
}
.abz-intro {
  text-align: left;
  max-width: 620px;
  margin: 32px auto 0;
  padding: 24px 28px;
  background: #fff;
  border: 1px solid var(--abz-bordo);
  border-left: 3px solid var(--abz-verde);
  border-radius: 4px 14px 14px 4px;
}
.abz-intro p {
  max-width: none;
  margin: 0 0 10px;
  font-size: 0.98rem;
  line-height: 1.6;
  color: var(--abz-inchiostro);
}
.abz-intro p:first-child {
  font-family: var(--abz-serif);
  font-size: 1.15rem;
  font-weight: 600;
}
.abz-intro p:last-child {
  margin-bottom: 0;
  color: var(--abz-fumee);
  font-style: italic;
}

/* ── Barre de recherche ───────────────────────────────────────────── */
.abz-search-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 640px;
  margin: 32px auto 0;
  background: #fff;
  border: 1.5px solid var(--abz-bordo);
  border-radius: 999px;
  padding: 6px 8px 6px 22px;
  box-shadow: 0 8px 24px rgba(32, 31, 28, 0.06);
}
.abz-search-bar input {
  flex: 1;
  min-width: 0;
  width: 100%;
  border: none;
  outline: none;
  font-size: 1rem;
  font-family: var(--abz-sans);
  background: transparent;
  color: var(--abz-inchiostro);
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  padding-right: 6px;
}
.abz-search-bar input::placeholder {
  color: var(--abz-fumee);
}
.abz-search-icon {
  width: 1.1rem;
  height: 1.1rem;
  object-fit: contain;
  opacity: 0.6;
  flex-shrink: 0;
}

/* ── Recherche directe d'un lieu (page Adresses référencées) ─────────
   Widget "je connais déjà le nom" : réutilise .abz-search-bar pour le
   champ (mêmes codes visuels que le "Que recherchez-vous ?" du moteur
   multicritères), avec en plus un menu de suggestions instantanées
   propre à ce besoin (voir public/lieu-search.js). */
.abz-lieu-search {
  position: relative;
  max-width: 640px;
  margin: 0 auto;
}
.abz-lieu-search-results {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid var(--abz-bordo);
  border-radius: 16px;
  box-shadow: 0 16px 40px rgba(32, 31, 28, 0.12);
  padding: 6px;
  z-index: 20;
  max-height: 360px;
  overflow-y: auto;
}
.abz-lieu-search-result {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 10px 14px;
  border-radius: 10px;
  text-decoration: none;
  color: var(--abz-inchiostro);
}
.abz-lieu-search-result:hover,
.abz-lieu-search-result-active {
  background: var(--abz-crema);
}
.abz-lieu-search-result-nom {
  font-weight: 600;
}
.abz-lieu-search-result-meta {
  font-size: 0.85rem;
  color: var(--abz-fumee);
}
.abz-lieu-search-empty {
  padding: 12px 14px;
  margin: 0;
  color: var(--abz-fumee);
  font-size: 0.9rem;
}
.abz-lieu-search-empty a {
  color: var(--abz-blu);
}

/* ── Filtres ──────────────────────────────────────────────────────── */
.abz-filters {
  background: #fff;
  border: 1px solid var(--abz-bordo);
  border-radius: 18px;
  padding: 24px;
}
.abz-filter-group {
  padding: 18px 0;
  border-bottom: 1px solid var(--abz-bordo);
}
.abz-filter-group:first-child {
  padding-top: 0;
}
.abz-filter-group:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.abz-filter-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--abz-fumee);
  margin-bottom: 12px;
  display: block;
}
.abz-chip-group {
  /* Grille plutôt que flex-wrap : les étiquettes de longueurs très
     différentes (ex. "Loups" vs "Fermes pédagogiques") cassaient
     l'alignement en flex (certaines lignes à 1 puce, d'autres à 2, sans
     rapport avec la largeur d'écran). La grille garantit des colonnes de
     largeur égale, sur ordinateur comme sur smartphone. */
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 8px;
}
.abz-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: 999px;
  border: 1.5px solid var(--abz-bordo);
  background: var(--abz-crema);
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--abz-inchiostro);
  cursor: pointer;
  user-select: none;
  transition: border-color 0.15s, background 0.15s, color 0.15s;
}
.abz-chip-icon {
  width: 15px;
  height: 15px;
  object-fit: contain;
  vertical-align: -2px;
}
.abz-chip:has(input:checked) .abz-chip-icon {
  /* icône dessinée en vert foncé : passée en blanc pour rester lisible
     une fois la puce cochée (fond vert plein). */
  filter: brightness(0) invert(1);
}
.abz-chip input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.abz-chip:has(input:checked) {
  background: var(--abz-verde);
  border-color: var(--abz-verde);
  color: #fff;
}
.abz-chip:has(input:focus-visible) {
  outline: 2px solid var(--abz-blu);
  outline-offset: 2px;
}
.abz-radio-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.abz-radio-row .abz-chip {
  border-radius: 10px;
  flex: 1 1 0;
  justify-content: center;
  text-align: center;
}
.abz-filters-actions {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.abz-distance-block {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px dashed var(--abz-bordo);
}
.abz-field-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--abz-inchiostro);
}
.abz-text-input,
.abz-select {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1.5px solid var(--abz-bordo);
  font-size: 0.92rem;
  font-family: var(--abz-sans);
  background: #fff;
  color: var(--abz-inchiostro);
}
.abz-filters[hidden],
.abz-hide {
  display: none !important;
}
.abz-slider-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}
.abz-slider-value {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--abz-verde);
}
.abz-slider-row input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 999px;
  background: var(--abz-bordo);
  outline: none;
  cursor: pointer;
}
.abz-slider-row input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--abz-verde);
  border: 2px solid #fff;
  box-shadow: 0 1px 4px rgba(32, 31, 28, 0.3);
  cursor: pointer;
}
.abz-slider-row input[type="range"]::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--abz-verde);
  border: 2px solid #fff;
  box-shadow: 0 1px 4px rgba(32, 31, 28, 0.3);
  cursor: pointer;
}
.abz-slider-scale {
  display: flex;
  justify-content: space-between;
  font-size: 0.72rem;
  color: var(--abz-fumee);
  margin-top: 6px;
}

/* ── Grille de résultats / cartes ─────────────────────────────────── */
.abz-results-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}
.abz-results-count {
  font-size: 0.9rem;
  color: var(--abz-fumee);
}
.abz-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}
.abz-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--abz-bordo);
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.15s, box-shadow 0.15s;
}
.abz-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(32, 31, 28, 0.1);
}
.abz-card-photo {
  position: relative;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  background: linear-gradient(135deg, var(--abz-verde) 0%, var(--abz-blu) 100%);
}
.abz-card-photo.abz-card-photo-tall {
  height: 190px;
}
.abz-card-photo-icon {
  width: 48px;
  height: 48px;
  object-fit: contain;
  /* icône dessinée en vert foncé : passée en blanc pour rester lisible
     sur le fond dégradé vert/bleu de la vignette. */
  filter: brightness(0) invert(1);
  opacity: 0.9;
}
.abz-card-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #fff;
  color: var(--abz-inchiostro);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
}
.abz-card-body {
  padding: 16px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}
.abz-card-commune {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--abz-fumee);
  margin: 0;
}
.abz-card-title {
  font-size: 1.08rem;
  margin: 0;
}
.abz-card-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin: 4px 0 2px;
}
.abz-card-meta {
  margin: 0;
  font-size: 0.82rem;
  color: var(--abz-fumee);
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.abz-card-cta {
  margin-top: auto;
  padding-top: 10px;
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--abz-verde);
}

.abz-empty-state {
  text-align: center;
  padding: 60px 20px;
  color: var(--abz-fumee);
  border: 1px dashed var(--abz-bordo);
  border-radius: 16px;
}
.abz-empty-state h3 {
  color: var(--abz-inchiostro);
}

/* ── Rubriques / catégories (Découvrir) ───────────────────────────── */
.abz-tile-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 14px;
}
.abz-tile {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  background: #fff;
  border: 1px solid var(--abz-bordo);
  border-radius: 14px;
  text-decoration: none;
  color: var(--abz-inchiostro);
  font-weight: 600;
  transition: border-color 0.15s, transform 0.15s;
}
.abz-tile:hover {
  border-color: var(--abz-verde);
  transform: translateY(-2px);
}
.abz-tile-emoji {
  font-size: 1.4rem;
}
.abz-tile-emoji img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}
.abz-tile-note {
  display: block;
  font-size: 0.72rem;
  font-weight: 400;
  color: var(--abz-fumee);
  margin-top: 2px;
}
.abz-tile-disabled {
  cursor: default;
  opacity: 0.55;
  background: var(--abz-crema);
}
.abz-tile-disabled:hover {
  border-color: var(--abz-bordo);
  transform: none;
}

/* ── Layout deux colonnes (Explorer / Carte) ─────────────────────── */
.abz-layout-two-col {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 32px;
  align-items: start;
}
@media (max-width: 860px) {
  .abz-layout-two-col {
    grid-template-columns: 1fr;
  }
}

/* ── Carte (Leaflet) ───────────────────────────────────────────────── */
.abz-map-wrap {
  height: 620px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--abz-bordo);
}
.abz-map-wrap.abz-map-tall {
  height: 720px;
}
.abz-map-popup h4 {
  margin: 0 0 4px;
  font-size: 0.95rem;
}
.abz-map-popup p {
  margin: 0 0 6px;
  font-size: 0.8rem;
  color: var(--abz-fumee);
}
.abz-map-popup a {
  font-size: 0.8rem;
  font-weight: 700;
}

/* ── Planificateur d'itinéraire (/itineraires/planifier) ─────────────
   Outil 100% client (voir itineraire-planificateur.js). Chaque jour a sa
   propre couleur (--abz-day-color, posée en inline style par le JS) pour
   se repérer entre la liste et les tracés sur la carte. */

/* Bandeau d'intro du planificateur : seule page du site où le rouge
   --abz-rouge sort de son rôle de simple accent pour devenir un fond,
   décision assumée car l'outil est une fonctionnalité à part (voir
   discussion) — même principe de motif tuilé en calque discret
   (opacity + multiply) que .abz-story-section, mais sur fond rouge. Le
   reste de la page (formulaires, cartes de jour) reste sur le fond
   crème habituel du site : le rouge ne déborde pas sur l'outil lui-même. */
.abz-planner-hero {
  position: relative;
  background-color: var(--abz-rouge);
  overflow: hidden;
  padding: 56px 0 64px;
}
.abz-planner-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("/images/pattern-abruzzes-rouge.jpg");
  background-repeat: repeat;
  background-size: 460px auto;
  opacity: 0.55;
  mix-blend-mode: multiply;
  pointer-events: none;
}
.abz-planner-hero-inner {
  position: relative;
  z-index: 1;
}
.abz-planner-hero .abz-hero-eyebrow {
  color: var(--abz-crema);
}
.abz-planner-hero .abz-hero-eyebrow::before {
  background: var(--abz-crema);
}
.abz-planner-hero .abz-hero-eyebrow a {
  color: var(--abz-crema);
  text-decoration: underline;
}
.abz-planner-hero h1 {
  color: #fff;
}
.abz-planner-hero > .abz-planner-hero-inner > p {
  color: var(--abz-crema);
}
@media (max-width: 700px) {
  .abz-planner-hero {
    padding: 40px 0 48px;
  }
  .abz-planner-hero::before {
    background-size: 300px auto;
  }
}

.abz-planner-note {
  font-size: 0.85rem;
  color: var(--abz-inchiostro);
  background: var(--abz-crema);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 10px;
  padding: 12px 16px;
  margin-top: 20px;
  max-width: 680px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}
.abz-planner-days {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.abz-planner-day {
  background: #fff;
  border: 1.5px solid var(--abz-bordo);
  border-left: 5px solid var(--abz-day-color, var(--abz-verde));
  border-radius: 16px;
  padding: 22px 24px;
}
.abz-planner-day-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.abz-planner-day-head h3 {
  margin: 0;
  font-size: 1.1rem;
}
.abz-planner-remove-day {
  background: none;
  border: none;
  color: var(--abz-fumee);
  font-size: 1rem;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 6px;
}
.abz-planner-remove-day:hover {
  background: var(--abz-crema);
  color: var(--abz-rouge);
}
.abz-planner-hotel {
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px dashed var(--abz-bordo);
}
.abz-planner-hotel-modes {
  display: flex;
  gap: 8px;
  margin: 6px 0 10px;
}
.abz-planner-hotel-row {
  display: flex;
  gap: 8px;
}
.abz-planner-hotel-row .abz-text-input {
  flex: 1;
}
.abz-planner-locate-btn {
  white-space: nowrap;
  padding: 10px 16px;
  font-size: 0.85rem;
}
.abz-planner-hotel-status {
  font-size: 0.82rem;
  margin: 8px 0 0;
  min-height: 1.2em;
}
.abz-planner-stops .abz-planner-hotel-row {
  margin-bottom: 10px;
}
.abz-planner-stop-list {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: abz-stop;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.abz-planner-stop-item {
  counter-increment: abz-stop;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  background: var(--abz-crema);
  border-radius: 10px;
  padding: 8px 12px;
  font-size: 0.88rem;
}
.abz-planner-stop-item::before {
  content: counter(abz-stop) ".";
  font-weight: 700;
  color: var(--abz-day-color, var(--abz-verde));
  margin-right: 6px;
}
.abz-planner-stop-label {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.abz-planner-stop-commune {
  font-size: 0.76rem;
  color: var(--abz-fumee);
}
.abz-planner-stop-actions {
  display: flex;
  gap: 4px;
  flex-shrink: 0;
}
.abz-planner-stop-actions button {
  background: #fff;
  border: 1px solid var(--abz-bordo);
  border-radius: 6px;
  width: 26px;
  height: 26px;
  cursor: pointer;
  font-size: 0.78rem;
  color: var(--abz-inchiostro);
}
.abz-planner-stop-actions button:hover {
  border-color: var(--abz-verde);
  color: var(--abz-verde);
}
.abz-planner-drag-handle {
  cursor: grab;
  color: var(--abz-fumee);
  font-size: 0.95rem;
  flex-shrink: 0;
  touch-action: none;
  user-select: none;
}
.abz-planner-stop-item.abz-planner-dragging {
  opacity: 0.4;
}
.abz-planner-stop-item.abz-planner-drag-over {
  outline: 2px dashed var(--abz-verde);
  outline-offset: 2px;
}
.abz-planner-day-summary {
  margin-top: 16px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--abz-inchiostro);
}
.abz-planner-estimate-tag {
  font-weight: 400;
  font-size: 0.78rem;
  color: var(--abz-fumee);
}
.abz-planner-actions {
  display: flex;
  gap: 12px;
  margin: 24px 0 16px;
  flex-wrap: wrap;
}
.abz-planner-total {
  font-size: 1rem;
  margin-bottom: 20px;
}

/* ── Fiche lieu ───────────────────────────────────────────────────── */

/* Icône réelle en tête d'un titre (ex. "Voiture", "Train"…), à la place
   d'un emoji, alignée sur la ligne de texte. */
.abz-heading-icon {
  display: inline-block;
  width: 1.1em;
  height: 1.1em;
  object-fit: contain;
  vertical-align: -0.15em;
  margin-right: 4px;
}
/* Encart "Vous venez avec des enfants ?" — renvoie vers L'Aventure des
   Castelli (fiches château uniquement, cf. lieu.aventureCastelli). Volontairement
   très identifiable, distinct du reste de la fiche touristique. */
.abz-aventure-callout {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 20px;
  padding: 20px 24px;
  border-radius: 16px;
  background: var(--abz-sabbia);
  border: 1.5px solid var(--abz-dore);
  text-decoration: none;
  color: var(--abz-inchiostro);
  flex-wrap: wrap;
}
.abz-aventure-callout img {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}
.abz-aventure-callout-title {
  font-family: var(--abz-serif);
  font-weight: 600;
  font-size: 1.05rem;
  margin: 0 0 2px;
}
.abz-aventure-callout p {
  margin: 0;
}
.abz-note-avis-pop {
  background: #fff;
  border: 2px solid var(--abz-inchiostro);
  border-radius: 16px;
  padding: 16px 20px;
  margin-top: 20px;
  font-size: 0.98rem;
  box-shadow: 4px 4px 0 rgba(36, 50, 56, 0.15);
}
/* Variante "avis" à fond bleu tuilé — même principe que .abz-planner-hero
   (rouge), .abz-story-section (beige) et .abz-pro-founder (verte) : motif
   line-art en calque discret (opacity + multiply) sur --abz-blu. Réservée
   aux lieux au propos littoral/mer (cf. --abz-celeste, "bleu du blason...
   mer/littoral") plutôt qu'appliquée par défaut à toutes les fiches — un
   avis sur un lieu de montagne n'a pas à hériter d'un fond mer. Activée
   au cas par cas via Lieu.noteDestinationAbruzzesAccent === "bleu".
   Texte en crème (pas --abz-inchiostro) pour rester lisible sur le bleu. */
.abz-note-avis-pop-bleu {
  position: relative;
  overflow: hidden;
  background-color: var(--abz-blu);
  border-color: var(--abz-blu);
  color: var(--abz-crema);
}
.abz-note-avis-pop-bleu::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("/images/pattern-abruzzes-bleu.jpg");
  background-repeat: repeat;
  background-size: 320px auto;
  opacity: 0.5;
  mix-blend-mode: screen;
  pointer-events: none;
}
.abz-note-avis-pop-bleu > * {
  position: relative;
  z-index: 1;
}
.abz-note-avis-pop-bleu strong {
  color: var(--abz-crema);
}
.abz-note-avis-pop strong {
  display: block;
  font-family: var(--abz-serif);
  font-weight: 900;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 4px;
}
/* ── Tableaux de contenu éditorial (ex. comparatifs pratiques) ───────
   Enveloppés dans .abz-table-wrap pour un scroll horizontal propre sur
   mobile plutôt qu'un débordement de la page. */
.abz-table-wrap {
  overflow-x: auto;
  margin: 20px 0;
  border: 1px solid var(--abz-bordo);
  border-radius: 14px;
}
.abz-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
  background: #fff;
}
.abz-table th,
.abz-table td {
  padding: 12px 16px;
  text-align: left;
  white-space: nowrap;
  border-bottom: 1px solid var(--abz-bordo);
}
.abz-table th {
  font-family: var(--abz-sans);
  font-weight: 700;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--abz-fumee);
  background: var(--abz-crema);
}
.abz-table tbody tr:last-child td {
  border-bottom: none;
}
.abz-table tbody tr:hover {
  background: var(--abz-crema);
}

/* ── Carte de localisation vectorielle (Abruzzes / Italie / voisins) ──
   SVG dessiné à partir de vraies frontières géographiques (simplifiées),
   voir src/components/LocatorMap.astro. */
.abz-locator-map-wrap {
  max-width: 780px;
  margin: 28px auto 0;
  border: 1px solid var(--abz-bordo);
  border-radius: 16px;
  overflow: hidden;
  background: #d6e3f0;
}
.abz-locator-svg {
  display: block;
  width: 100%;
  height: auto;
}

/* ── Bandeau photos "inspiration" (ex. page Y aller) ─────────────────── */
.abz-inspire-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 32px 0 0;
  text-align: left;
}
.abz-inspire-item {
  margin: 0;
}
.abz-inspire-item figcaption {
  margin-top: 8px;
  font-size: 0.85rem;
  color: var(--abz-fumee);
  text-align: center;
}
@media (max-width: 700px) {
  .abz-inspire-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ── Emplacement réservé aux témoignages (pas encore de vrais avis) ──
   Étoiles en contour (☆) et bordure en pointillés : volontairement
   distinct visuellement d'un vrai avis, pour ne jamais laisser croire
   à un témoignage existant. */
.abz-placeholder-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 28px;
}
.abz-placeholder-card {
  flex: 1 1 180px;
  max-width: 220px;
  border: 2px dashed var(--abz-bordo);
  border-radius: 16px;
  padding: 20px;
  color: var(--abz-fumee);
}
.abz-placeholder-stars {
  font-size: 1.15rem;
  letter-spacing: 3px;
  color: var(--abz-fumee);
  opacity: 0.5;
  margin: 0 0 10px;
}
.abz-detail-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 36px;
  margin-top: 36px;
  align-items: start;
}
@media (max-width: 860px) {
  .abz-detail-grid {
    grid-template-columns: 1fr;
  }
}
.abz-info-card {
  background: #fff;
  border: 1px solid var(--abz-bordo);
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 20px;
}
.abz-info-card-rosa {
  background: var(--abz-rosa);
  border-color: transparent;
}
.abz-info-card-rosa .abz-info-label {
  color: var(--abz-inchiostro);
  opacity: 0.65;
}

/* ── Niveaux d'expérience (fiche lieu) ────────────────────────────────
   Pour les lieux qui proposent plusieurs publics très différents au même
   endroit (ex. Prati di Tivo : rester avec les enfants / marcher jusqu'à
   la croix / vraie randonnée) — voir Lieu.niveauxExperience. */
.abz-niveaux-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin: 20px 0;
}
.abz-niveaux-card {
  background: #fff;
  border: 1px solid var(--abz-bordo);
  border-radius: 16px;
  padding: 20px;
}
.abz-niveaux-card-emoji {
  font-size: 1.6rem;
  display: block;
  margin-bottom: 8px;
}
.abz-niveaux-card-icon {
  width: 28px;
  height: 28px;
  object-fit: contain;
  display: block;
  margin-bottom: 8px;
}
.abz-niveaux-card h4 {
  font-family: var(--abz-serif);
  font-size: 1.02rem;
  margin: 0 0 8px;
}
.abz-niveaux-card p {
  color: var(--abz-fumee);
  font-size: 0.9rem;
  line-height: 1.55;
  margin: 0;
}
.abz-map-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  padding: 10px 20px;
  border-radius: 999px;
  background: var(--abz-dore);
  border: 2px solid var(--abz-inchiostro);
  color: var(--abz-inchiostro) !important;
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none !important;
  box-shadow: 3px 3px 0 rgba(36, 50, 56, 0.15);
  transition: transform 0.1s;
}
.abz-map-cta:hover {
  transform: translate(-1px, -1px);
}
.abz-info-card h3 {
  font-size: 0.96rem;
  margin-bottom: 12px;
}
.abz-info-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.88rem;
}
/* Empilé (label au-dessus, valeur en dessous, alignée à gauche) — et pas
   seulement sous un certain seuil d'écran. La carte "Informations
   pratiques" est en colonne étroite (1/3 de la grille) même sur un grand
   écran : le vrai problème n'a jamais été "mobile vs desktop", c'est la
   largeur de la carte elle-même. Une mise en page côte-à-côte avec des
   valeurs longues (adresse, horaires, accès...) finit toujours par se
   compresser en colonne mal alignée dès que la carte n'est pas très
   large — donc on empile systématiquement, ce qui reste lisible même
   pour les valeurs courtes (GPS, altitude...). */
.abz-info-list li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
}
.abz-info-list li > span:last-child {
  text-align: left;
}
.abz-info-list dt,
.abz-info-list .abz-info-label {
  color: var(--abz-fumee);
}
.abz-criteria-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.abz-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 10px;
}
.abz-gallery-tile {
  aspect-ratio: 4 / 3;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--abz-bordo), #fff);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--abz-fumee);
}
.abz-gallery-tile-icon {
  width: 32px;
  height: 32px;
  object-fit: contain;
  opacity: 0.6;
}
.abz-gallery-photo {
  aspect-ratio: 4 / 3;
  border-radius: 10px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: zoom-in;
}

/* Lightbox photo (voir BaseLayout.astro + abz-lightbox.js) : recouvre tout
   l'écran, masquée par défaut et affichée via la classe .abz-lightbox-open
   ajoutée en JS au clic sur une .abz-gallery-photo. */
.abz-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(20, 18, 14, 0.92);
  padding: 32px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
}
.abz-lightbox.abz-lightbox-open {
  display: flex;
}
.abz-lightbox-img {
  max-width: min(92vw, 1200px);
  max-height: 82vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  cursor: default;
}
.abz-lightbox-caption {
  color: var(--abz-crema);
  font-size: 0.92rem;
  max-width: 700px;
  text-align: center;
  margin-top: 14px;
  cursor: default;
}
.abz-lightbox-caption:empty {
  display: none;
}
.abz-lightbox-close {
  position: absolute;
  top: 18px;
  right: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.12);
  color: var(--abz-crema);
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s ease;
}
.abz-lightbox-close:hover {
  background: rgba(255, 255, 255, 0.24);
}
/* Barre précédent/compteur/suivant sous la photo (pas collée aux bords de
   l'écran, voir commentaire dans BaseLayout.astro). */
.abz-lightbox-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 16px;
}
.abz-lightbox-prev,
.abz-lightbox-next {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.12);
  color: var(--abz-crema);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s ease;
}
.abz-lightbox-prev:hover,
.abz-lightbox-next:hover {
  background: rgba(255, 255, 255, 0.24);
}
.abz-lightbox-counter {
  color: var(--abz-crema);
  opacity: 0.75;
  font-size: 0.9rem;
  min-width: 44px;
  text-align: center;
}
@media (max-width: 640px) {
  .abz-lightbox {
    padding: 16px;
  }
  .abz-lightbox-close {
    top: 10px;
    right: 12px;
  }
  .abz-lightbox-controls {
    gap: 12px;
  }
  .abz-lightbox-prev,
  .abz-lightbox-next {
    width: 40px;
    height: 40px;
    font-size: 1.4rem;
  }
}
.abz-disclaimer {
  font-size: 0.78rem;
  color: var(--abz-fumee);
  background: rgba(168, 112, 63, 0.1);
  border: 1px solid rgba(168, 112, 63, 0.25);
  border-radius: 10px;
  padding: 10px 14px;
  margin: 16px 0;
}
.abz-note-avis {
  font-size: 0.92rem;
  background: rgba(45, 106, 79, 0.08);
  border: 1px solid rgba(45, 106, 79, 0.2);
  border-radius: 10px;
  padding: 12px 14px;
  margin-top: 16px;
}
.abz-note-avis strong {
  color: var(--abz-verde);
}

/* ── Itinéraires ──────────────────────────────────────────────────── */
.abz-itinerary-card {
  background: #fff;
  border: 1px solid var(--abz-bordo);
  border-radius: 18px;
  padding: 26px;
  margin-bottom: 20px;
}
.abz-itinerary-steps {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.abz-itinerary-steps li {
  display: flex;
  gap: 12px;
  align-items: baseline;
  font-size: 0.92rem;
  padding-left: 4px;
  border-left: 2px solid var(--abz-verde);
  padding-bottom: 4px;
  padding-left: 14px;
}
.abz-itinerary-steps a {
  font-weight: 600;
  text-decoration: none;
}
.abz-itinerary-steps a:hover {
  text-decoration: underline;
}

/* ── Home V2 : hero plein cadre ──────────────────────────────────────
   Photo réelle (public/images/). Le scrim clair à gauche est
   juste là pour garder le texte lisible sur la photo, pas pour la
   masquer. */
.abz-hero-v2 {
  background-image: linear-gradient(
      100deg,
      rgba(250, 250, 247, 0.62) 0%,
      rgba(250, 250, 247, 0.28) 38%,
      rgba(250, 250, 247, 0) 62%
    ),
    url("/images/village-montagnes-abruzzes.png");
  background-size: cover;
  background-position: center 30%;
  padding: 90px 0 150px;
  position: relative;
}
.abz-hero-v2-inner {
  max-width: 560px;
}
@media (max-width: 700px) {
  /* Sur mobile, le texte occupe presque toute la largeur : le dégradé
     latéral pensé pour le desktop laisse des mots peu lisibles sur la
     photo. On passe à un voile clair uniforme, plus fort en haut où
     vit le texte. */
  .abz-hero-v2 {
    background-image: linear-gradient(
        180deg,
        rgba(250, 250, 247, 0.82) 0%,
        rgba(250, 250, 247, 0.6) 55%,
        rgba(250, 250, 247, 0.25) 100%
      ),
      url("/images/village-montagnes-abruzzes.png");
    padding: 32px 0 130px;
  }
}
.abz-hero-v2 h1 {
  font-size: clamp(2.3rem, 5vw, 3.2rem);
  line-height: 1.08;
  color: var(--abz-inchiostro);
  margin-bottom: 4px;
}
.abz-hero-script {
  display: inline-block;
  font-family: var(--abz-script);
  color: var(--abz-dore-ink);
  font-size: 1.55rem;
  transform: rotate(-2deg);
  margin: 2px 0 18px;
}
.abz-hero-bio {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--abz-inchiostro);
  max-width: 460px;
  margin: 0 0 18px;
}
.abz-hero-signature {
  font-family: var(--abz-script);
  color: var(--abz-dore-ink);
  font-size: 1.3rem;
}
.abz-photo-badge {
  position: absolute;
  right: 20px;
  bottom: 20px;
  background: rgba(36, 50, 56, 0.65);
  color: #fff;
  font-size: 0.7rem;
  padding: 5px 12px;
  border-radius: 999px;
  z-index: 2;
}
.abz-photo-badge-hero {
  /* Le hero a une carte de recherche qui déborde sur ses ~64px du bas :
     le badge remonte pour ne pas passer derrière. */
  top: 20px;
  bottom: auto;
}

/* ── Recherche rapide (barre flottante) ──────────────────────────── */
.abz-quicksearch-wrap {
  position: relative;
  z-index: 5;
  margin-top: -64px;
  padding: 0 24px;
}
.abz-quicksearch {
  max-width: 1080px;
  margin: 0 auto;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(20, 30, 20, 0.18);
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  padding: 8px;
}
.abz-quicksearch-field {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-right: 1px solid var(--abz-bordo);
  flex: 1;
  min-width: 170px;
}
.abz-quicksearch-field:last-of-type {
  border-right: none;
}
.abz-quicksearch-icon {
  font-size: 1.05rem;
  opacity: 0.7;
}
.abz-quicksearch-icon img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  display: block;
}
.abz-quicksearch-field label:not(.abz-chip):not(.abz-dropdown-item) {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--abz-fumee);
  margin-bottom: 2px;
}
.abz-quicksearch-field input,
.abz-quicksearch-field select {
  border: none;
  outline: none;
  font-size: 0.92rem;
  font-family: var(--abz-sans);
  width: 100%;
  background: transparent;
  color: var(--abz-inchiostro);
  padding: 0;
}
.abz-quicksearch-submit {
  margin: 6px;
  white-space: nowrap;
  flex-shrink: 0;
  align-self: center;
}

/* "Avec qui ?" : bouton qui ouvre une liste déroulée de cases à cocher
   (.abz-dropdown-item : petit carré à cocher + texte simple, sans style
   de puce/étiquette), pour sélectionner plusieurs profils à la fois. */
.abz-quicksearch-avec {
  position: relative;
}
.abz-quicksearch-avec-toggle {
  display: block;
  width: 100%;
  border: none;
  outline: none;
  background: transparent;
  font-size: 0.92rem;
  font-family: var(--abz-sans);
  color: var(--abz-inchiostro);
  padding: 0;
  text-align: left;
  cursor: pointer;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.abz-quicksearch-avec-panel {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  z-index: 20;
  background: #fff;
  border: 1px solid var(--abz-bordo);
  border-radius: 14px;
  box-shadow: 0 16px 40px rgba(20, 30, 20, 0.16);
  padding: 10px;
  display: flex;
  flex-direction: column;
  width: max-content;
  min-width: 220px;
}
.abz-quicksearch-avec-panel[hidden] {
  /* Le sélecteur .abz-quicksearch-avec-panel ci-dessus a la même
     spécificité que la règle UA [hidden]{display:none} : sans ce
     renfort, "display:flex" gagnait et le panneau restait affiché en
     permanence (débordement horizontal énorme sur mobile). */
  display: none;
}
@media (max-width: 780px) {
  .abz-quicksearch-avec-panel {
    left: 0;
    right: 0;
    width: auto;
    min-width: 0;
  }
}
/* Liste déroulée simple : carré à cocher visible + texte, une ligne par
   option, sans fond ni bordure de puce — utilisée par le panneau
   "Avec qui ?" ci-dessus (et réutilisable ailleurs si besoin). */
.abz-dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 8px;
  font-size: 0.88rem;
  color: var(--abz-inchiostro);
  cursor: pointer;
  user-select: none;
}
.abz-dropdown-item:hover {
  background: var(--abz-crema);
}
.abz-dropdown-item input[type="checkbox"] {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  accent-color: var(--abz-verde);
  cursor: pointer;
}
@media (max-width: 780px) {
  .abz-quicksearch {
    flex-direction: column;
  }
  .abz-quicksearch-field {
    border-right: none;
    border-bottom: 1px solid var(--abz-bordo);
  }
  .abz-quicksearch-field:last-of-type {
    border-bottom: none;
  }
  .abz-quicksearch-submit {
    width: 100%;
    justify-content: center;
  }
}

/* ── Rubriques en icônes ("Trouvez votre prochaine aventure") ────── */
.abz-adventure-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px 20px;
  margin-top: 32px;
}
.abz-adventure-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--abz-inchiostro);
  width: 84px;
  text-align: center;
}
.abz-adventure-icon {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: rgba(17, 130, 56, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.55rem;
  transition: background 0.15s, transform 0.15s;
}
.abz-adventure-icon img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}
.abz-adventure-item:hover .abz-adventure-icon {
  background: rgba(17, 130, 56, 0.16);
  transform: translateY(-3px);
}
.abz-adventure-item.abz-adventure-more .abz-adventure-icon {
  background: none;
}
.abz-adventure-item.abz-adventure-more .abz-adventure-icon img {
  width: 100%;
  height: 100%;
}
.abz-adventure-label {
  font-size: 0.8rem;
  font-weight: 600;
}

/* ── "Qui suis-je ?" ──────────────────────────────────────────────── */
.abz-about-split {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  background: rgba(17, 130, 56, 0.05);
  border-radius: 20px;
  overflow: hidden;
  align-items: stretch;
}
.abz-about-text {
  padding: 44px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.abz-about-text h2 {
  font-size: 1.7rem;
  margin-bottom: 14px;
}
.abz-about-text h2 .abz-accent {
  color: var(--abz-verde);
}
.abz-about-text p {
  color: var(--abz-inchiostro);
  font-size: 0.94rem;
  line-height: 1.65;
  margin-bottom: 14px;
}
.abz-about-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
}
.abz-avatar-placeholder {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--abz-verde), var(--abz-blu));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--abz-serif);
  font-weight: 700;
  font-size: 1.05rem;
  flex-shrink: 0;
  object-fit: cover;
}
.abz-about-author-name {
  font-weight: 700;
  font-size: 0.9rem;
}
.abz-about-author-tag {
  font-family: var(--abz-script);
  color: var(--abz-dore-ink);
  font-size: 0.9rem;
}
.abz-about-photo {
  position: relative;
  min-height: 420px;
  background-image: url("/images/famille-lac-montagnes.png");
  background-size: cover;
  background-position: center 35%;
}
.abz-about-stats {
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 16px 40px rgba(20, 30, 20, 0.18);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 220px;
}
.abz-stat-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.abz-stat-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 1px;
}
.abz-stat-icon img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  display: block;
}
.abz-stat-row strong {
  display: block;
  font-size: 0.84rem;
}
.abz-stat-row span {
  font-size: 0.76rem;
  color: var(--abz-fumee);
}
@media (max-width: 860px) {
  .abz-about-split {
    grid-template-columns: 1fr;
  }
  .abz-about-photo {
    min-height: 260px;
  }
  .abz-about-stats {
    position: static;
    transform: none;
    margin: 16px;
    width: auto;
  }
}

/* ── Page "À propos" : bandeau récit avec motif illustré en fond ─────
   Même principe que le fond illustré de cestmeilleurquandcestbon.com :
   une planche de line-art tuilée, en calque discret (opacity + multiply)
   derrière le texte plutôt qu'en wallpaper franc, sur le sable (--abz-sabbia)
   déjà utilisé ailleurs sur le site. */
.abz-story-section {
  position: relative;
  background-color: var(--abz-sabbia);
  overflow: hidden;
  padding: 56px 0 64px;
}
.abz-story-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("/images/pattern-abruzzes-beige.jpg");
  background-repeat: repeat;
  background-size: 460px auto;
  opacity: 0.45;
  mix-blend-mode: multiply;
  pointer-events: none;
}
.abz-story-inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
}
.abz-story-inner p {
  color: var(--abz-inchiostro);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 16px;
}
.abz-story-inner h2 {
  margin-top: 36px;
  margin-bottom: 14px;
}
.abz-story-subtitle {
  font-family: var(--abz-serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--abz-inchiostro);
  margin: 4px 0 26px;
}
.abz-story-quote {
  font-family: var(--abz-script);
  font-size: 1.6rem;
  color: var(--abz-dore-ink);
  margin: 22px 0 30px;
}
.abz-story-tagline {
  font-family: var(--abz-script);
  font-size: 1.45rem;
  color: var(--abz-dore-ink);
  margin: 6px 0 26px;
}
@media (max-width: 700px) {
  .abz-story-section {
    padding: 40px 0 48px;
  }
  .abz-story-section::before {
    background-size: 300px auto;
  }
}

/* ── Newsletter ───────────────────────────────────────────────────── */
.abz-newsletter {
  background-image: url("/illu-newsletter.svg");
  background-size: cover;
  background-position: center;
  padding: 52px 24px;
  color: #fff;
  margin-top: 56px;
}
.abz-newsletter-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.abz-newsletter-text {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.abz-newsletter-icon {
  font-size: 1.5rem;
}
.abz-newsletter-icon img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  /* icône dessinée en vert foncé : passée en blanc pour rester lisible
     sur le fond sombre de l'illustration newsletter. */
  filter: brightness(0) invert(1);
}
.abz-newsletter-text h2 {
  color: #fff;
  font-size: 1.4rem;
  margin-bottom: 4px;
}
.abz-newsletter-text p {
  margin: 0;
  opacity: 0.85;
  font-size: 0.88rem;
}
.abz-newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.abz-newsletter-form-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.abz-newsletter-form input[type="email"] {
  padding: 12px 16px;
  border-radius: 999px;
  border: none;
  min-width: 230px;
  font-size: 0.9rem;
  font-family: var(--abz-sans);
}
.abz-newsletter-form button {
  background: var(--abz-dore);
  color: #3a2e00;
  border: none;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--abz-sans);
}
.abz-newsletter-note {
  font-size: 0.76rem;
  opacity: 0.75;
  margin: 0;
}
.abz-newsletter-status {
  font-size: 0.8rem;
  opacity: 0.9;
}

/* ── Bandeau de confiance ─────────────────────────────────────────── */
.abz-trust-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 32px 0;
}
.abz-trust-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.abz-trust-item .abz-trust-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
}
.abz-trust-item .abz-trust-icon img {
  width: 26px;
  height: 26px;
  object-fit: contain;
  display: block;
}
.abz-trust-item strong {
  display: block;
  font-size: 0.85rem;
}
.abz-trust-item span {
  font-size: 0.78rem;
  color: var(--abz-fumee);
}
@media (max-width: 780px) {
  .abz-trust-bar {
    grid-template-columns: 1fr 1fr;
  }
}

/* ── Carnet illustré "à feuilleter" (/magazine/[slug]) ────────────────
   Effet de pages qui se tournent via la librairie page-flip (npm, packagée
   au build par Astro/Vite — voir pages/magazine/[slug].astro et
   magazine-flipbook.js). Fond sombre "salle d'exposition" pour faire
   ressortir le carnet, plutôt que le fond crème habituel du site : usage
   volontairement différent du reste des pages, comme un module à part. */
.abz-magazine-stage {
  background: var(--abz-inchiostro);
  padding: 48px 20px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.abz-magazine-header {
  text-align: center;
  color: var(--abz-crema);
  max-width: 640px;
}
.abz-magazine-header p.abz-hero-eyebrow {
  color: var(--abz-dore);
}
.abz-magazine-header h1 {
  color: var(--abz-crema);
}
.abz-magazine-header p {
  color: rgba(250, 250, 247, 0.75);
}
.abz-magazine-book-wrap {
  position: relative;
  width: 100%;
  max-width: 900px;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.5));
}
.abz-magazine-book {
  width: 100%;
  margin: 0 auto;
}
/* StPageFlip dessine les pages dans des <canvas>/<img> internes ; on ne
   style que le conteneur qu'on lui donne. */
.abz-magazine-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  color: var(--abz-crema);
}
.abz-magazine-controls button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.12);
  color: var(--abz-crema);
  font-size: 1.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s ease;
}
.abz-magazine-controls button:hover {
  background: rgba(255, 255, 255, 0.24);
}
.abz-magazine-controls button:disabled {
  opacity: 0.35;
  cursor: default;
}
.abz-magazine-controls button:disabled:hover {
  background: rgba(255, 255, 255, 0.12);
}
.abz-magazine-counter {
  font-size: 0.85rem;
  opacity: 0.8;
  min-width: 50px;
  text-align: center;
}
.abz-magazine-back {
  color: var(--abz-crema) !important;
  opacity: 0.8;
}
.abz-magazine-back:hover {
  opacity: 1;
}
.abz-magazine-hint {
  font-size: 0.82rem;
  color: rgba(250, 250, 247, 0.55);
  text-align: center;
  max-width: 420px;
}
@media (max-width: 640px) {
  .abz-magazine-stage {
    padding: 32px 12px 28px;
  }
}

/* ── Croquis architectural (fiches château) ───────────────────────────
   Visuel "signature" des fiches château (demande d'Alexia du 17/08/2026 :
   "le croquis est censé être le point fort de ces fiches") — traitement
   immersif volontairement distinct de la galerie photo classique, même
   registre "salle d'exposition" que .abz-magazine-stage (fond sombre,
   grand format) mais en pleine largeur juste sous le titre, pour que ce
   soit la première chose vue après le nom du lieu. */
.abz-croquis-stage {
  position: relative;
  background: radial-gradient(ellipse at 50% 0%, #32424a 0%, var(--abz-inchiostro) 62%);
  overflow: hidden;
  padding: 52px 20px 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}
.abz-croquis-header {
  text-align: center;
  max-width: 640px;
}
.abz-croquis-header p.abz-hero-eyebrow {
  color: var(--abz-dore);
  justify-content: center;
}
.abz-croquis-header p.abz-hero-eyebrow::before {
  background: var(--abz-dore);
}
.abz-croquis-header h2 {
  color: var(--abz-crema);
  margin: 4px 0 0;
}
.abz-croquis-frame {
  position: relative;
  max-width: 1000px;
  width: 100%;
  border: 1px solid rgba(240, 193, 0, 0.28);
  border-radius: 4px;
  padding: 10px;
  background: rgba(0, 0, 0, 0.15);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.45);
}
.abz-croquis-frame img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 2px;
  /* Le croquis passe par .abz-gallery-photo pour bénéficier du clic pour
     agrandir (lightbox partagée), mais c'est un large panorama annoté, pas
     une vignette carrée : on annule ici le aspect-ratio/object-fit 4:3 de
     .abz-gallery-photo pour l'afficher en entier, non recadré. */
  aspect-ratio: auto;
  object-fit: contain;
}
.abz-croquis-legende {
  font-size: 0.85rem;
  color: rgba(250, 250, 247, 0.6);
  text-align: center;
  max-width: 520px;
}
/* Variante utilisée quand le croquis est repositionné dans le récit d'une
   fiche (Lieu.recit, bloc "croquis") plutôt qu'affiché plein-bord en tête
   de page : coins arrondis + marge, pour s'intégrer dans la colonne de
   contenu au lieu de déborder du conteneur. */
.abz-croquis-stage-inline {
  border-radius: 20px;
  margin: 2em 0;
}

/* ── Récit long format (Lieu.recit) ───────────────────────────────────
   Remplace la carte "Pourquoi y aller" quand une fiche a le nouveau
   format narratif (voir docs "nouvelle hiérarchie" du 23/08/2026) : suite
   de blocs texte/photo/encadré plutôt qu'un seul bloc de description.
   Typographie proche de .abz-article-body (blog), en restant dans la
   colonne de contenu de la fiche plutôt que dans un <article> dédié. */
.abz-recit {
  font-size: 1rem;
  line-height: 1.7;
}
.abz-recit h2 {
  font-size: 1.35rem;
  margin: 1.4em 0 0.5em;
}
.abz-recit h2:first-child {
  margin-top: 0;
}
.abz-recit p {
  margin: 0 0 1em;
}
.abz-recit ul {
  margin: 0 0 1.2em;
  padding-left: 1.4em;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.abz-recit-photo {
  margin: 1.6em 0;
}
.abz-recit-photo img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 16px;
}
.abz-recit-photo figcaption {
  font-size: 0.85rem;
  color: var(--abz-fumee);
  font-style: italic;
  margin-top: 8px;
  text-align: center;
}
.abz-recit .abz-note-avis-pop {
  margin: 1.6em 0;
}
.abz-recit .abz-niveaux-grid {
  margin: 1.4em 0;
}
/* Planches techniques complémentaires (plan, détail, élévations...) sous
   le croquis principal — grille 2 colonnes qui passe à 1 colonne en
   dessous de 640px. Cadre plus discret que .abz-croquis-frame (planches
   secondaires, pas le visuel d'ouverture). */
.abz-croquis-panels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 1000px;
  width: 100%;
}
.abz-croquis-panel-titre {
  color: var(--abz-dore);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0 0 8px;
}
.abz-croquis-frame-panel {
  padding: 8px;
  max-width: none;
}
@media (max-width: 640px) {
  .abz-croquis-stage {
    padding: 36px 14px 40px;
  }
  .abz-croquis-frame {
    padding: 6px;
  }
  .abz-croquis-panels {
    grid-template-columns: 1fr;
  }
}

/* ── Article de blog ──────────────────────────────────────────────── */
.abz-article {
  max-width: 760px;
}
.abz-article-excerpt {
  font-size: 1.1rem;
  color: var(--abz-fumee);
  max-width: 640px;
}
.abz-article-cover-wrap {
  position: relative;
}
.abz-article-cover {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 16px;
  margin-top: 24px;
}
.abz-article-cover-badge {
  position: absolute;
  left: 20px;
  top: 44px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  transform: rotate(-6deg);
}
@media (max-width: 600px) {
  .abz-article-cover-badge {
    width: 68px;
    height: 68px;
    left: 14px;
    top: 38px;
  }
}
.abz-article-body {
  margin-top: 24px;
  font-size: 1rem;
  line-height: 1.7;
}
.abz-article-body h2 {
  font-size: 1.4rem;
  margin-top: 2em;
}
.abz-article-body h3 {
  font-size: 1.15rem;
  margin-top: 1.6em;
}
.abz-article-body p {
  margin: 0 0 1em;
}
.abz-article-body ul {
  margin: 0 0 1.2em;
  padding-left: 1.4em;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.abz-article-body li a {
  font-weight: 600;
}
.abz-faq {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.abz-faq-item {
  background: #fff;
  border: 1px solid var(--abz-bordo);
  border-radius: 12px;
  padding: 16px 20px;
}
.abz-faq-item dt {
  font-family: var(--abz-serif);
  font-weight: 600;
  font-size: 1.02rem;
  margin-bottom: 6px;
}
.abz-faq-item dd {
  margin: 0;
  color: var(--abz-fumee);
}

/* Citation mise en avant dans un article (ArticleBlock "quote") — casse le
   mur de texte des articles denses avec une phrase déjà écrite ailleurs
   dans le corps, agrandie et détachée plutôt que noyée dans un paragraphe
   de taille standard. */
.abz-article-quote {
  font-family: var(--abz-serif);
  font-size: 1.5rem;
  line-height: 1.35;
  color: var(--abz-inchiostro);
  border-left: 3px solid var(--abz-verde);
  padding: 2px 0 2px 22px;
  margin: 1.7em 0 !important;
}
@media (max-width: 600px) {
  .abz-article-quote {
    font-size: 1.25rem;
  }
}

/* Carte cliquable dans une grille d'article (ArticleBlock "cards") — même
   base visuelle que .abz-niveaux-card (fiche lieu), avec un lien optionnel
   vers une fiche existante. */
.abz-niveaux-card-link {
  text-decoration: none !important;
  color: inherit;
  display: block;
  transition: transform 0.15s, box-shadow 0.15s;
}
.abz-niveaux-card-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}
.abz-niveaux-card-cta {
  display: inline-block;
  margin-top: 10px;
  color: var(--abz-verde);
  font-weight: 700;
  font-size: 0.85rem;
}

/* ── Page "Professionnels" (/professionnels) ──────────────────────────
   Média kit pour les pros du tourisme abruzzais. Pas de stats de trafic
   inventées (le site n'en a pas encore) : le bloc chiffré met en avant
   la taille réelle du marché touristique français dans la région. */
.abz-pro-stats {
  background: var(--abz-inchiostro);
  border-radius: 20px;
  padding: 36px 32px;
  color: #fff;
}
.abz-pro-stats .abz-hero-eyebrow {
  color: var(--abz-verde-clair);
}
.abz-pro-stats .abz-hero-eyebrow::before {
  background: var(--abz-verde-clair);
}
.abz-pro-stats h2 {
  color: #fff;
  margin-bottom: 24px;
}
.abz-pro-stat-lead {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 16px 20px;
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(250, 247, 242, 0.15);
}
.abz-pro-stat-lead strong {
  font-family: var(--abz-serif);
  font-size: 3.4rem;
  color: var(--abz-dore);
  line-height: 1;
}
.abz-pro-stat-lead span {
  font-size: 0.95rem;
  max-width: 420px;
  color: rgba(250, 247, 242, 0.85);
}
.abz-pro-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
  margin-bottom: 20px;
}
.abz-pro-stat strong {
  display: block;
  font-family: var(--abz-serif);
  font-size: 2.4rem;
  color: var(--abz-verde-clair);
  line-height: 1.1;
}
.abz-pro-stat span {
  font-size: 0.85rem;
  color: rgba(250, 247, 242, 0.75);
}
.abz-pro-stats-note {
  font-size: 0.8rem;
  line-height: 1.6;
  color: rgba(250, 247, 242, 0.65);
  border-top: 1px solid rgba(250, 247, 242, 0.15);
  padding-top: 16px;
  margin: 0;
}
.abz-pro-audience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.abz-pro-audience-grid .abz-info-card {
  margin-bottom: 0;
}
.abz-pro-benefits {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.92rem;
}
.abz-pro-benefits li {
  padding-left: 26px;
  position: relative;
}
.abz-pro-benefits li::before {
  content: "✓";
  position: absolute;
  left: 0;
  font-weight: 700;
  color: var(--abz-verde);
}
.abz-pro-founder {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 32px;
  background-color: var(--abz-verde);
  border-radius: 16px;
  padding: 32px;
}
.abz-pro-founder::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("/images/pattern-abruzzes-verte.jpg");
  background-repeat: repeat;
  background-size: 420px auto;
  opacity: 0.5;
  mix-blend-mode: multiply;
  pointer-events: none;
}
.abz-pro-founder .abz-hero-eyebrow {
  color: var(--abz-dore);
}
.abz-pro-founder .abz-hero-eyebrow::before {
  background: var(--abz-dore);
}
.abz-pro-founder-photo {
  position: relative;
  z-index: 1;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--abz-crema);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}
.abz-pro-founder-text {
  position: relative;
  z-index: 1;
}
.abz-pro-founder-text h3 {
  margin: 2px 0 14px;
  color: #fff;
}
.abz-pro-founder-text p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  margin-bottom: 14px;
}
.abz-pro-founder-text p.abz-pro-founder-tagline {
  font-family: var(--abz-script);
  font-size: 1.35rem;
  line-height: 1.4;
  color: var(--abz-dore);
  margin: 10px 0 6px;
}
.abz-pro-founder-text p.abz-pro-founder-signature {
  font-family: var(--abz-script);
  font-size: 1.6rem;
  color: #fff;
  margin: 0;
}
.abz-pro-founder-motto {
  font-family: var(--abz-sans);
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.65);
  font-style: italic;
}
.abz-pro-lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--abz-verde);
  background: var(--abz-crema);
  border: 1px solid var(--abz-bordo);
  border-radius: 999px;
  padding: 6px 14px;
  margin-bottom: 16px;
  text-decoration: none;
}
.abz-pro-lang-toggle:hover {
  border-color: var(--abz-verde);
}
@media (max-width: 640px) {
  .abz-pro-founder {
    grid-template-columns: 1fr;
    padding: 24px 20px;
    text-align: center;
  }
  .abz-pro-founder-photo {
    margin: 0 auto;
  }
  .abz-pro-founder-text p {
    text-align: left;
  }
}

/* ── À propos : grille des badges "testé par" ─────────────────────── */
.abz-badges-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  gap: 20px;
  margin-top: 28px;
  max-width: 780px;
}
.abz-badges-grid-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}
.abz-badges-grid-item img {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  box-shadow: 0 4px 14px rgba(32, 31, 28, 0.15);
}
.abz-badges-grid-item span {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--abz-inchiostro);
}
