/* =========================================================
   Gîte de la Broderie — Pévèle (Bersée)
   Feuille de style principale
   ========================================================= */

/* ---- Polices auto-hébergées (RGPD : aucune requête vers Google) ---- */
@font-face {
  font-family: "Inter";
  src: url("../fonts/inter-latin-400-normal.woff2") format("woff2");
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/inter-latin-500-normal.woff2") format("woff2");
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/inter-latin-600-normal.woff2") format("woff2");
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/inter-latin-700-normal.woff2") format("woff2");
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Fraunces";
  src: url("../fonts/fraunces-latin-500-normal.woff2") format("woff2");
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Fraunces";
  src: url("../fonts/fraunces-latin-600-normal.woff2") format("woff2");
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Fraunces";
  src: url("../fonts/fraunces-latin-700-normal.woff2") format("woff2");
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Fraunces";
  src: url("../fonts/fraunces-latin-600-italic.woff2") format("woff2");
  font-weight: 600; font-style: italic; font-display: swap;
}

/* ---- Palette & tokens ---- */
:root {
  --terracotta: #B05A3A;
  --terracotta-dark: #7A3F28;
  --terracotta-light: #D98A5E;
  --cream: #F7F0E3;
  --cream-alt: #FBF7EF;
  --ink: #2E2A25;
  --ink-soft: #5B564E;
  --sage: #5F6F52;
  --sage-dark: #3F4A35;
  --gold: #C99A4A;
  --border: #E4D8C3;
  --white: #FFFFFF;

  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow: 0 12px 32px -12px rgba(46, 42, 37, 0.28);
  --shadow-sm: 0 4px 14px -6px rgba(46, 42, 37, 0.22);

  --container: 1180px;
  --font-serif: "Fraunces", Georgia, "Times New Roman", serif;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* , *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--cream-alt);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-serif); font-weight: 600; line-height: 1.15; margin: 0 0 .5em; color: var(--ink); }
p { margin: 0 0 1em; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
section { padding: 88px 0; }
@media (max-width: 780px) { section { padding: 56px 0; } }

.eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 14px;
}
.section-head { max-width: 680px; margin: 0 auto 48px; text-align: center; }
.section-head h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); }
.section-head p { color: var(--ink-soft); font-size: 1.05rem; }
.section-head.align-left { text-align: left; margin-left: 0; }

/* ---- Boutons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 30px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.98rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--terracotta); color: var(--white); box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--terracotta-dark); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-ghost { background: transparent; border-color: rgba(247,240,227,.55); color: var(--white); }
.btn-ghost:hover { background: rgba(247,240,227,.12); border-color: var(--white); }
.btn-outline { background: transparent; border-color: var(--terracotta); color: var(--terracotta); }
.btn-outline:hover { background: var(--terracotta); color: var(--white); }
.btn-block { width: 100%; justify-content: center; }
.btn-sm { padding: 10px 20px; font-size: .88rem; }

/* ---- En-tête ---- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(251, 247, 239, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; height: 84px; }
.logo { display: flex; align-items: center; gap: 12px; min-width: 0; flex-shrink: 1; }
.logo img { height: 56px; width: auto; flex-shrink: 0; }
.logo-text { display: flex; flex-direction: column; line-height: 1.25; min-width: 0; }
.logo-text strong { font-family: var(--font-serif); font-weight: 600; font-size: 1.14rem; color: var(--ink); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.logo-text small { font-family: var(--font-sans); font-weight: 600; font-size: .68rem; letter-spacing: .11em; text-transform: uppercase; color: var(--terracotta); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.header-cta { flex-shrink: 0; }
.main-nav ul { display: flex; gap: 30px; align-items: center; }
.main-nav a {
  font-weight: 500; font-size: 0.96rem; color: var(--ink-soft);
  padding: 8px 2px; border-bottom: 2px solid transparent; transition: color .15s, border-color .15s;
}
.main-nav a:hover, .main-nav a[aria-current="page"] { color: var(--terracotta-dark); border-color: var(--terracotta); }
.header-cta { display: flex; align-items: center; gap: 18px; }
.header-phone { display: flex; align-items: center; gap: 8px; font-weight: 600; color: var(--ink); font-size: .95rem; }
.header-phone svg { flex-shrink: 0; }
.nav-toggle {
  display: none; background: none; border: none; cursor: pointer; padding: 8px;
}
.nav-toggle svg { width: 26px; height: 26px; color: var(--ink); }

@media (max-width: 900px) {
  /* backdrop-filter sur l'en-tête créerait un "containing block" pour les
     éléments position:fixed qu'il contient (dont .main-nav ci-dessous) :
     on le désactive donc sur mobile pour que le panneau de menu se déploie
     bien par rapport à la fenêtre entière, et non à la hauteur de l'en-tête. */
  .site-header { backdrop-filter: none; background: var(--cream-alt); }
  .main-nav { position: fixed; inset: 84px 0 0 0; background: var(--cream-alt); transform: translateX(100%); transition: transform .25s ease; overflow-y: auto; padding: 20px 0 40px; z-index: 50; }
  .main-nav.open { transform: translateX(0); }
  .main-nav ul { flex-direction: column; gap: 0; padding: 0 24px; }
  .main-nav a { display: block; padding: 16px 0; border-bottom: 1px solid var(--border); width: 100%; }
  .header-phone span { display: none; }
  .nav-toggle { display: inline-flex; }
}

@media (max-width: 560px) {
  .logo { gap: 8px; }
  .logo img { height: 38px; }
  .logo-text strong { font-size: .84rem; max-width: 40vw; }
  .logo-text small { display: none; }
  .header-phone { display: none; }
  .header-cta { gap: 8px; }
  .header-cta .btn-sm { padding: 9px 16px; font-size: .86rem; }
  .nav-toggle { padding: 6px; }
}

/* ---- Hero ---- */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex; align-items: flex-end;
  color: var(--white);
  background: linear-gradient(180deg, rgba(46,42,37,.15) 0%, rgba(30,26,22,.72) 82%), var(--terracotta-dark);
  background-size: cover; background-position: center;
}
.hero::after { content: ""; }
.hero-inner { padding-bottom: 72px; max-width: 760px; }
.hero .eyebrow { color: var(--gold); }
.hero h1 { font-size: clamp(2.3rem, 5.2vw, 3.6rem); color: var(--white); margin-bottom: .35em; }
.hero p.lead { font-size: 1.15rem; color: rgba(255,255,255,.92); max-width: 560px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 28px; }
.hero-badges { display: flex; gap: 22px; flex-wrap: wrap; margin-top: 40px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.22); }
.hero-badge { display: flex; align-items: center; gap: 10px; font-size: .92rem; color: rgba(255,255,255,.92); }
.hero-badge svg { color: var(--gold); flex-shrink: 0; }

/* ---- Bandeau repères ---- */
.strip {
  background: var(--sage-dark); color: var(--white);
}
.strip .container { display: flex; flex-wrap: wrap; gap: 24px 40px; justify-content: center; padding-top: 22px; padding-bottom: 22px; }
.strip-item { display: flex; align-items: center; gap: 10px; font-size: .92rem; font-weight: 500; }
.strip-item svg { color: var(--gold); flex-shrink: 0; }

/* ---- Intro / à propos ---- */
.intro { background: var(--cream-alt); }
.intro-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
.intro-media { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.intro-media img { aspect-ratio: 4/3; object-fit: cover; }
.intro-text h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); }
.intro-text p { color: var(--ink-soft); font-size: 1.04rem; }
.intro-facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 28px; }
.fact { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 18px 16px; text-align: center; }
.fact strong { display: block; font-family: var(--font-serif); font-size: 1.5rem; color: var(--terracotta); }
.fact span { font-size: .82rem; color: var(--ink-soft); }
@media (max-width: 860px) { .intro-grid { grid-template-columns: 1fr; } .intro-facts { grid-template-columns: repeat(3,1fr); } }

/* ---- Cartes pièces / highlights ---- */
.rooms { background: var(--cream); }
.rooms-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.room-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .2s ease; }
.room-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.room-card .thumb { aspect-ratio: 4/3; overflow: hidden; }
.room-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.room-card:hover .thumb img { transform: scale(1.06); }
.room-card .body { padding: 20px 22px 24px; }
.room-card h3 { font-size: 1.18rem; margin-bottom: 6px; }
.room-card p { color: var(--ink-soft); font-size: .95rem; margin-bottom: 0; }
@media (max-width: 900px) { .rooms-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 620px) { .rooms-grid { grid-template-columns: 1fr; } }

/* ---- Équipements liste à puces iconées ---- */
.amenities-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px 32px; }
.amenity { display: flex; align-items: flex-start; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--border); }
.amenity svg { color: var(--terracotta); flex-shrink: 0; margin-top: 2px; }
.amenity strong { display: block; font-size: .98rem; }
.amenity span { font-size: .86rem; color: var(--ink-soft); }
@media (max-width: 860px) { .amenities-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .amenities-grid { grid-template-columns: 1fr; } }

/* ---- Activités ---- */
.activities-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.activity-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px 20px; text-align: center; }
.activity-card svg { color: var(--terracotta); margin-bottom: 12px; }
.activity-card h4 { font-size: 1rem; margin-bottom: 6px; }
.activity-card span { font-size: .85rem; color: var(--ink-soft); }
@media (max-width: 900px) { .activities-grid { grid-template-columns: repeat(2,1fr); } }

/* ---- Galerie ---- */
.gallery-nav { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 40px; }
.gallery-nav button {
  padding: 9px 18px; border-radius: 999px; border: 1px solid var(--border);
  background: var(--white); color: var(--ink-soft); font-size: .88rem; font-weight: 600; cursor: pointer;
  transition: all .15s ease;
}
.gallery-nav button.active, .gallery-nav button:hover { background: var(--terracotta); border-color: var(--terracotta); color: var(--white); }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.gallery-grid figure { margin: 0; border-radius: var(--radius); overflow: hidden; cursor: zoom-in; aspect-ratio: 4/3; position: relative; background: var(--border); }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.gallery-grid figure:hover img { transform: scale(1.06); }
.gallery-grid figcaption {
  position: absolute; inset: auto 0 0 0; padding: 8px 12px 8px 12px;
  background: linear-gradient(0deg, rgba(0,0,0,.55), transparent);
  color: #fff; font-size: .78rem; opacity: 0; transition: opacity .2s;
}
.gallery-grid figure:hover figcaption { opacity: 1; }
@media (max-width: 900px) { .gallery-grid { grid-template-columns: repeat(3,1fr); } }
@media (max-width: 620px) { .gallery-grid { grid-template-columns: repeat(2,1fr); } }

.lightbox {
  position: fixed; inset: 0; background: rgba(20,17,14,.94); z-index: 200;
  display: none; align-items: center; justify-content: center; padding: 30px;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 84vh; border-radius: 8px; }
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute; background: rgba(255,255,255,.12); border: none; color: #fff;
  width: 46px; height: 46px; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background .15s;
}
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,.26); }
.lightbox-close { top: 24px; right: 24px; }
.lightbox-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-caption { position: absolute; bottom: 24px; left: 0; right: 0; text-align: center; color: #fff; font-size: .9rem; opacity: .85; }
@media (max-width: 640px) { .lightbox-prev, .lightbox-next { width: 40px; height: 40px; } }

/* ---- Tarifs ---- */
.pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.price-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 30px 24px; text-align: center; position: relative; }
.price-card.featured { border-color: var(--terracotta); box-shadow: var(--shadow); }
.price-card .tag { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--terracotta); color: #fff; font-size: .72rem; font-weight: 700; letter-spacing: .05em; padding: 5px 14px; border-radius: 999px; text-transform: uppercase; }
.price-card h3 { font-size: 1.05rem; color: var(--ink-soft); font-family: var(--font-sans); font-weight: 600; margin-bottom: 4px; }
.price-card .period { font-size: .82rem; color: var(--ink-soft); margin-bottom: 18px; }
.price-card .amount { font-family: var(--font-serif); font-size: 2.3rem; color: var(--terracotta); font-weight: 700; }
.price-card .amount sup { font-size: 1rem; font-weight: 500; }
.price-card ul { margin: 18px 0 0; text-align: left; }
.price-card li { display: flex; gap: 8px; align-items: flex-start; font-size: .88rem; color: var(--ink-soft); padding: 6px 0; }
.price-card li svg { color: var(--sage); flex-shrink: 0; margin-top: 3px; }
@media (max-width: 980px) { .pricing-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px) { .pricing-grid { grid-template-columns: 1fr; } }

.conditions-box { background: var(--cream); border-radius: var(--radius-lg); padding: 36px 40px; margin-top: 48px; }
.conditions-box h3 { font-size: 1.2rem; }
.conditions-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px 40px; margin-top: 16px; }
.conditions-list li { font-size: .95rem; color: var(--ink-soft); padding: 8px 0; border-bottom: 1px dashed var(--border); }
.conditions-list li strong { color: var(--ink); }
@media (max-width: 700px) { .conditions-list { grid-template-columns: 1fr; } .conditions-box { padding: 28px 22px; } }

/* ---- Avis / réassurance (sans témoignages fictifs) ---- */
.trust-band { background: var(--terracotta-dark); color: var(--white); }
.trust-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 28px; text-align: center; }
.trust-grid svg { color: var(--gold); margin-bottom: 10px; }
.trust-grid h4 { color: #fff; font-size: 1.02rem; margin-bottom: 4px; }
.trust-grid p { color: rgba(255,255,255,.78); font-size: .86rem; margin: 0; }
@media (max-width: 860px) { .trust-grid { grid-template-columns: repeat(2,1fr); } }

/* ---- FAQ ---- */
.faq { background: var(--cream-alt); }
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item summary {
  cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center;
  padding: 20px 4px; font-weight: 600; font-size: 1.02rem; gap: 20px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .icon { flex-shrink: 0; width: 22px; height: 22px; border-radius: 50%; border: 1.5px solid var(--terracotta); display: flex; align-items: center; justify-content: center; color: var(--terracotta); transition: transform .2s ease; }
.faq-item[open] summary .icon { transform: rotate(45deg); }
.faq-item .a { padding: 0 4px 22px; color: var(--ink-soft); font-size: .96rem; max-width: 640px; }

/* ---- CTA final ---- */
.cta-band {
  background: linear-gradient(135deg, var(--terracotta) 0%, var(--terracotta-dark) 100%);
  color: var(--white); text-align: center;
}
.cta-band h2 { color: #fff; font-size: clamp(1.7rem, 3.4vw, 2.5rem); }
.cta-band p { color: rgba(255,255,255,.9); max-width: 560px; margin: 0 auto 28px; }

/* ---- Carte / localisation ---- */
.map-wrap { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--border); position: relative; min-height: 380px; background: var(--cream); }
.map-consent { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 32px; gap: 14px; }
.map-consent p { max-width: 380px; color: var(--ink-soft); font-size: .92rem; margin: 0; }
.map-wrap iframe { width: 100%; height: 100%; min-height: 380px; border: 0; display: block; }

/* ---- Formulaires ---- */
.form-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 36px; box-shadow: var(--shadow-sm); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: .86rem; font-weight: 600; margin-bottom: 6px; color: var(--ink); }
.field .req { color: var(--terracotta); }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; border-radius: var(--radius-sm); border: 1.5px solid var(--border);
  font-family: var(--font-sans); font-size: .96rem; color: var(--ink); background: var(--cream-alt);
  transition: border-color .15s, background .15s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--terracotta); background: var(--white); }
.field textarea { resize: vertical; min-height: 120px; }
.field-check { display: flex; align-items: flex-start; gap: 10px; font-size: .85rem; color: var(--ink-soft); }
.field-check input { width: auto; margin-top: 3px; }
.form-note { font-size: .8rem; color: var(--ink-soft); margin-top: 14px; }
@media (max-width: 640px) { .form-row { grid-template-columns: 1fr; } .form-card { padding: 24px; } }

.contact-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 48px; align-items: start; }
.contact-info { background: var(--cream); border-radius: var(--radius-lg); padding: 32px; }
.contact-info h3 { font-size: 1.15rem; }
.contact-line { display: flex; gap: 12px; align-items: flex-start; padding: 12px 0; border-bottom: 1px solid var(--border); }
.contact-line:last-child { border-bottom: none; }
.contact-line svg { color: var(--terracotta); flex-shrink: 0; margin-top: 2px; }
.contact-line a, .contact-line span { font-size: .95rem; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

.alert { padding: 16px 20px; border-radius: var(--radius); margin-bottom: 24px; font-size: .92rem; }
.alert-success { background: #EAF1E6; color: var(--sage-dark); border: 1px solid #C9DABE; }
.alert-error { background: #FBEAE5; color: #8A3220; border: 1px solid #F0C6B8; }

/* ---- Pied de page ---- */
.site-footer { background: #241E19; color: rgba(247,240,227,.82); padding: 64px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 40px; }
.footer-grid h4 { color: #fff; font-family: var(--font-sans); font-size: .92rem; letter-spacing: .04em; text-transform: uppercase; margin-bottom: 16px; }
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-logo img { height: 52px; width: auto; }
.footer-logo .logo-text strong { color: #fff; }
.footer-logo .logo-text small { color: var(--gold); }
.footer-brand p { font-size: .88rem; max-width: 280px; color: rgba(247,240,227,.68); }
.footer-grid a { display: block; font-size: .9rem; padding: 6px 0; color: rgba(247,240,227,.78); transition: color .15s; }
.footer-grid a:hover { color: #fff; }
.footer-social { display: flex; gap: 12px; margin-top: 6px; }
.footer-social a { width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(247,240,227,.3); display: flex; align-items: center; justify-content: center; padding: 0; }
.footer-social a:hover { background: var(--terracotta); border-color: var(--terracotta); }
.footer-bottom { border-top: 1px solid rgba(247,240,227,.14); margin-top: 48px; padding-top: 24px; display: flex; flex-wrap: wrap; gap: 12px 24px; justify-content: space-between; font-size: .82rem; color: rgba(247,240,227,.55); }
.footer-bottom a { color: rgba(247,240,227,.55); }
.footer-bottom a:hover { color: #fff; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

/* ---- Bandeau cookies ---- */
.cookie-banner {
  position: fixed; left: 20px; right: 20px; bottom: 20px; max-width: 560px; margin: 0 auto;
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg);
  box-shadow: var(--shadow); padding: 24px 26px; z-index: 300; display: none;
}
.cookie-banner.show { display: block; }
.cookie-banner p { font-size: .88rem; color: var(--ink-soft); margin-bottom: 16px; }
.cookie-banner .actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* ---- Fil d'ariane ---- */
.breadcrumb { padding: 22px 0 0; font-size: .82rem; color: var(--ink-soft); }
.breadcrumb a { color: var(--ink-soft); }
.breadcrumb a:hover { color: var(--terracotta); }
.breadcrumb span[aria-current] { color: var(--ink); font-weight: 600; }

/* ---- Page interne : en-tête simple ---- */
.page-hero { background: var(--terracotta-dark); color: #fff; padding: 64px 0 48px; text-align: center; }
.page-hero h1 { color: #fff; font-size: clamp(2rem, 4vw, 2.8rem); }
.page-hero p { color: rgba(255,255,255,.85); max-width: 600px; margin: 10px auto 0; }

/* ---- Contenu légal ---- */
.legal-content { max-width: 760px; margin: 0 auto; }
.legal-content h2 { font-size: 1.3rem; margin-top: 40px; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content p, .legal-content li { color: var(--ink-soft); font-size: .96rem; }
.legal-content li { padding: 4px 0; }
.legal-content table { width: 100%; border-collapse: collapse; margin: 16px 0; }
.legal-content th, .legal-content td { text-align: left; padding: 10px 12px; border-bottom: 1px solid var(--border); font-size: .92rem; }

.skip-link {
  position: absolute; left: -999px; top: 0; background: var(--terracotta); color: #fff; padding: 12px 18px;
  border-radius: 0 0 8px 0; z-index: 999;
}
.skip-link:focus { left: 0; }

.bg-cream { background: var(--cream); }
.text-center { text-align: center; }
