/* ===== Reset & base ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
svg { display: block; }

:root {
  --bg: #FFFFFF;
  --bg-soft: #F3F8F4;
  --ink: #16241C;
  --text-soft: #5C6B62;
  --green: #1B7A5A;
  --green-dark: #125940;
  --green-light: #E4F3EC;
  --coral: #FF6F52;
  --coral-dark: #E6552E;
  --coral-light: #FFE4DA;
  --border: #E3ECE6;

  --font-display: 'Fredoka', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

html { background: var(--bg); }
body {
  font-family: var(--font-body);
  background: transparent;
  color: var(--ink);
  line-height: 1.6;
  font-size: 1.05rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

.wrap { max-width: 1120px; margin: 0 auto; padding: 0 1.5rem; }
section[id] { scroll-margin-top: 90px; }
main { display: block; overflow-x: hidden; }

/* ===== Ambient background ===== */
.bg-ambient { position: fixed; inset: 0; z-index: -1; background: var(--bg); overflow: hidden; }
.bg-blob { position: absolute; filter: blur(70px); opacity: 0.55; }
.bg-blob--1 {
  width: 42vw; height: 42vw; max-width: 560px; max-height: 560px;
  background: var(--green-light); border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  top: -12%; left: -10%;
}
.bg-blob--2 {
  width: 30vw; height: 30vw; max-width: 420px; max-height: 420px;
  background: var(--coral-light); border-radius: 40% 60% 70% 30% / 50% 60% 40% 50%;
  top: 4%; right: -8%;
}
.bg-blob--3 {
  width: 36vw; height: 36vw; max-width: 480px; max-height: 480px;
  background: var(--green-light); border-radius: 50% 50% 30% 70% / 60% 40% 60% 40%;
  bottom: -14%; right: 6%;
}
.bg-blob--4 {
  width: 24vw; height: 24vw; max-width: 340px; max-height: 340px;
  background: var(--coral-light); border-radius: 60% 40% 60% 40% / 40% 60% 40% 60%;
  bottom: 3%; left: 4%;
}

h1, h2, h3 { font-family: var(--font-display); font-weight: 600; color: var(--ink); }
h1 { font-size: clamp(2.4rem, 5.5vw, 3.8rem); line-height: 1.15; }
h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); line-height: 1.2; margin-bottom: 1rem; }
h3 { font-size: 1.15rem; margin-bottom: 0.4rem; }

.eyebrow {
  display: block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0.7rem;
}
.eyebrow--pill {
  display: inline-block;
  background: var(--green-light);
  color: var(--green-dark);
  padding: 0.45rem 1.1rem;
  border-radius: 999px;
  font-size: 0.8rem;
  letter-spacing: 0.02em;
  text-transform: none;
  margin-bottom: 1.3rem;
}

/* ===== Focus & motion ===== */
:focus-visible { outline: 3px solid var(--coral); outline-offset: 3px; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
  transition-delay: calc(var(--i, 0) * 80ms);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

.reveal-left {
  opacity: 0;
  transform: translateX(-48px);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
  transition-delay: calc(var(--i, 0) * 80ms);
}
.reveal-left.is-visible { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0;
  transform: translateX(48px);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
  transition-delay: calc(var(--i, 0) * 80ms);
}
.reveal-right.is-visible { opacity: 1; transform: translateX(0); }

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s ease;
}
.site-header.is-scrolled { box-shadow: 0 8px 24px -16px rgba(22, 36, 28, 0.25); }
.header__inner { display: flex; align-items: center; justify-content: space-between; padding: 1rem 0; position: relative; }
.logo { display: flex; align-items: center; gap: 0.6rem; font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; }
.logo__mark { width: 34px; height: 34px; flex-shrink: 0; }
.nav { display: flex; align-items: center; gap: 2rem; }
.nav a { font-family: var(--font-body); font-weight: 600; font-size: 0.95rem; }
.nav a:not(.nav__cta) { position: relative; padding-bottom: 3px; }
.nav a:not(.nav__cta)::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -3px; height: 2px;
  background: var(--coral); transform: scaleX(0); transform-origin: left;
  transition: transform 0.25s var(--ease);
}
.nav a:not(.nav__cta):hover { color: var(--green); }
.nav a:not(.nav__cta):hover::after { transform: scaleX(1); }
.nav__cta {
  background: var(--coral); color: #fff; padding: 0.6rem 1.3rem; border-radius: 999px;
  font-weight: 700; transition: background 0.2s ease, transform 0.2s var(--ease);
}
.nav__cta:hover { background: var(--coral-dark); transform: translateY(-2px); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 0.5rem; }
.nav-toggle span { width: 24px; height: 2px; background: var(--ink); transition: transform 0.3s ease, opacity 0.2s ease; }
.nav-toggle.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-active span:nth-child(2) { opacity: 0; }
.nav-toggle.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 780px) {
  .nav-toggle { display: flex; }
  .nav {
    position: absolute; top: 100%; left: 0; right: 0;
    background: #fff; border-bottom: 1px solid var(--border);
    border-radius: 0 0 20px 20px;
    flex-direction: column; align-items: flex-start; gap: 0;
    max-height: 0; overflow: hidden; transition: max-height 0.3s ease;
    box-shadow: 0 16px 32px -16px rgba(22,36,28,0.2);
  }
  .nav.is-open { max-height: 340px; }
  .nav a { width: 100%; padding: 1rem 1.5rem; border-bottom: 1px solid var(--border); }
  .nav a:not(.nav__cta)::after { display: none; }
  .nav__cta { border-radius: 0; background: transparent; color: var(--coral); }
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-body); font-weight: 700; font-size: 0.95rem;
  padding: 0.9rem 1.8rem; border-radius: 999px; border: 2px solid transparent;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.btn--primary { background: var(--coral); color: #fff; box-shadow: 0 10px 24px -10px rgba(255,111,82,0.6); }
.btn--primary:hover { background: var(--coral-dark); transform: translateY(-2px); box-shadow: 0 14px 28px -10px rgba(230,85,46,0.6); }
.btn--ghost { background: #fff; color: var(--green); border-color: var(--green); }
.btn--ghost:hover { background: var(--green); color: #fff; transform: translateY(-2px); }
.btn--block { width: 100%; }
.btn:active { transform: translateY(0); }

.badge {
  display: inline-block; background: var(--green-light); color: var(--green-dark);
  font-size: 0.75rem; font-weight: 700; padding: 0.4rem 0.95rem; border-radius: 999px;
}

/* ===== Card ===== */
.card {
  background: #fff; border-radius: 22px; border: 1px solid var(--border);
  overflow: hidden; box-shadow: 0 4px 16px -8px rgba(22,36,28,0.08);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.card:not(.card--placeholder):hover { transform: translateY(-6px); box-shadow: 0 24px 40px -16px rgba(22,36,28,0.18); }
.card__media { height: 160px; background: linear-gradient(135deg, var(--green-light), var(--coral-light)); }
.card__img { width: 100%; height: 180px; object-fit: cover; }
.card__body { padding: 1.3rem 1.4rem 1.5rem; }
.card__title { font-family: var(--font-display); font-weight: 600; font-size: 1.15rem; margin-bottom: 0.3rem; }
.card__meta { font-size: 0.85rem; color: var(--text-soft); margin-bottom: 0.7rem; }
.card__desc { font-size: 0.85rem; color: var(--text-soft); margin-bottom: 0.8rem; line-height: 1.5; }
.card__note { font-size: 0.75rem; color: var(--text-soft); margin-top: 0.7rem; }
.card--placeholder .card__media {
  background: repeating-linear-gradient(45deg, var(--border), var(--border) 10px, #fff 10px, #fff 20px);
}
.card__media--icon {
  display: flex; align-items: center; justify-content: center;
  background: var(--bg-soft); position: relative;
}
.card__media-photo { width: 100%; height: 100%; object-fit: contain; padding: 0.75rem; box-sizing: border-box; }
.card__media-fallback { display: none; align-items: center; justify-content: center; position: absolute; inset: 0; }
.card__media-fallback svg { width: 92px; height: 92px; }

/* ===== Variant select (produits) ===== */
.variant-select {
  width: 100%; font-family: var(--font-body); font-size: 0.9rem; padding: 0.65rem 0.8rem;
  border: 2px solid var(--border); border-radius: 12px; background: #fff; color: var(--ink);
  margin-bottom: 0.7rem; cursor: pointer;
}
.variant-select:focus { border-color: var(--green); outline: none; }

/* ===== Panier flottant ===== */
.cart-fab {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 60;
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--coral); color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 28px -10px rgba(230,85,46,0.55);
  transition: transform 0.2s var(--ease), background 0.2s ease;
}
.cart-fab:hover { background: var(--coral-dark); transform: translateY(-2px); }
.cart-fab__badge {
  position: absolute; top: -4px; right: -4px;
  background: var(--green); color: #fff; font-size: 0.7rem; font-weight: 700;
  width: 20px; height: 20px; border-radius: 50%;
  display: none; align-items: center; justify-content: center;
  border: 2px solid #fff;
}

.cart-panel { position: fixed; inset: 0; z-index: 70; pointer-events: none; }
.cart-panel__overlay {
  position: absolute; inset: 0; background: rgba(15,22,17,0.4);
  opacity: 0; transition: opacity 0.25s ease;
}
.cart-panel__content {
  position: absolute; top: 0; right: 0; bottom: 0; width: min(400px, 100%);
  background: #fff; display: flex; flex-direction: column;
  transform: translateX(100%); transition: transform 0.3s var(--ease);
  box-shadow: -20px 0 40px -20px rgba(22,36,28,0.3);
}
.cart-panel.is-open { pointer-events: auto; }
.cart-panel.is-open .cart-panel__overlay { opacity: 1; }
.cart-panel.is-open .cart-panel__content { transform: translateX(0); }

.cart-panel__header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.2rem 1.4rem; border-bottom: 1px solid var(--border);
}
.cart-panel__title { font-family: var(--font-display); font-weight: 600; font-size: 1.15rem; }
.cart-panel__close { font-size: 1.6rem; line-height: 1; color: var(--text-soft); padding: 0.2rem 0.5rem; }
.cart-panel__close:hover { color: var(--ink); }

.cart-panel__items { flex: 1; overflow-y: auto; padding: 1rem 1.4rem; }
.cart__empty { color: var(--text-soft); font-size: 0.9rem; text-align: center; margin-top: 2rem; }
.cart__item {
  display: grid; grid-template-columns: 1fr auto auto auto; align-items: center; gap: 0.6rem;
  padding: 0.9rem 0; border-bottom: 1px solid var(--border);
}
.cart__item-name { font-weight: 600; font-size: 0.9rem; }
.cart__item-variant { font-size: 0.8rem; color: var(--text-soft); }
.cart__item-qty { display: flex; align-items: center; gap: 0.5rem; font-size: 0.85rem; }
.cart__item-qty button {
  width: 22px; height: 22px; border-radius: 50%; background: var(--bg-soft); color: var(--ink);
  font-weight: 700; display: flex; align-items: center; justify-content: center;
}
.cart__item-price { font-size: 0.85rem; font-weight: 700; white-space: nowrap; }
.cart__item-remove { color: var(--text-soft); font-size: 1.2rem; }
.cart__item-remove:hover { color: var(--coral); }

.cart-panel__footer { padding: 1.2rem 1.4rem; border-top: 1px solid var(--border); }
.cart-panel__total { display: flex; justify-content: space-between; font-weight: 700; margin-bottom: 1rem; font-size: 1.1rem; }
.cart-panel__note { font-size: 0.75rem; color: var(--text-soft); margin-top: 0.6rem; text-align: center; }

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: min(90vh, 640px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background-image: url('assets/hero-bg.avif');
  background-size: cover;
  background-position: center 55%;
  background-color: var(--green-dark);
}
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(15,22,17,0.85) 0%, rgba(15,22,17,0.55) 40%, rgba(15,22,17,0.18) 68%, rgba(15,22,17,0.05) 100%);
}
.hero__inner {
  position: relative; z-index: 1;
  padding-top: clamp(3rem, 8vw, 5rem); padding-bottom: clamp(3rem, 8vw, 5rem);
  display: grid; grid-template-columns: 1.3fr 0.7fr; gap: clamp(2rem, 5vw, 3rem); align-items: center;
}
.hero__text { max-width: 640px; }
.hero h1 { color: #fff; }
.hero__lead { max-width: 46ch; margin: 1.2rem 0 2rem; color: rgba(255,255,255,0.88); font-size: 1.1rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2rem; }
.trust-row { display: flex; flex-wrap: wrap; gap: 1.4rem; }
.trust-row li { display: flex; align-items: center; gap: 0.4rem; font-size: 0.85rem; color: rgba(255,255,255,0.88); font-weight: 600; }
.trust-row svg { width: 16px; height: 16px; color: #fff; flex-shrink: 0; }

.hero__transform { display: flex; justify-content: center; }
.hero__transform-frame {
  position: relative; width: min(300px, 100%); aspect-ratio: 4 / 5;
  border-radius: 24px; overflow: hidden;
  border: 4px solid rgba(255,255,255,0.9);
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.55);
  background-color: rgba(250,250,248,0.97);
  background-image: repeating-linear-gradient(45deg, rgba(27,122,90,0.10), rgba(27,122,90,0.10) 10px, transparent 10px, transparent 20px);
}
.hero__transform-placeholder {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  color: rgba(27,122,90,0.35);
}
.hero__transform-placeholder svg { width: 48px; height: 48px; }
.hero__transform-img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain;
  opacity: 0; transition: opacity 1.2s ease;
}
.hero__transform-img.is-active { opacity: 1; }

@media (max-width: 860px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__transform-frame { width: min(260px, 70vw); }
}

@media (max-width: 640px) {
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; }
}

/* ===== Marquee ===== */
.marquee {
  overflow: hidden; padding: 2rem 0; background: var(--bg-soft);
  mask-image: linear-gradient(to right, transparent 0, black 60px, black calc(100% - 60px), transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0, black 60px, black calc(100% - 60px), transparent 100%);
}
.marquee__track { display: flex; width: max-content; animation: marquee-scroll 55s linear infinite; will-change: transform; }
.marquee__item {
  width: 240px; height: 170px; flex-shrink: 0; border-radius: 18px; overflow: hidden; margin-right: 1.25rem;
  background: repeating-linear-gradient(45deg, var(--border), var(--border) 10px, #fff 10px, #fff 20px);
  box-shadow: 0 8px 20px -10px rgba(22,36,28,0.15);
}
.marquee__item img { width: 100%; height: 100%; object-fit: cover; }
@keyframes marquee-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (max-width: 600px) { .marquee__item { width: 180px; height: 128px; } }

/* ===== Pourquoi ===== */
.pourquoi { padding: clamp(3rem, 6vw, 5rem) 0; }
.pillars { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; margin-top: 2rem; }
.pillar { background: var(--bg-soft); border-radius: 22px; padding: 2rem 1.6rem; transition: transform 0.3s var(--ease); }
.pillar:hover { transform: translateY(-4px); }
.pillar__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 52px; height: 52px; border-radius: 16px; background: #fff; color: var(--green);
  margin-bottom: 1rem; box-shadow: 0 8px 20px -10px rgba(22,36,28,0.15);
}
.pillar__icon svg { width: 26px; height: 26px; }
.pillar p { color: var(--text-soft); font-size: 0.95rem; }

/* ===== About ===== */
.about { display: grid; grid-template-columns: auto 1fr; gap: clamp(2rem, 5vw, 3.5rem); align-items: center; padding: clamp(3rem, 6vw, 5rem) 0; }
.about__avatar {
  width: 140px; height: 140px; border-radius: 50%; flex-shrink: 0;
  background: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 20px 40px -16px rgba(18,89,64,0.25);
  border: 1px solid var(--border);
}
.about__avatar-logo { width: 64px; height: 64px; }
.about__text { max-width: 62ch; font-size: 1.05rem; color: var(--text-soft); line-height: 1.75; }
@media (max-width: 700px) { .about { grid-template-columns: 1fr; text-align: center; justify-items: center; } }

/* ===== Produits ===== */
.produits { padding: clamp(3rem, 6vw, 5rem) 0; }
.produits__intro { max-width: 60ch; margin-bottom: 2.5rem; color: var(--text-soft); }
.produits__grid {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 1rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}
.produits__grid::-webkit-scrollbar { height: 8px; }
.produits__grid::-webkit-scrollbar-thumb { background: var(--border); border-radius: 999px; }
.produits__grid .card {
  scroll-snap-align: start;
  flex: 0 0 260px;
}
@media (max-width: 600px) { .produits__grid .card { flex-basis: 220px; } }

/* La page catalogue.html utilise une grille classique 3 colonnes, pas le carrousel */
#catalogueGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow-x: visible;
  scroll-snap-type: none;
  gap: 1.5rem;
}
#catalogueGrid .card { flex: initial; scroll-snap-align: none; }
@media (max-width: 900px) { #catalogueGrid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { #catalogueGrid { grid-template-columns: 1fr; } }

/* ===== Steps ===== */
.commander {
  padding-top: clamp(3rem, 6vw, 4rem); padding-bottom: clamp(3rem, 6vw, 4rem);
  background: var(--green); color: #fff; border-radius: 32px; margin-top: 1rem;
}
.commander .eyebrow { color: rgba(255,255,255,0.85); }
.commander h2 { color: #fff; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; margin-top: 2.5rem; }
.steps__num {
  display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px;
  border-radius: 50%; background: #fff; color: var(--green);
  font-family: var(--font-display); font-weight: 700; font-size: 1.25rem; margin-bottom: 1rem;
}
.steps__item h3 { font-family: var(--font-display); font-size: 1.2rem; }
.steps__item p { color: rgba(255,255,255,0.85); font-size: 0.95rem; }
@media (max-width: 780px) { .steps { grid-template-columns: 1fr; gap: 2rem; } }

/* ===== Avis ===== */
.avis { padding: clamp(3rem, 6vw, 5rem) 0; text-align: center; }
.avis__placeholder { max-width: 480px; margin: 2rem auto 0; background: var(--bg-soft); border-radius: 22px; padding: 2.5rem 2rem; }
.avis__icon { display: inline-flex; width: 40px; height: 40px; color: var(--coral); margin-bottom: 1rem; }
.avis__placeholder p { color: var(--text-soft); }

/* ===== FAQ ===== */
.faq { padding: clamp(3rem, 6vw, 5rem) 0; }
.faq__list { max-width: 74ch; }
.faq__item {
  background: #fff; border: 1px solid var(--border); border-radius: 18px; margin-bottom: 1rem;
  box-shadow: 0 4px 16px -10px rgba(22,36,28,0.08); overflow: hidden;
}
.faq__item summary {
  font-family: var(--font-display); font-weight: 600; font-size: 1.05rem;
  padding: 1.1rem 1.4rem; cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  transition: color 0.2s ease;
}
.faq__item summary:hover { color: var(--green); }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__marker { font-family: var(--font-body); font-weight: 700; font-size: 1.3rem; color: var(--coral); transition: transform 0.3s ease; flex-shrink: 0; }
.faq__item[open] .faq__marker { transform: rotate(45deg); }
.faq__item p { padding: 0 1.4rem 1.4rem; color: var(--text-soft); max-width: 65ch; }
@keyframes faqReveal { from { opacity: 0; transform: translateY(-4px); } to { opacity: 1; transform: translateY(0); } }
.faq__item[open] p { animation: faqReveal 0.35s var(--ease); }

/* ===== Contact ===== */
.contact { display: grid; grid-template-columns: 1.3fr 0.7fr; gap: clamp(2rem, 5vw, 4rem); padding: clamp(3rem, 6vw, 5rem) 0; align-items: start; }
.contact h2 { margin-top: 0.6rem; }
form { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 1.1rem; }
label { font-family: var(--font-body); font-weight: 600; font-size: 0.85rem; color: var(--ink); margin-bottom: 0.3rem; display: block; }
input, textarea {
  width: 100%; font-family: var(--font-body); font-size: 1rem; padding: 0.8rem 1rem;
  border: 2px solid var(--border); border-radius: 14px; background: #fff; color: var(--ink);
  resize: vertical; transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
input:focus, textarea:focus { border-color: var(--green); box-shadow: 0 0 0 4px var(--green-light); outline: none; }
.form__status { font-size: 0.85rem; color: var(--text-soft); min-height: 1.2em; }
.contact__call { display: flex; align-items: center; justify-content: center; margin-bottom: 1.2rem; }
.contact__call svg { flex-shrink: 0; }
.contact__panel .card__body p { margin-bottom: 0.5rem; }
.contact__panel .card__body p:last-child { margin-bottom: 0; }
@media (max-width: 860px) { .contact { grid-template-columns: 1fr; } }

/* ===== Footer ===== */
.site-footer { border-top: 1px solid var(--border); padding: 2rem 0; }
.footer__inner { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.5rem 1.5rem; font-size: 0.85rem; color: var(--text-soft); }
.footer__legal { display: flex; gap: 1.2rem; flex-wrap: wrap; }
.footer__legal a:hover { color: var(--green); }

/* ===== Pages légales ===== */
.legal { padding-top: clamp(3rem, 6vw, 5rem); padding-bottom: clamp(3rem, 6vw, 5rem); max-width: 780px; }
.legal h1 { font-size: clamp(2rem, 4vw, 2.6rem); margin-bottom: 0.5rem; }
.legal__updated { color: var(--text-soft); font-size: 0.85rem; margin-bottom: 2.5rem; }
.legal h2 { font-size: 1.35rem; margin-top: 2.2rem; }
.legal p, .legal li { color: var(--text-soft); }
.legal ul, .legal ol { padding-left: 1.4rem; margin: 0.8rem 0 1.2rem; }
.legal ul { list-style: disc; }
.legal ol { list-style: decimal; }
.legal li { margin-bottom: 0.4rem; }
.legal a { color: var(--green); text-decoration: underline; }
.legal strong { color: var(--ink); }