/* ==========================================================================
   REV Paysage — Design system
   Palette inspirée du logo : vert forêt, vert feuille, sable.
   ========================================================================== */

@font-face {
  font-family: "Fraunces";
  src: url("../fonts/fraunces-var.woff2") format("woff2");
  font-weight: 300 800;
  font-display: swap;
}
@font-face {
  font-family: "Manrope";
  src: url("../fonts/manrope-var.woff2") format("woff2");
  font-weight: 300 800;
  font-display: swap;
}

:root {
  --forest: #1e3a2a;
  --forest-2: #274b37;
  --forest-3: #335f45;
  --leaf: #2f7a34;
  --leaf-bright: #5fae4f;
  --sand: #c8a57a;
  --sand-soft: #efe4d3;
  --cream: #f7f4ee;
  --paper: #ffffff;
  --ink: #18221b;
  --muted: #56625a;
  --line: #e3ddd2;

  --ff-title: "Fraunces", Georgia, "Times New Roman", serif;
  --ff-body: "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 1px 2px rgba(24, 34, 27, .05), 0 12px 32px -12px rgba(24, 34, 27, .18);
  --container: 1200px;
  --gutter: clamp(16px, 4vw, 32px);
  --section: clamp(64px, 10vw, 128px);
  --header-h: 76px;
  --ease: cubic-bezier(.2, .7, .2, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); }
body {
  margin: 0;
  font-family: var(--ff-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, video, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
button, input, select, textarea { font: inherit; color: inherit; }
h1, h2, h3, h4 { font-family: var(--ff-title); font-weight: 500; line-height: 1.12; letter-spacing: -.015em; margin: 0 0 .5em; text-wrap: balance; }
h1 { font-size: clamp(2.4rem, 5.6vw, 4.6rem); }
h2 { font-size: clamp(1.9rem, 3.8vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.55rem); }
p { margin: 0 0 1.1em; text-wrap: pretty; }
ul { padding-left: 1.2em; }
:focus-visible { outline: 3px solid var(--leaf-bright); outline-offset: 3px; border-radius: 4px; }
.sr-only { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.skip-link { position: absolute; left: 12px; top: -60px; z-index: 200; background: var(--paper); padding: 10px 16px; border-radius: 8px; font-weight: 700; }
.skip-link:focus { top: 12px; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--section); }
.section--paper { background: var(--paper); }
.section--forest { background: var(--forest); color: #e9efe9; }
.section--forest h2, .section--forest h3 { color: #fff; }
.section--sand { background: var(--sand-soft); }

.eyebrow {
  display: inline-flex; align-items: center; gap: .6em;
  font-size: .78rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--leaf); margin-bottom: 1.1rem;
}
.eyebrow::before { content: ""; width: 28px; height: 1.5px; background: currentColor; }
.section--forest .eyebrow, .hero .eyebrow, .page-hero .eyebrow { color: var(--sand); }
.lead { font-size: clamp(1.1rem, 1.6vw, 1.25rem); color: var(--muted); max-width: 62ch; }
.section--forest .lead { color: #c5d3c8; }
.section-head { max-width: 760px; margin-bottom: clamp(40px, 6vw, 64px); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .eyebrow { justify-content: center; }
.section-head--center .lead { margin-inline: auto; }

.grid-2 { display: grid; gap: clamp(32px, 6vw, 80px); align-items: center; grid-template-columns: 1fr; }
@media (min-width: 900px) { .grid-2 { grid-template-columns: 1fr 1fr; } .grid-2--reverse > :first-child { order: 2; } }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6em;
  padding: .95em 1.6em; border-radius: 999px; border: 1.5px solid transparent;
  font-weight: 700; font-size: .98rem; text-decoration: none; line-height: 1.2;
  cursor: pointer; transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease);
}
.btn svg { width: 1.1em; height: 1.1em; flex: none; }
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--leaf); color: #fff; }
.btn--primary:hover { background: var(--forest-2); }
.btn--sand { background: var(--sand); color: var(--forest); }
.btn--sand:hover { background: #d9bb95; }
.btn--ghost { border-color: rgba(255, 255, 255, .55); color: #fff; }
.btn--ghost:hover { background: rgba(255, 255, 255, .12); border-color: #fff; }
.btn--outline { border-color: var(--forest); color: var(--forest); }
.btn--outline:hover { background: var(--forest); color: #fff; }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }

.link-arrow { display: inline-flex; align-items: center; gap: .45em; font-weight: 700; color: var(--leaf); text-decoration: none; }
.link-arrow::after { content: "→"; transition: transform .25s var(--ease); }
.link-arrow:hover::after { transform: translateX(4px); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100; height: var(--header-h);
  background: var(--forest); color: #fff;
  transition: background .35s var(--ease), box-shadow .35s var(--ease);
}
.site-header--overlay { position: fixed; inset: 0 0 auto 0; background: transparent; }
.site-header--overlay.is-scrolled, .site-header.is-scrolled { background: rgba(30, 58, 42, .96); box-shadow: 0 8px 30px -12px rgba(0, 0, 0, .35); backdrop-filter: blur(8px); }
.site-header .container { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; text-decoration: none; }
.brand img { height: 52px; width: auto; }
.nav { display: none; }
.nav ul { list-style: none; display: flex; align-items: center; gap: clamp(14px, 2vw, 30px); margin: 0; padding: 0; }
.nav a { text-decoration: none; font-weight: 600; font-size: .95rem; position: relative; padding-block: 6px; }
.nav a:not(.btn)::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1.5px; background: var(--sand); transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease); }
.nav a:not(.btn):hover::after, .nav a[aria-current="page"]::after { transform: scaleX(1); }
.nav .btn { padding: .7em 1.2em; }
.has-sub { position: relative; }
.has-sub > .sub {
  position: absolute; top: calc(100% + 12px); left: -18px; min-width: 250px;
  display: grid; gap: 2px; padding: 10px; list-style: none;
  background: var(--paper); color: var(--ink); border-radius: 14px; box-shadow: var(--shadow);
  opacity: 0; visibility: hidden; transform: translateY(6px); transition: all .25s var(--ease);
}
.has-sub > .sub::before { content: ""; position: absolute; inset: -14px 0 auto 0; height: 14px; }
.has-sub:hover > .sub, .has-sub:focus-within > .sub { opacity: 1; visibility: visible; transform: none; }
.sub a { display: block; padding: 10px 12px; border-radius: 8px; }
.sub a::after { display: none; }
.sub a:hover { background: var(--cream); }

.nav-toggle {
  display: inline-flex; flex-direction: column; justify-content: center; gap: 6px;
  width: 46px; height: 46px; padding: 12px; border-radius: 12px; border: 1px solid rgba(255, 255, 255, .3);
  background: transparent; cursor: pointer;
}
.nav-toggle span { display: block; height: 2px; background: #fff; border-radius: 2px; transition: transform .3s var(--ease), opacity .3s; }
.nav-open .nav-toggle span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.mobile-nav {
  position: fixed; inset: var(--header-h) 0 0 0; z-index: 99; background: var(--forest); color: #fff;
  padding: 24px var(--gutter) 40px; overflow-y: auto;
  opacity: 0; visibility: hidden; transform: translateY(-8px); transition: all .3s var(--ease);
}
.nav-open .mobile-nav { opacity: 1; visibility: visible; transform: none; }
.nav-open { overflow: hidden; }
.mobile-nav ul { list-style: none; margin: 0; padding: 0; }
.mobile-nav > ul > li { border-bottom: 1px solid rgba(255, 255, 255, .12); }
.mobile-nav a { display: block; padding: 16px 0; text-decoration: none; font-family: var(--ff-title); font-size: 1.5rem; }
.mobile-nav .sub a { font-family: var(--ff-body); font-size: 1rem; padding: 8px 0 8px 16px; color: #c5d3c8; }
.mobile-nav .btn { margin-top: 28px; width: 100%; font-family: var(--ff-body); font-size: 1rem; }

@media (min-width: 1024px) {
  .nav { display: block; }
  .nav-toggle, .mobile-nav { display: none; }
}

/* ---------- Hero (accueil) ---------- */
.hero {
  position: relative; min-height: min(100svh, 920px); display: flex; align-items: flex-end;
  color: #fff; isolation: isolate; overflow: hidden;
  padding: calc(var(--header-h) + 60px) 0 clamp(48px, 8vw, 96px);
}
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media img, .hero__media video { width: 100%; height: 100%; object-fit: cover; }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(14, 28, 20, .55) 0%, rgba(14, 28, 20, 0) 28%),
    linear-gradient(10deg, rgba(14, 28, 20, .88) 8%, rgba(14, 28, 20, .35) 55%, rgba(14, 28, 20, .1) 100%);
}
.hero__content { max-width: 780px; }
.hero h1 { color: #fff; margin-bottom: .4em; }
.hero h1 em { font-style: italic; color: var(--sand); font-weight: 400; }
.hero__text { font-size: clamp(1.08rem, 1.6vw, 1.25rem); color: #dfe8e1; max-width: 58ch; margin-bottom: 2rem; }
.hero__badges { display: flex; flex-wrap: wrap; gap: 10px 26px; margin-top: 2.4rem; padding: 0; list-style: none; font-size: .92rem; color: #dfe8e1; }
.hero__badges li { display: flex; align-items: center; gap: .5em; }
.hero__badges svg { width: 18px; height: 18px; color: var(--leaf-bright); flex: none; }

/* ---------- Page hero (pages internes) ---------- */
.page-hero {
  position: relative; color: #fff; isolation: isolate; overflow: hidden;
  padding: clamp(80px, 12vw, 150px) 0 clamp(56px, 8vw, 96px);
  background: var(--forest);
}
.page-hero__media { position: absolute; inset: 0; z-index: -2; }
.page-hero__media img { width: 100%; height: 100%; object-fit: cover; }
.page-hero::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(15deg, rgba(14, 28, 20, .92) 15%, rgba(14, 28, 20, .45) 100%); }
.page-hero h1 { color: #fff; font-size: clamp(2.2rem, 5vw, 3.8rem); max-width: 18ch; }
.page-hero .lead { color: #dfe8e1; }
.breadcrumb ol { list-style: none; display: flex; flex-wrap: wrap; gap: 6px; padding: 0; margin: 0 0 1.4rem; font-size: .88rem; color: #c5d3c8; }
.breadcrumb li + li::before { content: "/"; margin-right: 6px; opacity: .5; }
.breadcrumb a { text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }

/* ---------- Media ---------- */
.media { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.media img { width: 100%; height: 100%; object-fit: cover; }
.media--tall { aspect-ratio: 4 / 5; }
.media--wide { aspect-ratio: 4 / 3; }
.media-stack { position: relative; padding-bottom: 12%; }
.media-stack .media:nth-child(2) {
  position: absolute; width: 46%; right: -4%; bottom: 0; aspect-ratio: 1;
  border: 6px solid var(--cream);
}
.section--paper .media-stack .media:nth-child(2) { border-color: var(--paper); }
@media (max-width: 600px) { .media-stack .media:nth-child(2) { right: 0; } }

/* ---------- Checklist ---------- */
.checklist { list-style: none; padding: 0; margin: 1.6rem 0 2rem; display: grid; gap: 12px; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; }
.checklist li::before {
  content: ""; flex: none; width: 22px; height: 22px; margin-top: 3px; border-radius: 50%;
  background: var(--leaf) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12l5 5L20 7'/%3E%3C/svg%3E") center / 13px no-repeat;
}
.section--forest .checklist li::before { background-color: var(--leaf-bright); }

/* ---------- Services cards ---------- */
.cards { display: grid; gap: 20px; grid-template-columns: 1fr; }
@media (min-width: 640px) { .cards { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .cards--4 { grid-template-columns: repeat(4, 1fr); } }
.card {
  position: relative; display: flex; flex-direction: column; background: var(--paper);
  border-radius: var(--radius); overflow: hidden; text-decoration: none; box-shadow: var(--shadow);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: 0 24px 48px -20px rgba(24, 34, 27, .35); }
.card__img { aspect-ratio: 4 / 3; overflow: hidden; }
.card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.card:hover .card__img img { transform: scale(1.06); }
.card__body { padding: 24px 24px 28px; display: flex; flex-direction: column; flex: 1; }
.card__body h3 { margin-bottom: .45em; }
.card__body p { color: var(--muted); font-size: .98rem; }
.card__body .link-arrow { margin-top: auto; }
.card__num { font-family: var(--ff-title); font-size: .9rem; color: var(--sand); margin-bottom: .6rem; letter-spacing: .08em; }

/* ---------- Steps ---------- */
.steps { display: grid; gap: 20px; grid-template-columns: 1fr; counter-reset: step; list-style: none; padding: 0; margin: 0; }
@media (min-width: 700px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .steps { grid-template-columns: repeat(4, 1fr); } }
.step { position: relative; padding: 30px 26px; border-radius: var(--radius); background: rgba(255, 255, 255, .05); border: 1px solid rgba(255, 255, 255, .12); counter-increment: step; }
.step::before { content: counter(step, decimal-leading-zero); display: block; font-family: var(--ff-title); font-size: 2.6rem; line-height: 1; color: var(--sand); margin-bottom: 1rem; }
.step h3 { font-size: 1.25rem; }
.step p { color: #c5d3c8; font-size: .98rem; margin: 0; }
.section:not(.section--forest) .step { background: var(--paper); border-color: var(--line); }
.section:not(.section--forest) .step p { color: var(--muted); }

/* ---------- Features (valeurs) ---------- */
.features { display: grid; gap: 28px 40px; grid-template-columns: 1fr; }
@media (min-width: 640px) { .features { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .features--4 { grid-template-columns: repeat(4, 1fr); } }
.feature__icon { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; background: var(--sand-soft); color: var(--forest); margin-bottom: 1rem; }
.feature__icon svg { width: 26px; height: 26px; }
.feature h3 { font-size: 1.2rem; }
.feature p { color: var(--muted); font-size: .98rem; margin: 0; }

/* ---------- Gallery ---------- */
.gallery { columns: 1; column-gap: 16px; }
@media (min-width: 600px) { .gallery { columns: 2; } }
@media (min-width: 1000px) { .gallery { columns: 3; } }
.gallery__item { break-inside: avoid; margin: 0 0 16px; position: relative; border-radius: var(--radius-sm); overflow: hidden; }
.gallery__item button { all: unset; display: block; cursor: zoom-in; width: 100%; }
.gallery__item button:focus-visible { outline: 3px solid var(--leaf-bright); outline-offset: -3px; }
.gallery__item img { width: 100%; transition: transform .8s var(--ease); }
.gallery__item:hover img { transform: scale(1.04); }
.gallery__item figcaption {
  position: absolute; inset: auto 0 0 0; padding: 40px 18px 14px; color: #fff; font-size: .92rem; font-weight: 600;
  background: linear-gradient(0deg, rgba(14, 28, 20, .85), transparent); pointer-events: none;
}
.gallery__item figcaption span { display: block; font-weight: 400; font-size: .8rem; color: var(--sand); letter-spacing: .08em; text-transform: uppercase; }

.filters { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 32px; }
.filters button { border: 1.5px solid var(--line); background: var(--paper); border-radius: 999px; padding: .55em 1.1em; font-weight: 600; font-size: .92rem; cursor: pointer; transition: all .2s; }
.filters button[aria-pressed="true"], .filters button:hover { background: var(--forest); border-color: var(--forest); color: #fff; }
.gallery__item[hidden] { display: none; }

/* Lightbox */
.lightbox { position: fixed; inset: 0; z-index: 300; display: grid; place-items: center; padding: 24px; background: rgba(10, 18, 13, .94); opacity: 0; visibility: hidden; transition: opacity .3s; }
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox figure { margin: 0; max-width: min(1200px, 100%); }
.lightbox img { max-height: 82svh; width: auto; margin-inline: auto; border-radius: 8px; }
.lightbox figcaption { color: #dfe8e1; text-align: center; margin-top: 14px; font-size: .95rem; }
.lightbox button { position: absolute; width: 48px; height: 48px; border-radius: 50%; border: 0; background: rgba(255, 255, 255, .12); color: #fff; font-size: 1.4rem; cursor: pointer; display: grid; place-items: center; }
.lightbox button:hover { background: rgba(255, 255, 255, .25); }
.lightbox__close { top: 18px; right: 18px; }
.lightbox__prev { left: 18px; top: 50%; translate: 0 -50%; }
.lightbox__next { right: 18px; top: 50%; translate: 0 -50%; }

/* ---------- Zone ---------- */
.zone { display: grid; gap: 40px; grid-template-columns: 1fr; align-items: center; }
@media (min-width: 900px) { .zone { grid-template-columns: 1.1fr 1fr; } }
.towns { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; padding: 0; margin: 1.4rem 0 0; }
.towns li { padding: .45em 1em; border-radius: 999px; background: var(--paper); border: 1px solid var(--line); font-size: .92rem; font-weight: 600; }
.towns li.is-main { background: var(--forest); color: #fff; border-color: var(--forest); }
.zone-map { position: relative; max-width: 560px; margin-inline: auto; width: 100%; }
.zone-map svg { width: 100%; height: 100%; }

/* ---------- FAQ ---------- */
.faq { max-width: 860px; margin-inline: auto; }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  list-style: none; cursor: pointer; padding: 22px 48px 22px 0; position: relative;
  font-family: var(--ff-title); font-size: clamp(1.1rem, 1.8vw, 1.3rem); font-weight: 500;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: 4px; top: 50%; translate: 0 -50%;
  width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center;
  background: var(--sand-soft); color: var(--forest); font-family: var(--ff-body); font-size: 1.3rem; transition: transform .3s var(--ease), background .3s;
}
.faq details[open] summary::after { transform: rotate(45deg); background: var(--sand); }
.faq details > div { padding: 0 0 22px; color: var(--muted); }
.faq details > div p:last-child { margin: 0; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; border-radius: calc(var(--radius) + 8px); padding: clamp(40px, 7vw, 80px); background: var(--forest); color: #fff; isolation: isolate; }
.cta-band::before {
  content: ""; position: absolute; inset: 0; z-index: -1; opacity: .18;
  background: url("../img/deco-feuillage.svg") right -60px center / 460px no-repeat;
}
.cta-band h2 { color: #fff; max-width: 20ch; }
.cta-band p { color: #c5d3c8; max-width: 56ch; }
.cta-band .btn-row { margin-top: 1.8rem; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; gap: clamp(32px, 5vw, 64px); grid-template-columns: 1fr; }
@media (min-width: 960px) { .contact-grid { grid-template-columns: .85fr 1.15fr; } }
.contact-info { list-style: none; padding: 0; margin: 2rem 0; display: grid; gap: 18px; }
.contact-info li { display: flex; gap: 16px; align-items: center; }
.contact-info .ico { flex: none; width: 48px; height: 48px; border-radius: 14px; display: grid; place-items: center; background: var(--sand-soft); color: var(--forest); }
.contact-info .ico svg { width: 22px; height: 22px; }
.contact-info small { display: block; color: var(--muted); font-size: .82rem; text-transform: uppercase; letter-spacing: .1em; font-weight: 700; }
.contact-info a, .contact-info strong { font-weight: 700; font-size: 1.1rem; text-decoration: none; }
.contact-info a:hover { color: var(--leaf); }

.panel { background: var(--paper); border-radius: calc(var(--radius) + 4px); padding: clamp(24px, 4vw, 44px); box-shadow: var(--shadow); align-self: start; }
.panel h2 { font-size: clamp(1.6rem, 3vw, 2.1rem); }

/* ---------- Prose (mentions, contenus longs) ---------- */
.prose { max-width: 760px; }
.prose h2 { font-size: clamp(1.5rem, 2.6vw, 2rem); margin-top: 2em; }
.prose h3 { margin-top: 1.6em; }
.prose a { color: var(--leaf); }

/* ---------- Footer ---------- */
.site-footer { background: #142a1e; color: #b9c8bd; padding: clamp(56px, 8vw, 88px) 0 28px; font-size: .95rem; }
.site-footer h2 { font-family: var(--ff-body); font-size: .8rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; color: var(--sand); margin-bottom: 1.1rem; }
.footer-grid { display: grid; gap: 40px; grid-template-columns: 1fr; }
@media (min-width: 700px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1.1fr; } }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.site-footer a { text-decoration: none; }
.site-footer a:hover { color: #fff; }
.footer-brand img { height: 72px; width: auto; margin-bottom: 1.2rem; }
.socials { display: flex; gap: 10px; margin-top: 1.4rem; }
.socials a { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; border: 1px solid rgba(255, 255, 255, .18); transition: all .2s; }
.socials a:hover { background: var(--sand); border-color: var(--sand); color: var(--forest); }
.socials svg { width: 18px; height: 18px; }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; border-top: 1px solid rgba(255, 255, 255, .1); margin-top: 48px; padding-top: 24px; font-size: .85rem; }

/* ---------- Barre d'appel mobile ---------- */
.callbar { position: fixed; inset: auto 12px 12px 12px; z-index: 90; display: flex; gap: 8px; padding: 8px; border-radius: 999px; background: var(--forest); box-shadow: 0 12px 30px -8px rgba(0, 0, 0, .45); transform: translateY(140%); transition: transform .4s var(--ease); }
.callbar.is-visible { transform: none; }
.callbar a { flex: 1; padding: .85em 1em; font-size: .95rem; }
@media (min-width: 1024px) { .callbar { display: none; } }
@media (max-width: 1023px) { .site-footer { padding-bottom: 100px; } }

/* ---------- Animations ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
.no-js .reveal { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}
