/* ═══════════════════════════════════════
   FONTS
═══════════════════════════════════════ */
@font-face {
  font-family: 'SelfieNeueRound';
  src: url('../assets/fonts/selfie-neue-round-regular.woff2') format('woff2'),
       url('../assets/fonts/selfie-neue-round-regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Alias';
  src: url('../assets/fonts/alias-regular.woff2') format('woff2'),
       url('../assets/fonts/alias-regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* ═══════════════════════════════════════
   VARIABLES
═══════════════════════════════════════ */
:root {
  --terracotta:  #B56941;
  --vert-foret:  #36564A;
  --fond-creme:  #FDFBF7;
  --vert-menthe: #8BB5A0;
  --terracotta-light: rgba(181, 105, 65, 0.10);
  --vert-light:       rgba(54, 86, 74, 0.08);

  --font-title:  'SelfieNeueRound', 'Nunito', sans-serif;
  --font-body:   'Barlow', sans-serif;
  --font-accent: 'Alias', 'Dancing Script', cursive;

  --radius:    16px;
  --radius-lg: 20px;
  --shadow:    0 4px 20px rgba(0, 0, 0, 0.07);
  --shadow-md: 0 8px 40px rgba(0, 0, 0, 0.11);

  --container: 1200px;
  --nav-h: 72px;
}

/* ═══════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }

body {
  font-family: var(--font-body);
  background: var(--fond-creme);
  color: #2e2e2e;
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color .2s; }
ul, ol { list-style: none; }

/* ═══════════════════════════════════════
   TYPOGRAPHY
═══════════════════════════════════════ */
h1, h2, h3 {
  font-family: var(--font-title);
  line-height: 1.15;
  color: var(--vert-foret);
}

h1 { font-size: clamp(2.6rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.3rem); font-weight: 400; }

em {
  font-family: var(--font-accent);
  font-style: normal;
  color: var(--terracotta);
}

/* ═══════════════════════════════════════
   UTILS
═══════════════════════════════════════ */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

.tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terracotta);
  background: var(--terracotta-light);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.tag--light {
  color: var(--vert-menthe);
  background: rgba(139, 181, 160, 0.15);
}

/* ═══════════════════════════════════════
   BUTTONS
═══════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 12px;
  padding: 13px 30px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background .2s, color .2s, border-color .2s, transform .15s;
  white-space: nowrap;
  text-align: center;
}
.btn:hover { transform: translateY(-0.5px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--terracotta);
  color: #fff;
  border-color: var(--terracotta);
}
.btn--primary:hover { background: #a05a35; border-color: #a05a35; }

.btn--outline {
  background: transparent;
  color: var(--vert-foret);
  border-color: var(--vert-foret);
}
.btn--outline:hover { background: var(--vert-foret); color: #fff; }

.btn--light {
  background: rgba(255,255,255,0.15);
  color: #fff;
  border-color: rgba(255,255,255,0.6);
}
.btn--light:hover { background: #fff; color: var(--vert-foret); border-color: #fff; }

.btn--white {
  background: #fff;
  color: var(--terracotta);
  border-color: #fff;
}
.btn--white:hover { background: transparent; color: #fff; border-color: #fff; }

.btn--lg { padding: 17px 40px; font-size: 1rem; }
.btn--sm { padding: 9px 22px; font-size: 0.875rem; }
.btn--full { width: 100%; }

/* ═══════════════════════════════════════
   NAVBAR
═══════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--fond-creme);
  transition: box-shadow .3s;
}

.navbar.scrolled { box-shadow: 0 2px 24px rgba(0,0,0,0.08); }

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

.navbar__logo img { height: 68px; width: auto; }

.navbar__nav ul { display: flex; gap: 36px; }

.navbar__nav a {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--vert-foret);
  position: relative;
  padding-bottom: 6px;
}

.navbar__nav a::after {
  content: '';
  position: absolute;
  bottom: -45px;
  left: 50%;
  width: 80px;
  height: 80px;
  background: url('../assets/icons/icon-ocre-trait-2.png') center / contain no-repeat;
  transform: translateX(-50%) rotate(180deg);
  opacity: 0;
  transition: opacity .22s ease;
}

.navbar__nav a:hover { color: var(--terracotta); }

.navbar__nav a:hover::after {
  opacity: 1;
}

.navbar__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.navbar__burger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--vert-foret);
  border-radius: 2px;
  transition: all .3s;
}
.navbar__burger[aria-expanded="true"] span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.navbar__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.navbar__burger[aria-expanded="true"] span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

.navbar__mobile {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 28px 32px;
  background: var(--fond-creme);
  border-top: 1px solid rgba(54,86,74,0.1);
}
.navbar__mobile.open { display: flex; }
.navbar__mobile ul { display: flex; flex-direction: column; align-items: center; gap: 20px; }
.navbar__mobile a { font-size: 1.05rem; font-weight: 700; color: var(--vert-foret); }
.navbar__mobile .btn--primary { background: var(--terracotta); color: #fff; border-color: var(--terracotta); font-weight: 700; }

/* ═══════════════════════════════════════
   HERO
═══════════════════════════════════════ */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: calc(var(--nav-h) + 48px);
  padding-bottom: 48px;
  background: var(--fond-creme);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../assets/images/background/bg-fond-beige.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.5;
  pointer-events: none;
}

.hero__content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px 56px 48px 64px;
  z-index: 1;
}

.hero__eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--vert-menthe);
  margin-bottom: 14px;
}

.hero__title { margin-bottom: 16px; }
.hero__title em { font-size: inherit; }

.hero__desc {
  font-size: 1.12rem;
  color: #666;
  max-width: 460px;
  margin-bottom: 28px;
  line-height: 1.8;
}

.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero__image {
  position: relative;
  height: 420px;
  align-self: center;
  margin: 24px 40px 24px 0;
}
.hero__image img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center center;
  border-radius: var(--radius-lg);
}

.hero__location {
  position: absolute;
  bottom: 0;
  left: 24px;
  transform: translateY(50%);
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border-radius: 14px;
  padding: 12px 20px 12px 14px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.14);
  color: var(--vert-foret);
  text-decoration: none;
  transition: box-shadow .2s, transform .2s;
}
.hero__location:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,0.18);
  transform: translateY(calc(50% - 2px));
}
.hero__location svg {
  flex-shrink: 0;
  width: 20px; height: 26px;
  color: var(--terracotta);
}
.hero__location__text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.hero__location__street {
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--vert-foret);
}
.hero__location__city {
  font-size: 0.8rem;
  font-weight: 500;
  color: #999;
}

.hero__deco {
  position: absolute;
  bottom: -20px;
  left: 30px;
  width: 280px;
  opacity: 0.25;
  pointer-events: none;
  z-index: 0;
}

/* ═══════════════════════════════════════
   BANDEAU VALEURS
═══════════════════════════════════════ */
.bandeau-valeurs {
  background: var(--vert-foret);
  padding: 22px 0;
}

.bandeau-valeurs ul {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

.bandeau-valeurs li {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  padding: 6px 28px;
  position: relative;
}

.bandeau-valeurs li:not(:last-child)::after {
  content: '·';
  position: absolute;
  right: -2px;
  top: 50%; transform: translateY(-50%);
  color: var(--vert-menthe);
  font-size: 1.4rem;
  line-height: 1;
}

/* ═══════════════════════════════════════
   SECTION CLICK & COLLECT
═══════════════════════════════════════ */
.section-cc {
  padding: 80px 0;
  background: var(--fond-creme);
}

.section-cc__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

.section-cc__header h2 { margin-bottom: 16px; }

.section-cc__intro {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.8;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  list-style: none;
  margin-bottom: 56px;
}

.steps__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow);
}

.steps__num {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--terracotta);
  color: #fff;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
}

.steps__item strong {
  display: block;
  color: var(--vert-foret);
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.steps__item p { color: #777; font-size: 0.9rem; line-height: 1.7; }

.section-cc__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.section-cc__horaires {
  font-size: 0.88rem;
  color: #999;
  letter-spacing: 0.04em;
}

/* Widget CC */
.widget-cc {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.widget-cc__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 28px;
  background: var(--vert-foret);
}
.widget-cc__header strong { color: #fff; font-size: 1rem; }
.widget-cc__horaire {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--vert-menthe);
  background: rgba(139,181,160,0.2);
  padding: 3px 10px;
  border-radius: 100px;
}

.widget-cc__cats {
  display: flex;
  gap: 8px;
  padding: 20px 28px 0;
  flex-wrap: wrap;
}

.cat-pill {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 6px 18px;
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all .2s;
  background: #f3f0eb;
  color: #888;
}
.cat-pill:hover,
.cat-pill--active {
  background: var(--terracotta);
  color: #fff;
}

.widget-cc__body { padding: 0 28px 28px; }

.widget-cc__preview {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: #eeebe5;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 20px;
  position: relative;
}

.widget-cc__preview::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 64px;
  background: linear-gradient(to bottom, transparent, #fff);
  pointer-events: none;
  border-radius: 0 0 12px 12px;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 15px 20px;
  background: #fff;
}

.menu-item--blur { opacity: 0.4; }

.menu-item__info strong {
  display: block;
  color: var(--vert-foret);
  font-size: 0.92rem;
  margin-bottom: 2px;
}
.menu-item__info p { font-size: 0.8rem; color: #999; line-height: 1.4; }

.menu-item__price {
  flex-shrink: 0;
  font-weight: 700;
  color: var(--terracotta);
  font-size: 0.92rem;
}

/* ────────────────────────────────────────────────────────────── */

/* ── Icônes déco dispersées (style DA) ─────────────────────── */
.sdeco {
  position: absolute;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

/* Sections qui reçoivent des icônes de fond */
.section-concept,
.section-histoire,
.section-infos {
  position: relative;
  overflow: hidden;
}

/* Les conteneurs internes passent au-dessus des sdeco */
.section-concept .container,
.section-histoire .container,
.section-infos .container {
  position: relative;
  z-index: 1;
}

/* Traits décoratifs près des titres */
.deco-traits {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 18px;
}
.deco-traits img { width: 36px; height: auto; opacity: 0.45; }
.deco-traits--center { justify-content: center; }
.deco-trait--flip { transform: scaleX(-1); }
/* ────────────────────────────────────────────────────────────── */

.widget-cc__cta p {
  font-size: 0.92rem;
  color: #777;
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.6;
}

/* ═══════════════════════════════════════
   NOTRE CONCEPT
═══════════════════════════════════════ */
.section-concept {
  padding: 80px 0;
  background: var(--fond-creme);
}

.section-concept__header {
  max-width: 600px;
  margin-bottom: 56px;
}

.section-concept__header h2 { margin-bottom: 16px; }

.concept-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.concept-card {
  display: flex;
  gap: 24px;
  align-items: center;
  background: #fff;
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
  transition: transform .25s, box-shadow .25s;
}
.concept-card:hover { transform: translateX(4px); box-shadow: var(--shadow-md); }

.concept-card__img {
  flex-shrink: 0;
  width: 116px;
  height: 116px;
  border-radius: 12px;
  overflow: hidden;
}
.concept-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.section-concept__header p {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.8;
}

.concept-card__text h3 {
  font-size: 1.75rem;
  color: var(--vert-foret);
  margin-bottom: 6px;
}
.concept-card__text p {
  font-size: 0.9rem;
  color: #888;
  line-height: 1.65;
}

/* ═══════════════════════════════════════
   SECTION HISTOIRE
═══════════════════════════════════════ */
.section-histoire {
  padding: 80px 0;
  background: #F8F0E5;
  position: relative;
  overflow: hidden;
}

.section-histoire .container { position: relative; }

.section-histoire__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.section-histoire__text h2 {
  margin-bottom: 32px;
}

blockquote {
  border-left: 4px solid var(--terracotta);
  padding-left: 28px;
}
blockquote p {
  font-size: 1.08rem;
  color: #666;
  line-height: 1.9;
  margin-bottom: 16px;
}
blockquote footer {
  font-size: 0.9rem;
  color: var(--terracotta);
  font-weight: 600;
}

.section-histoire__visuel { position: relative; }
.section-histoire__visuel > img:first-child,
.section-histoire__visuel > picture:first-child img {
  width: 100%; height: 500px;
  object-fit: cover;
  object-position: center center;
  border-radius: var(--radius-lg);
}
.histoire__deco {
  position: absolute;
  bottom: -48px; right: -48px;
  width: 200px;
  opacity: 0.55;
  pointer-events: none;
}

/* ═══════════════════════════════════════
   GALERIE
═══════════════════════════════════════ */
.section-galerie { padding: 0 0 0; }

.galerie-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 300px 300px;
  gap: 6px;
}
.galerie-grid__item { overflow: hidden; }
.galerie-grid__item--large { grid-row: 1 / 3; }
.galerie-grid__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.galerie-grid__item:hover img { transform: scale(1.04); }

/* ═══════════════════════════════════════
   SECTION ENTREPRISES & ASSOCIATIONS
═══════════════════════════════════════ */
.section-pros {
  padding: 80px 0;
  background: var(--vert-foret);
  position: relative;
  overflow: hidden;
}

.section-pros::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../assets/images/background/bg-fond-beige.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.04;
  pointer-events: none;
}

.section-pros .container { position: relative; }

.section-pros__inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.section-pros__header h2 {
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.1;
}
.section-pros__header h2 em {
  color: var(--vert-menthe);
  font-size: inherit;
}
.section-pros__header p {
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
  line-height: 1.75;
}
.section-pros__header strong { color: #fff; }

.pros-pills {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
}

.pros-pill {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.pros-pill__icon {
  width: 96px; height: 96px;
  border-radius: 50%;
  background: rgba(255,255,255,0.10);
  border: 2px solid rgba(255,255,255,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  transition: background .2s;
}
.pros-pill:hover .pros-pill__icon {
  background: rgba(255,255,255,0.18);
}
.pros-pill__icon img {
  width: 100%; height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}

.pros-pill span {
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.pros-note {
  color: rgba(255,255,255,0.55);
  font-size: 0.92rem;
  line-height: 1.7;
  max-width: 440px;
}

/* ═══════════════════════════════════════
   SECTION INFOS PRATIQUES
═══════════════════════════════════════ */
.section-infos {
  padding: 80px 0;
  background: var(--fond-creme);
}

.section-infos__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.section-infos__details h2 { margin-bottom: 40px; }

.infos-list { display: flex; flex-direction: column; gap: 28px; margin-bottom: 36px; }

.infos-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.infos-item__icon {
  flex-shrink: 0;
  width: 36px; height: 36px;
  background: var(--terracotta-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
}
.infos-item__icon img { width: 100%; height: 100%; object-fit: contain; }
.infos-item__icon svg { width: 100%; height: 100%; color: var(--terracotta); }

.infos-item strong { display: block; color: var(--vert-foret); font-size: 0.92rem; margin-bottom: 4px; }
.infos-item p { color: #777; font-size: 0.9rem; line-height: 1.65; }
.infos-item a { color: var(--terracotta); font-weight: 600; }
.infos-item a:hover { color: #a05a35; }
.infos-note { font-size: 0.78rem !important; color: #bbb !important; margin-top: 3px; }

.infos-facade img { width: 100%; height: 200px; object-fit: cover; object-position: center 30%; }

.section-infos__map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 480px;
}
.section-infos__map iframe { width: 100%; height: 100%; border: none; }

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
.footer {
  background: var(--vert-foret);
  padding: 56px 0 28px;
}

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 28px;
}

.footer__logo {
  margin-bottom: 16px;
  height: 68px;
  width: auto;
}
.footer__brand p { color: rgba(255,255,255,0.5); font-size: 0.88rem; line-height: 1.8; }

.footer__nav ul { display: flex; flex-direction: column; gap: 14px; }
.footer__nav a { color: rgba(255,255,255,0.6); font-size: 0.88rem; }
.footer__nav a:hover { color: #fff; }

.footer__contact p,
.footer__contact a {
  display: block;
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem;
  line-height: 1.9;
}
.footer__contact a:hover { color: var(--vert-menthe); }

.footer__bottom { text-align: center; }
.footer__bottom p,
.footer__bottom a { color: rgba(255,255,255,0.3); font-size: 0.78rem; }
.footer__bottom a:hover { color: rgba(255,255,255,0.6); }

/* ═══════════════════════════════════════
   FOOTER LEGAL
═══════════════════════════════════════ */
.footer__legal-btn {
  background: none;
  border: none;
  color: rgba(255,255,255,0.5);
  font-family: var(--font-body);
  font-size: 0.8rem;
  cursor: pointer;
  padding: 0;
  transition: color .2s;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.footer__legal-btn:hover { color: #fff; }

/* ═══════════════════════════════════════
   MODALES
═══════════════════════════════════════ */
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.modal[hidden] { display: none; }

.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(2px);
  cursor: pointer;
}

.modal__panel {
  position: relative;
  background: var(--fond-creme);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  width: 100%;
  max-width: 640px;
  max-height: 85vh;
  overflow-y: auto;
  padding: 48px 48px 40px;
  scroll-behavior: smooth;
}

.modal__close {
  position: absolute;
  top: 20px; right: 20px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--vert-foret);
  padding: 6px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
}
.modal__close:hover { background: rgba(54,86,74,0.08); }

.modal__content .tag { margin-bottom: 12px; }

.modal__content h2 {
  font-size: 1.8rem;
  color: var(--vert-foret);
  margin-bottom: 32px;
}

.modal__content h3 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin: 28px 0 8px;
  font-family: var(--font-body);
}

.modal__content h3:first-of-type { margin-top: 0; }

.modal__content p {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.75;
  margin-bottom: 8px;
}

.modal__content ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 8px;
}

.modal__content ul li {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.7;
  padding-left: 16px;
  position: relative;
}

.modal__content ul li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--terracotta);
  font-weight: 700;
}

.modal__content a {
  color: var(--terracotta);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.modal__content a:hover { color: #a05a35; }

.modal__date {
  margin-top: 24px !important;
  font-size: 0.78rem !important;
  color: #aaa !important;
  font-style: italic;
}

@media (max-width: 768px) {
  .modal__panel { padding: 36px 24px 32px; }
  .modal__content h2 { font-size: 1.5rem; }
}

/* ═══════════════════════════════════════
   MOBILE STICKY
═══════════════════════════════════════ */
.mobile-sticky {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 99;
  background: var(--terracotta);
  padding: 12px 20px;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.18);
  transition: opacity .3s, transform .3s;
}
.mobile-sticky.hidden { opacity: 0; transform: translateY(100%); pointer-events: none; }

.mobile-sticky__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: 480px;
  margin: 0 auto;
}
.mobile-sticky__call {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 10px 16px;
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: 12px;
  flex-shrink: 0;
}
.mobile-sticky__call:hover { border-color: #fff; }

/* ═══════════════════════════════════════
   RESPONSIVE — TABLET (≤ 1024px)
═══════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero__content {
    padding: 44px 40px 40px;
    max-width: 100%;
  }
  .hero__image {
    height: 320px;
    align-self: auto;
    border-radius: 0;
    margin: 0;
  }
  .hero__deco { display: none; }

  .steps { grid-template-columns: 1fr; gap: 16px; }

  .section-histoire__inner { grid-template-columns: 1fr; gap: 48px; }
  .section-histoire__visuel { order: -1; }
  .section-histoire__visuel > img:first-child,
  .section-histoire__visuel > picture:first-child img { height: 380px; }
  .histoire__deco { display: none; }

  .section-infos__inner { grid-template-columns: 1fr; gap: 48px; }
  .section-infos__map { height: 360px; }

  .footer__inner { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

/* ═══════════════════════════════════════
   RESPONSIVE — MOBILE (≤ 768px)
═══════════════════════════════════════ */
@media (max-width: 768px) {
  :root { --nav-h: 64px; }

  h2 { font-size: 2.2rem; }

  /* Icônes déco : masquées sur mobile pour éviter tout débordement */
  .sdeco { display: none; }
  .deco-traits { margin-bottom: 12px; }

  .navbar__nav,
  .navbar__cta { display: none; }
  .navbar__burger { display: flex; }
  .navbar__inner { padding: 0 20px; }
  .navbar__logo img { height: 48px; }

  .hero__content { padding: 0 20px 40px; }
  .hero__image { height: 320px; padding: 0 20px; }
  .hero__image img { border-radius: var(--radius); }

  /* Boutons hero : pleine largeur pour éviter l'overflow sur 375px */
  .hero__actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .hero__actions .btn {
    width: 100%;
    justify-content: center;
  }

  /* btn--lg moins large sur mobile */
  .btn--lg { padding: 14px 24px; font-size: 0.95rem; }

  .container { padding: 0 20px; }

  /* Bandeau : aligner le padding sur le container */
  .bandeau-valeurs ul { padding: 0 20px; }

  .section-cc,
  .section-concept,
  .section-histoire,
  .section-pros,
  .section-infos,
  .section-faq { padding: 56px 0; }

  /* min-width: 0 sur les enfants de grilles pour éviter l'overflow */
  .section-histoire__text,
  .section-histoire__visuel,
  .section-infos__details,
  .section-infos__map,
  .footer__nav,
  .footer__contact { min-width: 0; }

  .section-cc__header { margin-bottom: 40px; }
  .section-cc__cta .btn { width: 100%; max-width: 320px; }
  .cc-deco--3, .cc-deco--4 { display: none; }

  .galerie-grid {
    grid-template-columns: 1fr;
    grid-template-rows: 260px 220px 220px;
  }
  .galerie-grid__item--large { grid-row: auto; }

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

  .pros-pills { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .pros-pill { align-items: center; }
  .pros-pill__icon { width: 80px; height: 80px; padding: 16px; }

  .footer__inner { grid-template-columns: 1fr; gap: 32px; }

  .mobile-sticky { display: block; }
  body { padding-bottom: 60px; }
}

/* ═══════════════════════════════════════
   RESPONSIVE — SMALL (≤ 480px)
═══════════════════════════════════════ */
@media (max-width: 480px) {
  h1 { font-size: 2.8rem; }
  h2 { font-size: 2rem; }
  h3 { font-size: 1.1rem; }

  .hero__image { height: 260px; }

  .concept-card__img { width: 72px; height: 72px; }

  .pros-pills { gap: 20px; }
  .pros-pill__icon { width: 88px; height: 88px; }

  .bandeau-valeurs li { padding: 6px 16px; font-size: 0.75rem; }
}

/* ═══════════════════════════════════════
   FAQ
═══════════════════════════════════════ */
.section-faq {
  background: var(--fond-creme);
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 640px;
}

.faq-image {
  position: relative;
  padding: 32px 0 32px 32px;
  display: flex;
  align-items: stretch;
}

.faq-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.faq-content {
  padding: 72px 64px 72px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.section-faq__header {
  text-align: left;
  margin-bottom: 40px;
}

.section-faq__header p { color: #777; margin-top: 8px; }

.faq-list {
  max-width: 100%;
  margin: 0;
}

.faq-item {
  border-bottom: 1px solid rgba(54, 86, 74, .15);
}

.faq-item:first-child {
  border-top: 1px solid rgba(54, 86, 74, .15);
}

.faq-item__q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 4px;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  color: var(--vert-foret);
  cursor: pointer;
  list-style: none;
  gap: 16px;
  transition: color .2s;
}

.faq-item__q::-webkit-details-marker { display: none; }
.faq-item__q::marker { display: none; }

.faq-item__q::after {
  content: '+';
  font-family: var(--font-sans);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--terracotta);
  flex-shrink: 0;
  line-height: 1;
  transition: transform .25s ease;
}

.faq-item[open] > .faq-item__q::after {
  transform: rotate(45deg);
}

.faq-item__a {
  padding: 4px 4px 24px;
  color: #555;
  line-height: 1.75;
}

.faq-item__a a {
  color: var(--terracotta);
  text-decoration: underline;
  text-underline-offset: 2px;
}

@media (max-width: 768px) {
  .section-faq { grid-template-columns: 1fr; min-height: auto; }
  .faq-image { height: 260px; padding: 0 24px; }
  .faq-image img { border-radius: var(--radius); }
  .faq-content { padding: 48px 24px; }
  .section-faq__header { text-align: left; }
  .faq-item__q { font-size: 0.95rem; }
}
