/* =========================================================
   JARDIN MÉDOC — Feuille de style principale
   Palette : vert forêt + crème (identité du logo)
   ========================================================= */

/* ---------- 1. Variables & Reset ---------- */
:root {
  /* Couleurs de marque */
  --green-900: #2c361f;
  --green-800: #3e4d2c;   /* vert principal (fond du logo) */
  --green-700: #4a5b35;
  --green-600: #5c7042;
  --green-400: #86a163;   /* vert clair / accent */
  --green-200: #cdd8bd;

  --cream:     #ece9db;   /* fond clair principal */
  --cream-100: #f6f4ec;
  --cream-200: #e2ddc9;
  --white:     #ffffff;

  --ink:       #2a2c24;   /* texte foncé */
  --muted:     #5f6455;   /* texte secondaire */
  --line:      #dcd8c6;   /* bordures légères */

  /* Typo */
  --font-title: "Poppins", system-ui, sans-serif;
  --font-body:  "Inter", system-ui, sans-serif;

  /* Divers */
  --radius:    16px;
  --radius-sm: 10px;
  --shadow:    0 10px 30px rgba(44, 54, 31, 0.10);
  --shadow-lg: 0 20px 50px rgba(44, 54, 31, 0.18);
  --wrap:      1180px;
  --transition: 0.25s ease;
}

*,
*::before,
*::after { box-sizing: border-box; }

* { margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream-100);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; height: auto; }

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--font-title);
  line-height: 1.2;
  color: var(--green-900);
  font-weight: 700;
}

/* ---------- 2. Utilitaires ---------- */
.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }

.section { padding: 96px 0; }
.section--tight { padding: 64px 0; }
.section--cream { background: var(--cream); }
.section--green {
  background: var(--green-800);
  color: var(--cream);
}
.section--green h2, .section--green h3 { color: var(--white); }

.eyebrow {
  display: inline-block;
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-600);
  margin-bottom: 14px;
}
.section--green .eyebrow { color: var(--green-200); }

.section-head { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.section-head h2 { font-size: clamp(1.9rem, 3.4vw, 2.7rem); }
.section-head p { color: var(--muted); font-size: 1.08rem; margin-top: 14px; }
.section--green .section-head p { color: var(--green-200); }

.lead { font-size: 1.15rem; color: var(--muted); }

/* Boutons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 0.98rem;
  padding: 14px 28px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform var(--transition), background var(--transition), color var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary { background: var(--green-800); color: var(--cream); }
.btn--primary:hover { background: var(--green-700); box-shadow: var(--shadow); }

.btn--accent { background: var(--green-400); color: var(--green-900); }
.btn--accent:hover { background: #93ad70; box-shadow: var(--shadow); }

.btn--ghost { background: transparent; color: var(--green-800); border-color: var(--green-800); }
.btn--ghost:hover { background: var(--green-800); color: var(--cream); }

.btn--light { background: var(--cream); color: var(--green-900); }
.btn--light:hover { background: var(--white); box-shadow: var(--shadow-lg); }

.btn--outline-light { background: transparent; color: var(--cream); border-color: rgba(236,233,219,0.5); }
.btn--outline-light:hover { background: var(--cream); color: var(--green-900); }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---------- 3. En-tête / Navigation ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(246, 244, 236, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand__logo { width: auto; height: 46px; }
.brand__name {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.02em;
  color: var(--green-800);
  line-height: 1.1;
}
.brand__name span { display: block; font-size: 0.68rem; font-weight: 500; letter-spacing: 0.22em; color: var(--green-600); text-transform: uppercase; }

.nav__menu { display: flex; align-items: center; gap: 6px; list-style: none; }
.nav__link {
  font-family: var(--font-title);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--ink);
  padding: 10px 14px;
  border-radius: 999px;
  transition: color var(--transition), background var(--transition);
}
.nav__link:hover { color: var(--green-800); background: rgba(134,161,99,0.16); }
.nav__link--active { color: var(--green-800); background: rgba(134,161,99,0.2); }
.nav__cta { margin-left: 8px; }

.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px; height: 46px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 12px;
  cursor: pointer;
}
.nav__toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--green-800);
  margin: 0 auto;
  transition: transform var(--transition), opacity var(--transition);
}
.nav__toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.nav__toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- 4. Hero ---------- */
.hero {
  position: relative;
  background:
    linear-gradient(120deg, rgba(44,54,31,0.92), rgba(62,77,44,0.78)),
    url("../assets/pattern.svg");
  background-size: cover, 340px;
  color: var(--cream);
  overflow: hidden;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
  padding: 96px 0 104px;
}
.hero__badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(236,233,219,0.14);
  border: 1px solid rgba(236,233,219,0.28);
  color: var(--cream);
  font-family: var(--font-title);
  font-weight: 500;
  font-size: 0.82rem;
  padding: 7px 16px;
  border-radius: 999px;
  margin-bottom: 22px;
}
.hero h1 {
  color: var(--white);
  font-size: clamp(2.3rem, 5vw, 3.6rem);
  line-height: 1.08;
  margin-bottom: 20px;
}
.hero h1 .accent { color: var(--green-400); }
.hero__text { font-size: 1.15rem; color: var(--cream); opacity: 0.92; max-width: 540px; margin-bottom: 32px; }
.hero .btn-row { margin-bottom: 34px; }
.hero__points { display: flex; flex-wrap: wrap; gap: 22px; list-style: none; }
.hero__points li { display: flex; align-items: center; gap: 9px; font-size: 0.95rem; font-weight: 500; }
.hero__points svg { width: 20px; height: 20px; color: var(--green-400); flex-shrink: 0; }

.hero__card {
  background: rgba(246,244,236,0.96);
  color: var(--ink);
  border-radius: 22px;
  padding: 30px;
  box-shadow: var(--shadow-lg);
}
.hero__card h3 { font-size: 1.25rem; margin-bottom: 6px; }
.hero__card p { color: var(--muted); font-size: 0.95rem; margin-bottom: 20px; }
.hero__card .mini-list { list-style: none; display: grid; gap: 12px; margin-bottom: 22px; }
.hero__card .mini-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 0.95rem; }
.hero__card .mini-list svg { width: 22px; height: 22px; color: var(--green-600); flex-shrink: 0; }
.hero__card .btn { width: 100%; justify-content: center; }

/* ---------- 5. Bande de confiance ---------- */
.trust { background: var(--cream); border-bottom: 1px solid var(--line); }
.trust__grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px; text-align: center; padding: 40px 0;
}
.trust__num { font-family: var(--font-title); font-weight: 700; font-size: 2.1rem; color: var(--green-800); }
.trust__label { color: var(--muted); font-size: 0.92rem; }

/* ---------- 6. Cartes de services ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.cards--2 { grid-template-columns: repeat(2, 1fr); }
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--green-200); }
.card__icon {
  width: 58px; height: 58px;
  display: grid; place-items: center;
  background: var(--green-200);
  border-radius: 14px;
  margin-bottom: 20px;
}
.card__icon svg { width: 30px; height: 30px; color: var(--green-800); }
.card h3 { font-size: 1.25rem; margin-bottom: 10px; }
.card p { color: var(--muted); font-size: 0.97rem; }
.card__tags { list-style: none; margin-top: 18px; display: flex; flex-wrap: wrap; gap: 8px; }
.card__tags li {
  font-size: 0.82rem; font-weight: 500;
  background: var(--cream); color: var(--green-700);
  padding: 5px 12px; border-radius: 999px;
}

/* ---------- 7. Section "Pourquoi nous" / bénéfices ---------- */
.feature-split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center;
}
.feature-list { list-style: none; display: grid; gap: 22px; margin-top: 26px; }
.feature-list li { display: flex; gap: 16px; align-items: flex-start; }
.feature-list .fi {
  width: 48px; height: 48px; flex-shrink: 0;
  display: grid; place-items: center;
  background: var(--green-800); border-radius: 12px;
}
.feature-list .fi svg { width: 24px; height: 24px; color: var(--cream); }
.feature-list h4 { font-size: 1.1rem; margin-bottom: 4px; }
.feature-list p { color: var(--muted); font-size: 0.96rem; }

.media-frame {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  background: var(--green-200);
}
.media-frame img, .media-frame svg { width: 100%; display: block; }

/* ---------- 8. Étapes / process ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; counter-reset: step; }
.step { position: relative; padding: 30px 24px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); }
.step__num {
  counter-increment: step;
  font-family: var(--font-title); font-weight: 700;
  width: 44px; height: 44px; display: grid; place-items: center;
  background: var(--green-800); color: var(--cream); border-radius: 50%;
  margin-bottom: 16px;
}
.step__num::before { content: counter(step); }
.step h4 { font-size: 1.08rem; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 0.93rem; }

/* ---------- 9. CTA band ---------- */
.cta-band {
  background: linear-gradient(120deg, var(--green-800), var(--green-600));
  color: var(--cream);
  border-radius: 24px;
  padding: 56px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.cta-band h2 { color: var(--white); font-size: clamp(1.7rem, 3vw, 2.4rem); margin-bottom: 12px; }
.cta-band p { opacity: 0.92; font-size: 1.1rem; max-width: 620px; margin: 0 auto 28px; }
.cta-band .btn-row { justify-content: center; }

/* ---------- 10. Témoignages ---------- */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.quote { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; }
.quote__stars { color: #d8a33a; letter-spacing: 3px; margin-bottom: 14px; font-size: 1.05rem; }
.quote p { font-style: italic; color: var(--ink); margin-bottom: 18px; }
.quote__who { display: flex; align-items: center; gap: 12px; }
.quote__avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--green-200); color: var(--green-800);
  display: grid; place-items: center; font-family: var(--font-title); font-weight: 700;
}
.quote__who strong { display: block; font-size: 0.95rem; }
.quote__who span { color: var(--muted); font-size: 0.85rem; }

/* ---------- 11. Galerie / réalisations ---------- */
.gallery-filters { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 40px; }
.filter-btn {
  font-family: var(--font-title); font-weight: 500; font-size: 0.9rem;
  padding: 9px 20px; border-radius: 999px;
  border: 1px solid var(--line); background: var(--white); color: var(--ink);
  cursor: pointer; transition: all var(--transition);
}
.filter-btn:hover { border-color: var(--green-400); }
.filter-btn.is-active { background: var(--green-800); color: var(--cream); border-color: var(--green-800); }

.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.gallery__item {
  position: relative; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); background: var(--green-200); aspect-ratio: 4 / 3;
}
.gallery__item img, .gallery__item svg { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.gallery__item:hover img, .gallery__item:hover svg { transform: scale(1.06); }
.gallery__cap {
  position: absolute; left: 0; right: 0; bottom: 0;
  background: linear-gradient(transparent, rgba(44,54,31,0.85));
  color: var(--cream); padding: 26px 18px 16px;
  font-family: var(--font-title); font-weight: 600; font-size: 1rem;
}
.gallery__cap span { display: block; font-weight: 400; font-size: 0.82rem; opacity: 0.85; }

/* ---------- 12. Avant / Après ---------- */
.ba-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; }
.ba-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.ba-images { display: grid; grid-template-columns: 1fr 1fr; }
.ba-images figure { position: relative; margin: 0; aspect-ratio: 1 / 1; background: var(--green-200); }
.ba-images figure svg, .ba-images figure img { width: 100%; height: 100%; object-fit: cover; }
.ba-images figcaption {
  position: absolute; top: 12px; left: 12px;
  background: rgba(44,54,31,0.85); color: var(--cream);
  font-family: var(--font-title); font-weight: 600; font-size: 0.75rem;
  padding: 4px 12px; border-radius: 999px; text-transform: uppercase; letter-spacing: 0.06em;
}
.ba-images figure:last-child figcaption { background: var(--green-400); color: var(--green-900); }
.ba-card__body { padding: 22px 24px; }
.ba-card__body h3 { font-size: 1.15rem; margin-bottom: 6px; }
.ba-card__body p { color: var(--muted); font-size: 0.94rem; }

/* ---------- 13. Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 48px; align-items: start; }

.info-card {
  background: var(--green-800); color: var(--cream);
  border-radius: var(--radius); padding: 40px; box-shadow: var(--shadow);
}
.info-card h2 { color: var(--white); font-size: 1.7rem; margin-bottom: 8px; }
.info-card > p { color: var(--green-200); margin-bottom: 28px; }
.info-list { list-style: none; display: grid; gap: 22px; }
.info-list li { display: flex; gap: 16px; align-items: flex-start; }
.info-list .ico {
  width: 46px; height: 46px; flex-shrink: 0; border-radius: 12px;
  background: rgba(236,233,219,0.14); display: grid; place-items: center;
}
.info-list .ico svg { width: 22px; height: 22px; color: var(--cream); }
.info-list strong { display: block; font-family: var(--font-title); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--green-200); margin-bottom: 3px; }
.info-list a, .info-list span { color: var(--white); font-size: 1.05rem; font-weight: 500; }
.info-list a:hover { color: var(--green-400); }

.form-card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 40px; box-shadow: var(--shadow);
}
.form-card h2 { font-size: 1.7rem; margin-bottom: 6px; }
.form-card > p { color: var(--muted); margin-bottom: 26px; }

.field { margin-bottom: 20px; }
.field label { display: block; font-family: var(--font-title); font-weight: 500; font-size: 0.9rem; margin-bottom: 7px; }
.field label .req { color: #b4562f; }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--font-body); font-size: 1rem;
  padding: 13px 15px; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  background: var(--cream-100); color: var(--ink); transition: border-color var(--transition), background var(--transition);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--green-600); background: var(--white);
}
.field textarea { resize: vertical; min-height: 130px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

.consent { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 24px; }
.consent input { width: 20px; height: 20px; margin-top: 3px; flex-shrink: 0; accent-color: var(--green-800); }
.consent label { font-size: 0.86rem; color: var(--muted); font-family: var(--font-body); }
.consent a { color: var(--green-700); text-decoration: underline; }

.form-error { color: #b4562f; font-size: 0.82rem; margin-top: 5px; display: none; }
.field.has-error input, .field.has-error select, .field.has-error textarea { border-color: #b4562f; }
.field.has-error .form-error { display: block; }

.form-status {
  display: none; margin-top: 18px; padding: 14px 18px; border-radius: var(--radius-sm);
  font-weight: 500; font-size: 0.95rem;
}
.form-status.ok { display: block; background: var(--green-200); color: var(--green-900); }
.form-status.err { display: block; background: #f6ddd2; color: #8a3d1e; }

.map-frame { margin-top: 0; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--line); }
.map-frame iframe { width: 100%; height: 340px; border: 0; display: block; }

/* ---------- 14. Zones desservies ---------- */
.zones { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 12px; }
.zones span {
  background: var(--white); border: 1px solid var(--line); color: var(--green-700);
  font-weight: 500; font-size: 0.92rem; padding: 8px 18px; border-radius: 999px;
}

/* ---------- 15. FAQ ---------- */
.faq { max-width: 800px; margin: 0 auto; }
.faq__item { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-sm); margin-bottom: 14px; overflow: hidden; }
.faq__q {
  width: 100%; text-align: left; background: none; border: 0; cursor: pointer;
  font-family: var(--font-title); font-weight: 600; font-size: 1.05rem; color: var(--green-900);
  padding: 20px 24px; display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq__q .chev { transition: transform var(--transition); flex-shrink: 0; }
.faq__item.is-open .faq__q .chev { transform: rotate(180deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq__a p { padding: 0 24px 22px; color: var(--muted); }

/* ---------- 16. Pied de page ---------- */
.site-footer { background: var(--green-900); color: var(--cream); padding: 64px 0 26px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.1fr; gap: 40px; }
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-brand img { width: auto; height: 48px; }
.footer-brand .brand__name { color: var(--white); }
.footer-brand .brand__name span { color: var(--green-200); }
.site-footer p { color: var(--green-200); font-size: 0.95rem; }
.footer-col h4 { color: var(--white); font-size: 1rem; margin-bottom: 16px; }
.footer-col ul { list-style: none; display: grid; gap: 10px; }
.footer-col a { color: var(--green-200); font-size: 0.94rem; transition: color var(--transition); }
.footer-col a:hover { color: var(--green-400); }
.footer-contact li { display: flex; gap: 10px; align-items: center; color: var(--green-200); font-size: 0.94rem; margin-bottom: 10px; }
.footer-contact svg { width: 18px; height: 18px; color: var(--green-400); flex-shrink: 0; }
.socials { display: flex; gap: 12px; margin-top: 6px; }
.socials a {
  width: 40px; height: 40px; border-radius: 10px; display: grid; place-items: center;
  background: rgba(236,233,219,0.1); transition: background var(--transition);
}
.socials a:hover { background: var(--green-600); }
.socials svg { width: 20px; height: 20px; color: var(--cream); }
.footer-bottom {
  margin-top: 48px; padding-top: 22px; border-top: 1px solid rgba(236,233,219,0.14);
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px;
  font-size: 0.85rem; color: var(--green-200);
}
.footer-bottom a { color: var(--green-200); }
.footer-bottom a:hover { color: var(--green-400); }

/* ---------- 17. Bouton d'appel flottant (mobile) ---------- */
.call-fab {
  display: none;
  position: fixed; right: 18px; bottom: 18px; z-index: 90;
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--green-800); color: var(--cream);
  place-items: center; box-shadow: var(--shadow-lg);
}
.call-fab svg { width: 26px; height: 26px; }

/* ---------- 18. En-tête de page interne ---------- */
.page-hero {
  background: linear-gradient(120deg, rgba(44,54,31,0.94), rgba(62,77,44,0.82)), url("../assets/pattern.svg");
  background-size: cover, 340px;
  color: var(--cream); text-align: center; padding: 74px 0;
}
.page-hero h1 { color: var(--white); font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 12px; }
.page-hero p { max-width: 640px; margin: 0 auto; opacity: 0.92; font-size: 1.1rem; }
.breadcrumb { list-style: none; display: flex; gap: 8px; justify-content: center; margin-bottom: 18px; font-size: 0.85rem; }
.breadcrumb a { color: var(--green-200); }
.breadcrumb a:hover { color: var(--green-400); }
.breadcrumb li::after { content: "/"; margin-left: 8px; opacity: 0.5; }
.breadcrumb li:last-child::after { content: ""; }
.breadcrumb li:last-child { color: var(--cream); }

/* ---------- 19. Contenu texte (mentions légales) ---------- */
.doc { max-width: 820px; margin: 0 auto; }
.doc h2 { font-size: 1.4rem; margin: 38px 0 12px; }
.doc h3 { font-size: 1.1rem; margin: 24px 0 8px; }
.doc p, .doc li { color: var(--muted); margin-bottom: 12px; }
.doc ul { padding-left: 22px; }
.doc a { color: var(--green-700); text-decoration: underline; }
.doc .note { background: var(--cream); border-left: 4px solid var(--green-400); padding: 14px 18px; border-radius: 8px; font-size: 0.9rem; }

/* ---------- 20. Animations d'apparition ---------- */
/* Le masquage ne s'applique que si JavaScript est actif (classe .js sur <html>),
   afin que le contenu reste visible en cas de JS désactivé ou d'échec de chargement. */
.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.js .reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; gap: 40px; padding: 70px 0 80px; }
  .feature-split { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .cards, .quotes { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .ba-grid { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  /* Menu mobile */
  .nav__toggle { display: flex; }
  .nav__menu {
    position: fixed; inset: 76px 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 4px;
    background: var(--cream-100); border-bottom: 1px solid var(--line);
    padding: 16px 24px 26px; box-shadow: var(--shadow);
    transform: translateY(-140%); transition: transform 0.32s ease;
    max-height: calc(100vh - 76px); overflow-y: auto;
  }
  .nav__menu.is-open { transform: translateY(0); }
  .nav__link { padding: 13px 14px; font-size: 1rem; }
  .nav__cta { margin: 8px 0 0; }
  .nav__cta .btn { width: 100%; justify-content: center; }

  .section { padding: 64px 0; }
  .trust__grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .cards, .cards--2, .quotes, .steps { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-band { padding: 40px 26px; }
  .info-card, .form-card { padding: 28px; }
  .ba-images { grid-template-columns: 1fr 1fr; }
  .call-fab { display: grid; }
  .hero__points { gap: 12px; }
}

@media (max-width: 420px) {
  .wrap { padding: 0 18px; }
  .brand__name { font-size: 1.05rem; }
}
