/* ============================================================
   Guide Champagne Arnaud Moreau - Stylesheet
   Palette : crème/ivoire, doré champagne, bordeaux, anthracite
   ============================================================ */

:root {
  --bg: #FAF7F2;
  --bg-elevated: #FFFFFF;
  --bg-warm: #F3ECDF;
  --gold: #C9A961;
  --gold-dark: #A88842;
  --bordeaux: #7A2E3A;
  --bordeaux-dark: #5E2129;
  --ink: #2A2520;
  --ink-soft: #4A4239;
  --ink-mute: #7A7065;
  --line: #E6DFD3;
  --line-soft: #EDE7DA;

  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 20px;

  --shadow-sm: 0 1px 2px rgba(42, 37, 32, 0.06);
  --shadow: 0 4px 16px rgba(42, 37, 32, 0.08);
  --shadow-lg: 0 12px 40px rgba(42, 37, 32, 0.12);

  --container: 1180px;

  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

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

a {
  color: var(--bordeaux);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--bordeaux-dark);
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.15;
  color: var(--ink);
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 400; }
h2 { font-size: clamp(1.6rem, 3.2vw, 2.4rem); font-weight: 400; }
h3 { font-size: 1.25rem; font-weight: 500; }

p { color: var(--ink-soft); }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Header ---------- */

.site-header {
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(8px);
  background: rgba(250, 247, 242, 0.92);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 14px;
  padding-bottom: 14px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
}

.brand:hover { color: var(--ink); }

.brand-logo { flex-shrink: 0; }

/* --- Marque header : Bubbles Guide (icône coupe + bulles + mot-clé) --- */
.brand-bubbles {
  gap: 11px;
  text-decoration: none;
}
.brand-icon {
  flex-shrink: 0;
  display: block;
}

/* --- Co-branding pied de page (Moreau & L'Iliade) : esperluette --- */
.brand-amp {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--gold);
  font-weight: 300;
  font-style: italic;
  line-height: 1;
  padding: 0 2px;
  user-select: none;
}
@media (max-width: 640px) {
  .brand-amp { font-size: 1.15rem; }
}
@media (max-width: 420px) {
  .brand-name { font-size: 0.98rem; }
  .brand-sub { font-size: 0.66rem; letter-spacing: 0.1em; }
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.brand-sub {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 500;
  margin-top: 2px;
}

.site-nav {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: nowrap;
  white-space: nowrap;
}

.site-nav a {
  color: var(--ink-soft);
  font-size: 0.88rem;
  font-weight: 500;
  position: relative;
  padding: 4px 0;
  white-space: nowrap;
}

@media (max-width: 1180px) {
  .site-nav { gap: 14px; }
  .site-nav a { font-size: 0.82rem; }
}

@media (max-width: 980px) {
  .site-nav { gap: 10px; }
  .site-nav a { font-size: 0.78rem; }
}

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

.site-nav a.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
}

@media (max-width: 720px) {
  .site-nav { display: none; }
  .brand-sub { display: none; }
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  padding: 96px 0 112px;
  overflow: hidden;
  background:
    /* assombrit l'image pour garantir le contraste avec du texte clair */
    linear-gradient(95deg, rgba(28, 22, 18, 0.78) 0%, rgba(28, 22, 18, 0.62) 45%, rgba(28, 22, 18, 0.30) 80%, rgba(28, 22, 18, 0.18) 100%),
    url('assets/hero-moreau.jpg') center 38%/cover no-repeat,
    var(--ink);
  color: #FAF7F2;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at top right, rgba(201, 169, 97, 0.18), transparent 55%),
    radial-gradient(ellipse at bottom left, rgba(122, 46, 58, 0.22), transparent 55%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  right: -120px;
  top: 50%;
  transform: translateY(-50%);
  width: 360px;
  height: 360px;
  border-radius: 50%;
  border: 1px solid rgba(201, 169, 97, 0.45);
  pointer-events: none;
  display: none;
}
@media (min-width: 1024px) {
  .hero::after { display: block; }
}

@media (max-width: 720px) {
  .hero {
    padding: 56px 0 72px;
    background:
      linear-gradient(180deg, rgba(28, 22, 18, 0.72) 0%, rgba(28, 22, 18, 0.58) 55%, rgba(28, 22, 18, 0.78) 100%),
      url('assets/hero-moreau.jpg') center 38%/cover no-repeat,
      var(--ink);
  }
}

.hero-content {
  position: relative;
  max-width: 720px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #E8C77A;
  font-weight: 600;
  margin-bottom: 24px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

.hero-eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: #E8C77A;
}

.hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  font-weight: 300;
  font-style: italic;
  margin-bottom: 20px;
  color: #FAF7F2;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.45);
}

.hero h1 em {
  font-style: italic;
  color: #E8C77A;
  font-weight: 400;
}

.hero-sub {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: rgba(250, 247, 242, 0.92);
  max-width: 540px;
  line-height: 1.55;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.45);
}

.hero-meta {
  margin-top: 32px;
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 0.88rem;
  color: rgba(250, 247, 242, 0.88);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

.hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-meta svg {
  color: #E8C77A;
}

/* ---------- Sections ---------- */

section.block {
  padding: 72px 0;
}

section.block.tight { padding: 48px 0; }

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 36px;
  gap: 24px;
  flex-wrap: wrap;
}

.section-head h2 {
  position: relative;
}

.section-eyebrow {
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold-dark);
  font-weight: 600;
  margin-bottom: 10px;
  display: block;
}

.section-head p {
  max-width: 460px;
  font-size: 0.95rem;
  color: var(--ink-mute);
}

/* ---------- Cards grid ---------- */

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

.grid.cols-2 { grid-template-columns: repeat(2, 1fr); }

@media (max-width: 960px) {
  .grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .grid, .grid.cols-2 { grid-template-columns: 1fr; }
}

/* --- Regroupement par village (tri distance / par village) --- */
.grouped { display: block; }
.village-group { margin: 0 0 40px; }
.village-group .grid { margin-top: 18px; }
.vg-head {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--bg-warm);
}
.vg-name {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.5rem;
  color: var(--ink);
  margin: 0;
}
.vg-dist {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold-dark);
  letter-spacing: 0.02em;
}
.vg-count {
  margin-left: auto;
  font-size: 0.8rem;
  color: var(--ink-mute);
  background: var(--bg-warm);
  border-radius: 999px;
  padding: 2px 10px;
}
.voir-plus {
  display: inline-block;
  margin-top: 18px;
  padding: 10px 18px;
  font: inherit;
  font-size: 0.9rem;
  color: var(--gold-dark);
  background: transparent;
  border: 1px solid var(--gold);
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease;
}
.voir-plus:hover { background: var(--gold); color: #fff; }

.card {
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: var(--ink);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
  color: var(--ink);
}

.card-media {
  position: relative;
  aspect-ratio: 4 / 3;
  background:
    linear-gradient(135deg, var(--gold) 0%, var(--bordeaux) 100%);
  overflow: hidden;
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.card:hover .card-media img {
  transform: scale(1.04);
}

.card-media-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #C9A961 0%, #7A2E3A 100%);
  color: #FAF7F2;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-style: italic;
  opacity: 0.85;
}

/* Scrim subtil sur les photos des cartes pour rendre les badges lisibles
   (dégradé du haut vers le bas, préserve la photo) */
.card-media-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(42, 37, 32, 0.32) 0%,
    rgba(42, 37, 32, 0.10) 35%,
    transparent 60%,
    transparent 100%
  );
  pointer-events: none;
  z-index: 1;
}

.card-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(255, 255, 255, 0.98);
  color: var(--ink);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  backdrop-filter: blur(6px);
  box-shadow: 0 2px 8px rgba(42, 37, 32, 0.18);
  z-index: 2;
}

/* Badge date — visible sur les cartes d'événements (en haut à droite) */
.card-date-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--bordeaux);
  color: #FAF7F2;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: 0 2px 8px rgba(122, 46, 58, 0.35);
  z-index: 2;
}

.card-body {
  padding: 20px 22px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.card-meta-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--ink-mute);
  margin-bottom: 8px;
}

.card-ville {
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: var(--gold-dark);
}

.card-note {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-weight: 600;
  color: var(--ink);
}

.card-note .star { color: var(--gold); }

.card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 8px;
  line-height: 1.25;
}

.card-desc {
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.5;
  flex: 1;
}

.card-foot {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--line-soft);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: var(--ink-mute);
}

.card-foot .arrow {
  color: var(--bordeaux);
  font-weight: 600;
  transition: transform 0.2s ease;
}

.card:hover .arrow { transform: translateX(4px); }

/* ---------- Banner / message ---------- */

.banner {
  background: var(--bg-warm);
  border: 1px solid var(--line);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 24px 28px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.banner svg { flex-shrink: 0; color: var(--gold-dark); margin-top: 2px; }
.banner p { color: var(--ink-soft); font-size: 0.95rem; }
.banner strong { color: var(--ink); font-weight: 600; }

/* ---------- Category tiles ---------- */

.cat-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

@media (max-width: 960px) {
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .cat-grid { grid-template-columns: 1fr 1fr; }
}

.cat-tile {
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 20px 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  text-decoration: none;
  color: var(--ink);
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}

.cat-tile::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201, 169, 97, 0.08), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.cat-tile:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  color: var(--ink);
}

.cat-tile:hover::before { opacity: 1; }

.cat-tile-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--bg-warm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bordeaux);
  position: relative;
  z-index: 1;
}

.cat-tile-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.25;
  position: relative;
  z-index: 1;
}

.cat-tile-count {
  font-size: 0.78rem;
  color: var(--ink-mute);
  position: relative;
  z-index: 1;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.92rem;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.2s ease;
  text-decoration: none;
}

.btn-primary {
  background: var(--bordeaux);
  color: #FAF7F2;
}
.btn-primary:hover { background: var(--bordeaux-dark); color: #FAF7F2; transform: translateY(-1px); }

.btn-secondary {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn-secondary:hover { border-color: var(--gold); color: var(--ink); }

.btn-gold {
  background: var(--gold);
  color: var(--ink);
}
.btn-gold:hover { background: var(--gold-dark); color: var(--ink); }

/* ---------- Footer ---------- */

.site-footer {
  background: var(--ink);
  color: #E6DFD3;
  padding: 56px 0 32px;
  margin-top: auto;
}

.site-footer .container {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: flex-start;
}

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

/* --- Footer co-branding --- */
.foot-logo-moreau {
  height: 48px;
  width: auto;
  object-fit: contain;
  display: block;
  /* le logo est doré sur fond transparent : il reste lisible sur fond bordeaux */
}
.foot-logo-iliade {
  height: 38px;
  width: auto;
  object-fit: contain;
  display: block;
  border-radius: 4px;
  /* fond du logo est crème, on le garde tel quel pour la lisibilité */
}
.foot-brand .brand-amp {
  color: var(--gold);
  font-size: 1.5rem;
}

.foot-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.foot-brand .brand-name { color: #FAF7F2; }
.foot-brand .brand-sub { color: var(--gold); }

.foot-tagline {
  font-size: 0.88rem;
  color: #B5AB9D;
  max-width: 380px;
  line-height: 1.6;
}

.foot-contact {
  font-size: 0.88rem;
  color: #B5AB9D;
  line-height: 1.7;
}
.foot-contact strong { color: #FAF7F2; font-weight: 500; display: block; margin-bottom: 6px; }

.foot-bottom {
  margin-top: 18px;
  padding-top: 0;
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  color: #8A8175;
  flex-wrap: wrap;
  gap: 12px;
}

.foot-bottom .heart { color: var(--gold); }

.foot-notice {
  border-top: 1px solid #3A332B;
  margin-top: 28px;
  padding-top: 18px;
  font-size: 0.78rem;
  color: #8A8175;
  line-height: 1.55;
  max-width: 920px;
}

.note-source {
  font-weight: 400;
  color: var(--ink-mute);
  margin-left: 6px;
  font-size: 0.82em;
  white-space: nowrap;
}

/* ============================================================
   LISTING / CATEGORY PAGE
   ============================================================ */

.page-head {
  padding: 56px 0 32px;
  border-bottom: 1px solid var(--line);
  background: var(--bg-warm);
}

.page-head .breadcrumb {
  font-size: 0.82rem;
  color: var(--ink-mute);
  margin-bottom: 16px;
}
.page-head .breadcrumb a { color: var(--ink-mute); }
.page-head .breadcrumb a:hover { color: var(--bordeaux); }

.page-head h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-style: italic;
  font-weight: 400;
  margin-bottom: 8px;
}

.page-head .lead {
  font-size: 1rem;
  color: var(--ink-soft);
  max-width: 560px;
}

.filter-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 32px 0 28px;
  gap: 16px;
  flex-wrap: wrap;
}

.filter-bar .count {
  font-size: 0.88rem;
  color: var(--ink-mute);
}

.filter-bar .sorts {
  display: flex;
  gap: 8px;
}

.sort-btn {
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  color: var(--ink-soft);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.84rem;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.2s ease;
}

.sort-btn:hover { border-color: var(--gold); color: var(--ink); }
.sort-btn.active {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}

/* ============================================================
   DETAIL PAGE
   ============================================================ */

.detail-hero {
  position: relative;
  height: 56vh;
  min-height: 360px;
  max-height: 520px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--bordeaux) 100%);
  overflow: hidden;
}

.detail-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(42, 37, 32, 0.55) 100%);
}

.detail-main {
  max-width: 900px;
  margin: -80px auto 0;
  position: relative;
  z-index: 2;
  background: var(--bg-elevated);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 40px clamp(24px, 4vw, 56px) 48px;
}

.detail-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 500;
  background: var(--bg-warm);
  color: var(--ink-soft);
  border: 1px solid var(--line);
}

.badge.primary {
  background: var(--bordeaux);
  color: #FAF7F2;
  border-color: var(--bordeaux);
}

.badge.gold {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}

.detail-main h1 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 400;
  font-style: italic;
  margin-bottom: 16px;
  line-height: 1.1;
}

.detail-meta {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
  font-size: 0.92rem;
  color: var(--ink-soft);
}

.detail-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.detail-meta svg { color: var(--gold-dark); }

.detail-meta .note-big {
  color: var(--ink);
  font-weight: 600;
}

.detail-desc {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--ink-soft);
  margin-bottom: 36px;
}

.detail-desc p + p { margin-top: 16px; }

.detail-tags {
  margin-bottom: 40px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.info-block {
  background: var(--bg-warm);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  margin-bottom: 24px;
}

.info-block h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: 18px;
  color: var(--ink);
  font-weight: 500;
}

.info-grid {
  display: grid;
  gap: 14px;
}

.info-row {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 16px;
  font-size: 0.92rem;
  align-items: start;
}

@media (max-width: 540px) {
  .info-row { grid-template-columns: 1fr; gap: 2px; }
  .info-row dt { font-size: 0.75rem; }
}

.info-row dt {
  color: var(--ink-mute);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
  padding-top: 2px;
}

.info-row dd {
  color: var(--ink);
  line-height: 1.55;
}

.info-row a {
  color: var(--bordeaux);
  word-break: break-word;
}

.map-frame {
  width: 100%;
  height: 320px;
  border: 0;
  border-radius: var(--radius);
  margin-top: 6px;
}

.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

/* ---------- Empty / loading ---------- */

.empty-state {
  text-align: center;
  padding: 80px 24px;
}

.empty-state h2 {
  font-style: italic;
  margin-bottom: 12px;
}

.empty-state p {
  margin-bottom: 24px;
  color: var(--ink-mute);
}

.skel {
  background: var(--line-soft);
  border-radius: var(--radius);
  animation: pulse 1.4s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.55; }
}

/* ---------- Utilities ---------- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ---------- Banner events list (homepage) ---------- */
.banner-content { flex: 1; }
.banner-content > p { margin: 0 0 8px 0; }
.banner-events-list { display: flex; flex-direction: column; gap: 6px; }
.banner-event {
  display: block;
  text-decoration: none;
  color: var(--ink);
  padding: 8px 12px;
  background: rgba(255,255,255,0.6);
  border-radius: 6px;
  border: 1px solid var(--line);
  transition: background .15s, border-color .15s;
  font-size: 0.92rem;
}
.banner-event:hover { background: #fff; border-color: var(--gold); }
.banner-event strong { color: var(--bordeaux, var(--gold-dark)); font-weight: 600; }
.banner-event span { color: var(--ink-soft); font-weight: 400; margin-left: 4px; }

/* =========================================================================
   Language switcher (header)
   ========================================================================= */
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-left: 16px;
  font-family: var(--ff-sans, "Inter", sans-serif);
  font-size: 0.82rem;
  letter-spacing: 0.5px;
}
.lang-btn {
  background: transparent;
  border: none;
  padding: 4px 7px;
  border-radius: 4px;
  cursor: pointer;
  color: var(--ink-soft);
  font-weight: 500;
  transition: color .15s, background .15s;
  font-family: inherit;
  font-size: inherit;
  letter-spacing: inherit;
}
.lang-btn:hover { color: var(--ink); }
.lang-btn.active {
  color: var(--gold-dark, #C9A961);
  font-weight: 600;
  background: rgba(201,169,97,0.08);
}
.lang-sep { color: var(--ink-soft); opacity: 0.5; }

@media (max-width: 720px) {
  .lang-switch { margin-left: 8px; font-size: 0.75rem; }
  .lang-btn { padding: 3px 5px; }
}

/* =========================================================================
   About page
   ========================================================================= */
.about-hero {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
  color: #fff;
  margin-bottom: 0;
}
.about-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.38) 38%, rgba(0,0,0,0.12) 70%, rgba(0,0,0,0) 100%);
  z-index: 1;
}
.about-hero .container {
  position: relative;
  z-index: 2;
  padding: 80px 24px 60px;
}
.about-hero .hero-eyebrow { color: #f0d896; }
.about-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.1;
  margin: 12px 0 16px;
  color: #fff;
}
.about-hero h1 em { color: #f0d896; font-style: italic; }
.about-hero .hero-sub {
  max-width: 640px;
  color: rgba(255,255,255,0.92);
  font-size: 1.1rem;
}

.about-section {
  padding: 72px 0;
}
.about-section.alt {
  background: var(--bg-warm, #faf7f2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.about-grid.reverse > :first-child { order: 2; }
.about-grid img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  display: block;
}
.about-text .section-eyebrow {
  display: block;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.78rem;
  color: var(--gold-dark, #C9A961);
  margin-bottom: 12px;
  font-weight: 600;
}
.about-text h2 {
  font-family: var(--ff-serif, "Fraunces", serif);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin: 0 0 20px;
  line-height: 1.2;
}
.about-text p {
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--ink-soft);
  margin: 0 0 16px;
}
.about-text .btn {
  display: inline-block;
  margin-top: 12px;
  padding: 12px 24px;
  background: var(--gold-dark, #C9A961);
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
  transition: background .15s, transform .15s;
}
.about-text .btn:hover {
  background: #b08a3f;
  transform: translateY(-1px);
}
.about-facts {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.about-facts li {
  padding: 10px 14px;
  background: rgba(201,169,97,0.07);
  border-left: 3px solid var(--gold-dark, #C9A961);
  border-radius: 0 4px 4px 0;
  font-size: 0.92rem;
  color: var(--ink);
}
.about-facts li strong {
  display: block;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold-dark, #C9A961);
  margin-bottom: 2px;
}
.about-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 28px;
}
.about-contact-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}
.about-contact-card h3 {
  margin: 0 0 16px;
  font-family: var(--ff-serif, "Fraunces", serif);
  font-size: 1.25rem;
}
.about-contact-card p {
  margin: 4px 0;
  font-size: 0.95rem;
  line-height: 1.6;
}
.about-contact-card .label {
  display: block;
  text-transform: uppercase;
  font-size: 0.72rem;
  letter-spacing: 1px;
  color: var(--gold-dark, #C9A961);
  font-weight: 600;
  margin-top: 12px;
  margin-bottom: 2px;
}

@media (max-width: 820px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .about-grid.reverse > :first-child { order: 0; }
  .about-contact-grid {
    grid-template-columns: 1fr;
  }
  .about-section { padding: 48px 0; }
}

/* === About page additions === */
.about-hero {
  position: relative;
  min-height: 380px;
  color: #fff;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.about-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.about-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.82);
}
.about-hero-content {
  position: relative;
  z-index: 1;
  padding: 80px 0;
  max-width: 760px;
}
.about-hero-content h1 {
  color: #fff;
  font-family: var(--ff-serif, "Fraunces", serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin: 12px 0 16px;
  line-height: 1.15;
}
.about-hero-content h1 em { color: #f0d896; font-style: italic; }
.about-hero-content .hero-eyebrow { color: #f0d896; }
.about-hero-content .hero-sub {
  color: rgba(255,255,255,0.92);
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 640px;
}

.about-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.about-gallery img:first-child {
  grid-column: 1 / span 2;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.about-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}
.about-portrait img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}
@media (max-width: 820px) {
  .about-hero { min-height: 280px; }
  .about-hero-content { padding: 56px 0; }
}

/* === FR/EN simple text links (header) === */
.lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: 0;
  flex-shrink: 0;
  margin-left: 12px;
  padding: 2px;
  border: 1.5px solid var(--gold, #C9A961);
  border-radius: 999px;
  background: rgba(201,169,97,0.12);
  /* masque le séparateur texte « · » (nœud texte littéral) sans toucher au HTML */
  font-size: 0;
}
.lang-switcher .lang-link,
.site-nav .lang-link {
  padding: 4px 11px;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1;
  color: var(--gold-dark, #A88842);
  text-decoration: none;
  border-radius: 999px;
  transition: color .15s, background .15s;
}
.lang-switcher .lang-link:hover,
.site-nav .lang-link:hover {
  color: var(--gold-dark, #A88842);
  background: rgba(201,169,97,0.22);
}
.lang-switcher .lang-link.active,
.site-nav .lang-link.active {
  color: #fff;
  background: var(--gold, #C9A961);
  text-decoration: none;
}
.lang-switcher .lang-link-sep,
.site-nav .lang-link-sep { display: none; }
@media (max-width: 720px) {
  .lang-switcher .lang-link,
  .site-nav .lang-link { padding: 4px 9px; font-size: 0.78rem; }
  .lang-switcher { margin-left: 6px; }
}

/* ============================================================
   REFONTE 2026 — composants partagés (portés des maquettes _preview)
   home.html · categorie.html · lieu.html — dédupliqués, collés une fois.
   Source de vérité du nouveau markup généré par app.js (Phase 3+).
   ============================================================ */

/* Ombre portée plus marquée (valeur validée des maquettes) */
:root { --shadow-lg: 0 18px 50px rgba(42, 37, 32, .16); }

/* Lenis (scroll soyeux) */
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

.eyebrow { font-size: .74rem; letter-spacing: .22em; text-transform: uppercase; color: var(--gold-dark); font-weight: 600; }

/* --- Header partagé ---
   Défaut = transparent au-dessus d'un hero plein écran (accueil), solidifié au scroll via ui.js (.scrolled).
   .hdr.solid = variante sticky toujours opaque, pour les pages sans hero (catégorie, fiche, agenda, carte, à propos). */
.hdr { position: fixed; top: 0; left: 0; right: 0; z-index: 100; transition: background .4s ease, box-shadow .4s ease, padding .4s ease; padding: 18px 0; }
.hdr.scrolled { background: rgba(250, 247, 242, .86); backdrop-filter: blur(14px); box-shadow: 0 1px 0 var(--line); padding: 10px 0; }
.hdr.solid { position: sticky; background: rgba(250, 247, 242, .9); backdrop-filter: blur(14px); box-shadow: 0 1px 0 var(--line); padding: 12px 0; }
.hdr-in { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.hdr .brand { display: flex; align-items: center; gap: 11px; background: rgba(255, 255, 255, .94); padding: 8px 15px; border-radius: 14px; box-shadow: var(--shadow); transition: background .4s, box-shadow .4s, padding .4s; }
.hdr.scrolled .brand, .hdr.solid .brand { background: transparent; box-shadow: none; padding: 8px 0; }
.nav { display: flex; align-items: center; gap: 6px; }
.nav a { position: relative; padding: 8px 13px; font-size: .86rem; font-weight: 500; color: rgba(255, 255, 255, .92); border-radius: 8px; transition: color .25s; }
.hdr.scrolled .nav a, .hdr.solid .nav a { color: var(--ink-soft); }
.nav a::after { content: ""; position: absolute; left: 13px; right: 13px; bottom: 4px; height: 1.5px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .3s ease; }
.nav a:hover::after, .nav a.active::after { transform: scaleX(1); }
.nav a:hover { color: var(--gold); }
.hdr.scrolled .nav a:hover, .hdr.solid .nav a:hover { color: var(--bordeaux); }
.hdr.scrolled .nav a.active, .hdr.solid .nav a.active { color: var(--bordeaux); }
.hdr-right { display: flex; align-items: center; gap: 16px; }
.hdr .lang { font-size: .8rem; color: rgba(255, 255, 255, .85); font-weight: 500; }
.hdr.scrolled .lang, .hdr.solid .lang { color: var(--ink-mute); }
.hdr .lang b { color: var(--gold); }
.burger { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 6px; }
.burger span { width: 24px; height: 2px; background: #fff; transition: .3s; }
.hdr.scrolled .burger span, .hdr.solid .burger span { background: var(--ink); }

/* --- Déroulant nav "Découvrir" (desktop) --- */
.nav-dd { position: relative; }
.nav-dd-menu {
  position: absolute; top: 100%; left: 0; background: var(--bg-elevated);
  border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-lg); padding: 8px; min-width: 220px;
  display: none; flex-direction: column;
}
.nav-dd:hover .nav-dd-menu, .nav-dd:focus-within .nav-dd-menu { display: flex; }
.nav-dd-menu a { padding: 9px 12px; border-radius: 8px; white-space: nowrap; color: var(--ink-soft); }
.nav-dd-menu a:hover { background: var(--bg-warm); color: var(--bordeaux); }

/* --- Menu mobile plein écran --- */
.mobile-menu {
  position: fixed; inset: 0; z-index: 300; background: var(--bg);
  display: flex; flex-direction: column; padding: 84px 28px 40px;
  transform: translateX(100%); transition: transform .4s cubic-bezier(.2,.7,.2,1);
  overflow-y: auto;
}
.mobile-menu.open { transform: none; }
.mobile-menu a {
  font-family: var(--font-display); font-size: 1.5rem; color: var(--ink);
  padding: 13px 0; border-bottom: 1px solid var(--line);
}
.mobile-menu a:hover, .mobile-menu a.active { color: var(--bordeaux); }
.mobile-menu .mm-lang { margin-top: 24px; align-self: flex-start; }
.mobile-menu .mm-lang a { font-family: var(--font-base, inherit); font-size: 1rem; padding: 7px 16px; border: 0; border-radius: 999px; }
.mobile-menu .mm-lang a.active { color: #fff; background: var(--gold, #C9A961); }
.mobile-menu .mm-close {
  position: absolute; top: 22px; right: 24px; background: none; border: 0;
  font-size: 2rem; line-height: 1; color: var(--ink); cursor: pointer;
}
body.menu-open { overflow: hidden; }

/* --- Hero plein écran (accueil) --- */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; }
.hero-media { position: absolute; inset: -8% 0 0 0; z-index: 0; will-change: transform; }
.hero-media img { width: 100%; height: 116%; object-fit: cover; animation: kenburns 22s ease-in-out infinite alternate; }
@keyframes kenburns { from { transform: scale(1.04); } to { transform: scale(1.14); } }
.hero::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(20, 15, 12, .55) 0%, rgba(20, 15, 12, .25) 40%, rgba(20, 15, 12, .55) 100%); }
.hero-in { position: relative; z-index: 2; color: #fff; max-width: 760px; }
.hero .eyebrow { color: #E9D7A8; }
.hero h1 { font-size: clamp(2.8rem, 6.4vw, 5.2rem); color: #fff; margin: .3em 0 .35em; font-weight: 300; }
.hero h1 em { color: #E9D7A8; }
.hero p { font-size: clamp(1.05rem, 1.7vw, 1.32rem); max-width: 560px; color: rgba(255, 255, 255, .92); font-weight: 300; }
.hero-meta { display: flex; gap: 26px; margin-top: 34px; flex-wrap: wrap; }
.hero-meta span { display: flex; align-items: center; gap: 8px; font-size: .9rem; color: rgba(255, 255, 255, .9); }
.hero-meta .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }
.scroll-cue { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); z-index: 2; color: rgba(255, 255, 255, .7); font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; display: flex; flex-direction: column; align-items: center; gap: 10px; }
.scroll-cue .line { width: 1px; height: 42px; background: linear-gradient(var(--gold), transparent); animation: cue 2s ease-in-out infinite; }
@keyframes cue { 0%, 100% { opacity: .3; transform: scaleY(.6); } 50% { opacity: 1; transform: scaleY(1); } }

/* --- Sections refonte --- */
.section { padding: 96px 0; }
.section.warm { background: var(--bg-warm); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.sec-head { max-width: 620px; margin-bottom: 46px; }
.sec-head h2 { font-size: clamp(2rem, 3.6vw, 2.9rem); margin: .25em 0 .4em; }
.sec-head p { color: var(--ink-mute); font-size: 1.05rem; }
.reveal { opacity: 0; transform: translateY(28px); }

/* --- Cartes refonte (markup maquette : <a class="card">) --- */
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feat-grid > * { height: 100%; }
.card { background: var(--bg-elevated); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); transition: transform .5s cubic-bezier(.2,.7,.2,1), box-shadow .5s; height: 100%; color: var(--ink); }
.card:hover { transform: translateY(-7px); box-shadow: var(--shadow-lg); }
.card-media { position: relative; height: 210px; overflow: hidden; }
.feat-grid .card-media { height: 240px; }
.near-grid .card-media { height: 170px; }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s cubic-bezier(.2,.7,.2,1); }
.card:hover .card-media img { transform: scale(1.07); }
.card-cat { position: absolute; top: 14px; left: 14px; background: rgba(250, 247, 242, .92); backdrop-filter: blur(6px); color: var(--bordeaux); font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 600; padding: 6px 12px; border-radius: 100px; }
.card-note { position: absolute; top: 14px; right: 14px; left: auto; background: var(--gold); color: #fff; font-size: .8rem; font-weight: 600; padding: 5px 11px; border-radius: 100px; display: flex; align-items: center; gap: 4px; }
.card-body { padding: 22px 24px 26px; }
.card-body h3 { font-size: 1.32rem; margin-bottom: 8px; }
.card-city { font-size: .82rem; color: var(--gold-dark); font-weight: 600; letter-spacing: .04em; margin-bottom: 10px; }
.card-city .km { color: var(--ink-mute); font-weight: 400; }
.card-body p { font-size: .92rem; color: var(--ink-soft); line-height: 1.55; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.card-link { display: inline-flex; align-items: center; gap: 7px; margin-top: 16px; font-size: .86rem; font-weight: 600; color: var(--bordeaux); }
.card-link .ar { transition: transform .3s; }
.card:hover .card-link .ar { transform: translateX(5px); }

/* --- Tuiles catégories (accueil) --- */
.cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.cat { position: relative; height: 230px; border-radius: var(--radius-lg); overflow: hidden; cursor: pointer; display: flex; align-items: flex-end; padding: 22px; }
.cat img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.2,.7,.2,1); }
.cat:hover img { transform: scale(1.09); }
.cat::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(20, 15, 12, .05), rgba(20, 15, 12, .72)); }
.cat-label { position: relative; z-index: 1; color: #fff; }
.cat-label h3 { font-size: 1.42rem; color: #fff; }
.cat-label span { font-size: .82rem; color: rgba(255, 255, 255, .82); }
.cat-grid .span2 { grid-column: span 2; }

/* --- CTA / bouton / footer refonte --- */
.cta { text-align: center; background: linear-gradient(135deg, var(--bordeaux), var(--bordeaux-dark)); color: #fff; }
.cta h2 { color: #fff; font-size: clamp(2rem, 4vw, 3rem); }
.cta p { color: rgba(255, 255, 255, .85); max-width: 520px; margin: 18px auto 32px; }
.section .btn, .cta .btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; background: var(--gold); color: #fff; padding: 15px 30px; border-radius: 100px; font-weight: 600; font-size: .95rem; transition: transform .3s, box-shadow .3s; }
.section .btn:hover, .cta .btn:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(201, 169, 97, .4); }
.ft { padding: 40px 0; text-align: center; color: var(--ink-mute); font-size: .85rem; border-top: 1px solid var(--line); }
.note-banner { position: fixed; bottom: 18px; left: 50%; transform: translateX(-50%); z-index: 200; background: var(--ink); color: #fff; padding: 11px 22px; border-radius: 100px; font-size: .82rem; box-shadow: var(--shadow-lg); display: flex; gap: 14px; align-items: center; max-width: 92vw; }
.note-banner b { color: var(--gold); }

/* --- Page Catégorie : en-tête, toolbar, recherche/tri/toggle --- */
.page-head { padding: 40px 0 24px; background: transparent; border-bottom: 0; }
.crumb { font-size: .82rem; color: var(--ink-mute); margin-bottom: 14px; }
.crumb a:hover { color: var(--bordeaux); }
.page-head h1 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 8px; }
.page-head p { color: var(--ink-mute); max-width: 560px; }
.toolbar { position: sticky; top: 65px; z-index: 50; background: var(--bg); padding: 16px 0; border-bottom: 1px solid var(--line); margin-bottom: 8px; }
.toolbar-in { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.search { flex: 1; min-width: 220px; position: relative; }
.search input { width: 100%; padding: 12px 14px 12px 42px; border: 1px solid var(--line); border-radius: 100px; background: var(--bg-elevated); font-family: inherit; font-size: .92rem; color: var(--ink); outline: none; transition: border .2s, box-shadow .2s; }
.search input:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201, 169, 97, .15); }
.search svg { position: absolute; left: 15px; top: 50%; transform: translateY(-50%); color: var(--ink-mute); }
.chips { display: flex; gap: 8px; flex-wrap: wrap; }
.chip { padding: 9px 16px; border: 1px solid var(--line); border-radius: 100px; background: var(--bg-elevated); font-size: .84rem; font-weight: 500; color: var(--ink-soft); cursor: pointer; transition: .2s; white-space: nowrap; }
.chip:hover { border-color: var(--gold); }
.chip.active { background: var(--bordeaux); color: #fff; border-color: var(--bordeaux); }
.toggle { display: flex; border: 1px solid var(--line); border-radius: 100px; overflow: hidden; background: var(--bg-elevated); }
.toggle button { padding: 10px 18px; border: 0; background: none; font-family: inherit; font-size: .84rem; font-weight: 600; color: var(--ink-soft); cursor: pointer; display: flex; align-items: center; gap: 7px; }
.toggle button.active { background: var(--gold); color: #fff; }
.count { font-size: .85rem; color: var(--ink-mute); margin: 18px 0; }
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; padding-bottom: 60px; }

/* --- Carte Leaflet (catégorie + carte globale + mini-carte fiche) --- */
#map { height: 600px; border-radius: var(--radius-lg); border: 1px solid var(--line); margin-bottom: 60px; box-shadow: var(--shadow); display: none; }
.leaflet-popup-content { font-family: var(--font-body); }
.pop h4 { font-family: var(--font-display); font-size: 1.05rem; margin-bottom: 3px; }
.pop .c { font-size: .78rem; color: var(--gold-dark); font-weight: 600; }
.pop img { width: 100%; height: 90px; object-fit: cover; border-radius: 8px; margin-top: 8px; }
.pop-link { display: block; color: inherit; text-decoration: none; cursor: pointer; }
.pop-link:hover h4 { color: var(--bordeaux); }
.pop-cta { display: inline-block; margin-top: 8px; font-size: .78rem; font-weight: 700; color: var(--bordeaux); }
.pin { background: var(--bordeaux); width: 26px; height: 26px; border-radius: 50% 50% 50% 0; transform: rotate(-45deg); border: 2px solid #fff; box-shadow: var(--shadow); }

/* --- Fiche lieu : photo hero lightbox, aside infos, mini-carte, à proximité --- */
.hero-photo { position: relative; display: block; height: clamp(320px, 52vh, 520px); border-radius: var(--radius-lg); overflow: hidden; margin-top: 16px; box-shadow: var(--shadow); cursor: zoom-in; }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s cubic-bezier(.2,.7,.2,1); }
.hero-photo:hover img { transform: scale(1.04); }
.hero-photo .zoom { position: absolute; bottom: 16px; right: 16px; background: rgba(250, 247, 242, .92); backdrop-filter: blur(6px); padding: 8px 14px; border-radius: 100px; font-size: .8rem; font-weight: 600; color: var(--ink-soft); display: flex; gap: 7px; align-items: center; }
.badges { position: absolute; top: 18px; left: 18px; display: flex; gap: 8px; }
.badge { background: rgba(250, 247, 242, .92); backdrop-filter: blur(6px); color: var(--bordeaux); font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; font-weight: 600; padding: 6px 13px; border-radius: 100px; }
.badge.note { background: var(--gold); color: #fff; }
.badge.note .badge-src { font-weight: 500; opacity: .85; margin-left: 2px; }
.layout { display: grid; grid-template-columns: 1fr 360px; gap: 48px; padding: 40px 0 70px; align-items: start; }
.title-row h1 { font-size: clamp(2rem, 4vw, 3rem); margin: .2em 0 .25em; }
.subline { color: var(--gold-dark); font-weight: 600; font-size: .95rem; margin-bottom: 28px; }
.subline .km { color: var(--ink-mute); font-weight: 400; }
.body-txt { font-size: 1.06rem; color: var(--ink-soft); line-height: 1.75; }
.body-txt p { margin-bottom: 18px; }
.sec-sub { margin: 42px 0 18px; font-size: 1.4rem; }
.aside { position: sticky; top: 88px; background: var(--bg-elevated); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow); overflow: hidden; }
.aside-head { padding: 20px 22px 0; }
.aside-head .eyebrow { font-size: .68rem; }
.info { padding: 8px 22px 20px; list-style: none; }
.info li { display: flex; gap: 13px; padding: 13px 0; border-bottom: 1px solid var(--line); font-size: .92rem; align-items: flex-start; }
.info li:last-child { border: 0; }
.info svg { flex-shrink: 0; color: var(--gold-dark); margin-top: 2px; }
.info .lbl { display: block; font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; color: var(--ink-mute); margin-bottom: 1px; }
.info a { color: var(--bordeaux); font-weight: 500; }
#miniMap { height: 200px; }
.aside-cta { padding: 16px 22px 22px; }
.aside-cta .btn { display: flex; justify-content: center; align-items: center; gap: 9px; width: 100%; background: var(--bordeaux); color: #fff; padding: 14px; border-radius: 100px; font-weight: 600; font-size: .92rem; transition: background .25s; }
.aside-cta .btn:hover { background: var(--bordeaux-dark); }
.near { border-top: 1px solid var(--line); padding: 48px 0 80px; }
.near-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 26px; }

/* --- Agenda --- */
.agenda-month { margin: 32px 0; }
.agenda-month h2 { text-transform: capitalize; margin-bottom: 18px; }

/* --- Breakpoints refonte --- */
@media (max-width: 900px) {
  .nav, .hdr .lang, .nav-dd { display: none; }
  .burger { display: flex; }
  .cat-grid { grid-template-columns: 1fr 1fr; }
  .cat-grid .span2 { grid-column: span 2; }
  .feat-grid, .grid, .near-grid { grid-template-columns: 1fr 1fr; }
  .layout { grid-template-columns: 1fr; gap: 28px; }
  .aside { position: static; }
}
@media (max-width: 560px) {
  .feat-grid, .grid, .near-grid { grid-template-columns: 1fr; }
}

/* --- prefers-reduced-motion : désactive ken burns + reveals + Lenis --- */
@media (prefers-reduced-motion: reduce) {
  .hero-media img { animation: none !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
  .scroll-cue .line { animation: none !important; }
  html { scroll-behavior: auto; }
}

/* --- Accessibilité : focus clavier visible + cibles tactiles >= 40px --- */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
  border-radius: 4px;
}
.btn:focus-visible, .nav a:focus-visible, .mobile-menu a:focus-visible,
.lang-link:focus-visible, .burger:focus-visible, .sort-btn:focus-visible,
.toggle button:focus-visible, .card:focus-visible {
  outline-offset: 3px;
}
.chip, .sort-btn { min-height: 40px; display: inline-flex; align-items: center; }
.toggle button { min-height: 40px; }
.burger { min-height: 40px; min-width: 40px; align-items: center; justify-content: center; }
