/* =========================================================================
   LE COMPTOIR BRUT — Design System
   Implémentation de la spécification DA (Bebas Neue + Montserrat)
   Palette : Noir chaud · Crème/OSB · Vert bouteille
   ========================================================================= */

/* -------------------------------------------------------------------------
   1. TOKENS
   ------------------------------------------------------------------------- */
:root {
  /* Couleurs */
  --noir-profond: #1A1815;
  --noir-encre:   #0E0D0B;
  --creme:        #F3E3C3;
  --creme-clair:  #FAF3E4;
  --blanc-casse:  #FDFBF6;
  --osb-moyen:    #D9B98A;
  --osb-fonce:    #A9855A;
  --vert-bouteille: #483E08;
  --vert-profond: #342D06;
  --vert-sauge:   #6B6636;
  --gris-taupe:   #6B6357;
  --gris-ligne:   #C9BBA0;
  --erreur:       #9B3B2E;

  /* Espacements (base 4) */
  --space-1: 4px;   --space-2: 8px;   --space-3: 12px;  --space-4: 16px;
  --space-5: 24px;  --space-6: 32px;  --space-7: 48px;  --space-8: 64px;
  --space-9: 96px;  --space-10: 128px; --space-11: 160px;

  /* Structure */
  --container: 1280px;
  --measure: 680px;
  --gutter: clamp(16px, 4vw, 32px);
  --header-h: 88px;

  /* Typo */
  --f-display: 'Bebas Neue', 'Oswald', 'Impact', sans-serif;
  --f-body: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;

  /* Motion */
  --ease-in-soft: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.4, 0, 0.2, 1);
}

/* -------------------------------------------------------------------------
   2. RESET & BASE
   ------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--f-body);
  font-weight: 400;
  font-size: clamp(1rem, 0.95rem + 0.2vw, 1.0625rem);
  line-height: 1.75;
  color: var(--noir-profond);
  background: var(--creme);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, picture, svg { max-width: 100%; display: block; }
img { image-orientation: from-image; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; font-size: inherit; }
ul { list-style: none; padding: 0; }

/* Photos : filtre unifiant (clichés iPhone → famille visuelle) */
.ph { filter: saturate(0.92) contrast(1.04) brightness(0.98); }

/* Grain de film subtil, appliqué uniquement sur les photos (conteneurs média),
   pour homogénéiser les clichés et renforcer l'esprit brut/artisanal. */
.hero__media::before,
.split__media::before,
.pillar__media::before,
.gallery figure::before {
  content: ""; position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 140px 140px;
  opacity: 0.11; mix-blend-mode: overlay;
}
/* La galerie garde son voile de survol (::after) : on empile proprement */
.gallery figure::after { z-index: 3; }

/* -------------------------------------------------------------------------
   3. TYPOGRAPHIE
   ------------------------------------------------------------------------- */
h1, h2, h3 { font-family: var(--f-display); font-weight: 400; text-transform: uppercase; }

h1, .h1 {
  font-size: clamp(3.25rem, 1.5rem + 6vw, 5.5rem);
  letter-spacing: 0.05em; line-height: 0.92;
}
h2, .h2 {
  font-size: clamp(2.5rem, 1.6rem + 3.2vw, 3.5rem);
  letter-spacing: 0.05em; line-height: 1;
}
h3, .h3 {
  font-size: clamp(1.75rem, 1.3rem + 1.6vw, 2.25rem);
  letter-spacing: 0.045em; line-height: 1.05;
}
h4, .h4 {
  font-family: var(--f-body); font-weight: 600;
  font-size: clamp(1.25rem, 1.1rem + 0.6vw, 1.5rem);
  letter-spacing: 0.01em; line-height: 1.25;
}
h5 { font-family: var(--f-body); font-weight: 600; font-size: 1.25rem; letter-spacing: 0.02em; }

.eyebrow {
  font-family: var(--f-body); font-weight: 600; text-transform: uppercase;
  font-size: 0.8125rem; letter-spacing: 0.22em; line-height: 1.4;
  color: var(--osb-fonce);
  display: inline-flex; align-items: center; gap: var(--space-3);
}
.eyebrow::before {
  content: ""; width: 28px; height: 1px; background: currentColor; flex: 0 0 auto;
}
.eyebrow--center { justify-content: center; }
.eyebrow--sauge { color: var(--vert-sauge); }
.eyebrow--light { color: var(--osb-moyen); }

.lead {
  font-size: clamp(1.125rem, 1rem + 0.7vw, 1.25rem);
  line-height: 1.7; font-weight: 400;
}
.measure { max-width: var(--measure); }
p { max-width: 65ch; }

/* -------------------------------------------------------------------------
   4. LAYOUT
   ------------------------------------------------------------------------- */
.container {
  width: 100%; max-width: var(--container);
  margin-inline: auto; padding-inline: var(--gutter);
}
.container--narrow { max-width: 860px; }

.section { padding-block: clamp(64px, 6vw + 40px, 160px); }
.section--tight { padding-block: clamp(48px, 4vw + 24px, 96px); }
.section--creme-clair { background: var(--creme-clair); }
.section--dark { background: var(--noir-encre); color: var(--blanc-casse); }
.section--vert { background: var(--vert-bouteille); color: var(--blanc-casse); }
.section-head { margin-bottom: var(--space-7); }
.section-head .eyebrow { margin-bottom: var(--space-4); }
.section-head p { margin-top: var(--space-4); color: var(--gris-taupe); }
.section--dark .section-head p, .section--vert .section-head p { color: rgba(253,251,246,0.82); }

/* Filet signature (ADN logo) : double trait horizontal */
.rule-double {
  height: 5px; width: 64px; margin: var(--space-5) 0;
  border-top: 1px solid currentColor; border-bottom: 1px solid currentColor;
  opacity: 0.85;
}
.rule-double--full { width: 100%; }
.rule-double--center { margin-inline: auto; }

/* -------------------------------------------------------------------------
   5. BOUTONS
   ------------------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--space-3);
  font-family: var(--f-body); font-weight: 600; text-transform: uppercase;
  font-size: clamp(0.875rem, 0.85rem + 0.1vw, 0.9375rem); letter-spacing: 0.12em;
  padding: 18px 40px; border-radius: 2px; border: 1.5px solid transparent;
  transition: background .25s var(--ease-out), color .25s var(--ease-out),
              transform .25s var(--ease-out), box-shadow .25s var(--ease-out),
              border-color .25s var(--ease-out);
  text-align: center; line-height: 1;
}
.btn:focus-visible { outline: 2px solid var(--vert-sauge); outline-offset: 3px; }
.btn:active { transform: scale(0.98); }

.btn--primary { background: var(--vert-bouteille); color: var(--blanc-casse); }
.btn--primary:hover {
  background: var(--vert-profond); transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(72,62,8,0.25);
}
.btn--primary:active { transform: translateY(0) scale(0.98); background: var(--vert-profond); }

.btn--ghost { border-color: var(--noir-profond); color: var(--noir-profond); background: transparent; }
.btn--ghost:hover { background: var(--noir-profond); color: var(--creme); }
.btn--ghost.on-dark { border-color: var(--blanc-casse); color: var(--blanc-casse); }
.btn--ghost.on-dark:hover { background: var(--blanc-casse); color: var(--noir-profond); }

.btn--block { width: 100%; }
.btn--sm { padding: 13px 24px; }

.link-arrow {
  display: inline-flex; align-items: center; gap: var(--space-2);
  font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.875rem;
  color: var(--vert-bouteille); border-bottom: 1px solid currentColor; padding-bottom: 3px;
}
.link-arrow .arw { transition: transform .25s var(--ease-out); }
.link-arrow:hover .arw { transform: translateX(4px); }
.section--dark .link-arrow, .section--vert .link-arrow { color: var(--osb-moyen); }

/* -------------------------------------------------------------------------
   6. HEADER / NAV (injecté par main.js)
   ------------------------------------------------------------------------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100; height: var(--header-h);
  display: flex; align-items: center;
  transition: background .35s ease, box-shadow .35s ease, border-color .35s ease, height .35s ease;
  border-bottom: 1px solid transparent;
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: var(--space-5); }

.brand { display: flex; align-items: center; gap: var(--space-3); z-index: 2; }
.brand img { height: 64px; width: auto; transition: height .35s ease; }
/* Bascule logo clair (sur hero sombre) ↔ logo noir (header clair au scroll) */
.brand-logo { display: block; }
.brand-logo--dark { display: none; }
.site-header.solid .brand-logo--light { display: none; }
.site-header.solid .brand-logo--dark { display: block; }
.brand .brand-txt { font-family: var(--f-display); font-size: 1.5rem; letter-spacing: 0.06em; line-height: 1; color: var(--blanc-casse); transition: color .35s ease; }

.nav { display: flex; align-items: center; gap: var(--space-6); }
.nav a {
  position: relative; font-weight: 500; text-transform: uppercase;
  font-size: 0.9375rem; letter-spacing: 0.08em; color: var(--blanc-casse);
  padding: 6px 0; transition: color .35s ease;
}
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 0;
  background: var(--vert-sauge); transition: width .3s var(--ease-out);
}
.nav a:hover::after, .nav a[aria-current="page"]::after { width: 100%; }
.nav a[aria-current="page"]::after { background: var(--vert-bouteille); }

/* État scrollé / pages claires */
.site-header.solid {
  background: rgba(243,227,195,0.96); backdrop-filter: blur(8px);
  border-bottom-color: var(--gris-ligne); box-shadow: 0 4px 24px rgba(26,24,21,0.06);
}
.site-header.solid .brand .brand-txt,
.site-header.solid .nav a { color: var(--noir-profond); }
.site-header.solid .nav a[aria-current="page"]::after { background: var(--vert-bouteille); }
.site-header.solid .burger span { background: var(--noir-profond); }
.header-cta { flex: 0 0 auto; }
.header-cta .btn { padding: 12px 26px; }

/* Burger */
.burger { display: none; width: 30px; height: 22px; position: relative; z-index: 2; }
.burger span {
  position: absolute; left: 0; height: 2px; width: 100%; background: var(--blanc-casse);
  transition: transform .3s var(--ease-out), opacity .2s ease, background .35s ease;
}
.burger span:nth-child(1) { top: 0; }
.burger span:nth-child(2) { top: 10px; }
.burger span:nth-child(3) { top: 20px; }
body.menu-open .burger span:nth-child(1) { transform: translateY(10px) rotate(45deg); }
body.menu-open .burger span:nth-child(2) { opacity: 0; }
body.menu-open .burger span:nth-child(3) { transform: translateY(-10px) rotate(-45deg); }
body.menu-open .burger span { background: var(--noir-profond); }

/* Menu mobile plein écran */
.mobile-menu {
  position: fixed; inset: 0; z-index: 90; background: var(--creme);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: var(--space-5); padding: var(--space-8);
  opacity: 0; visibility: hidden; transform: translateY(-12px);
  transition: opacity .4s var(--ease-in-soft), transform .4s var(--ease-in-soft), visibility .4s;
}
body.menu-open .mobile-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.mobile-menu a {
  font-family: var(--f-display); font-size: clamp(2rem, 8vw, 2.75rem);
  letter-spacing: 0.04em; color: var(--noir-profond); text-transform: uppercase;
}
.mobile-menu a[aria-current="page"] { color: var(--vert-bouteille); }
.mobile-menu .btn { margin-top: var(--space-4); }

/* -------------------------------------------------------------------------
   7. BARRE D'ACTION MOBILE (Réserver / Appeler / Itinéraire)
   ------------------------------------------------------------------------- */
.mobile-bar {
  position: fixed; inset: auto 0 0 0; z-index: 80; display: none;
  grid-auto-flow: column; grid-auto-columns: 1fr;
  background: var(--noir-encre); box-shadow: 0 -4px 20px rgba(0,0,0,0.22);
  padding-bottom: env(safe-area-inset-bottom);
}
.mobile-bar a {
  display: flex; align-items: center; justify-content: center; gap: var(--space-2);
  min-height: 58px; color: var(--blanc-casse); font-weight: 600; text-transform: uppercase;
  font-size: 0.8125rem; letter-spacing: 0.08em; border-left: 1px solid rgba(253,251,246,0.14);
}
.mobile-bar a:first-child { border-left: none; }
.mobile-bar a.is-reserve { background: var(--vert-bouteille); }
.mobile-bar a svg { width: 18px; height: 18px; }

/* -------------------------------------------------------------------------
   8. HERO
   ------------------------------------------------------------------------- */
.hero {
  position: relative; min-height: 640px; height: 100vh;
  display: flex; align-items: flex-end; overflow: hidden;
}
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(90deg, rgba(14,13,11,0.62) 0%, rgba(14,13,11,0.28) 42%, rgba(14,13,11,0) 68%),
    linear-gradient(180deg, rgba(14,13,11,0.28) 0%, rgba(14,13,11,0.12) 38%, rgba(14,13,11,0.78) 100%);
}
.hero__inner { position: relative; z-index: 2; width: 100%; padding-bottom: clamp(88px, 10vh, 128px); padding-top: 140px; }
.hero .eyebrow, .hero h1, .hero__accroche { text-shadow: 0 2px 22px rgba(14,13,11,0.55), 0 1px 3px rgba(14,13,11,0.45); }
.hero .eyebrow { color: var(--creme); margin-bottom: var(--space-4); }
.hero h1 { color: var(--blanc-casse); }
.hero__accroche {
  margin-top: var(--space-5); max-width: 30ch; color: var(--blanc-casse);
  font-size: clamp(1.125rem, 1rem + 0.8vw, 1.5rem); font-weight: 400; line-height: 1.4;
}
.hero__cta { margin-top: var(--space-7); display: flex; flex-wrap: wrap; gap: var(--space-4); }

.hero__scroll {
  position: absolute; bottom: var(--space-5); right: var(--gutter);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: var(--space-2);
  color: var(--blanc-casse); opacity: 0.7; font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase;
  text-shadow: 0 1px 8px rgba(14,13,11,0.5);
}
/* Masqué quand la hauteur est trop faible (paysage laptop) ou sur mobile : évite tout chevauchement */
@media (max-height: 820px), (max-width: 1023px) { .hero__scroll { display: none; } }
.hero__scroll .bar { width: 1px; height: 40px; background: currentColor; animation: scrollpulse 2s var(--ease-in-soft) infinite; transform-origin: top; }
@keyframes scrollpulse { 0%,100% { transform: scaleY(0.4); opacity: .4; } 50% { transform: scaleY(1); opacity: 1; } }

/* Titre secondaire de page (hero court intérieur) */
.page-hero {
  position: relative; padding-top: calc(var(--header-h) + clamp(48px, 8vw, 112px));
  padding-bottom: clamp(40px, 5vw, 80px);
  background: var(--creme-clair); border-bottom: 1px solid var(--gris-ligne);
}
.page-hero .eyebrow { margin-bottom: var(--space-4); }
.page-hero p.lead { margin-top: var(--space-5); color: var(--gris-taupe); }

/* -------------------------------------------------------------------------
   9. SPLIT (image / texte)
   ------------------------------------------------------------------------- */
.split { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; gap: 0; }
.split__media { position: relative; min-height: 420px; overflow: hidden; }
.split__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.split__body { display: flex; flex-direction: column; justify-content: center; padding: clamp(40px, 6vw, 96px); }
.split--reverse .split__media { order: 2; }
.split--dark { background: var(--noir-encre); color: var(--blanc-casse); }
.split--dark .split__body p { color: rgba(253,251,246,0.82); }

/* -------------------------------------------------------------------------
   10. PILIERS (Terre / Mer / Vigne)
   ------------------------------------------------------------------------- */
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-6); }
.pillar {
  background: var(--creme-clair); border: 1px solid var(--gris-ligne); border-radius: 2px;
  overflow: hidden; transition: transform .3s var(--ease-out), box-shadow .3s var(--ease-out), border-color .3s var(--ease-out);
}
.pillar:hover { transform: translateY(-4px); border-color: var(--osb-fonce); box-shadow: 0 12px 32px rgba(26,24,21,0.08); }
.pillar__media { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.pillar__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease-in-soft); }
.pillar:hover .pillar__media img { transform: scale(1.05); }
.pillar__body { padding: var(--space-6); }
.pillar__body h3 { margin-bottom: var(--space-3); }
.pillar__body p { color: var(--gris-taupe); }

/* -------------------------------------------------------------------------
   11. GALERIE
   ------------------------------------------------------------------------- */
.gallery { columns: 3; column-gap: 16px; }
.gallery figure { break-inside: avoid; margin: 0 0 16px; overflow: hidden; border-radius: 2px; position: relative; cursor: zoom-in; }
.gallery img { width: 100%; height: auto; transition: transform .6s var(--ease-in-soft); }
.gallery figure::after {
  content: ""; position: absolute; inset: 0; background: rgba(14,13,11,0.15); opacity: 0; transition: opacity .4s ease;
}
.gallery figure:hover img { transform: scale(1.04); }
.gallery figure:hover::after { opacity: 1; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 200; background: rgba(14,13,11,0.92);
  display: flex; align-items: center; justify-content: center; padding: var(--space-5);
  opacity: 0; visibility: hidden; transition: opacity .3s ease, visibility .3s;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img { max-width: min(92vw, 1100px); max-height: 88vh; width: auto; object-fit: contain; border-radius: 2px; }
.lightbox__close, .lightbox__nav {
  position: absolute; color: var(--creme); background: rgba(0,0,0,0.25);
  width: 52px; height: 52px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; transition: background .2s ease;
}
.lightbox__close:hover, .lightbox__nav:hover { background: rgba(0,0,0,0.6); }
.lightbox__close { top: var(--space-5); right: var(--space-5); }
.lightbox__nav { top: 50%; transform: translateY(-50%); }
.lightbox__nav.prev { left: var(--space-4); }
.lightbox__nav.next { right: var(--space-4); }

/* -------------------------------------------------------------------------
   12. FORMULAIRES
   ------------------------------------------------------------------------- */
.form { max-width: 720px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-5); }
.field { margin-bottom: var(--space-5); }
.field label {
  display: block; font-weight: 600; text-transform: uppercase; font-size: 0.8125rem;
  letter-spacing: 0.08em; margin-bottom: var(--space-2); color: var(--noir-profond);
}
.field .req { color: var(--vert-bouteille); }
.field input, .field textarea, .field select {
  width: 100%; min-height: 48px; padding: 14px 16px; background: var(--blanc-casse);
  border: 1px solid var(--gris-ligne); border-radius: 2px; color: var(--noir-profond);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.field textarea { min-height: 140px; resize: vertical; line-height: 1.6; }
.field input::placeholder, .field textarea::placeholder { color: var(--gris-taupe); opacity: 0.9; }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--vert-bouteille); border-width: 1.5px;
  box-shadow: 0 0 0 3px rgba(72,62,8,0.12);
}
.field .hint { font-size: 0.8125rem; color: var(--gris-taupe); margin-top: var(--space-2); }
.field.invalid input, .field.invalid textarea, .field.invalid select { border-color: var(--erreur); }
.field .err-msg { display: none; color: var(--erreur); font-size: 0.8125rem; margin-top: var(--space-2); }
.field.invalid .err-msg { display: block; }

/* Champ fichier */
.file-field input[type="file"] { padding: 11px 16px; background: var(--creme-clair); cursor: pointer; }
.file-field input[type="file"]::file-selector-button {
  margin-right: var(--space-4); padding: 8px 16px; border: 1px solid var(--noir-profond);
  background: transparent; border-radius: 2px; font-weight: 600; text-transform: uppercase;
  font-size: 0.75rem; letter-spacing: 0.06em; cursor: pointer;
}

.form-success {
  display: none; padding: var(--space-6); background: var(--creme-clair);
  border: 1px solid var(--vert-sauge); border-left: 3px solid var(--vert-bouteille); border-radius: 2px;
}
.form-success.show { display: block; }
.form-success h4 { color: var(--vert-bouteille); margin-bottom: var(--space-2); }

/* -------------------------------------------------------------------------
   13. INFO / CONTACT
   ------------------------------------------------------------------------- */
.info-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-6) var(--space-8); }
.info-item h4 {
  font-family: var(--f-body); font-weight: 600; text-transform: uppercase; font-size: 0.8125rem;
  letter-spacing: 0.1em; color: var(--osb-fonce); margin-bottom: var(--space-2);
}
.info-item p, .info-item a { font-size: 1.0625rem; line-height: 1.6; }
.info-item a { border-bottom: 1px solid transparent; transition: border-color .2s ease; }
.info-item a:hover { border-bottom-color: currentColor; }

.map-embed { width: 100%; aspect-ratio: 16/10; border: 1px solid var(--gris-ligne); border-radius: 2px; overflow: hidden; }
.map-embed iframe { width: 100%; height: 100%; border: 0; display: block; filter: grayscale(0.15) saturate(0.9); }

/* Bloc réservation Zelty */
.reserve-widget {
  background: var(--creme-clair); border: 1px solid var(--gris-ligne); border-radius: 2px;
  padding: clamp(24px, 4vw, 48px); text-align: center;
}
.reserve-widget .placeholder {
  border: 1px dashed var(--osb-fonce); border-radius: 2px; padding: var(--space-8) var(--space-5);
  color: var(--gris-taupe); background: rgba(217,185,138,0.10);
}

/* -------------------------------------------------------------------------
   14. FAQ
   ------------------------------------------------------------------------- */
.faq { max-width: 820px; margin-inline: auto; }
.faq-item { border-bottom: 1px solid var(--gris-ligne); }
.faq-item:first-child { border-top: 1px solid var(--gris-ligne); }
.faq-q {
  width: 100%; text-align: left; display: flex; justify-content: space-between; align-items: center;
  gap: var(--space-4); padding: var(--space-5) 0; font-family: var(--f-body); font-weight: 600;
  font-size: 1.0625rem; color: var(--noir-profond);
}
.faq-q .ic { flex: 0 0 auto; width: 22px; height: 22px; position: relative; transition: transform .3s var(--ease-out); }
.faq-q .ic::before, .faq-q .ic::after { content: ""; position: absolute; background: var(--vert-bouteille); }
.faq-q .ic::before { top: 10px; left: 0; width: 22px; height: 2px; }
.faq-q .ic::after { top: 0; left: 10px; width: 2px; height: 22px; transition: transform .3s var(--ease-out); }
.faq-item[open] .faq-q .ic::after { transform: rotate(90deg); }
.faq-a { overflow: hidden; }
.faq-a p { padding-bottom: var(--space-5); color: var(--gris-taupe); max-width: none; }
details.faq-item > summary { list-style: none; }
details.faq-item > summary::-webkit-details-marker { display: none; }

/* -------------------------------------------------------------------------
   15. CTA BANDE
   ------------------------------------------------------------------------- */
.cta-band { text-align: center; }
.cta-band h2 { margin-bottom: var(--space-4); }
.cta-band p { margin: 0 auto var(--space-7); color: rgba(253,251,246,0.85); }
.cta-band .btn { margin-top: var(--space-2); }

/* Mot d'ambiance géant (signature BRUT) */
.big-word {
  font-family: var(--f-display); text-transform: uppercase; line-height: 0.82;
  font-size: clamp(5rem, 22vw, 16rem); letter-spacing: 0.02em; color: var(--noir-profond);
  opacity: 0.06; user-select: none; pointer-events: none; text-align: center;
}
.section--dark .big-word { color: var(--creme); opacity: 0.05; }

/* -------------------------------------------------------------------------
   16. FOOTER (injecté par main.js)
   ------------------------------------------------------------------------- */
.site-footer { background: var(--noir-encre); color: var(--creme); padding-top: var(--space-9); }
.site-footer .rule-double { color: var(--osb-moyen); }
.footer-top { border-top: 1px solid var(--osb-moyen); border-bottom: 1px solid rgba(217,185,138,0.25); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: var(--space-7); padding-block: var(--space-8); }
.footer-col h4 {
  font-family: var(--f-body); font-weight: 600; text-transform: uppercase; font-size: 0.8125rem;
  letter-spacing: 0.14em; color: var(--osb-moyen); margin-bottom: var(--space-4);
}
.footer-col .brand-txt { font-family: var(--f-display); font-size: 2rem; letter-spacing: 0.06em; color: var(--blanc-casse); }
.footer-col p, .footer-col a { color: rgba(253,251,246,0.82); font-size: 0.9375rem; line-height: 1.7; }
.footer-col a { border-bottom: 1px solid transparent; transition: color .2s ease, border-color .2s ease; }
.footer-col a:hover { color: var(--osb-moyen); border-bottom-color: currentColor; }
.footer-col ul li { margin-bottom: var(--space-2); }
.footer-social { display: flex; gap: var(--space-4); margin-top: var(--space-3); }
.footer-social a { display: inline-flex; align-items: center; gap: var(--space-2); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: var(--space-3);
  padding-block: var(--space-5); font-size: 0.8125rem; color: var(--gris-taupe);
}
.footer-bottom a { color: var(--gris-taupe); }
.footer-bottom a:hover { color: var(--osb-moyen); }

/* -------------------------------------------------------------------------
   17. REVEAL (IntersectionObserver)
   ------------------------------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease-in-soft), transform .7s var(--ease-in-soft); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__scroll .bar { animation: none; }
}

/* -------------------------------------------------------------------------
   18. UTILS
   ------------------------------------------------------------------------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; } .mb-0 { margin-bottom: 0; }
.stack > * + * { margin-top: var(--space-4); }
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 300; background: var(--vert-bouteille);
  color: #fff; padding: 12px 20px; border-radius: 0 0 2px 0;
}
.skip-link:focus { left: 0; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* -------------------------------------------------------------------------
   19. RESPONSIVE
   ------------------------------------------------------------------------- */
@media (max-width: 1023px) {
  :root { --header-h: 64px; }
  .brand img { height: 50px; }
  .nav, .header-cta { display: none; }
  .burger { display: block; }
  .mobile-bar { display: grid; }
  body { padding-bottom: 58px; } /* place pour la barre d'action */
  .split { grid-template-columns: 1fr; }
  .split--reverse .split__media { order: 0; }
  .split__media { min-height: 300px; aspect-ratio: 4/3; }
  .pillars { grid-template-columns: 1fr; }
  .gallery { columns: 2; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--space-6); }
}
@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .info-grid { grid-template-columns: 1fr; }
  .gallery { columns: 1; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero { height: 88vh; }
  .footer-bottom { justify-content: center; text-align: center; }
}

/* Impression : évite les surprises */
@media print { .site-header, .mobile-bar, .mobile-menu, .hero__scroll { display: none !important; } }
