/* Les Services Duquet — palette bois chaud / anthracite / blanc cassé / vert forêt */
:root {
  --ink: #161311;
  --ink-soft: #241f1b;
  --cream: #f6efe4;
  --cream-dim: #efe6d6;
  --wood: #c58a3e;
  --wood-deep: #9a6524;
  --forest: #2f5d3e;
  --forest-deep: #234931;
  --font-head: 'Fraunces', serif;
  --font-body: 'Archivo', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: auto; } /* Lenis owns scroll */
body {
  font-family: var(--font-body);
  background: var(--ink);
  color: var(--cream);
  overflow-x: hidden;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }

/* Grain overlay */
.grain {
  position: fixed; inset: -50%;
  width: 200%; height: 200%;
  pointer-events: none; z-index: 9998; opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='128' height='128'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='128' height='128' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  animation: grain 8s steps(10) infinite;
}
@keyframes grain {
  0%, 100% { transform: translate(0,0); }
  20% { transform: translate(-3%, 2%); }
  40% { transform: translate(2%, -3%); }
  60% { transform: translate(-2%, -2%); }
  80% { transform: translate(3%, 3%); }
}


/* Nav — transparente sur le héros, barre foncée au scroll (logo doré toujours sur fond foncé) */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 32px; z-index: 100;
  color: #ffffff;
  background: transparent;
  transition: background 0.35s ease, padding 0.35s ease, box-shadow 0.35s ease;
}
.nav.is-scrolled {
  background: #12100edd;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  padding: 12px 32px;
  box-shadow: 0 1px 0 #f6efe41a, 0 12px 30px #00000040;
}
.nav__logo {
  display: inline-flex; align-items: center;
  text-decoration: none;
}
.nav__logo img {
  display: block;
  height: 58px; width: auto;
  transition: height 0.35s ease;
  /* léger halo pour décoller le doré du fond foncé */
  filter: drop-shadow(0 1px 4px #00000066);
}
.nav.is-scrolled .nav__logo img { height: 46px; }
@media (max-width: 600px) {
  .nav__logo img { height: 46px; }
  .nav.is-scrolled .nav__logo img { height: 40px; }
}
.nav nav { display: flex; gap: 28px; align-items: center; }
.nav nav a {
  font-size: 14px; font-weight: 500;
  text-decoration: none; opacity: 0.9;
  color: #ffffff;
  transition: opacity 0.2s;
}
.nav nav a:hover { opacity: 1; }
.nav__cta {
  border: 1px solid #ffffffb3;
  padding: 10px 20px; border-radius: 999px;
  opacity: 1;
}
.nav__cta:hover { border-color: #ffffff; background: #ffffff1a; }
@media (max-width: 800px) {
  .nav { padding: 16px 20px; }
  .nav.is-scrolled { padding: 10px 20px; }
  .nav nav a:not(.nav__cta) { display: none; }
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-body); font-weight: 700; font-size: 16px;
  padding: 16px 32px; border-radius: 999px;
  text-decoration: none; border: none; cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  will-change: transform;
}
.btn--primary { background: var(--wood); color: var(--ink); }
.btn--primary:hover { background: var(--cream); }
.btn--ghost { background: transparent; color: var(--cream); border: 1px solid #f6efe45c; }
.btn--ghost:hover { border-color: var(--cream); }
.btn--full { width: 100%; }

/* Hero */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center;
  overflow: hidden;
  background: radial-gradient(120% 90% at 70% 20%, #2c2118 0%, var(--ink) 60%);
}
.hero__canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  display: block;
}
.hero__video {
  display: none;
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.55;
}
@media (max-width: 700px) {
  .hero__video { display: block; }
}
@media (prefers-reduced-motion: reduce) {
  .hero__video { display: none; }
}
.hero__content {
  position: relative; z-index: 2;
  max-width: 1280px; margin: 0 auto;
  padding: 140px 24px 80px;
  width: 100%;
}
.hero__eyebrow {
  font-size: 14px; font-weight: 500;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--wood); margin-bottom: 24px;
}
.hero__title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(56px, 11vw, 152px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
}
.hero__word { display: block; overflow: hidden; }
.hero__word > span { display: inline-block; transform: translateY(110%); }
.hero__word--accent { color: var(--wood); }
.hero__sub {
  max-width: 560px; font-size: 19px;
  color: #f6efe4cc; margin-bottom: 40px;
}
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero__scroll {
  position: absolute; bottom: 28px; left: 50%;
  transform: translateX(-50%);
  font-size: 12px; letter-spacing: 2px; text-transform: uppercase;
  color: #f6efe480;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.hero__scroll span {
  width: 1px; height: 44px;
  background: linear-gradient(var(--wood), transparent);
  animation: scrollhint 2s ease-in-out infinite;
}
@keyframes scrollhint {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* Trust — bandeau de crédibilité (faits réels, pas de compteurs) */
.trust {
  background: var(--cream);
  color: var(--ink);
  padding: 40px 0;
  border-bottom: 1px solid #16131114;
}
.trust__row {
  display: flex; flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px 40px;
}
.trust__item {
  display: flex; align-items: center; gap: 12px;
  font-size: 15px; color: #161311b3;
  margin: 0;
}
.trust__item strong { color: var(--ink); font-weight: 700; }
.trust__item svg {
  width: 26px; height: 26px; flex-shrink: 0;
  color: var(--forest);
}
.trust__item:first-child svg { color: var(--wood-deep); }
@media (max-width: 800px) {
  .trust { padding: 32px 0; }
  .trust__row { flex-direction: column; gap: 18px; }
}

/* Sections communes */
.eyebrow {
  font-size: 13px; font-weight: 600;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--wood); margin-bottom: 18px;
}
.eyebrow--light { color: var(--wood); }
.section-title {
  font-family: var(--font-head);
  font-size: clamp(34px, 4.6vw, 60px);
  font-weight: 700; line-height: 1.08;
  letter-spacing: -0.015em;
  margin-bottom: 28px;
}
.section-title--light { color: var(--cream); }
.reveal-line { will-change: transform, opacity; }

/* Services — rangées éditoriales */
.services {
  background: var(--cream); color: var(--ink);
  padding: 130px 0 140px;
}
.services .section-title { color: var(--ink); }
.services__intro { max-width: 620px; margin: 20px 0 0; font-size: 17px; color: #16131199; }
.srv-list { margin-top: 56px; border-top: 2px solid var(--ink); }
.srv { border-bottom: 2px solid var(--ink); position: relative; }
.srv__head {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  background: none; border: none; cursor: pointer;
  padding: 34px 8px;
  font-family: inherit; color: inherit;
  text-align: left;
}
.srv__name {
  font-family: var(--font-head);
  font-size: clamp(38px, 6vw, 76px);
  font-weight: 700; line-height: 1;
  transition: transform 0.35s ease, color 0.35s ease;
}
.srv__head:hover .srv__name,
.srv__head[aria-expanded="true"] .srv__name { color: var(--wood-deep); transform: translateX(18px); }
.srv__meta {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 14px; font-weight: 600;
  color: #16131199;
  letter-spacing: 1px; text-transform: uppercase;
  flex-shrink: 0;
}
.srv__meta svg { transition: transform 0.35s ease; }
.srv__head[aria-expanded="true"] .srv__meta svg { transform: rotate(45deg); }
.srv__body { overflow: hidden; }
.srv__inner { padding: 0 8px 40px; max-width: 720px; }
.srv__inner > p { color: #161311b3; margin-bottom: 18px; font-size: 17px; }
.srv__inner ul {
  list-style: none;
  columns: 2; column-gap: 40px;
}
.srv__inner li {
  font-size: 16px; color: #161311cc;
  padding: 8px 0 8px 22px; position: relative;
  break-inside: avoid;
}
.srv__inner li::before {
  content: ''; position: absolute; left: 0; top: 15px;
  width: 8px; height: 8px; border-radius: 2px;
  background: var(--forest);
}
.srv__quote {
  display: inline-flex; align-items: center;
  margin-top: 28px;
  font-family: var(--font-body); font-size: 15px; font-weight: 700;
  color: var(--ink); background: var(--wood);
  border: none; border-radius: 999px;
  padding: 13px 26px; cursor: pointer;
  transition: background 0.25s ease;
}
.srv__quote:hover { background: var(--wood-deep); color: var(--cream); }
.srv__quote:focus-visible { outline: 3px solid #9a652466; outline-offset: 2px; }
.srv__peek {
  display: none;
  position: absolute; right: 8%; top: 50%;
  width: 280px; height: 200px;
  object-fit: cover; border-radius: 10px;
  pointer-events: none;
  transform: translateY(-50%) rotate(3deg) scale(0);
  opacity: 0;
  z-index: 4;
  box-shadow: 0 20px 50px #16131140;
}
@media (hover: hover) and (pointer: fine) { .srv__peek { display: block; } }
@media (max-width: 900px) {
  .services { padding: 88px 0; }
  .srv__inner ul { columns: 1; }
}

/* Galerie — horizontal scroll pinnée */
.gallery { background: var(--ink); padding-top: 120px; }
.gallery__head { margin-bottom: 40px; }
.gallery__note { color: #f6efe480; font-size: 14px; }
.gallery__filters { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.gfilter {
  font-family: var(--font-body); font-size: 14px; font-weight: 600;
  color: var(--cream);
  background: transparent;
  border: 1px solid var(--wood);
  border-radius: 999px;
  padding: 9px 20px;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease;
}
.gfilter:hover { background: #c58a3e26; }
.gfilter.is-active { background: var(--wood); color: var(--ink); }
.gfilter:focus-visible { outline: 3px solid #c58a3e66; outline-offset: 2px; }
.gallery__item[hidden] { display: none; }
.gallery__pin { overflow: hidden; }
.gallery__track {
  display: flex; gap: 28px;
  padding: 0 24px 120px;
  width: max-content;
}
.gallery__item {
  width: 42vw; max-width: 640px;
  flex-shrink: 0;
  border-radius: 18px; overflow: hidden;
  position: relative;
  cursor: pointer;
  transform-style: preserve-3d;
  will-change: transform;
}
.gallery__item:nth-child(odd) { width: 34vw; max-width: 520px; transform: translateY(34px); }
.gallery__item:nth-child(3n) { transform: translateY(-22px) rotate(-1.2deg); }
.gallery__item:nth-child(4n) { transform: translateY(18px) rotate(1deg); }
.gallery__item img {
  width: 100%; height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery__item:hover img { transform: scale(1.05); }
.gallery__item figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 18px 20px;
  font-size: 14px; font-weight: 600;
  background: linear-gradient(transparent, #161311d9);
}
@media (max-width: 700px) {
  .gallery { padding-top: 72px; }
  .gallery__pin { overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
  .gallery__pin::-webkit-scrollbar { display: none; }
  .gallery__item { width: 85vw; }
  .gallery__track { padding-bottom: 64px; }
}

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 2000;
  background: #161311f2;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 32px;
}
.lightbox[hidden] { display: none; }
.lightbox__img {
  max-width: min(1200px, 92vw); max-height: 78vh;
  border-radius: 12px; object-fit: contain;
  touch-action: pan-y;
}
.lightbox__caption { margin-top: 16px; color: #f6efe4b3; font-size: 15px; }
.lightbox__counter { margin-top: 6px; color: #f6efe480; font-size: 13px; letter-spacing: 1px; }
.lightbox__close {
  position: absolute; top: 20px; right: 28px;
  font-size: 44px; line-height: 1;
  background: none; border: none;
  color: var(--cream); cursor: pointer;
}
.lightbox__nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 5;
  width: 52px; height: 52px; padding: 13px;
  display: flex; align-items: center; justify-content: center;
  border: none; border-radius: 50%;
  background: var(--cream); color: var(--wood-deep);
  box-shadow: 0 6px 18px #16131140;
  cursor: pointer;
}
.lightbox__nav svg { width: 100%; height: 100%; }
.lightbox__nav--prev { left: 28px; }
.lightbox__nav--next { right: 28px; }
@media (max-width: 700px) {
  .lightbox__nav--prev { left: 12px; }
  .lightbox__nav--next { right: 12px; }
}

/* Avant / Après — comparateur draggable */
.ba-section { background: var(--cream); color: var(--ink); padding: 130px 0 140px; }
.ba-section .section-title { color: var(--ink); }
.ba-grid {
  display: grid; grid-template-columns: 1fr; gap: 28px;
  max-width: 880px;
  margin-top: 56px;
}
.ba {
  position: relative; overflow: hidden;
  border-radius: 12px; aspect-ratio: 4 / 3;
  box-shadow: 0 20px 50px #16131126;
  touch-action: pan-y;
  isolation: isolate;
}
.ba__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  user-select: none; pointer-events: none;
}
.ba__img--top { clip-path: inset(0 calc(100% - var(--pos)) 0 0); }
.ba__tag {
  position: absolute; top: 14px; z-index: 3;
  font-size: 12px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 6px 12px; border-radius: 999px;
  background: #161311cc; color: var(--cream);
  backdrop-filter: blur(2px);
  pointer-events: none;
}
.ba__tag--before { left: 14px; }
.ba__tag--after { right: 14px; }
.ba__handle {
  position: absolute; top: 0; bottom: 0;
  left: var(--pos); z-index: 4;
  width: 2px; margin-left: -1px;
  background: var(--cream);
  box-shadow: 0 0 0 1px #16131133;
  pointer-events: none;
  display: flex; align-items: center; justify-content: center;
}
.ba__handle svg {
  position: absolute;
  width: 46px; height: 46px; padding: 12px;
  border-radius: 50%;
  background: var(--cream); color: var(--wood-deep);
  box-shadow: 0 6px 18px #16131140;
}
.ba__range {
  position: absolute; inset: 0; z-index: 5;
  width: 100%; height: 100%; margin: 0;
  -webkit-appearance: none; appearance: none;
  background: transparent; cursor: ew-resize;
  pointer-events: none; /* le drag passe par les pointer events de .ba ; range = clavier */
}
.ba__range:focus-visible { outline: 3px solid var(--wood); outline-offset: 3px; }
.ba__range::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 46px; height: 100%; background: transparent; cursor: ew-resize;
}
.ba__range::-moz-range-thumb {
  width: 46px; height: 100%; border: none; background: transparent; cursor: ew-resize;
}
.ba__range::-moz-range-track { background: transparent; }
.ba__cap {
  position: absolute; bottom: 14px; left: 14px; z-index: 3;
  font-family: var(--font-head); font-size: 18px; font-weight: 700;
  color: var(--cream); text-shadow: 0 2px 8px #161311b0;
  pointer-events: none;
}
.ba-note { color: #16131199; font-size: 14px; margin-top: 28px; }
@media (max-width: 700px) {
  .ba-section { padding: 88px 0; }
  .ba-grid { grid-template-columns: 1fr; }
}

/* Processus */
.process { background: var(--ink); padding: 130px 0; }
.process .eyebrow { color: var(--wood); }
.process__list {
  list-style: none;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 40px; margin-top: 56px;
  counter-reset: none;
}
.process__step {
  position: relative;
  padding-top: 8px;
}
.process__step:not(:last-child)::after {
  content: '';
  position: absolute; top: 34px; left: calc(100% + 8px);
  width: calc(40px - 16px);
  border-top: 2px dashed #f6efe440;
}
.process__num {
  display: block;
  font-family: var(--font-head);
  font-size: clamp(48px, 6vw, 84px);
  font-weight: 700; line-height: 1;
  color: var(--wood);
  margin-bottom: 18px;
}
.process__step h3 {
  font-family: var(--font-head);
  font-size: 24px; font-weight: 700;
  color: var(--cream);
  margin-bottom: 10px;
}
.process__step p { color: #f6efe4b3; font-size: 16px; }
@media (max-width: 800px) {
  .process { padding: 80px 0; }
  .process__list { grid-template-columns: 1fr; gap: 44px; }
  .process__step::after { display: none; }
}

/* Honeypot anti-spam : hors écran, jamais visible ni focusable au clavier normal */
.form__hp {
  position: absolute; left: -9999px;
  width: 1px; height: 1px; overflow: hidden;
}

/* Témoignages */
.tmoin { background: var(--ink); padding: 120px 0; }
.tmoin .section-title { color: var(--cream); }
.tmoin__grid {
  display: grid; grid-template-columns: 1.6fr 1fr; gap: 24px;
  margin-top: 48px;
}
.tmoin__card {
  background: #201b16;
  border: 1px solid #f6efe41a;
  border-radius: 18px;
  padding: 36px 34px;
  display: flex; flex-direction: column; gap: 18px;
}
.tmoin__card--rating { justify-content: center; text-align: center; }
.tmoin__stars { color: var(--wood); font-size: 20px; letter-spacing: 3px; }
.tmoin__card blockquote {
  font-family: var(--font-head);
  font-size: clamp(24px, 2.8vw, 34px);
  font-weight: 600; font-style: italic;
  line-height: 1.3; color: var(--cream);
  margin: 0;
}
.tmoin__rating {
  font-family: var(--font-head);
  font-size: 52px; font-weight: 700; color: var(--cream);
}
.tmoin__card figcaption { display: flex; flex-direction: column; gap: 4px; margin-top: auto; }
.tmoin__name { font-weight: 700; font-size: 15px; color: var(--cream); }
.tmoin__meta { font-size: 13px; color: #f6efe480; }
.tmoin__note { margin-top: 28px; font-size: 14px; color: #f6efe499; }
.tmoin__note a { color: var(--wood); text-decoration: underline; }
@media (max-width: 800px) {
  .tmoin { padding: 72px 0; }
  .tmoin__grid { grid-template-columns: 1fr; }
}

/* Citation */
.quote {
  background: var(--ink) url('assets/img/quote-bg.webp') center / cover no-repeat;
  padding: 140px 0;
  position: relative;
  overflow: hidden;
}
.quote::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(100deg, #161311f0 30%, #161311b8 70%, #16131185 100%);
  pointer-events: none;
}
.quote .container { position: relative; z-index: 2; }
.quote::before {
  content: '«';
  position: absolute; top: -60px; left: 4%;
  font-family: var(--font-head);
  font-size: 420px; line-height: 1;
  color: #c58a3e14;
  pointer-events: none;
}
.quote__text {
  font-family: var(--font-head);
  font-style: italic;
  font-size: clamp(28px, 4.2vw, 52px);
  font-weight: 600; line-height: 1.25;
  max-width: 980px;
  color: var(--cream);
}
.quote__sig {
  font-family: 'Caveat', cursive;
  font-size: 34px;
  color: var(--wood);
  margin-top: 28px;
  transform: rotate(-2deg);
  transform-origin: left;
}
@media (max-width: 700px) { .quote { padding: 88px 0; } }

/* À propos */
.about { background: var(--ink); padding: 120px 0; }
.about__grid {
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: 64px; align-items: center;
}
.about__text p:not(.eyebrow) { color: #f6efe4c4; font-size: 17px; margin-bottom: 18px; }
.about__media { border-radius: 20px; overflow: hidden; }
.about__media img { aspect-ratio: 4 / 5; object-fit: cover; }
@media (max-width: 900px) {
  .about { padding: 72px 0; }
  .about__grid { grid-template-columns: 1fr; gap: 36px; }
}

/* Matériaux signature — bande éditoriale */
.materiaux { background: var(--cream); color: var(--ink); padding: 110px 0; }
.materiaux__grid {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 56px;
  align-items: start;
}
.materiaux .section-title { color: var(--ink); max-width: 460px; }
.materiaux__list { list-style: none; grid-column: 1; border-top: 2px solid var(--ink); margin-top: 8px; }
.materiaux__list li { padding: 28px 0; border-bottom: 2px solid var(--ink); }
.materiaux__name {
  font-family: var(--font-head); font-size: 26px; font-weight: 700;
  display: block; margin-bottom: 8px;
}
.materiaux__list p { max-width: 480px; color: #161311b3; font-size: 16px; }
.materiaux__media { grid-column: 2; grid-row: 1 / 3; border-radius: 20px; overflow: hidden; }
.materiaux__media img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
@media (max-width: 900px) {
  .materiaux { padding: 72px 0; }
  .materiaux__grid { grid-template-columns: 1fr; gap: 32px; }
  .materiaux__media { grid-column: 1; grid-row: auto; order: -1; }
}

/* Zones */
.zones { background: var(--cream); color: var(--ink); padding: 110px 0; }
.zones .section-title { color: var(--ink); max-width: 800px; }
.zones__map {
  display: block;
  width: 100%;
  max-width: 560px;
  height: auto;
  margin: 40px auto 8px;
}
.zones__mrc-shape { stroke: var(--cream); stroke-width: 1; stroke-linejoin: round; }
.zones__mrc-shape--off { fill: #1613110f; }
.zones__mrc-shape--on { fill: #c58a3e4d; }
.zones__pin circle { fill: var(--wood); stroke: var(--cream); stroke-width: 2; }
.zones__pin text {
  font-family: var(--font-body); font-size: 13px; font-weight: 700;
  fill: var(--ink);
}
.zones__pin--home circle { fill: var(--forest); }
.zones__pin--home text { fill: var(--forest-deep); }
.zones__pin text.zones__pin-tag { font-family: var(--font-head); font-style: italic; font-weight: 600; font-size: 13px; fill: var(--wood-deep); }
.zones__caption { max-width: 560px; margin: 0 auto 28px; text-align: center; font-size: 14px; color: #161311a6; font-style: italic; }
.zones__mrc { font-size: 15px; margin-bottom: 20px; }
.zones__note { color: #161311a6; font-size: 15px; }
@media (max-width: 700px) {
  .zones { padding: 64px 0; }
  .zones__pin text { font-size: 12px; }
}

/* FAQ — accordéon compact (même pattern que .srv) */
.faq { background: var(--cream); color: var(--ink); padding: 110px 0; }
.faq .section-title { color: var(--ink); }
.faq-list { margin-top: 48px; border-top: 2px solid var(--ink); max-width: 860px; }
.faq__item { border-bottom: 2px solid var(--ink); }
.faq__head {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  background: none; border: none; cursor: pointer;
  padding: 24px 4px;
  font-family: inherit; color: inherit;
  text-align: left;
}
.faq__q {
  font-family: var(--font-head);
  font-size: 24px; font-weight: 700;
  line-height: 1.2;
  transition: color 0.3s ease;
}
.faq__head:hover .faq__q,
.faq__head[aria-expanded="true"] .faq__q { color: var(--wood-deep); }
.faq__head svg { flex-shrink: 0; transition: transform 0.35s ease; }
.faq__head[aria-expanded="true"] svg { transform: rotate(45deg); }
.faq__body { overflow: hidden; }
.faq__inner { padding: 0 4px 26px; max-width: 720px; }
.faq__inner p { color: #161311b3; font-size: 16px; }
@media (max-width: 700px) {
  .faq { padding: 72px 0; }
  .faq__q { font-size: 20px; }
}

/* Contact */
.contact {
  background: linear-gradient(165deg, var(--forest) 0%, var(--forest-deep) 100%);
  padding: 120px 0;
}
.contact__grid {
  display: grid; grid-template-columns: 1fr 1.25fr; gap: 64px;
  align-items: start;
}
.contact__text { color: #f6efe4cc; font-size: 17px; margin-bottom: 28px; }
.contact__phone {
  font-family: var(--font-head);
  font-size: 34px; font-weight: 700;
  color: var(--wood); text-decoration: none;
  display: inline-block; margin-bottom: 12px;
}
.contact__addr { color: #f6efe499; font-size: 14px; }
.form {
  background: var(--cream); color: var(--ink);
  border-radius: 20px; padding: 40px 36px;
  display: flex; flex-direction: column; gap: 20px;
  box-shadow: 0 24px 80px #00000040;
}
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form__field { display: flex; flex-direction: column; gap: 7px; }
.form__field label { font-size: 14px; font-weight: 600; }
.form__field input,
.form__field select,
.form__field textarea {
  font-family: inherit; font-size: 16px;
  color: var(--ink); background: #fffdf9;
  border: 1px solid #16131126; border-radius: 10px;
  padding: 13px 14px; width: 100%;
}
.form__field textarea { resize: vertical; }
.form__field input:focus-visible,
.form__field select:focus-visible,
.form__field textarea:focus-visible {
  outline: 3px solid #c58a3e66;
  border-color: var(--wood);
}
.form__feedback { font-size: 14px; font-weight: 600; color: #a33b2e; }
.form__feedback.is-ok { color: var(--forest); }
@media (max-width: 900px) {
  .contact { padding: 72px 0; }
  .contact__grid { grid-template-columns: 1fr; gap: 40px; }
  .form__row { grid-template-columns: 1fr; }
}

/* Footer */
.footer { background: #100e0c; padding: 72px 0 32px; font-size: 14px; color: #f6efe4a6; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; }
.footer__brand {
  font-family: var(--font-head); font-size: 20px; font-weight: 700;
  color: var(--cream); margin-bottom: 10px;
}
.footer a { color: var(--wood); text-decoration: none; }
.footer__nav p { margin-bottom: 10px; }
.footer__nav a:hover { text-decoration: underline; }
.footer__bottom {
  margin-top: 48px; padding-top: 24px;
  border-top: 1px solid #f6efe41f;
}
@media (max-width: 800px) { .footer__grid { grid-template-columns: 1fr; gap: 24px; } }

/* Bouton d'appel flottant mobile */
.call-fab {
  display: none;
  position: fixed; bottom: 20px; right: 20px;
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--forest);
  color: var(--cream);
  align-items: center; justify-content: center;
  box-shadow: 0 6px 18px #00000073;
  z-index: 1500;
}
@media (max-width: 700px) {
  .call-fab { display: flex; }
}

/* Reduced motion : fallback statique élégant */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .hero__word > span { transform: none; }
  .grain { display: none; }
  .gallery__pin { overflow-x: auto; }
}
