/* =====================================================================
   AMANDE ÉVÉNEMENTIEL — feuille de style (charte graphique 2026)
   Palette : or #A88D70 / #C8A97E / #CCB994 · gris-brun #615C52 · crème #F5F1E7 · bleu nuit #1F4E6B
   Typographies : Cormorant Garamond (titres) · Montserrat (texte)
   ===================================================================== */
:root {
  --ae-gold: #A88D70;
  --ae-gold-mid: #C8A97E;
  --ae-gold-light: #CCB994;
  --ae-gold-deep: #8a7156;      /* petit texte doré lisible (AA) */
  --ae-cream: #F5F1E7;
  --ae-cream-deep: #ece5d5;
  --ae-taupe: #615C52;          /* texte courant */
  --ae-ink: #3a3631;            /* titres, pied de page */
  --ae-ink-deep: #2c2925;
  --ae-navy: #1F4E6B;
  --ae-navy-deep: #17405a;
  --ae-white: #ffffff;
  --ae-border: #e4dccb;
  --ae-muted: #857f74;
  --font-display: 'Cormorant Garamond', 'Times New Roman', Georgia, serif;
  --font-body: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
  --track: 0.18em;
  --ease: 0.35s cubic-bezier(.25,.6,.3,1);
  --shadow: 0 18px 50px rgba(58,54,49,0.10);
  --nav-h: 82px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { overflow-x: hidden; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--ae-taupe);
  background: var(--ae-white);
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--ae-navy); text-decoration: none; }
strong, b { font-weight: 500; color: var(--ae-ink); }
p { margin: 0 0 1.1rem; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 400; color: var(--ae-ink); line-height: 1.15; margin: 0 0 .75rem; }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.6rem); }
h3 { font-size: clamp(1.4rem, 2.4vw, 1.75rem); }
h4 { font-size: 1.3rem; }
::selection { background: var(--ae-gold-light); color: var(--ae-ink-deep); }
[id] { scroll-margin-top: calc(var(--nav-h) + 1rem); }

.ae-skip { position: absolute; left: -9999px; top: 0; background: var(--ae-navy); color: #fff; padding: .6rem 1rem; z-index: 999; }
.ae-skip:focus { left: 1rem; top: 1rem; }
.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; }

/* ---------- Boutons ---------- */
.ae-btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: .76rem;
  font-weight: 500;
  letter-spacing: var(--track);
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  padding: 1.02rem 2.1rem;
  border: 1px solid var(--ae-ink);
  color: var(--ae-ink);
  background: transparent;
  cursor: pointer;
  line-height: 1.3;
  transition: background var(--ease), color var(--ease), border-color var(--ease), transform var(--ease), box-shadow var(--ease);
}
.ae-btn:hover { background: var(--ae-ink); color: #fff; transform: translateY(-2px); }
.ae-btn--primary { background: var(--ae-navy); border-color: var(--ae-navy); color: #fff; }
.ae-btn--primary:hover { background: var(--ae-navy-deep); border-color: var(--ae-navy-deep); color: #fff; box-shadow: 0 12px 28px rgba(31,78,107,.28); }
.ae-btn--gold { background: var(--ae-gold); border-color: var(--ae-gold); color: #fff; }
.ae-btn--gold:hover { background: var(--ae-gold-deep); border-color: var(--ae-gold-deep); color: #fff; }
.ae-btn--light { border-color: rgba(255,255,255,.85); color: #fff; background: rgba(40,32,26,.22); -webkit-backdrop-filter: blur(3px); backdrop-filter: blur(3px); }
.ae-btn--light:hover { background: #fff; color: var(--ae-ink); border-color: #fff; }
.ae-btn--lg { padding: 1.15rem 2.6rem; font-size: .82rem; }
.ae-btn + .ae-btn { margin-left: .75rem; }
.ae-link {
  display: inline-block; font-size: .78rem; font-weight: 500; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ae-gold-deep); border-bottom: 1px solid var(--ae-gold-light); padding-bottom: .2rem;
  transition: color var(--ease), border-color var(--ease);
}
.ae-link:hover { color: var(--ae-navy); border-color: var(--ae-navy); }
.ae-link::after { content: "\2192"; margin-left: .45rem; }

/* ---------- Navigation ---------- */
.ae-nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.96);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--ae-border);
}
.ae-nav__inner {
  max-width: 1320px; margin: 0 auto; padding: 0 1.5rem;
  min-height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between; gap: 1.25rem;
}
.ae-nav__logo { flex: 0 0 auto; }
.ae-nav__logo a { display: inline-flex; align-items: center; }
.ae-nav__logo img { height: 52px; width: auto; }
.ae-nav__panel { display: flex; align-items: center; gap: 1.6rem; flex: 1 1 auto; justify-content: flex-end; }
.ae-nav__links { display: flex; list-style: none; margin: 0; padding: 0; gap: 0 1.3rem; }
.ae-nav__links a {
  position: relative; display: inline-block; padding: .55rem 0;
  font-size: .72rem; font-weight: 500; letter-spacing: .12em; text-transform: uppercase;
  color: var(--ae-ink); white-space: nowrap; transition: color var(--ease);
}
.ae-nav__links a::after { content: ""; position: absolute; left: 0; right: 0; bottom: .2rem; height: 1px; background: var(--ae-gold); transform: scaleX(0); transform-origin: left; transition: transform var(--ease); }
.ae-nav__links a:hover, .ae-nav__links a.active { color: var(--ae-gold-deep); }
.ae-nav__links a:hover::after, .ae-nav__links a.active::after { transform: scaleX(1); }
.ae-nav__phone { display: inline-flex; align-items: center; gap: .4rem; font-size: .8rem; font-weight: 500; color: var(--ae-ink); white-space: nowrap; letter-spacing: .03em; }
.ae-nav__phone svg { width: 14px; height: 14px; fill: var(--ae-gold); }
.ae-nav__phone:hover { color: var(--ae-gold-deep); }
.ae-nav__cta { padding: .75rem 1.15rem; font-size: .66rem; letter-spacing: .14em; white-space: nowrap; }
.ae-nav__toggle { position: absolute; opacity: 0; width: 0; height: 0; pointer-events: none; }
.ae-nav__burger { display: none; }
.ae-nav__spacer { display: none; }
.ae-nav__lang-desktop { display: inline-flex; }

/* Sélecteur de langue */
.ae-lang { display: inline-flex; align-items: center; gap: .1rem; font-size: .72rem; font-weight: 500; letter-spacing: .08em; }
.ae-lang a, .ae-lang span { padding: .2rem .35rem; color: var(--ae-muted); }
.ae-lang a:hover { color: var(--ae-gold-deep); }
.ae-lang [aria-current="true"] { color: var(--ae-ink); border-bottom: 1px solid var(--ae-gold); }
.ae-lang__sep { color: var(--ae-border); }

/* Barre de progression de lecture */
.ae-progress { position: absolute; left: 0; right: 0; bottom: -1px; height: 2px; overflow: hidden; pointer-events: none; }
.ae-progress span { display: block; height: 100%; width: 100%; background: linear-gradient(90deg, var(--ae-gold), var(--ae-gold-light)); transform: scaleX(0); transform-origin: left; transition: transform .1s linear; }

/* ---------- Hero ---------- */
.ae-hero {
  position: relative; min-height: calc(100vh - var(--nav-h)); min-height: calc(100svh - var(--nav-h));
  display: flex; align-items: center; justify-content: center; text-align: center; overflow: hidden;
  color: #fff;
}
.ae-hero--compact { min-height: 62vh; }
.ae-hero__bg { position: absolute; inset: 0; }
.ae-hero__slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.4s ease-in-out; }
.ae-hero__slide.is-active { opacity: 1; z-index: 1; animation: ae-kenburns 14s ease-out forwards; }
@keyframes ae-kenburns { from { transform: scale(1); } to { transform: scale(1.07); } }
.ae-hero__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.ae-hero__overlay { position: absolute; inset: 0; z-index: 2; background: linear-gradient(180deg, rgba(44,41,37,.38) 0%, rgba(44,41,37,.30) 45%, rgba(44,41,37,.58) 100%); }
.ae-hero__content { position: relative; z-index: 3; width: 100%; max-width: 860px; padding: 5rem 1.5rem 4.5rem; }
.ae-hero__overline {
  font-size: .72rem; font-weight: 500; letter-spacing: .3em; text-transform: uppercase; color: var(--ae-gold-light);
  margin: 0 0 1.4rem;
}
.ae-hero__overline::before, .ae-hero__overline::after { content: ""; display: inline-block; width: 28px; height: 1px; background: var(--ae-gold-light); vertical-align: middle; margin: 0 .8rem; opacity: .8; }
.ae-hero__baseline {
  font-family: var(--font-display); font-weight: 300; font-style: italic;
  font-size: clamp(2.3rem, 5.6vw, 4.2rem); line-height: 1.08; color: #fff; margin: 0 0 1.25rem;
  text-shadow: 0 2px 22px rgba(0,0,0,.28);
}
.ae-hero__title {
  font-family: var(--font-display); font-weight: 400; font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.94); margin: 0 0 1.4rem;
}
.ae-hero__sub { font-size: clamp(.98rem, 1.5vw, 1.1rem); line-height: 1.75; color: rgba(255,255,255,.92); max-width: 700px; margin: 0 auto 2.2rem; font-weight: 300; }
.ae-hero__actions { display: flex; flex-wrap: wrap; gap: .9rem; justify-content: center; }
.ae-hero__actions .ae-btn + .ae-btn { margin-left: 0; }
.ae-hero__actions .ae-btn--primary { box-shadow: 0 8px 26px rgba(0,0,0,.25); }
.ae-hero__scroll { position: absolute; bottom: 1.4rem; left: 50%; transform: translateX(-50%); z-index: 3; width: 1px; height: 54px; background: linear-gradient(180deg, rgba(255,255,255,0), rgba(255,255,255,.85)); animation: ae-scroll 2.4s ease-in-out infinite; }
@keyframes ae-scroll { 0% { transform: translate(-50%, -10px); opacity: 0; } 40% { opacity: 1; } 100% { transform: translate(-50%, 12px); opacity: 0; } }

/* Hero sans photo (contact, pages légales) */
.ae-hero--text { min-height: 0; color: var(--ae-ink); background: var(--ae-cream); text-align: center; }
.ae-hero--text .ae-hero__content { padding: 5rem 1.5rem 3.5rem; }
.ae-hero--text .ae-hero__overline { color: var(--ae-gold-deep); }
.ae-hero--text .ae-hero__overline::before, .ae-hero--text .ae-hero__overline::after { background: var(--ae-gold); }
.ae-hero--text .ae-hero__baseline { color: var(--ae-ink); text-shadow: none; }
.ae-hero--text .ae-hero__title { color: var(--ae-gold-deep); }
.ae-hero--text .ae-hero__sub { color: var(--ae-taupe); }

/* Sommaire ancré */
.ae-subnav { background: var(--ae-cream); border-bottom: 1px solid var(--ae-border); }
.ae-subnav ul { list-style: none; margin: 0 auto; padding: .55rem 1.5rem; max-width: 1200px; display: flex; flex-wrap: wrap; justify-content: center; gap: .25rem 0; }
.ae-subnav a { display: inline-block; padding: .55rem .95rem; font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 500; color: var(--ae-ink); border-bottom: 1px solid transparent; transition: color var(--ease), border-color var(--ease); }
.ae-subnav a:hover { color: var(--ae-gold-deep); border-color: var(--ae-gold); }
.ae-subnav li + li::before { content: "\00b7"; color: var(--ae-gold); margin: 0 .1rem; }

/* ---------- Sections & typographie ---------- */
.ae-section { padding: clamp(4rem, 8vw, 6.5rem) 1.5rem; }
.ae-section--cream { background: var(--ae-cream); }
.ae-section--tight { padding-top: clamp(2.5rem, 5vw, 4rem); padding-bottom: clamp(2.5rem, 5vw, 4rem); }
.ae-section--dark { background: var(--ae-ink); color: rgba(255,255,255,.86); }
.ae-section--dark h2, .ae-section--dark h3, .ae-section--dark strong { color: #fff; }
.ae-container { max-width: 1100px; margin: 0 auto; }
.ae-container--narrow { max-width: 720px; }
.ae-container--text { max-width: 780px; }
.ae-container--wide { max-width: 1240px; }
.ae-center { text-align: center; }
.ae-overline {
  font-size: .7rem; font-weight: 500; letter-spacing: .26em; text-transform: uppercase; color: var(--ae-gold-deep);
  margin: 0 0 1rem; display: flex; align-items: center; gap: .8rem;
}
.ae-overline::before { content: ""; width: 34px; height: 1px; background: var(--ae-gold); flex: none; }
.ae-center .ae-overline, .ae-overline--center { justify-content: center; }
.ae-center .ae-overline::after, .ae-overline--center::after { content: ""; width: 34px; height: 1px; background: var(--ae-gold); flex: none; }
.ae-title { font-size: clamp(2rem, 4vw, 2.85rem); font-weight: 300; line-height: 1.12; margin: 0 0 1rem; letter-spacing: .005em; }
.ae-title em { font-style: italic; color: var(--ae-gold-deep); }
.ae-subtitle { font-family: var(--font-display); font-style: italic; font-weight: 300; font-size: clamp(1.25rem, 2.2vw, 1.6rem); color: var(--ae-gold-deep); line-height: 1.35; margin: 0 0 1.4rem; }
.ae-lead { font-size: 1.08rem; line-height: 1.8; color: var(--ae-taupe); margin: 0 0 1.25rem; }
.ae-center .ae-lead, .ae-lead--center { margin-left: auto; margin-right: auto; max-width: 760px; }
.ae-prose { max-width: 760px; }
.ae-prose h3 { margin-top: 2.4rem; }
.ae-prose h4 { margin-top: 1.8rem; font-size: 1.35rem; }
.ae-prose ul { padding-left: 1.2rem; margin: 0 0 1.25rem; }
.ae-prose li { margin-bottom: .45rem; }
.ae-prose a:not(.ae-btn):not(.ae-link) { color: var(--ae-navy); border-bottom: 1px solid rgba(31,78,107,.35); }
.ae-prose a:not(.ae-btn):not(.ae-link):hover { border-color: var(--ae-navy); }
.ae-section-head { max-width: 780px; margin: 0 auto 3rem; text-align: center; }
.ae-section-head--left { margin-left: 0; text-align: left; }
.ae-section-head--left .ae-overline { justify-content: flex-start; }
.ae-section-head--left .ae-overline::after { display: none; }
.ae-small { font-size: .84rem; color: var(--ae-muted); line-height: 1.7; }
.ae-mention { font-size: .78rem; letter-spacing: .06em; color: var(--ae-muted); text-align: center; margin: 1.8rem auto 0; max-width: 760px; line-height: 1.8; }
.ae-mention--light { color: rgba(255,255,255,.62); }

/* Ornements */
.ae-rule { display: flex; align-items: center; justify-content: center; gap: .9rem; margin: 2.2rem auto; }
.ae-rule::before, .ae-rule::after { content: ""; width: 64px; height: 1px; background: var(--ae-gold-light); }
.ae-rule span { width: 6px; height: 6px; background: var(--ae-gold); transform: rotate(45deg); }
.ae-ornament { display: flex; justify-content: center; margin: 3.5rem auto; }
.ae-ornament img { width: 74px; height: auto; opacity: .9; }
.ae-ornament--lines { align-items: center; gap: 1.5rem; }
.ae-ornament--lines::before, .ae-ornament--lines::after { content: ""; flex: 0 1 140px; height: 1px; background: var(--ae-gold-light); }

/* Encadré « précision utile » */
.ae-note { border-left: 2px solid var(--ae-gold); background: var(--ae-cream); padding: 1.15rem 1.4rem; margin: 1.6rem 0; font-size: .94rem; line-height: 1.75; }
.ae-note strong { display: block; font-family: var(--font-display); font-size: 1.15rem; font-weight: 500; color: var(--ae-gold-deep); margin-bottom: .25rem; }
.ae-note p:last-child { margin-bottom: 0; }
.ae-section--cream .ae-note { background: #fff; }

/* Listes à puces feuilles / coches */
.ae-list { list-style: none; margin: 0 0 1.5rem; padding: 0; }
.ae-list li { position: relative; padding-left: 1.7rem; margin-bottom: .6rem; line-height: 1.65; }
.ae-list li::before {
  content: ""; position: absolute; left: 0; top: .62em; width: 9px; height: 9px;
  border: 1px solid var(--ae-gold); transform: rotate(45deg);
}
.ae-list--check li::before { width: 7px; height: 12px; border: 0; border-right: 1.5px solid var(--ae-gold); border-bottom: 1.5px solid var(--ae-gold); top: .35em; left: .3rem; }
.ae-list--cols { columns: 2; column-gap: 2.5rem; }
.ae-list--cols li { break-inside: avoid; }

/* ---------- Grilles génériques ---------- */
.ae-grid { display: grid; gap: 1.75rem; }
.ae-grid > *, .ae-split > *, .ae-values > li, .ae-steps > li, .ae-cases > li, .ae-quotes > li, .ae-formule__includes > div, .ae-row > div, .ae-contact > * { min-width: 0; }
.ae-grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.ae-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.ae-grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

/* ---------- Cartes prestations ---------- */
.ae-card {
  background: #fff; border: 1px solid var(--ae-border); display: flex; flex-direction: column;
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}
.ae-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--ae-gold-light); }
.ae-card__media { aspect-ratio: 4/3; overflow: hidden; }
.ae-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s ease; }
.ae-card:hover .ae-card__media img { transform: scale(1.05); }
.ae-card__body { padding: 1.8rem 1.7rem 1.9rem; display: flex; flex-direction: column; flex: 1; }
.ae-card__kicker { font-size: .66rem; letter-spacing: .24em; text-transform: uppercase; font-weight: 500; color: var(--ae-gold-deep); margin: 0 0 .55rem; }
.ae-card__title { font-size: 1.7rem; font-weight: 400; margin: 0 0 .3rem; line-height: 1.15; }
.ae-card__sub { font-family: var(--font-display); font-style: italic; font-size: 1.15rem; color: var(--ae-gold-deep); margin: 0 0 .9rem; }
.ae-card p { font-size: .95rem; }
.ae-card__price { margin: auto 0 1.1rem; padding-top: 1rem; border-top: 1px solid var(--ae-border); font-family: var(--font-display); font-size: 1.55rem; color: var(--ae-ink); line-height: 1.2; }
.ae-card__price small { font-family: var(--font-body); font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; color: var(--ae-muted); display: block; margin-bottom: .1rem; }

/* ---------- Bloc image + texte ---------- */
.ae-split { display: grid; gap: 3rem; align-items: center; }
.ae-split__media { position: relative; }
.ae-split__media img { width: 100%; height: auto; box-shadow: var(--shadow); }
.ae-split__media--frame::before { content: ""; position: absolute; inset: 16px -16px -16px 16px; border: 1px solid var(--ae-gold-light); z-index: -1; }
.ae-split__media--portrait img { aspect-ratio: 4/5; object-fit: cover; }
.ae-split__media--landscape img { aspect-ratio: 4/3; object-fit: cover; }
.ae-split__body .ae-overline { justify-content: flex-start; }
.ae-split__body .ae-overline::after { display: none; }
.ae-split__body .ae-btn, .ae-split__body .ae-link { margin-top: .6rem; }
@media (min-width: 860px) {
  .ae-split { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 4.5rem; }
  .ae-split--wide-text { align-items: start; }
  .ae-split--wide-text .ae-split__media { position: sticky; top: calc(var(--nav-h) + 1.5rem); }
  .ae-split--reverse .ae-split__media { order: 2; }
  .ae-split--wide-text { grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); }
  .ae-split--wide-text.ae-split--reverse { grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); }
}

/* ---------- Formules (page organisation) ---------- */
.ae-formule { padding: clamp(3rem, 6vw, 5rem) 0; border-top: 1px solid var(--ae-border); }
.ae-formule:first-of-type { border-top: 0; }
.ae-formule__head { display: grid; gap: 2.5rem; align-items: end; margin-bottom: 2.5rem; }
.ae-formule__price { font-family: var(--font-display); font-size: 1.05rem; color: var(--ae-ink); }
@media (min-width: 860px) { .ae-formule__price { text-align: right; } }
.ae-formule__price strong { display: block; font-size: 2.4rem; font-weight: 300; color: var(--ae-gold-deep); line-height: 1; margin-top: .3rem; }
.ae-formule__includes { display: grid; gap: 1.5rem 2.5rem; }
.ae-formule__includes h4 { font-size: 1.05rem; font-family: var(--font-body); font-weight: 500; letter-spacing: .08em; text-transform: uppercase; color: var(--ae-gold-deep); margin: 0 0 .8rem; padding-bottom: .5rem; border-bottom: 1px solid var(--ae-border); }
.ae-formule__includes .ae-list li { font-size: .93rem; margin-bottom: .45rem; }
.ae-formule__cta { margin-top: 2rem; display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 1.5rem; }
@media (min-width: 860px) {
  .ae-formule__head { grid-template-columns: minmax(0, 1fr) auto; }
  .ae-formule__includes { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .ae-formule__includes--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

/* ---------- Bloc tarif ---------- */
.ae-price { text-align: center; border: 1px solid var(--ae-gold-light); padding: 2.4rem 1.6rem; position: relative; background: #fff; }
.ae-price::before { content: ""; position: absolute; inset: 6px; border: 1px solid var(--ae-border); pointer-events: none; }
.ae-price .ae-price__label { font-size: .68rem; letter-spacing: .24em; text-transform: uppercase; color: var(--ae-muted); font-weight: 500; margin: 0 0 .5rem; }
.ae-price .ae-price__amount { font-family: var(--font-display); font-size: clamp(2.4rem, 5vw, 3.4rem); font-weight: 300; color: var(--ae-gold-deep); line-height: 1; margin: 0 0 1.2rem; }
.ae-price__amount small { font-size: 1rem; font-style: italic; display: block; margin-bottom: .4rem; color: var(--ae-taupe); }
.ae-price p { font-size: .93rem; max-width: 620px; margin-left: auto; margin-right: auto; }
.ae-price h4 { font-family: var(--font-body); font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; font-weight: 500; color: var(--ae-ink); margin: 1.4rem 0 .5rem; }
.ae-price .ae-btn { margin-top: 1rem; }

/* ---------- Étapes numérotées ---------- */
.ae-steps { display: grid; gap: 2rem; counter-reset: etape; list-style: none; margin: 0; padding: 0; }
.ae-step { position: relative; padding-top: 1rem; }
.ae-step::before { counter-increment: etape; content: "0" counter(etape); font-family: var(--font-display); font-size: 3.2rem; font-weight: 300; line-height: 1; color: var(--ae-gold-light); display: block; margin-bottom: .6rem; }
.ae-step h3 { font-size: 1.45rem; margin-bottom: .5rem; }
.ae-step h3 em { color: var(--ae-gold-deep); }
.ae-step p { font-size: .95rem; margin: 0; }
.ae-steps--line .ae-step { border-top: 1px solid var(--ae-border); }
@media (min-width: 720px) { .ae-steps--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); } .ae-steps--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); } .ae-steps--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); } }

/* ---------- Valeurs / atouts (cartes sobres) ---------- */
.ae-values { display: grid; gap: 1.25rem; list-style: none; margin: 0; padding: 0; }
.ae-values li { background: #fff; border: 1px solid var(--ae-border); padding: 1.7rem 1.6rem; font-size: .94rem; transition: transform var(--ease), box-shadow var(--ease); }
.ae-values li:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.ae-values h3, .ae-values h4 { font-size: 1.45rem; margin: 0 0 .45rem; }
.ae-values p { margin: 0; }
.ae-section--cream .ae-values li { border-color: #fff; }
@media (min-width: 720px) { .ae-values--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); } .ae-values--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (min-width: 960px) { .ae-values--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); } }

/* ---------- Tableau comparatif ---------- */
.ae-table-wrap { overflow-x: auto; margin-top: 2rem; -webkit-overflow-scrolling: touch; }
.ae-table { width: 100%; border-collapse: collapse; min-width: 620px; background: #fff; font-size: .92rem; }
.ae-table th, .ae-table td { padding: .95rem 1rem; border-bottom: 1px solid var(--ae-border); text-align: center; }
.ae-table th:first-child, .ae-table td:first-child { text-align: left; }
.ae-table thead th { font-family: var(--font-display); font-size: 1.35rem; font-weight: 400; color: var(--ae-ink); border-bottom: 1px solid var(--ae-gold); }
.ae-table thead th small { display: block; font-family: var(--font-body); font-size: .62rem; letter-spacing: .2em; text-transform: uppercase; color: var(--ae-gold-deep); margin-top: .2rem; }
.ae-table tbody tr:nth-child(even) { background: var(--ae-cream); }
.ae-table .yes { color: var(--ae-gold-deep); font-size: 1.15rem; }
.ae-table .no { color: var(--ae-border); }
.ae-table tfoot td { font-family: var(--font-display); font-size: 1.25rem; color: var(--ae-ink); border-bottom: 0; border-top: 1px solid var(--ae-gold); }

/* ---------- FAQ ---------- */
.ae-faq { max-width: 820px; margin: 0 auto; }
.ae-faq details { border-bottom: 1px solid var(--ae-border); }
.ae-faq details:first-child { border-top: 1px solid var(--ae-border); }
.ae-faq summary { list-style: none; cursor: pointer; padding: 1.25rem 2.5rem 1.25rem 0; position: relative; font-family: var(--font-display); font-size: 1.35rem; color: var(--ae-ink); transition: color var(--ease); }
.ae-faq summary::-webkit-details-marker { display: none; }
.ae-faq summary::after { content: "+"; position: absolute; right: .2rem; top: 50%; transform: translateY(-50%); font-family: var(--font-body); font-weight: 300; font-size: 1.5rem; color: var(--ae-gold); transition: transform var(--ease); }
.ae-faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.ae-faq summary:hover { color: var(--ae-gold-deep); }
.ae-faq details p { margin: 0 0 1.4rem; font-size: .95rem; max-width: 720px; }

/* ---------- Cas de figure ---------- */
.ae-cases { display: grid; gap: 1.25rem; list-style: none; margin: 0; padding: 0; }
.ae-cases li { border: 1px solid var(--ae-border); padding: 1.6rem 1.5rem; background: #fff; }
.ae-cases span { display: block; font-size: .66rem; letter-spacing: .22em; text-transform: uppercase; color: var(--ae-gold-deep); font-weight: 500; margin-bottom: .5rem; }
.ae-cases h3 { font-size: 1.4rem; margin-bottom: .5rem; }
.ae-cases p { font-size: .93rem; margin: 0; }
@media (min-width: 720px) { .ae-cases { grid-template-columns: repeat(2, minmax(0, 1fr)); } }

/* ---------- Bande CTA ---------- */
.ae-cta { background: var(--ae-ink) center/cover no-repeat; color: rgba(255,255,255,.85); text-align: center; position: relative; overflow: hidden; }
.ae-cta::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(44,41,37,.78), rgba(44,41,37,.84)); pointer-events: none; }
.ae-cta::after { content: ""; position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 120%, rgba(168,141,112,.28), transparent 60%); pointer-events: none; }
.ae-cta .ae-container { z-index: 1; }
.ae-cta .ae-container { position: relative; }
.ae-cta .ae-overline { color: var(--ae-gold-light); justify-content: center; }
.ae-cta .ae-overline::before, .ae-cta .ae-overline::after { content: ""; width: 34px; height: 1px; background: var(--ae-gold); }
.ae-cta .ae-title { color: #fff; }
.ae-cta .ae-lead { color: rgba(255,255,255,.82); max-width: 720px; margin-left: auto; margin-right: auto; }
.ae-cta .ae-btn--primary { background: var(--ae-gold); border-color: var(--ae-gold); }
.ae-cta .ae-btn--primary:hover { background: var(--ae-gold-mid); border-color: var(--ae-gold-mid); color: var(--ae-ink); box-shadow: 0 12px 28px rgba(0,0,0,.3); }
.ae-cta .ae-btn--light { background: transparent; }
.ae-cta .ae-mention { color: rgba(255,255,255,.55); }
.ae-cta__logo { width: 72px; margin: 0 auto 1.5rem; opacity: .95; }

/* ---------- Récits (réalisations) ---------- */
.ae-story { padding: clamp(3rem, 6vw, 5rem) 0; }
.ae-story__head { text-align: center; max-width: 820px; margin: 0 auto 2.2rem; }
.ae-story__head h3 { font-size: clamp(1.9rem, 3.4vw, 2.5rem); font-weight: 300; margin: 0 0 .9rem; }
.ae-story__meta { list-style: none; margin: 0 auto 2.5rem; padding: 0; display: flex; flex-wrap: wrap; justify-content: center; gap: .5rem 1.2rem; font-size: .68rem; letter-spacing: .2em; text-transform: uppercase; color: var(--ae-muted); font-weight: 500; }
.ae-story__meta strong { color: var(--ae-gold-deep); font-weight: 500; }
.ae-story__meta li + li::before { content: "//"; margin-right: 1.2rem; color: var(--ae-gold-light); }
.ae-story__cover { margin: 0 0 3rem; overflow: hidden; }
.ae-story__cover img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.ae-story__cover--portrait img { aspect-ratio: 4/5; max-width: 560px; margin: 0 auto; }
.ae-story__body { display: grid; gap: 2.5rem; }
.ae-story__text h4 { font-size: 1.15rem; font-family: var(--font-body); font-weight: 500; letter-spacing: .12em; text-transform: uppercase; color: var(--ae-gold-deep); margin: 0 0 1rem; }
.ae-story__text h5 { font-family: var(--font-display); font-size: 1.35rem; font-weight: 400; color: var(--ae-ink); margin: 1.6rem 0 .5rem; }
.ae-story__text p { font-size: .97rem; }
.ae-story__anecdote { background: var(--ae-cream); padding: 2rem 1.8rem; position: relative; align-self: start; }
.ae-story__anecdote::before { content: "\201C"; position: absolute; top: -.2rem; left: 1.2rem; font-family: var(--font-display); font-size: 5rem; color: var(--ae-gold-light); line-height: 1; }
.ae-story__anecdote h4 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 400; text-transform: none; letter-spacing: 0; color: var(--ae-ink); margin: .8rem 0 .8rem; }
.ae-story__anecdote p { font-size: .95rem; }
.ae-story__anecdote p:last-child { margin-bottom: 0; }
.ae-section--cream .ae-story__anecdote { background: #fff; }
.ae-story__gallery { margin-top: 2.8rem; }
@media (min-width: 900px) { .ae-story__body { grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); align-items: start; } }

/* ---------- Galeries ---------- */
.ae-gallery { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .75rem; }
.ae-gallery a, .ae-gallery figure { margin: 0; overflow: hidden; display: block; position: relative; background: var(--ae-cream); min-width: 0; }
.ae-gallery img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 1/1; cursor: zoom-in; transition: transform 1s ease, filter .6s ease; }
.ae-gallery a:hover img { transform: scale(1.04); }
.ae-gallery figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: 1.6rem .9rem .7rem; font-size: .66rem; letter-spacing: .16em; text-transform: uppercase; color: #fff; background: linear-gradient(180deg, transparent, rgba(44,41,37,.7)); opacity: 0; transition: opacity var(--ease); pointer-events: none; }
.ae-gallery a:hover figcaption { opacity: 1; }
.ae-gallery--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.ae-gallery--mosaic .tall img { aspect-ratio: 3/4; }
.ae-gallery--mosaic .wide { grid-column: span 2; }
.ae-gallery--mosaic .wide img { aspect-ratio: 2/1; }
@media (min-width: 720px) {
  .ae-gallery { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
  .ae-gallery--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .ae-gallery--mosaic { grid-template-columns: repeat(4, minmax(0, 1fr)); grid-auto-flow: dense; }
  .ae-gallery--mosaic .tall { grid-row: span 2; }
  .ae-gallery--mosaic .tall img { aspect-ratio: auto; height: 100%; }
  .ae-gallery--mosaic .wide img { aspect-ratio: 2/1; }
}

/* ---------- Témoignages ---------- */
.ae-quotes { display: grid; gap: 1.5rem; list-style: none; margin: 0; padding: 0; }
.ae-quote { background: #fff; border: 1px solid var(--ae-border); padding: 2rem 1.8rem 1.7rem; position: relative; font-size: .94rem; display: flex; flex-direction: column; }
.ae-quote::before { content: "\201C"; font-family: var(--font-display); font-size: 4rem; color: var(--ae-gold-light); line-height: .6; display: block; margin-bottom: .9rem; }
.ae-quote p { margin: 0 0 1.2rem; font-style: italic; font-family: var(--font-display); font-size: 1.22rem; line-height: 1.45; color: var(--ae-ink); flex: 1; }
.ae-quote footer { font-size: .68rem; letter-spacing: .2em; text-transform: uppercase; color: var(--ae-gold-deep); font-weight: 500; }
.ae-quote footer span { display: block; color: var(--ae-muted); letter-spacing: .08em; text-transform: none; margin-top: .2rem; font-weight: 300; }
.ae-stars { color: var(--ae-gold); letter-spacing: .1em; font-size: .85rem; margin-bottom: .5rem; }
@media (min-width: 720px) { .ae-quotes { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1000px) { .ae-quotes { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.ae-reviews { margin-top: 2.5rem; }
.ae-reviews:empty { display: none; }

/* ---------- Timeline (contact : la suite) ---------- */
.ae-timeline { list-style: none; margin: 0; padding: 0; position: relative; counter-reset: tl; }
.ae-timeline::before { content: ""; position: absolute; left: 22px; top: 8px; bottom: 8px; width: 1px; background: var(--ae-gold-light); }
.ae-timeline li { position: relative; padding: 0 0 2rem 4rem; }
.ae-timeline li::before { counter-increment: tl; content: counter(tl); position: absolute; left: 0; top: -.1rem; width: 45px; height: 45px; border-radius: 50%; background: #fff; border: 1px solid var(--ae-gold); color: var(--ae-gold-deep); font-family: var(--font-display); font-size: 1.35rem; display: flex; align-items: center; justify-content: center; }
.ae-timeline h3 { font-size: 1.4rem; margin-bottom: .4rem; }
.ae-timeline h3 span { font-family: var(--font-body); font-size: .66rem; letter-spacing: .2em; text-transform: uppercase; color: var(--ae-gold-deep); display: block; margin-bottom: .3rem; font-weight: 500; }
.ae-timeline p { font-size: .95rem; margin: 0; }

/* ---------- Zone d'intervention : villes ---------- */
.ae-cities { display: flex; flex-wrap: wrap; justify-content: center; gap: .55rem; list-style: none; margin: 1.6rem 0 0; padding: 0; }
.ae-cities li { border: 1px solid var(--ae-gold-light); padding: .42rem 1.05rem; font-size: .74rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ae-ink); background: #fff; transition: background var(--ease), color var(--ease), transform var(--ease); }
.ae-cities li:hover { background: var(--ae-gold); color: #fff; border-color: var(--ae-gold); transform: translateY(-2px); }

/* ---------- Chiffres / repères ---------- */
.ae-facts { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.5rem; list-style: none; margin: 2.5rem 0 0; padding: 0; text-align: center; }
.ae-facts strong { display: block; font-family: var(--font-display); font-weight: 300; font-size: clamp(2.2rem, 4vw, 3rem); color: var(--ae-gold-deep); line-height: 1; margin-bottom: .4rem; }
.ae-facts span { font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ae-taupe); }
@media (min-width: 720px) { .ae-facts { grid-template-columns: repeat(4, minmax(0, 1fr)); } }

/* ---------- Vidéo (façade cliquable) ---------- */
.ae-video { position: relative; aspect-ratio: 16/9; background: var(--ae-ink) center/cover no-repeat; overflow: hidden; margin: 2.5rem 0; box-shadow: var(--shadow); }
.ae-video img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .85; }
.ae-video button { position: absolute; inset: 0; width: 100%; height: 100%; background: linear-gradient(180deg, rgba(44,41,37,.15), rgba(44,41,37,.45)); text-shadow: 0 1px 8px rgba(0,0,0,.6); border: 0; cursor: pointer; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1rem; color: #fff; font-family: var(--font-body); font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; }
.ae-video button span { width: 84px; height: 84px; border: 1px solid rgba(255,255,255,.9); border-radius: 50%; display: flex; align-items: center; justify-content: center; background: rgba(44,41,37,.35); -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); transition: transform var(--ease), background var(--ease); }
.ae-video button span::after { content: ""; border-style: solid; border-width: 11px 0 11px 18px; border-color: transparent transparent transparent #fff; margin-left: 4px; }
.ae-video button:hover span { transform: scale(1.06); background: var(--ae-gold); }
.ae-video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.ae-video__caption { text-align: center; font-size: .8rem; color: var(--ae-muted); margin: -1.5rem 0 2.5rem; }
.ae-video__caption a { color: var(--ae-gold-deep); border-bottom: 1px solid var(--ae-gold-light); }

/* ---------- Page contact ---------- */
.ae-contact { display: grid; gap: 2.5rem; align-items: start; }
@media (min-width: 900px) { .ae-contact { grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: 3.5rem; } }
.ae-contact__aside { position: sticky; top: calc(var(--nav-h) + 1.5rem); }
.ae-contact__aside img { width: 100%; aspect-ratio: 4/5; object-fit: cover; box-shadow: var(--shadow); }
.ae-contact__aside .ae-overline { margin-top: 1.6rem; }
.ae-coords { list-style: none; margin: 1.2rem 0 0; padding: 0; }
.ae-coords li { padding: .8rem 0; border-top: 1px solid var(--ae-border); font-size: .94rem; }
.ae-coords li:last-child { border-bottom: 1px solid var(--ae-border); }
.ae-coords span { display: block; font-size: .64rem; letter-spacing: .22em; text-transform: uppercase; color: var(--ae-gold-deep); font-weight: 500; margin-bottom: .15rem; }
.ae-coords a { color: var(--ae-ink); font-weight: 500; }
.ae-coords a:hover { color: var(--ae-gold-deep); }
.ae-social { display: flex; gap: .8rem; margin-top: 1.2rem; }
.ae-social a { width: 40px; height: 40px; border: 1px solid var(--ae-border); display: inline-flex; align-items: center; justify-content: center; color: var(--ae-ink); transition: all var(--ease); }
.ae-social a:hover { background: var(--ae-gold); border-color: var(--ae-gold); color: #fff; transform: translateY(-2px); }
.ae-social svg { width: 17px; height: 17px; fill: currentColor; }

/* Formulaire */
.ae-form { background: #fff; border: 1px solid var(--ae-border); padding: 2rem 1.5rem; }
@media (min-width: 720px) { .ae-form { padding: 2.8rem 2.6rem; } }
.ae-form fieldset { border: 0; padding: 0; margin: 0 0 2rem; min-width: 0; }
.ae-form legend { font-family: var(--font-display); font-size: 1.55rem; color: var(--ae-ink); padding: 0; margin-bottom: 1.2rem; width: 100%; display: flex; align-items: center; gap: .9rem; }
.ae-form legend::before { content: attr(data-num); font-family: var(--font-body); font-size: .68rem; letter-spacing: .2em; color: var(--ae-gold-deep); border: 1px solid var(--ae-gold-light); width: 34px; height: 34px; display: inline-flex; align-items: center; justify-content: center; flex: none; }
.ae-form legend::after { content: ""; flex: 1; height: 1px; background: var(--ae-border); }
.ae-field { margin-bottom: 1.25rem; }
.ae-row { display: grid; gap: 1.25rem 1.5rem; }
@media (min-width: 640px) { .ae-row { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); } }
.ae-form label, .ae-field > .ae-label { display: block; font-size: .8rem; font-weight: 500; letter-spacing: .04em; color: var(--ae-ink); margin-bottom: .45rem; }
.ae-form .req { color: var(--ae-gold-deep); }
.ae-form input[type="text"], .ae-form input[type="email"], .ae-form input[type="tel"], .ae-form input[type="date"], .ae-form select, .ae-form textarea {
  width: 100%; padding: .85rem 1rem; font-family: var(--font-body); font-size: .96rem; font-weight: 300; color: var(--ae-ink);
  background: var(--ae-cream); border: 1px solid var(--ae-border); border-radius: 0; -webkit-appearance: none; appearance: none;
  transition: border-color var(--ease), background var(--ease), box-shadow var(--ease);
}
.ae-form select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238a7156' stroke-width='1.5'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right .9rem center; background-size: 16px; padding-right: 2.6rem; }
.ae-form input:focus, .ae-form select:focus, .ae-form textarea:focus { outline: none; border-color: var(--ae-gold); background: #fff; box-shadow: 0 0 0 3px rgba(168,141,112,.18); }
.ae-form input::placeholder, .ae-form textarea::placeholder { color: #b3ab9d; }
.ae-form textarea { min-height: 170px; resize: vertical; }
.ae-form input:disabled { opacity: .5; }
.ae-choices { display: grid; gap: .45rem .9rem; }
.ae-choices--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.ae-choices label { display: flex; align-items: flex-start; gap: .6rem; font-weight: 300; font-size: .9rem; margin: 0; cursor: pointer; line-height: 1.45; padding: .5rem .7rem; border: 1px solid transparent; transition: background var(--ease), border-color var(--ease); }
.ae-choices label:hover { background: var(--ae-cream); }
.ae-choices input { width: auto; margin: .25rem 0 0; accent-color: var(--ae-navy); flex: none; }
.ae-choices--inline { display: flex; flex-wrap: wrap; gap: .4rem 1.6rem; }
.ae-form .ae-hint { font-size: .8rem; color: var(--ae-muted); margin: .4rem 0 0; }
.ae-check { display: flex; align-items: center; gap: .55rem; margin-top: .6rem; font-size: .86rem; font-weight: 300 !important; color: var(--ae-taupe); cursor: pointer; }
.ae-check input { width: auto; margin: 0; accent-color: var(--ae-navy); }
.ae-consent { display: flex; align-items: flex-start; gap: .65rem; font-size: .82rem; font-weight: 300 !important; color: var(--ae-taupe); line-height: 1.5; margin: 0 0 1.4rem; cursor: pointer; }
.ae-consent input { width: auto; margin: .2rem 0 0; flex: none; accent-color: var(--ae-navy); }
.ae-consent a { color: var(--ae-navy); border-bottom: 1px solid rgba(31,78,107,.35); }
.ae-form__submit { width: 100%; }
.ae-form__note { font-size: .78rem; color: var(--ae-muted); margin: 1rem 0 0; text-align: center; }
.ae-form__error { display: block; margin-top: .4rem; font-size: .82rem; color: #b3412c; }
.ae-form__error[hidden] { display: none; }
.ae-form .is-invalid { border-color: #b3412c; }
.ae-form__status { margin: 0 0 1.2rem; padding: 1rem 1.2rem; background: var(--ae-cream); border-left: 2px solid var(--ae-gold); font-size: .92rem; }
.ae-form__status[hidden] { display: none; }
.ae-hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }

/* ---------- Pied de page ---------- */
.ae-footer { background: var(--ae-ink); color: rgba(255,255,255,.72); font-size: .88rem; }
.ae-footer a { color: rgba(255,255,255,.8); transition: color var(--ease); }
.ae-footer a:hover { color: var(--ae-gold-light); }
.ae-footer__grid { max-width: 1240px; margin: 0 auto; padding: 4.5rem 1.5rem 3rem; display: grid; gap: 2.5rem; }
.ae-footer__brand img { width: 250px; max-width: 100%; margin-bottom: 1.3rem; }
.ae-footer__brand p { max-width: 380px; line-height: 1.75; }
.ae-footer h3 { font-family: var(--font-body); font-size: .68rem; letter-spacing: .24em; text-transform: uppercase; color: var(--ae-gold-light); font-weight: 500; margin: 0 0 1.1rem; }
.ae-footer ul { list-style: none; margin: 0; padding: 0; }
.ae-footer li { margin-bottom: .55rem; }
.ae-footer__contact li { display: flex; flex-direction: column; gap: .1rem; margin-bottom: .9rem; }
.ae-footer__contact span { font-size: .64rem; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.45); }
.ae-footer .ae-social a { border-color: rgba(255,255,255,.22); color: rgba(255,255,255,.85); }
.ae-footer__bottom { border-top: 1px solid rgba(255,255,255,.12); }
.ae-footer__bottom-inner { max-width: 1240px; margin: 0 auto; padding: 1.3rem 1.5rem; display: flex; flex-wrap: wrap; justify-content: space-between; gap: .6rem 1.5rem; font-size: .76rem; letter-spacing: .04em; color: rgba(255,255,255,.55); }
.ae-footer__bottom-inner a { color: rgba(255,255,255,.7); }
.ae-footer__bottom-inner button { background: none; border: 0; color: rgba(255,255,255,.7); font: inherit; letter-spacing: inherit; cursor: pointer; padding: 0; }
.ae-footer__bottom-inner button:hover { color: var(--ae-gold-light); }
@media (min-width: 720px) { .ae-footer__grid { grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1.2fr); } }

/* ---------- Bouton retour en haut ---------- */
.ae-totop { position: fixed; right: 1.1rem; bottom: 1.1rem; z-index: 200; width: 46px; height: 46px; border: 1px solid var(--ae-gold); border-radius: 50%; background: rgba(255,255,255,.95); color: var(--ae-gold-deep); cursor: pointer; display: flex; align-items: center; justify-content: center; box-shadow: 0 6px 18px rgba(0,0,0,.14); opacity: 0; visibility: hidden; transform: translateY(12px); transition: opacity .3s ease, transform .3s ease, background .3s ease, color .3s ease; }
.ae-totop.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.ae-totop:hover { background: var(--ae-gold); color: #fff; }
.ae-totop svg { width: 20px; height: 20px; fill: currentColor; }

/* ---------- Bandeau cookies ---------- */
.ae-consent-bar { position: fixed; left: 1rem; right: 1rem; bottom: 1rem; max-width: 760px; margin: 0 auto; background: #fff; border: 1px solid var(--ae-border); box-shadow: 0 14px 44px rgba(58,54,49,.2); padding: 1rem 1.25rem; z-index: 2000; display: flex; flex-wrap: wrap; align-items: center; gap: .75rem 1.25rem; animation: ae-in .35s ease both; }
@keyframes ae-in { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
.ae-consent-bar p { margin: 0; flex: 1 1 320px; font-size: .82rem; line-height: 1.5; }
.ae-consent-bar p a { color: var(--ae-navy); border-bottom: 1px solid rgba(31,78,107,.35); }
.ae-consent-bar__btns { display: flex; gap: .6rem; }
.ae-consent-bar .ae-btn { padding: .7rem 1.2rem; font-size: .68rem; }
@media (max-width: 560px) { .ae-consent-bar__btns { width: 100%; } .ae-consent-bar .ae-btn { flex: 1; } }

/* ---------- Lightbox ---------- */
.ae-lightbox { position: fixed; inset: 0; z-index: 9999; display: flex; align-items: center; justify-content: center; background: rgba(28,26,24,.94); opacity: 0; visibility: hidden; transition: opacity .3s ease, visibility .3s ease; }
.ae-lightbox.is-open { opacity: 1; visibility: visible; }
.ae-lightbox__backdrop { position: absolute; inset: 0; cursor: pointer; }
.ae-lightbox__inner { position: relative; z-index: 1; max-width: 92vw; max-height: 88vh; display: flex; align-items: center; justify-content: center; }
.ae-lightbox__inner img { max-width: 100%; max-height: 85vh; width: auto; height: auto; object-fit: contain; box-shadow: 0 30px 80px rgba(0,0,0,.5); }
.ae-lightbox__close, .ae-lightbox__prev, .ae-lightbox__next { position: absolute; border: 0; background: transparent; color: #fff; cursor: pointer; padding: 0; opacity: .85; transition: opacity .2s ease; z-index: 2; }
.ae-lightbox__close:hover, .ae-lightbox__prev:hover, .ae-lightbox__next:hover { opacity: 1; }
.ae-lightbox__close { top: 1rem; right: 1.2rem; font-size: 2.2rem; line-height: 1; font-weight: 300; }
.ae-lightbox__prev, .ae-lightbox__next { top: 50%; transform: translateY(-50%); width: 3rem; height: 3rem; font-size: 2rem; font-family: var(--font-display); }
.ae-lightbox__prev { left: .8rem; } .ae-lightbox__next { right: .8rem; }
.ae-lightbox__counter { position: absolute; bottom: 1rem; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,.7); font-size: .74rem; letter-spacing: .2em; }
.ae-lightbox__caption { position: absolute; bottom: 2.4rem; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,.85); font-family: var(--font-display); font-style: italic; font-size: 1.05rem; text-align: center; max-width: 80vw; }

/* ---------- Pages légales ---------- */
.ae-legal { max-width: 780px; margin: 0 auto; }
.ae-legal h2 { font-size: 1.6rem; margin: 2.4rem 0 .6rem; }
.ae-legal h2:first-of-type { margin-top: 0; }
.ae-legal p, .ae-legal li { font-size: .95rem; }
.ae-legal ul { padding-left: 1.2rem; }
.ae-legal a { color: var(--ae-navy); border-bottom: 1px solid rgba(31,78,107,.35); }

/* ---------- Animations d'apparition ---------- */
.ae-reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s ease, transform .8s cubic-bezier(.2,.7,.2,1); will-change: opacity, transform; }
.ae-reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .ae-reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .ae-hero__slide.is-active { animation: none !important; }
  .ae-hero__scroll { animation: none; }
  * { scroll-behavior: auto !important; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1480px) {
  .ae-nav__phone { display: none; }
}
@media (max-width: 1180px) {
  .ae-nav__links { gap: 0 .9rem; }
  .ae-nav__links a { font-size: .66rem; letter-spacing: .08em; }
  .ae-nav__panel { gap: 1rem; }
}
@media (max-width: 980px) {
  :root { --nav-h: 70px; }
  .ae-nav__inner { position: relative; padding: 0 1rem; }
  .ae-nav__logo img { height: 46px; }
  .ae-nav__burger { display: flex; flex-direction: column; justify-content: center; gap: 5px; width: 44px; height: 44px; padding: 10px; cursor: pointer; margin-left: auto; }
  .ae-nav__burger span { display: block; width: 22px; height: 1.5px; background: var(--ae-ink); transition: transform var(--ease), opacity var(--ease); }
  .ae-nav__toggle:checked ~ .ae-nav__burger span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  .ae-nav__toggle:checked ~ .ae-nav__burger span:nth-child(2) { opacity: 0; }
  .ae-nav__toggle:checked ~ .ae-nav__burger span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
  .ae-nav__panel { display: none; position: absolute; top: 100%; left: 0; right: 0; background: #fff; border-bottom: 1px solid var(--ae-border); flex-direction: column; align-items: center; padding: 1.6rem 1rem 1.8rem; gap: 1.1rem; box-shadow: 0 20px 40px rgba(58,54,49,.12); max-height: calc(100vh - var(--nav-h)); overflow-y: auto; }
  .ae-nav__toggle:checked ~ .ae-nav__panel { display: flex; }
  .ae-nav__links { flex-direction: column; align-items: center; gap: .15rem; }
  .ae-nav__links a { font-size: .8rem; letter-spacing: .16em; padding: .6rem 0; }
  .ae-nav__phone { display: inline-flex; font-size: .9rem; }
  .ae-nav__cta { padding: .9rem 1.8rem; }
  .ae-nav__spacer { display: block; flex: 0 0 auto; }
  .ae-nav__lang-desktop { display: none; }
  .ae-nav__logo { position: absolute; left: 50%; transform: translateX(-50%); }
  .ae-hero { min-height: 82vh; }
  .ae-hero__content { padding: 4rem 1.25rem 3.5rem; }
  .ae-hero__actions .ae-btn { width: 100%; max-width: 320px; }
  .ae-grid--3, .ae-grid--4 { grid-template-columns: 1fr; }
  .ae-grid--2 { grid-template-columns: 1fr; }
  .ae-list--cols { columns: 1; }
  .ae-contact__aside { position: static; }
  .ae-footer__grid { padding-top: 3.2rem; }
}
@media (min-width: 640px) and (max-width: 980px) {
  .ae-grid--3, .ae-grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 600px) {
  .ae-section { padding-left: 1.1rem; padding-right: 1.1rem; }
  .ae-hero__overline::before, .ae-hero__overline::after { width: 16px; margin: 0 .5rem; }
  .ae-choices--2 { grid-template-columns: 1fr; }
  .ae-btn + .ae-btn { margin-left: 0; margin-top: .75rem; }
  .ae-story__meta li + li::before { display: none; }
  .ae-subnav ul { padding: .4rem .5rem; }
  .ae-subnav a { padding: .45rem .6rem; font-size: .64rem; }
  .ae-ornament--lines::before, .ae-ornament--lines::after { flex-basis: 50px; }
}

/* =====================================================================
   BLOG (pages PHP : liste, catégorie, article)
   ===================================================================== */
.ae-blog-cats { display: flex; flex-wrap: wrap; justify-content: center; gap: .5rem; margin-top: 1.8rem; }
.ae-blog-cats a { display: inline-flex; align-items: center; gap: .4rem; padding: .5rem 1.05rem; border: 1px solid var(--ae-gold-light); font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 500; color: var(--ae-ink); background: #fff; transition: background var(--ease), color var(--ease); }
.ae-blog-cats a span { font-size: .66rem; color: var(--ae-gold-deep); }
.ae-blog-cats a:hover, .ae-blog-cats a.is-active { background: var(--ae-gold); border-color: var(--ae-gold); color: #fff; }
.ae-blog-cats a.is-active span, .ae-blog-cats a:hover span { color: rgba(255,255,255,.8); }
.ae-blog-grid { display: grid; gap: 1.75rem; }
@media (min-width: 640px) { .ae-blog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 980px) { .ae-blog-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.ae-post-card { background: #fff; border: 1px solid var(--ae-border); display: flex; flex-direction: column; transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease); min-width: 0; }
.ae-post-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--ae-gold-light); }
.ae-post-card__media { display: block; aspect-ratio: 16/10; overflow: hidden; background: var(--ae-cream); }
.ae-post-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s ease; }
.ae-post-card:hover .ae-post-card__media img { transform: scale(1.05); }
.ae-post-card__placeholder { display: flex; align-items: center; justify-content: center; height: 100%; }
.ae-post-card__placeholder img { width: 60px; height: auto; opacity: .7; transform: none !important; }
.ae-post-card__body { padding: 1.5rem 1.5rem 1.7rem; display: flex; flex-direction: column; flex: 1; }
.ae-post-card__meta { font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; color: var(--ae-muted); margin: 0 0 .6rem; }
.ae-post-card__meta a { color: var(--ae-gold-deep); }
.ae-post-card__title { font-size: 1.5rem; font-weight: 400; margin: 0 0 .6rem; line-height: 1.2; }
.ae-post-card__title a { color: var(--ae-ink); }
.ae-post-card__title a:hover { color: var(--ae-gold-deep); }
.ae-post-card__excerpt { font-size: .92rem; margin: 0 0 1.2rem; flex: 1; }
.ae-pagination { display: flex; justify-content: center; align-items: center; gap: 1.5rem; margin-top: 3rem; font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 500; }
.ae-pagination a { color: var(--ae-gold-deep); border-bottom: 1px solid var(--ae-gold-light); padding-bottom: .2rem; }
.ae-pagination span { color: var(--ae-muted); }
.ae-breadcrumb { font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ae-muted); margin-bottom: 1.8rem; }
.ae-breadcrumb a { color: var(--ae-gold-deep); }
.ae-hero__baseline--h1 { font-style: normal; font-weight: 300; font-size: clamp(2rem, 4.6vw, 3.4rem); }
.ae-hero--article .ae-hero__overlay { background: linear-gradient(180deg, rgba(44,41,37,.45) 0%, rgba(44,41,37,.4) 50%, rgba(44,41,37,.7) 100%); }
.ae-article__meta { font-size: .74rem !important; letter-spacing: .14em; text-transform: uppercase; font-weight: 500; }
.ae-hero--text .ae-article__meta { color: var(--ae-gold-deep); }
.ae-article__lead { font-family: var(--font-display); font-style: italic; font-size: 1.35rem; line-height: 1.5; color: var(--ae-gold-deep); margin: 0 0 2rem; }
.ae-article__body { max-width: none; font-size: 1.02rem; }
.ae-article__body h2 { font-size: clamp(1.7rem, 3vw, 2.15rem); font-weight: 400; margin: 2.6rem 0 .9rem; }
.ae-article__body h3 { font-size: 1.45rem; margin: 2rem 0 .6rem; }
.ae-article__body h4 { font-size: 1.2rem; margin: 1.6rem 0 .5rem; }
.ae-article__body p { margin: 0 0 1.2rem; }
.ae-article__body img { margin: 1.8rem auto; max-height: 640px; object-fit: cover; box-shadow: var(--shadow); }
.ae-article__body img + p em, .ae-article__body p > em:only-child { display: block; text-align: center; font-size: .85rem; color: var(--ae-muted); margin-top: -1rem; }
.ae-article__body ul, .ae-article__body ol { padding-left: 1.3rem; margin: 0 0 1.4rem; }
.ae-article__body li { margin-bottom: .5rem; }
.ae-article__body li::marker { color: var(--ae-gold); }
.ae-article__body blockquote { margin: 1.8rem 0; padding: 1.2rem 1.6rem; border-left: 2px solid var(--ae-gold); background: var(--ae-cream); font-family: var(--font-display); font-style: italic; font-size: 1.25rem; line-height: 1.5; color: var(--ae-ink); }
.ae-article__body blockquote p:last-child { margin-bottom: 0; }
.ae-article__body hr { border: 0; height: 1px; background: var(--ae-border); margin: 2.5rem 0; }
.ae-article__body strong { color: var(--ae-ink); }
.ae-article__body a { color: var(--ae-navy); border-bottom: 1px solid rgba(31,78,107,.35); }
.ae-article__body a:hover { border-color: var(--ae-navy); }
.ae-table--content { min-width: 0; font-size: .9rem; }
.ae-table--content th, .ae-table--content td { text-align: left; }
.ae-author { display: grid; grid-template-columns: 100px minmax(0, 1fr); gap: 1.5rem; align-items: center; margin-top: 3.5rem; padding: 1.8rem; border: 1px solid var(--ae-border); background: #fff; }
.ae-author img { width: 100px; height: 130px; object-fit: cover; }
.ae-author h2 { font-size: 1.5rem; margin: 0 0 .4rem; }
.ae-author p { margin: 0; font-size: .92rem; }
.ae-author .ae-overline { margin-bottom: .4rem; }
.ae-author a { color: var(--ae-navy); border-bottom: 1px solid rgba(31,78,107,.35); }
.ae-preview-banner { margin: 0; padding: .7rem 1.5rem; background: var(--ae-navy); color: #fff; font-size: .8rem; text-align: center; }
.ae-preview-banner a { color: #fff; text-decoration: underline; }
@media (max-width: 600px) { .ae-author { grid-template-columns: 1fr; text-align: center; } .ae-author img { margin: 0 auto; } }
