@import url("../fonts/fonts.css");

/* =========================================================================
   ABC LOC — feuille de style unique
   Palette : sable & lagon. Le site assume un rendu clair (color-scheme: light).
   ========================================================================= */

:root {
  --sand:        #FBF7F0;
  --sand-deep:   #F2EADD;
  --shell:       #FFFFFF;
  --ink:         #12312F;
  --ink-soft:    #4A605E;
  --ink-mute:    #7C8F8D;
  --lagoon:      #0E6B63;
  --lagoon-dark: #0A4F49;
  --lagoon-tint: #E4F0EE;
  /* jaune prélevé directement dans le logo ABC LOC — couleur d'action du site */
  --sun:         #F8C810;
  --sun-dark:    #D9AC00;  /* survol des boutons */
  --sun-deep:    #8A6100;  /* même famille, assombri pour rester lisible sur fond clair */
  --sun-tint:    #FDF4D6;
  --line:        #E4DBCB;

  --radius-s: 8px;
  --radius-m: 14px;
  --radius-l: 24px;
  --radius-pill: 999px;

  --shadow-s: 0 1px 2px rgba(18, 49, 47, .06), 0 2px 8px rgba(18, 49, 47, .05);
  --shadow-m: 0 4px 12px rgba(18, 49, 47, .07), 0 12px 32px rgba(18, 49, 47, .08);
  --shadow-l: 0 12px 28px rgba(18, 49, 47, .10), 0 28px 64px rgba(18, 49, 47, .12);

  --display: "Fraunces", "Iowan Old Style", Georgia, "Times New Roman", serif;
  --body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --wrap: 1180px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --header-h: 76px;

  color-scheme: light;
}

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--sand);
  color: var(--ink);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -.02em;
  margin: 0;
  font-variation-settings: "opsz" 48;
}

p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

:focus-visible {
  outline: 3px solid var(--ink);
  outline-offset: 3px;
  border-radius: 4px;
}
/* sur fond sombre l'encre disparaîtrait : on bascule sur le jaune du logo */
.hero :focus-visible, .section--ink :focus-visible,
.cta :focus-visible, .footer :focus-visible, .dock :focus-visible { outline-color: var(--sun); }

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }
.sr-only {
  position: absolute; 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: 50%; top: 0; transform: translate(-50%, -120%);
  background: var(--ink); color: var(--sand); padding: .7rem 1.2rem;
  border-radius: 0 0 var(--radius-s) var(--radius-s); z-index: 200; font-weight: 600;
}
.skip-link:focus { transform: translate(-50%, 0); }

/* ---------------------------------------------------------------- boutons */

.btn {
  --btn-bg: var(--sun);
  --btn-fg: var(--ink);
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .95rem 1.6rem;
  background: var(--btn-bg); color: var(--btn-fg);
  font-family: var(--body); font-size: .98rem; font-weight: 600; letter-spacing: -.01em;
  text-decoration: none; border: 0; border-radius: var(--radius-pill);
  cursor: pointer; white-space: nowrap;
  box-shadow: var(--shadow-s);
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease;
}
.btn:hover { background: var(--btn-hover, var(--sun-dark)); transform: translateY(-2px); box-shadow: var(--shadow-m); }
.btn:active { transform: translateY(0); }
.btn svg { width: 1.1em; height: 1.1em; flex: none; }

.btn--lagoon { --btn-bg: var(--lagoon); --btn-hover: var(--lagoon-dark); }
.btn--ghost {
  --btn-bg: transparent; --btn-fg: var(--ink); --btn-hover: var(--ink);
  border: 1.5px solid currentColor; box-shadow: none;
}
.btn--ghost:hover { color: #fff; }
.btn--light {
  --btn-bg: rgba(255,255,255,.14); --btn-fg: #fff; --btn-hover: rgba(255,255,255,.26);
  border: 1.5px solid rgba(255,255,255,.55); backdrop-filter: blur(6px);
}
.btn--sm { padding: .6rem 1.1rem; font-size: .88rem; }
.btn--block { width: 100%; }

/* ---------------------------------------------------------------- entête */

.header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  height: var(--header-h);
  display: flex; align-items: center;
  transition: background-color .3s ease, box-shadow .3s ease, border-color .3s ease;
  border-bottom: 1px solid transparent;
}
.header__inner { display: flex; align-items: center; gap: 1.5rem; width: 100%; }

.header--solid,
body:not(.has-hero) .header {
  background: rgba(251, 247, 240, .88);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom-color: var(--line);
}

.brand { display: flex; align-items: center; gap: .7rem; text-decoration: none; margin-right: auto; }
.brand img { width: 42px; height: auto; }
.brand__name {
  font-family: var(--display); font-weight: 700; font-size: 1.32rem;
  letter-spacing: -.03em; line-height: 1;
}
.brand__tag {
  display: block; font-family: var(--body); font-size: .66rem; font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase; color: var(--ink-mute); margin-top: .18rem;
}

.nav { display: flex; align-items: center; gap: 1.75rem; }
.nav a {
  text-decoration: none; font-size: .95rem; font-weight: 500; color: var(--ink-soft);
  position: relative; padding: .25rem 0; transition: color .18s ease;
}
.nav a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 2px;
  background: var(--sun-deep); transition: right .22s ease;
}
.nav a:hover { color: var(--ink); }
.nav a:hover::after, .nav a[aria-current="page"]::after { right: 0; }
.nav a[aria-current="page"] { color: var(--ink); font-weight: 600; }

.header--over .nav a { color: rgba(255,255,255,.85); }
.header--over .nav a:hover, .header--over .nav a[aria-current="page"] { color: #fff; }
.header--over .nav a::after { background: var(--sun); }
.header--over .brand__name { color: #fff; }
.header--over .brand__tag { color: rgba(255,255,255,.7); }
.header--over .burger span { background: #fff; }

.header__cta { display: inline-flex; }

/* le CTA interne au menu ne sert qu'en version mobile */
@media (min-width: 901px) { .nav > .btn { display: none; } }

.burger {
  display: none; width: 44px; height: 44px; border: 0; background: transparent;
  cursor: pointer; padding: 10px; flex-direction: column; justify-content: center; gap: 5px;
}
.burger span {
  display: block; height: 2px; width: 100%; background: var(--ink); border-radius: 2px;
  transition: transform .25s ease, opacity .2s ease;
}
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .burger { display: flex; }
  .header__cta { display: none; }
  .nav {
    position: fixed; inset: var(--header-h) 0 auto 0;
    background: var(--sand); border-bottom: 1px solid var(--line);
    flex-direction: column; align-items: stretch; gap: 0;
    padding: .5rem var(--gutter) 1.5rem;
    box-shadow: var(--shadow-m);
    transform: translateY(-130%); transition: transform .3s cubic-bezier(.4,0,.2,1);
  }
  .nav[data-open="true"] { transform: translateY(0); }
  .nav a { padding: .95rem 0; border-bottom: 1px solid var(--line); font-size: 1.05rem; color: var(--ink-soft) !important; }
  .nav a::after { display: none; }
  .nav .btn { margin-top: 1.1rem; color: #fff !important; }
}

/* ---------------------------------------------------------------- hero */

.hero {
  position: relative; min-height: min(88vh, 760px);
  display: flex; align-items: flex-end;
  padding: calc(var(--header-h) + 3rem) 0 0;
  isolation: isolate;
}
.hero__media { position: absolute; inset: 0; z-index: -2; overflow: hidden; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: center 55%; }
.hero__media::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgba(10,34,33,.94) 0%, rgba(10,34,33,.55) 42%, rgba(10,34,33,.32) 100%),
    linear-gradient(to right, rgba(10,34,33,.55) 0%, rgba(10,34,33,0) 65%);
}
.hero__inner { width: 100%; padding-bottom: clamp(2.5rem, 6vw, 4.5rem); color: #fff; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  font-size: .78rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
  color: var(--sun-deep); margin-bottom: 1.1rem;
}
.eyebrow::before { content: ""; width: 28px; height: 1.5px; background: currentColor; }
/* sur fond sombre, le jaune du logo peut s'exprimer en pleine intensité */
.hero .eyebrow, .section--ink .eyebrow, .footer .eyebrow { color: var(--sun); }

.hero h1 {
  font-size: clamp(2.5rem, 6.4vw, 4.6rem);
  font-variation-settings: "opsz" 144;
  max-width: 15ch; margin-bottom: 1.1rem;
  text-wrap: balance;
}
.hero h1 em { font-style: italic; color: var(--sun); }
.hero__lede {
  font-size: clamp(1.02rem, 1.9vw, 1.22rem); max-width: 46ch;
  color: rgba(255,255,255,.9); margin-bottom: 2rem;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: .8rem; align-items: center; }
.hero__from {
  margin-left: .4rem; font-size: .9rem; color: rgba(255,255,255,.78);
}
.hero__from b { font-family: var(--display); font-size: 1.5rem; color: var(--sun); font-weight: 700; }

/* bandeau de réassurance chevauchant le hero */
.trustbar {
  position: relative; z-index: 2;
  margin-top: -2.75rem;
}
.trustbar__grid {
  background: var(--shell); border-radius: var(--radius-l);
  box-shadow: var(--shadow-l);
  display: grid; grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border-top: 4px solid var(--sun); /* liseré aux couleurs du logo */
}
.trust {
  padding: 1.6rem 1.35rem; display: flex; flex-direction: column; gap: .45rem;
  border-right: 1px solid var(--line);
}
.trust:last-child { border-right: 0; }
.trust svg { width: 26px; height: 26px; color: var(--lagoon); }
.trust b { font-size: .98rem; font-weight: 600; letter-spacing: -.01em; }
.trust span { font-size: .86rem; color: var(--ink-mute); line-height: 1.5; }

@media (max-width: 860px) {
  .trustbar__grid { grid-template-columns: repeat(2, 1fr); }
  .trust:nth-child(2) { border-right: 0; }
  .trust:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
}
@media (max-width: 460px) {
  .trustbar__grid { grid-template-columns: 1fr; }
  .trust { border-right: 0; border-bottom: 1px solid var(--line); }
  .trust:last-child { border-bottom: 0; }
}

/* bannière de page intérieure */
.pagehead {
  padding: calc(var(--header-h) + clamp(3rem, 7vw, 5rem)) 0 clamp(2rem, 5vw, 3.5rem);
  background: linear-gradient(180deg, var(--sand-deep), var(--sand));
  border-bottom: 1px solid var(--line);
}
.pagehead h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); font-variation-settings: "opsz" 120; margin-bottom: .8rem; text-wrap: balance; }
.pagehead p { font-size: 1.08rem; color: var(--ink-soft); max-width: 58ch; }

/* ---------------------------------------------------------------- sections */

.section { padding: clamp(3.5rem, 8vw, 6rem) 0; }
.section--tint { background: var(--sand-deep); }
.section--ink { background: var(--ink); color: var(--sand); }
.section--ink .section__title h2 { color: var(--sand); }
.section--ink .section__title p { color: rgba(251,247,240,.72); }

.section__title { max-width: 62ch; margin-bottom: clamp(2rem, 4vw, 3rem); }
.section__title h2 {
  font-size: clamp(1.9rem, 4.2vw, 2.9rem);
  font-variation-settings: "opsz" 100;
  margin-bottom: .7rem; text-wrap: balance;
}
.section__title p { color: var(--ink-soft); font-size: 1.05rem; }

.section__head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 2rem; flex-wrap: wrap; margin-bottom: clamp(2rem, 4vw, 3rem);
}
.section__head .section__title { margin-bottom: 0; }

/* ---------------------------------------------------------------- véhicules */

.filters { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 2rem; }
.filter {
  padding: .5rem 1.05rem; border-radius: var(--radius-pill);
  border: 1.5px solid var(--line); background: transparent;
  font-family: var(--body); font-size: .88rem; font-weight: 500; color: var(--ink-soft);
  cursor: pointer; transition: all .18s ease;
}
.filter:hover { border-color: var(--lagoon); color: var(--lagoon); }
.filter[aria-pressed="true"] { background: var(--sun); border-color: var(--sun); color: var(--ink); font-weight: 600; }

.cars { display: grid; grid-template-columns: repeat(auto-fill, minmax(285px, 1fr)); gap: 1.5rem; }

.car {
  background: var(--shell); border-radius: var(--radius-l); overflow: hidden;
  display: flex; flex-direction: column;
  border: 1px solid var(--line);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.car:hover { transform: translateY(-4px); box-shadow: var(--shadow-m); border-color: transparent; }
.car[hidden] { display: none; }

.car__media { position: relative; aspect-ratio: 16 / 11; background: var(--sand-deep); overflow: hidden; }
.car__media img { width: 100%; height: 100%; object-fit: contain; padding: .6rem; transition: transform .35s ease; }
.car:hover .car__media img { transform: scale(1.035); }

.car__badge {
  position: absolute; top: .85rem; left: .85rem;
  background: var(--sun); color: var(--ink);
  font-size: .7rem; font-weight: 600; letter-spacing: .07em; text-transform: uppercase;
  padding: .3rem .7rem; border-radius: var(--radius-pill);
}
.car__badge--lagoon { background: var(--lagoon); color: #fff; }

.car__body { padding: 1.25rem 1.35rem 1.4rem; display: flex; flex-direction: column; flex: 1; gap: .9rem; }
.car__name { font-size: 1.22rem; font-variation-settings: "opsz" 40; line-height: 1.2; }
.car__sub { font-size: .84rem; color: var(--ink-mute); margin-top: .3rem; }

.chips { display: flex; flex-wrap: wrap; gap: .4rem; }
.chip {
  display: inline-flex; align-items: center; gap: .35rem;
  background: var(--lagoon-tint); color: var(--lagoon-dark);
  font-size: .78rem; font-weight: 500;
  padding: .3rem .65rem; border-radius: var(--radius-s);
}
.chip svg { width: .95em; height: .95em; }

.car__foot {
  margin-top: auto; padding-top: 1rem; border-top: 1px solid var(--line);
  display: flex; align-items: center; justify-content: space-between; gap: .8rem;
}
.price { line-height: 1.1; }
.price b { font-family: var(--display); font-size: 1.85rem; font-weight: 700; letter-spacing: -.03em; }
.price span { display: block; font-size: .76rem; color: var(--ink-mute); letter-spacing: .02em; }
.price--ask b { font-size: 1.15rem; color: var(--ink-soft); }

/* mention « à partir de » : le tarif est un prix d'appel, pas un prix ferme */
.price__from {
  font-size: .7rem !important; font-weight: 600; letter-spacing: .09em;
  text-transform: uppercase; color: var(--ink-mute); margin-bottom: .18rem;
}

.cars__empty {
  grid-column: 1 / -1; text-align: center; padding: 3rem 1rem;
  color: var(--ink-mute); font-size: 1.02rem;
}

/* ---------------------------------------------------------------- atouts */

.perks { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.25rem; }
.perk {
  background: var(--shell); border: 1px solid var(--line); border-radius: var(--radius-l);
  padding: 1.75rem 1.5rem;
}
.section--ink .perk { background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.14); }
.perk__icon {
  width: 48px; height: 48px; border-radius: var(--radius-m);
  background: var(--sun-tint); color: var(--sun-deep);
  display: grid; place-items: center; margin-bottom: 1.1rem;
}
.section--ink .perk__icon { background: rgba(248,200,16,.2); color: var(--sun); }
.perk__icon svg { width: 24px; height: 24px; }
.perk h3 { font-size: 1.15rem; font-variation-settings: "opsz" 36; margin-bottom: .5rem; }
.perk p { font-size: .93rem; color: var(--ink-soft); }
.section--ink .perk p { color: rgba(251,247,240,.72); }

/* ---------------------------------------------------------------- logements */

.stays { display: flex; flex-direction: column; gap: clamp(2.5rem, 6vw, 4.5rem); }
.stay {
  display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 3.5rem); align-items: center;
}
.stay:nth-child(even) .stay__media { order: 2; }
.stay__media {
  border-radius: var(--radius-l); overflow: hidden; box-shadow: var(--shadow-m);
  aspect-ratio: 4 / 3; background: var(--sand-deep);
}
.stay__media img { width: 100%; height: 100%; object-fit: cover; }
.stay__kind {
  font-size: .78rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: var(--lagoon); margin-bottom: .7rem;
}
.stay h3 { font-size: clamp(1.5rem, 3vw, 2.1rem); font-variation-settings: "opsz" 72; margin-bottom: .85rem; }
.stay p { color: var(--ink-soft); font-size: .99rem; }
.stay__amenities { margin: 1.2rem 0 1.5rem; }
.stay__actions { display: flex; flex-wrap: wrap; gap: .7rem; }

@media (max-width: 800px) {
  .stay { grid-template-columns: 1fr; }
  .stay:nth-child(even) .stay__media { order: 0; }
}

/* ---------------------------------------------------------------- fondateurs */

.founders { display: grid; grid-template-columns: minmax(0, .85fr) minmax(0, 1fr); gap: clamp(2rem, 5vw, 4rem); align-items: center; }
/* Portrait des fondateurs.
   Grille pure, sans positionnement absolu ni superposition : le comportement est
   identique de 320 px à 1400 px, ce qui évite les cassures en mobile. */
.founders__media { display: grid; gap: 1rem; }

.founders__photo {
  margin: 0; aspect-ratio: 4 / 5; overflow: hidden;
  border-radius: var(--radius-l); box-shadow: var(--shadow-l); background: var(--sand-deep);
}
.founders__photo img { width: 100%; height: 100%; object-fit: cover; }

.founders__foot { display: grid; grid-template-columns: 92px 1fr; gap: 1rem; align-items: center; }
.founders__thumb {
  margin: 0; aspect-ratio: 1; overflow: hidden;
  border-radius: var(--radius-m); box-shadow: var(--shadow-s); background: var(--sand-deep);
}
.founders__thumb img { width: 100%; height: 100%; object-fit: cover; }

.founders__caption {
  margin: 0; font-size: .89rem; line-height: 1.5; color: var(--ink-soft);
  border-left: 3px solid var(--sun); padding-left: .9rem;   /* le rappel du logo, sans encadrer les visages */
}

@media (max-width: 800px) { .founders__media { max-width: 420px; margin-inline: auto; } }
@media (max-width: 380px) {
  .founders__foot { grid-template-columns: 76px 1fr; gap: .8rem; }
  .founders__caption { font-size: .85rem; }
}
.founders blockquote {
  margin: 0 0 1.5rem; font-family: var(--display); font-size: clamp(1.3rem, 2.6vw, 1.8rem);
  line-height: 1.35; font-variation-settings: "opsz" 72; letter-spacing: -.02em;
}
.founders__sign { font-size: .92rem; color: var(--ink-mute); font-weight: 500; }
@media (max-width: 800px) { .founders { grid-template-columns: 1fr; } }

/* ---------------------------------------------------------------- avis Google */

.reviews {
  background: var(--shell); border: 1px solid var(--line); border-radius: var(--radius-l);
  border-top: 4px solid var(--sun); box-shadow: var(--shadow-m);
  padding: clamp(1.75rem, 4vw, 2.5rem);
  display: grid; grid-template-columns: auto auto 1fr auto; gap: clamp(1.25rem, 3vw, 2.5rem);
  align-items: center;
}
.reviews__score { text-align: center; }
.reviews__score b {
  display: block; font-family: var(--display); font-size: clamp(2.6rem, 6vw, 3.6rem);
  font-weight: 700; line-height: 1; letter-spacing: -.03em;
}
.reviews__count { font-size: .88rem; color: var(--ink-mute); margin-top: .35rem; }

/* étoiles : la part dorée est pilotée par --pct, un seul nombre à modifier */
.stars {
  position: relative; display: inline-block; margin-top: .45rem;
  font-size: 1.15rem; letter-spacing: .12em; color: #DCD5C6; line-height: 1;
}
.stars::before { content: "★★★★★"; }
.stars i {
  position: absolute; inset: 0 auto 0 0; overflow: hidden;
  width: var(--pct, 100%); color: var(--sun); font-style: normal;
}
.stars i::before { content: "★★★★★"; }

.reviews__body h3 { font-size: clamp(1.15rem, 2.4vw, 1.45rem); margin-bottom: .45rem; }
.reviews__body p { font-size: .95rem; color: var(--ink-soft); }
.reviews__sep { width: 1px; align-self: stretch; background: var(--line); }

@media (max-width: 760px) {
  .reviews { grid-template-columns: 1fr; text-align: center; gap: 1.25rem; }
  .reviews__sep { display: none; }
  .reviews__body p { max-width: 46ch; margin-inline: auto; }
}

/* témoignages : extraits courts d'avis Google réels, avec attribution */
.testimonials {
  margin-top: 1.75rem;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.1rem;
}
.testimonial {
  margin: 0; background: var(--shell); border: 1px solid var(--line); border-radius: var(--radius-l);
  padding: 1.35rem 1.5rem; display: flex; flex-direction: column; gap: .7rem;
}
.testimonial__stars { color: var(--sun); font-size: .95rem; letter-spacing: .12em; }
.testimonial blockquote {
  margin: 0; padding: 0; border: 0; font-family: var(--display); font-style: italic;
  font-size: 1.02rem; line-height: 1.45; color: var(--ink); font-variation-settings: "opsz" 30;
}
.testimonial blockquote::before { content: "\201C"; }
.testimonial blockquote::after { content: "\201D"; }
.testimonial figcaption { font-size: .84rem; font-weight: 600; color: var(--ink-mute); }
.testimonial figcaption::before { content: "— "; }

/* ---------------------------------------------------------------- FAQ */

.faq { max-width: 820px; }
.qa { border-bottom: 1px solid var(--line); }
.qa__q {
  width: 100%; display: flex; align-items: flex-start; justify-content: space-between; gap: 1.5rem;
  padding: 1.35rem 0; background: transparent; border: 0; cursor: pointer; text-align: left;
  font-family: var(--display); font-size: clamp(1.02rem, 2vw, 1.2rem); font-weight: 600;
  font-variation-settings: "opsz" 36; letter-spacing: -.015em; color: var(--ink);
}
.qa__q:hover { color: var(--lagoon); }
.qa__icon { flex: none; width: 26px; height: 26px; position: relative; margin-top: .18rem; }
.qa__icon::before, .qa__icon::after {
  content: ""; position: absolute; inset: 50% 3px auto 3px; height: 2px;
  background: var(--lagoon); border-radius: 2px; transition: transform .25s ease;
}
.qa__icon::after { transform: rotate(90deg); }
.qa__q[aria-expanded="true"] .qa__icon::after { transform: rotate(0deg); }

.qa__a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .3s ease; }
.qa__a > div { overflow: hidden; }
.qa[data-open="true"] .qa__a { grid-template-rows: 1fr; }
.qa__a p { padding-bottom: 1.35rem; color: var(--ink-soft); font-size: .99rem; max-width: 68ch; }

.todo {
  display: inline-block; background: var(--sun-tint); color: var(--sun-deep);
  border: 1px dashed var(--sun-deep); border-radius: var(--radius-s);
  padding: .15rem .5rem; font-size: .82rem; font-weight: 600;
}

/* ---------------------------------------------------------------- CTA final */

.cta {
  background: var(--lagoon); color: #fff; border-radius: var(--radius-l);
  padding: clamp(2.5rem, 6vw, 4rem); text-align: center;
  background-image: radial-gradient(circle at 15% 15%, rgba(217,164,65,.28), transparent 55%),
                    radial-gradient(circle at 85% 85%, rgba(248,200,16,.20), transparent 55%);
}
.cta h2 { font-size: clamp(1.8rem, 4vw, 2.7rem); font-variation-settings: "opsz" 100; margin-bottom: .9rem; text-wrap: balance; }
.cta p { color: rgba(255,255,255,.88); max-width: 52ch; margin-inline: auto; margin-bottom: 2rem; }
.cta__actions { display: flex; flex-wrap: wrap; gap: .8rem; justify-content: center; }

/* ---------------------------------------------------------------- contact */

.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.25rem; }
.contact-card {
  background: var(--shell); border: 1px solid var(--line); border-radius: var(--radius-l);
  padding: 1.75rem 1.6rem; display: flex; flex-direction: column; gap: .7rem;
}
.contact-card__icon {
  width: 46px; height: 46px; border-radius: var(--radius-m);
  background: var(--lagoon-tint); color: var(--lagoon-dark);
  display: grid; place-items: center;
}
.contact-card__icon svg { width: 22px; height: 22px; }
.contact-card h3 { font-size: 1.1rem; font-variation-settings: "opsz" 36; }
.contact-card a { color: var(--lagoon-dark); font-weight: 600; text-decoration: none; word-break: break-word; }
.contact-card a:hover { text-decoration: underline; }
.contact-card p { font-size: .93rem; color: var(--ink-soft); }

/* ---------------------------------------------------------------- pied */

.footer {
  background: var(--ink); color: rgba(251,247,240,.72);
  padding: clamp(3rem, 6vw, 4.5rem) 0 2rem;
  border-top: 5px solid var(--sun); /* rappel franc du logo en bas de page */
}
.footer__grid {
  display: grid; grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 1fr));
  gap: 2.5rem; padding-bottom: 2.5rem; border-bottom: 1px solid rgba(251,247,240,.14);
}
.footer .brand__name { color: var(--sand); }
.footer .brand__tag { color: rgba(251,247,240,.5); }
.footer__about { margin-top: 1.1rem; font-size: .92rem; max-width: 40ch; }
.footer h4 {
  font-family: var(--body); font-size: .74rem; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; color: var(--sun); margin-bottom: 1rem;
}
.footer ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: .6rem; }
.footer a { color: rgba(251,247,240,.72); text-decoration: none; font-size: .93rem; transition: color .18s ease; }
.footer a:hover { color: var(--sand); }
.footer__bottom {
  padding-top: 1.75rem; display: flex; flex-wrap: wrap; gap: 1rem;
  justify-content: space-between; font-size: .84rem; color: rgba(251,247,240,.5);
}
@media (max-width: 760px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 460px) { .footer__grid { grid-template-columns: 1fr; gap: 2rem; } }

/* ------------------------------------------------------- barre mobile fixe */

.dock {
  position: fixed; inset: auto 0 0 0; z-index: 90;
  display: none; gap: .6rem; padding: .7rem var(--gutter) calc(.7rem + env(safe-area-inset-bottom));
  background: rgba(251, 247, 240, .94);
  backdrop-filter: saturate(180%) blur(14px);
  border-top: 1px solid var(--line);
}
.dock .btn { flex: 1; padding: .85rem 1rem; }
@media (max-width: 900px) {
  .dock { display: flex; }
  body { padding-bottom: 78px; }
}

/* --------------------------------------------------------- WhatsApp flottant */

.wa-float {
  position: fixed; right: clamp(1rem, 3vw, 1.75rem); bottom: clamp(1rem, 3vw, 1.75rem);
  z-index: 95; width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; color: #fff; display: grid; place-items: center;
  box-shadow: var(--shadow-m); transition: transform .2s ease;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 30px; height: 30px; }
@media (max-width: 900px) { .wa-float { display: none; } }

/* ---------------------------------------------------------------- reveal */

/* l'état masqué n'est appliqué que si JS est actif : sans JS, tout reste visible */
.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s cubic-bezier(.2,.7,.3,1); }
.js .reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; transition: none; }
  .car, .btn, .wa-float { transition: none !important; }
}

/* ---------------------------------------------------------------- utilitaires */

.lead { font-size: 1.1rem; color: var(--ink-soft); max-width: 62ch; }
.prose h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin: 2.5rem 0 .9rem; font-variation-settings: "opsz" 72; }
.prose h3 { font-size: 1.2rem; margin: 1.75rem 0 .6rem; font-variation-settings: "opsz" 36; }
.prose ul { padding-left: 1.15rem; color: var(--ink-soft); }
.prose li { margin-bottom: .45rem; }
.note {
  background: var(--sun-tint); border-left: 4px solid var(--sun);
  border-radius: 0 var(--radius-m) var(--radius-m) 0;
  padding: 1.1rem 1.35rem; font-size: .95rem; color: var(--ink-soft);
}
