/* =====================================================================
   Diem. — Concept Store, Mettet
   Feuille de style principale
   Aucune ressource externe (polices système uniquement) : aucun appel
   réseau vers un tiers, donc aucun transfert de données personnelles.
   ===================================================================== */

/* ---------- 1. Jetons de design ---------- */
:root {
  --ink: #17161a;
  --ink-2: #3b383f;
  --muted: #6f6b74;
  --line: #e9e3df;
  --line-soft: #f2ecea;

  --paper: #fffdfc;
  --cream: #faf6f3;
  /* Trois intensités de rose pastel : --blush-vif pour les aplats et les
     emplacements photo, --blush pour les ambiances, --blush-soft pour les
     fonds de section (volontairement pâle : du texte se pose dessus). */
  --blush-vif: #f0c4bf;
  --blush: #f6ddd8;
  --blush-soft: #fdf2f0;
  --rose: #dda19c;
  --rose-deep: #9c605d;

  --font-display: "Didot", "Bodoni MT", "Baskerville", Georgia, "Times New Roman", serif;
  --font-sans: "Futura", "Century Gothic", "Avenir Next", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --wrap: 1240px;
  --gutter: clamp(1.25rem, 5vw, 3.5rem);
  --section-y: clamp(4.5rem, 10vw, 9rem);

  --radius: 2px;
  --shadow-soft: 0 24px 60px -32px rgba(23, 22, 26, .28);
  --ease: cubic-bezier(.2, .7, .3, 1);
}

/* ---------- 2. Réinitialisation ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

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

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink-2);
  font-family: var(--font-sans);
  font-size: clamp(1rem, .96rem + .2vw, 1.075rem);
  line-height: 1.75;
  letter-spacing: .012em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { max-width: 100%; height: auto; display: block; }
h1, h2, h3, h4 { margin: 0; font-weight: 400; color: var(--ink); }
p { margin: 0 0 1.15em; }
p:last-child { margin-bottom: 0; }
ul { margin: 0; padding: 0; list-style: none; }
a { color: inherit; }

::selection { background: var(--blush); color: var(--ink); }

:focus-visible {
  outline: 2px solid var(--rose-deep);
  outline-offset: 3px;
}

/* ---------- 3. Typographie ---------- */
.display {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -.005em;
  color: var(--ink);
}

h1.display { font-size: clamp(2.75rem, 1.4rem + 5.6vw, 5.75rem); }
h2.display { font-size: clamp(2rem, 1.25rem + 3vw, 3.5rem); line-height: 1.14; }
h3.display { font-size: clamp(1.3rem, 1.1rem + .8vw, 1.7rem); line-height: 1.25; }

.display em {
  font-style: italic;
  color: var(--rose-deep);
}

.eyebrow {
  display: inline-block;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 1.5rem;
}

.eyebrow--rose { color: var(--rose-deep); }

.lead {
  font-size: clamp(1.05rem, 1rem + .35vw, 1.25rem);
  line-height: 1.75;
  color: var(--ink-2);
  max-width: 54ch;
}

.display + .lead,
.display + p { margin-top: 1.6rem; }

.muted { color: var(--muted); }
.small { font-size: .875rem; line-height: 1.65; }
.tiny { font-size: .78rem; line-height: 1.6; }

/* ---------- 4. Structure ---------- */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: var(--section-y); }
.section--cream { background: var(--cream); }
.section--blush { background: var(--blush-soft); }

.section-head {
  max-width: 62ch;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section-head--center {
  margin-inline: auto;
  text-align: center;
}

.section-head p { margin-top: 1.35rem; }

.rule {
  width: 56px;
  height: 1px;
  background: var(--rose);
  border: 0;
  margin: 0 0 2rem;
}

.section-head--center .rule { margin-inline: auto; }

.skip-link {
  position: absolute;
  left: 50%;
  top: -100px;
  transform: translateX(-50%);
  z-index: 200;
  background: var(--ink);
  color: #fff;
  padding: .85rem 1.5rem;
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 0; }

/* ---------- 5. Boutons & liens ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  padding: 1.05rem 2.1rem;
  font-family: var(--font-sans);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  background: var(--ink);
  color: #fff;
  cursor: pointer;
  transition: background .35s var(--ease), color .35s var(--ease),
              border-color .35s var(--ease), transform .35s var(--ease);
}
.btn:hover { background: var(--rose-deep); border-color: var(--rose-deep); transform: translateY(-2px); }

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn--ghost:hover { background: var(--ink); color: #fff; border-color: var(--ink); }

.btn--rose { background: var(--rose-deep); border-color: var(--rose-deep); }
.btn--rose:hover { background: var(--ink); border-color: var(--ink); }

.btn--sm { padding: .8rem 1.4rem; font-size: .72rem; }

.link-underline {
  color: var(--ink);
  text-decoration: none;
  background-image: linear-gradient(var(--rose), var(--rose));
  background-repeat: no-repeat;
  background-size: 100% 1px;
  background-position: 0 100%;
  padding-bottom: 2px;
  transition: background-size .35s var(--ease), color .35s var(--ease);
}
.link-underline:hover { color: var(--rose-deep); background-size: 0% 1px; }

.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink);
}
.arrow-link span { transition: transform .35s var(--ease); }
.arrow-link:hover span { transform: translateX(6px); }

/* ---------- 6. En-tête ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(255, 253, 252, .82);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .4s var(--ease), background .4s var(--ease);
}
.site-header.is-stuck {
  border-bottom-color: var(--line-soft);
  background: rgba(255, 253, 252, .95);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  min-height: 88px;
  padding-block: 1rem;
}

.brand { display: inline-block; line-height: 0; }
.brand img { width: clamp(108px, 12vw, 142px); }

.nav { display: flex; align-items: center; gap: clamp(1.4rem, 2.4vw, 2.6rem); }

.nav a {
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink-2);
  padding-block: .35rem;
  position: relative;
  transition: color .3s var(--ease);
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--rose);
  transition: width .35s var(--ease);
}
.nav a:hover { color: var(--ink); }
.nav a:hover::after { width: 100%; }

.header-cta { display: none; }

.nav-toggle {
  display: none;
  width: 46px; height: 46px;
  border: 1px solid var(--line);
  background: transparent;
  border-radius: var(--radius);
  cursor: pointer;
  padding: 0;
  position: relative;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  position: absolute;
  left: 50%;
  width: 18px; height: 1.5px;
  background: var(--ink);
  transform: translateX(-50%);
  transition: transform .3s var(--ease), opacity .2s var(--ease);
}
.nav-toggle span { top: 50%; margin-top: -.75px; }
.nav-toggle span::before { content: ""; left: 0; transform: none; top: -6px; }
.nav-toggle span::after  { content: ""; left: 0; transform: none; top: 6px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after  { top: 0; transform: rotate(-45deg); }

@media (min-width: 1000px) {
  .header-cta { display: inline-flex; }
}

@media (max-width: 999px) {
  .nav-toggle { display: block; }
  .nav {
    position: fixed;
    inset: 88px 0 auto;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    padding: 1rem var(--gutter) 2.5rem;
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s var(--ease), transform .3s var(--ease), visibility .3s;
    max-height: calc(100vh - 88px);
    overflow-y: auto;
  }
  .nav.is-open { opacity: 1; visibility: visible; transform: none; }
  .nav a {
    display: block;
    width: 100%;
    padding: 1.05rem 0;
    border-bottom: 1px solid var(--line-soft);
    font-size: .82rem;
  }
  .nav a::after { display: none; }
}

/* ---------- 7. Héros ---------- */
.hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(4rem, 9vw, 8rem) clamp(3.5rem, 7vw, 6rem);
  background:
    radial-gradient(60% 55% at 78% 18%, var(--blush) 0%, rgba(246, 221, 216, 0) 68%),
    radial-gradient(45% 45% at 8% 88%, var(--blush) 0%, rgba(246, 221, 216, 0) 70%),
    var(--paper);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(3rem, 6vw, 5rem);
  align-items: center;
}

@media (min-width: 900px) {
  .hero-grid { grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); }
}

.hero h1 { margin-bottom: 1.75rem; }
.hero .lead { margin-bottom: 2.5rem; }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.75rem;
}

.hero-note {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  max-width: 46ch;
  padding-top: 1.75rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: .85rem;
  line-height: 1.6;
}
.hero-note::before {
  content: "";
  flex: none;
  width: 7px; height: 7px;
  margin-top: .55rem;
  border-radius: 50%;
  background: var(--rose);
}

/* Composition décorative du héros */
.hero-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  min-height: 340px;
}

.hero-visual .frame {
  position: absolute;
  inset: 0;
  background: linear-gradient(155deg, var(--blush-vif) 0%, var(--blush) 52%, #fdf4f2 100%);
  border-radius: 240px 240px var(--radius) var(--radius);
  overflow: hidden;
}

.hero-visual .frame::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, .55);
  border-radius: 230px 230px var(--radius) var(--radius);
}

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

.hero-visual .halo {
  position: absolute;
  width: 46%;
  aspect-ratio: 1;
  border: 1px solid var(--rose);
  border-radius: 50%;
  opacity: .55;
}
.hero-visual .halo--a { left: -9%; top: 16%; }
.hero-visual .halo--b { right: -6%; bottom: 8%; width: 30%; border-style: dashed; }

.hero-badge {
  position: absolute;
  left: clamp(-1rem, -2vw, -2.5rem);
  bottom: clamp(1.5rem, 4vw, 3rem);
  background: var(--paper);
  box-shadow: var(--shadow-soft);
  padding: 1.35rem 1.75rem;
  text-align: center;
  border-radius: var(--radius);
}
.hero-badge strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2.35rem;
  line-height: 1;
  color: var(--ink);
  font-weight: 400;
}
.hero-badge span {
  display: block;
  margin-top: .45rem;
  font-size: .68rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---------- 8. Bandeau de chiffres ---------- */
.facts {
  border-block: 1px solid var(--line);
  background: var(--paper);
}

.facts-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (min-width: 800px) {
  .facts-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

.fact {
  padding: clamp(2rem, 4vw, 3.25rem) 1.5rem;
  text-align: center;
  border-right: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.facts-grid .fact:nth-child(2n) { border-right: 0; }
@media (min-width: 800px) {
  .fact { border-bottom: 0; }
  .facts-grid .fact:nth-child(2n) { border-right: 1px solid var(--line-soft); }
  .facts-grid .fact:last-child { border-right: 0; }
}

.fact strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.8rem, 1.4rem + 1.4vw, 2.6rem);
  line-height: 1.1;
  color: var(--ink);
}
.fact span {
  display: block;
  margin-top: .6rem;
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---------- 9. Univers ---------- */
.cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--line-soft);
  border: 1px solid var(--line-soft);
}

/* 6 univers : 2 puis 3 colonnes, sans jamais laisser de case vide */
@media (min-width: 620px) { .cards { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1000px) { .cards { grid-template-columns: repeat(3, minmax(0, 1fr)); } }

.card {
  background: var(--paper);
  padding: clamp(2rem, 3.5vw, 3rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: background .4s var(--ease), transform .4s var(--ease);
}
.card:hover { background: var(--blush-soft); }

.card-icon {
  width: 40px; height: 40px;
  color: var(--rose-deep);
  margin-bottom: .5rem;
}
.card-icon svg { width: 100%; height: 100%; }

.card h3 { margin-bottom: .15rem; }
.card p { color: var(--muted); font-size: .95rem; }

/* ---------- 10. Bloc éditorial (deux colonnes) ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}

@media (min-width: 900px) {
  .split { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .split--reverse .split-media { order: 2; }
}

.split-media {
  position: relative;
  aspect-ratio: 5 / 4;
  background: linear-gradient(140deg, var(--blush) 0%, var(--blush-vif) 100%);
  border-radius: var(--radius);
  overflow: hidden;
}
.split-media img { width: 100%; height: 100%; object-fit: cover; }

.split-media::after {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(255, 255, 255, .6);
  pointer-events: none;
}

.quote {
  margin: 2rem 0 0;
  padding-left: 1.75rem;
  border-left: 1px solid var(--rose);
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 1rem + .6vw, 1.5rem);
  font-style: italic;
  line-height: 1.5;
  color: var(--ink);
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin-top: 2rem;
}
.pill {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: .5rem 1.1rem;
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-2);
  background: var(--paper);
}

.check-list { display: grid; gap: 1.5rem; margin-top: 2.5rem; }
.check-list li { display: flex; gap: 1rem; align-items: flex-start; }
.check-list .num {
  flex: none;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--rose-deep);
  width: 2rem;
  padding-top: .1rem;
}
.check-list h3 { font-family: var(--font-sans); font-size: .82rem; letter-spacing: .16em; text-transform: uppercase; margin-bottom: .35rem; }
.check-list p { color: var(--muted); font-size: .95rem; margin: 0; }

/* ---------- 10 bis. Mur des marques ---------- */
.brands { margin-top: clamp(3.5rem, 7vw, 5.5rem); }

.brands-title {
  font-family: var(--font-sans);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
  margin-bottom: clamp(1.75rem, 3vw, 2.5rem);
}

.brand-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .5rem;
  margin-bottom: clamp(1.5rem, 3vw, 2.25rem);
}
.brand-filters:empty { display: none; }

.brand-filter {
  font-family: var(--font-sans);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  padding: .55rem 1.15rem;
  color: var(--ink-2);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  transition: background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
}
.brand-filter:hover { border-color: var(--rose); color: var(--ink); }
.brand-filter[aria-pressed="true"] {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}

.brand-empty {
  text-align: center;
  color: var(--muted);
  font-size: .9rem;
  margin-top: 1.5rem;
}
.brand-empty[hidden] { display: none; }

.brand-grid {
  --tw: 104px; /* largeur optique cible de la zone encrée d'un logo */
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  /* tuiles espacées plutôt que grille pleine : une dernière rangée
     incomplète reste ainsi invisible */
  gap: 10px;
}

/* NB : ne pas nommer cette classe « .brand », déjà utilisée par le logo de l'en-tête. */
.brand-tile {
  /* largeur fixe : une dernière rangée incomplète garde des tuiles
     de même taille que les précédentes */
  flex: 0 0 auto;
  width: clamp(132px, 15vw, 180px);
  aspect-ratio: 16 / 10;
  display: grid;
  place-items: center;
  padding: 1.1rem;
  /* Blanc obligatoire : les logos fournis ne sont pas détourés. */
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  /* les marges blanches des fichiers agrandis débordent : on les rogne */
  overflow: hidden;
  transition: border-color .4s var(--ease), box-shadow .4s var(--ease);
}

.brand-tile:hover {
  border-color: var(--line);
  box-shadow: 0 12px 28px -18px rgba(23, 22, 26, .35);
}

/* display:grid l'emporterait sur [hidden] : on force le masquage au filtrage. */
.brand-tile[hidden] { display: none; }

/* Logo fourni sur plaque sombre : la tuile épouse sa couleur de fond. */
.brand-tile--sombre { background: #1e1d22; }

.brand-tile img {
  --k: 1;
  width: calc(var(--k) * var(--tw));
  height: auto;
  max-width: none;
  max-height: none;
  object-fit: contain;
  /* multiply gomme le blanc résiduel et les artefacts JPEG autour du logo */
  mix-blend-mode: multiply;
  /* Pas de grayscale : plusieurs de ces logos sont dorés sur blanc et
     disparaîtraient complètement en niveaux de gris. */
  opacity: .92;
  transition: opacity .4s var(--ease), transform .4s var(--ease);
}

.brand-tile--sombre img {
  mix-blend-mode: normal;
}

.brand-tile:hover img {
  opacity: 1;
  transform: scale(1.04);
}

.brands-note {
  margin-top: 1.75rem;
  text-align: center;
  font-size: .85rem;
  color: var(--muted);
}

@media (max-width: 600px) {
  .brand-grid { --tw: 84px; gap: 8px; }
  .brand-tile { padding: .85rem; }
}

/* ---------- 11. Informations pratiques ---------- */
.visit-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.5rem, 3vw, 2.25rem);
}

@media (min-width: 860px) {
  .visit-grid { grid-template-columns: repeat(12, minmax(0, 1fr)); }
  .panel--address { grid-column: span 4; }
  .panel--hours   { grid-column: span 4; }
  .panel--contact { grid-column: span 4; }
  .panel--maps    { grid-column: span 12; }
}

.panel {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.75rem, 3vw, 2.5rem);
}

.panel h3 {
  font-family: var(--font-sans);
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.address {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 1.1rem + 1vw, 1.9rem);
  line-height: 1.35;
  font-style: normal;
  color: var(--ink);
}
.address .country {
  display: block;
  font-family: var(--font-sans);
  font-size: .8rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: .9rem;
}

.hours { display: grid; gap: .1rem; }
.hours li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: .7rem 0;
  border-bottom: 1px solid var(--line-soft);
  font-size: .95rem;
}
.hours li:last-child { border-bottom: 0; }
.hours .day { color: var(--ink); }
.hours .time { color: var(--muted); font-variant-numeric: tabular-nums; white-space: nowrap; }
.hours li.is-closed .day,
.hours li.is-closed .time { color: #b3aeb5; }

.status {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  margin-top: 1.5rem;
  padding: .45rem .95rem;
  border-radius: 999px;
  background: var(--cream);
  font-size: .75rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-2);
}
.status::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--muted);
}
.status.is-open { background: #eef5ef; color: #3c6b47; }
.status.is-open::before { background: #4c9a63; }
.status.is-closed { background: var(--blush-soft); color: var(--rose-deep); }
.status.is-closed::before { background: var(--rose); }

.contact-list { display: grid; gap: 1.35rem; }
.contact-list .label {
  display: block;
  font-size: .68rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: .3rem;
}
.contact-list a {
  font-size: 1rem;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
  transition: border-color .3s var(--ease), color .3s var(--ease);
  word-break: break-word;
}
.contact-list a:hover { color: var(--rose-deep); border-color: var(--rose); }

.socials { display: flex; gap: .75rem; margin-top: .35rem; }
.social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px; height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  transition: background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
}
.social-btn svg { width: 18px; height: 18px; }
.social-btn:hover { background: var(--ink); border-color: var(--ink); color: #fff; }

/* QR codes */
.panel--maps { background: var(--cream); }

.qr-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
}
.qr-head h3 { margin: 0; }

.qr-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: clamp(1.25rem, 3vw, 2rem);
}

.qr-card {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.qr-code {
  flex: none;
  width: 148px; height: 148px;
  padding: 6px;
  background: #fff;
  border: 1px solid var(--line-soft);
}
.qr-code svg { width: 100%; height: 100%; }
.qr-code.is-failed {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .7rem;
  text-align: center;
  color: var(--muted);
  padding: .75rem;
}

.qr-card h4 {
  margin: 0 0 .3rem;
  font-family: var(--font-sans);
  font-size: .95rem;
  font-weight: 600;
  color: var(--ink);
}
.qr-card p { margin: 0 0 .9rem; font-size: .82rem; color: var(--muted); }

@media (max-width: 420px) {
  .qr-card { flex-direction: column; align-items: flex-start; }
}

/* ---------- 12. Newsletter ---------- */
.newsletter {
  background:
    radial-gradient(70% 120% at 15% 0%, var(--blush) 0%, rgba(246, 221, 216, 0) 60%),
    var(--cream);
}

.newsletter-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: start;
}
@media (min-width: 900px) {
  .newsletter-grid { grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); }
}

.form { display: grid; gap: 1.35rem; }

.field { display: grid; gap: .5rem; }

.field label {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
}
.field .optional { text-transform: none; letter-spacing: .04em; font-weight: 400; }

.field input[type="text"],
.field input[type="email"] {
  width: 100%;
  padding: 1rem 1.1rem;
  font-family: inherit;
  font-size: 1rem;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.field input::placeholder { color: #b8b3ba; }
.field input:focus {
  outline: none;
  border-color: var(--rose);
  box-shadow: 0 0 0 3px rgba(221, 170, 166, .22);
}

.field-row { display: grid; gap: 1.35rem; }
@media (min-width: 560px) {
  .field-row { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: .85rem;
  font-size: .85rem;
  line-height: 1.6;
  color: var(--ink-2);
  cursor: pointer;
}
.consent input[type="checkbox"] {
  flex: none;
  width: 20px; height: 20px;
  margin-top: .15rem;
  accent-color: var(--rose-deep);
  cursor: pointer;
}

.form-note {
  font-size: .78rem;
  line-height: 1.65;
  color: var(--muted);
}
.form-note a { color: var(--ink-2); }

.form-status {
  padding: 1rem 1.15rem;
  border-radius: var(--radius);
  font-size: .88rem;
  line-height: 1.6;
  border: 1px solid transparent;
}
.form-status[hidden] { display: none; }
.form-status.is-ok { background: #eef5ef; border-color: #cfe3d4; color: #33613f; }
.form-status.is-error { background: var(--blush-soft); border-color: var(--blush); color: var(--rose-deep); }

.hp-field {
  position: absolute !important;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.privacy-card {
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 3vw, 2rem);
  margin-top: 2rem;
}
.privacy-card h3 {
  font-family: var(--font-sans);
  font-size: .74rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1rem;
}
.privacy-card ul { display: grid; gap: .65rem; }
.privacy-card li {
  position: relative;
  padding-left: 1.25rem;
  font-size: .85rem;
  line-height: 1.6;
  color: var(--ink-2);
}
.privacy-card li::before {
  content: "";
  position: absolute;
  left: 0; top: .6rem;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--rose);
}

/* ---------- 13. Pied de page ---------- */
.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, .72);
  padding-block: clamp(3.5rem, 7vw, 6rem) 2rem;
  font-size: .9rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2.5rem, 5vw, 4rem);
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}
@media (min-width: 780px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
}
@media (min-width: 1060px) {
  .footer-grid { grid-template-columns: 1.6fr 1fr 1fr 1fr; }
}

.footer-brand img { width: 158px; margin-bottom: 1.75rem; }
.footer-brand p { max-width: 34ch; color: rgba(255, 255, 255, .62); font-size: .88rem; }

.footer-col h3 {
  color: #fff;
  font-family: var(--font-sans);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .24em;
  text-transform: uppercase;
  margin-bottom: 1.35rem;
}

.footer-col ul { display: grid; gap: .7rem; }
.footer-col a {
  color: rgba(255, 255, 255, .72);
  text-decoration: none;
  transition: color .3s var(--ease);
}
.footer-col a:hover { color: #fff; }
.footer-col .time { color: rgba(255, 255, 255, .5); }

.footer-col .socials .social-btn {
  border-color: rgba(255, 255, 255, .22);
  color: #fff;
}
.footer-col .socials .social-btn:hover { background: #fff; color: var(--ink); border-color: #fff; }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  font-size: .78rem;
  color: rgba(255, 255, 255, .5);
}
.footer-legal { display: flex; flex-wrap: wrap; gap: 1rem 1.5rem; }
.footer-legal a, .footer-legal button {
  color: rgba(255, 255, 255, .5);
  text-decoration: none;
  background: none;
  border: 0;
  padding: 0;
  font: inherit;
  cursor: pointer;
  transition: color .3s var(--ease);
}
.footer-legal a:hover, .footer-legal button:hover { color: #fff; }

/* ---------- 14. Bandeau cookies ---------- */
.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: clamp(.75rem, 2vw, 1.5rem);
  transform: translate(-50%, 130%);
  z-index: 120;
  width: min(1100px, calc(100% - 2 * clamp(.75rem, 3vw, 2rem)));
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 30px 70px -30px rgba(23, 22, 26, .45);
  padding: clamp(1.35rem, 3vw, 2rem);
  transition: transform .5s var(--ease), opacity .4s var(--ease);
  opacity: 0;
  visibility: hidden;
}
.cookie-banner.is-visible { transform: translate(-50%, 0); opacity: 1; visibility: visible; }

.cookie-inner {
  display: grid;
  gap: 1.5rem;
  align-items: center;
}
@media (min-width: 900px) {
  .cookie-inner { grid-template-columns: minmax(0, 1fr) auto; gap: 2.5rem; }
}

.cookie-inner h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin-bottom: .5rem;
}
.cookie-inner p { font-size: .85rem; line-height: 1.65; color: var(--muted); margin: 0; }
.cookie-inner p a { color: var(--ink-2); }

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
}
.cookie-actions .btn { flex: 1 1 auto; white-space: nowrap; }

/* Modale de préférences */
.modal[hidden] { display: none; }
.modal {
  position: fixed;
  inset: 0;
  z-index: 130;
  display: grid;
  place-items: center;
  padding: 1rem;
}
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(23, 22, 26, .45);
  backdrop-filter: blur(3px);
  border: 0;
  padding: 0;
  cursor: pointer;
}
.modal-panel {
  position: relative;
  width: min(620px, 100%);
  max-height: min(86vh, 780px);
  overflow-y: auto;
  background: var(--paper);
  border-radius: var(--radius);
  padding: clamp(1.75rem, 4vw, 2.75rem);
  box-shadow: var(--shadow-soft);
}
.modal-panel h2 { font-family: var(--font-display); font-size: 1.75rem; margin-bottom: .75rem; }
.modal-close {
  position: absolute;
  top: 1rem; right: 1rem;
  width: 40px; height: 40px;
  border: 1px solid var(--line);
  background: transparent;
  border-radius: 50%;
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
  color: var(--ink);
}
.modal-close:hover { background: var(--cream); }

.pref { border-top: 1px solid var(--line-soft); padding: 1.35rem 0; }
.pref-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.pref h3 { font-family: var(--font-sans); font-size: .95rem; font-weight: 600; }
.pref p { font-size: .84rem; color: var(--muted); margin: .5rem 0 0; }
.pref .locked { font-size: .7rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); }

.switch { position: relative; display: inline-block; width: 46px; height: 26px; flex: none; }
.switch input { opacity: 0; width: 0; height: 0; }
.switch .slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background: #ddd8d5;
  border-radius: 999px;
  transition: background .3s var(--ease);
}
.switch .slider::before {
  content: "";
  position: absolute;
  height: 20px; width: 20px;
  left: 3px; top: 3px;
  background: #fff;
  border-radius: 50%;
  transition: transform .3s var(--ease);
}
.switch input:checked + .slider { background: var(--rose-deep); }
.switch input:checked + .slider::before { transform: translateX(20px); }
.switch input:focus-visible + .slider { outline: 2px solid var(--rose-deep); outline-offset: 3px; }

.modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 1.75rem;
}

/* ---------- 15. Pages de contenu (légal) ---------- */
.page-header {
  padding-block: clamp(3.5rem, 8vw, 6rem) clamp(2rem, 4vw, 3rem);
  background:
    radial-gradient(50% 80% at 90% 0%, var(--blush) 0%, rgba(246, 221, 216, 0) 70%),
    var(--paper);
  border-bottom: 1px solid var(--line-soft);
}

.prose {
  max-width: 74ch;
  padding-block: clamp(3rem, 6vw, 5rem);
}
.prose h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 1.2rem + 1.2vw, 2rem);
  margin: 3rem 0 1rem;
}
.prose h2:first-child { margin-top: 0; }
.prose h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin: 2rem 0 .65rem;
  color: var(--ink);
}
.prose ul, .prose ol { margin: 0 0 1.25em; padding-left: 1.25rem; }
.prose ul { list-style: none; padding-left: 0; }
.prose ul li {
  position: relative;
  padding-left: 1.35rem;
  margin-bottom: .55rem;
}
.prose ul li::before {
  content: "";
  position: absolute;
  left: 0; top: .72rem;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--rose);
}
.prose ol li { margin-bottom: .55rem; }
.prose a { color: var(--ink); }
.prose table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0 2rem;
  font-size: .9rem;
}
.prose th, .prose td {
  text-align: left;
  padding: .85rem 1rem;
  border-bottom: 1px solid var(--line-soft);
  vertical-align: top;
}
.prose th {
  font-size: .7rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  border-bottom-color: var(--line);
}
.table-scroll { overflow-x: auto; }

.callout {
  background: var(--cream);
  border-left: 2px solid var(--rose);
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
  font-size: .92rem;
}

.back-link { margin-top: 3rem; }

/* ---------- 15 bis. Diaporamas des emplacements photo ---------- */
[data-diapo] { position: relative; overflow: hidden; }

.diapo-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Tant que le script n'a pas pris la main (ou sans JavaScript, ou en
   mouvement réduit), seule la première photo est affichée. */
[data-diapo]:not(.diapo--actif) .diapo-img:not(:first-of-type) { display: none; }

.diapo--actif .diapo-img {
  opacity: 0;
  transition: opacity 1.2s var(--ease);
}
.diapo--actif .diapo-img.is-active { opacity: 1; }

.diapo-pause {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 2;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 253, 252, .82);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: var(--ink);
  cursor: pointer;
  opacity: 0;
  transition: opacity .3s var(--ease), background .3s var(--ease);
}
.diapo-pause svg { width: 12px; height: 12px; }
[data-diapo]:hover .diapo-pause,
.diapo-pause:focus-visible { opacity: 1; }
.diapo-pause:hover { background: #fff; }

/* ---------- 16. Animations d'apparition ---------- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
}

.no-js .reveal { opacity: 1; transform: none; }

/* ---------- 17. Impression ---------- */
@media print {
  .site-header, .cookie-banner, .modal, .hero-visual, .btn, .nav-toggle { display: none !important; }
  body { background: #fff; color: #000; }
  .section { padding-block: 1.5rem; }
  a[href^="http"]::after { content: " (" attr(href) ")"; font-size: .8em; }
}
