/* =========================================================
   EZAEE — Feuille de styles
   Palette de marque, accessibilité WCAG 2.1 AA, responsive.
   Sommaire :
   1. Tokens (variables)        6. Sections génériques
   2. Reset & base              7. Composants (cartes, timeline…)
   3. Accessibilité (skip, focus) 8. Carrousel / FAQ / Formulaire
   4. Boutons                   9. Footer & panneau confort
   5. En-tête / Hero            10. Modes a11y & responsive
   ========================================================= */

/* ============ 1. TOKENS ============ */
:root {
  --lilac:       #BFA2DB;
  --sky:         #A7D8F5;
  --gold:        #D4AF37;
  --bg:          #FAFAFA;
  --ink:         #333333;

  /* Couleurs d'interaction accessibles (texte blanc lisible dessus) */
  --accent-strong: #5C3D8E;   /* améthyste profond — boutons, liens, eyebrow */
  --accent-ink:    #2E2545;   /* titres */
  --ink-soft:      #5b5566;   /* texte secondaire */
  --gold-text:     #8a6d12;   /* version foncée de l'or, lisible sur clair */

  --surface:     #ffffff;
  --surface-2:   #f3eefb;
  --border:      #e7e1f0;
  --shadow-sm:   0 4px 14px rgba(46, 37, 69, .06);
  --shadow-md:   0 14px 40px rgba(46, 37, 69, .10);
  --shadow-lg:   0 28px 70px rgba(46, 37, 69, .16);

  --grad-brand:  linear-gradient(120deg, var(--lilac), var(--sky));
  --grad-soft:   linear-gradient(160deg, #f7f1fc 0%, #eef7fe 100%);

  --radius:      22px;
  --radius-sm:   14px;
  --container:   1180px;

  --t: 240ms cubic-bezier(.22,.61,.36,1);
}

/* ============ 2. RESET & BASE ============ */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: "Mulish", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 1rem;              /* 16px minimum */
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: var(--accent-strong); }

h1, h2, h3 {
  font-family: "Fraunces", Georgia, "Times New Roman", serif;
  color: var(--accent-ink);
  line-height: 1.12;
  font-weight: 500;
  letter-spacing: -.01em;
}

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: clamp(1.1rem, 4vw, 2.4rem); }
.container-narrow { max-width: 820px; }

.eyebrow {
  font-family: "Mulish", sans-serif;
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent-strong);
  margin-bottom: .9rem;
}

/* ============ 3. ACCESSIBILITÉ ============ */
.visually-hidden {
  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: 1rem; top: -3.5rem;
  background: var(--accent-strong); color: #fff;
  padding: .7rem 1.1rem; border-radius: 0 0 12px 12px;
  z-index: 200; font-weight: 700; text-decoration: none;
  transition: top var(--t);
}
.skip-link:focus { top: 0; }

/* Focus visible homogène et net partout */
a:focus-visible, button:focus-visible, input:focus-visible,
select:focus-visible, textarea:focus-visible, [tabindex]:focus-visible,
.faq-q:focus-visible {
  outline: 3px solid var(--accent-strong);
  outline-offset: 3px;
  border-radius: 6px;
}

/* ============ 4. BOUTONS ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: .5rem;
  font-family: "Mulish", sans-serif; font-weight: 700; font-size: 1rem;
  padding: .95rem 1.7rem;
  border-radius: 999px; border: 2px solid transparent;
  text-decoration: none; cursor: pointer;
  transition: transform var(--t), box-shadow var(--t), background var(--t), color var(--t);
  line-height: 1.1;
}
.btn-primary { background: var(--accent-strong); color: #fff; box-shadow: 0 10px 24px rgba(92,61,142,.28); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 32px rgba(92,61,142,.36); }
.btn-ghost { background: rgba(255,255,255,.7); color: var(--accent-ink); border-color: rgba(255,255,255,.9); backdrop-filter: blur(6px); }
.btn-ghost:hover { background:#fff; transform: translateY(-2px); }
.btn-lg { padding: 1.1rem 2.2rem; font-size: 1.05rem; }
.btn-sm { padding: .7rem 1.2rem; font-size: .95rem; }

/* ============ 5. EN-TÊTE ============ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250,250,250,.82);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; min-height: 72px; }

.brand { display: inline-flex; align-items: center; gap: .6rem; text-decoration: none; }
.brand-mark { display: inline-flex; }
.brand-name {
  font-family: "Fraunces", serif; font-weight: 600; font-size: 1.4rem;
  color: var(--accent-ink); letter-spacing: .04em;
}

.main-nav { display: flex; align-items: center; }
.nav-list { list-style: none; display: flex; align-items: center; gap: 1.6rem; padding: 0; }
.nav-list a { text-decoration: none; color: var(--ink); font-weight: 600; font-size: .98rem; }
.nav-list a:hover { color: var(--accent-strong); }
.nav-cta { background: var(--accent-strong); color: #fff !important; padding: .6rem 1.1rem; border-radius: 999px; }
.nav-cta:hover { filter: brightness(1.08); }

.nav-toggle {
  display: none; width: 46px; height: 46px;
  background: var(--surface); border: 1px solid var(--border); border-radius: 12px;
  cursor: pointer; position: relative;
}
.nav-toggle-bar, .nav-toggle-bar::before, .nav-toggle-bar::after {
  content: ""; position: absolute; left: 50%; top: 50%; width: 20px; height: 2px;
  background: var(--accent-ink); transform: translate(-50%,-50%); transition: var(--t);
}
.nav-toggle-bar::before { transform: translate(-50%,-7px); }
.nav-toggle-bar::after  { transform: translate(-50%,5px); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar { background: transparent; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar::before { transform: translate(-50%,-1px) rotate(45deg); background: var(--accent-ink); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar::after  { transform: translate(-50%,-1px) rotate(-45deg); background: var(--accent-ink); }

/* État actif de la navigation */
.nav-list a.is-active { color: var(--accent-strong); }
.nav-list a.is-active:not(.nav-cta) { position: relative; }
.nav-list a.is-active:not(.nav-cta)::after { content: ""; position: absolute; left: 0; right: 0; bottom: -6px; height: 2px; background: var(--grad-brand); border-radius: 2px; }

/* ============ HERO ============ */
.hero { position: relative; padding: clamp(4rem, 12vh, 8rem) 0 clamp(6rem, 14vh, 9rem); overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background: var(--grad-soft); z-index: -2; }
.aurora { position: absolute; border-radius: 50%; filter: blur(60px); opacity: .65; will-change: transform; }
.aurora-1 { width: 46vw; height: 46vw; left: -10vw; top: -12vw; background: radial-gradient(circle at 30% 30%, var(--lilac), transparent 70%); animation: float1 18s ease-in-out infinite; }
.aurora-2 { width: 40vw; height: 40vw; right: -8vw; top: 6vw; background: radial-gradient(circle at 60% 40%, var(--sky), transparent 70%); animation: float2 22s ease-in-out infinite; }
.aurora-3 { width: 30vw; height: 30vw; left: 30vw; bottom: -10vw; background: radial-gradient(circle at 50% 50%, rgba(212,175,55,.5), transparent 70%); animation: float1 26s ease-in-out infinite; }

@keyframes float1 { 0%,100%{ transform: translate(0,0); } 50%{ transform: translate(3vw,2vw); } }
@keyframes float2 { 0%,100%{ transform: translate(0,0); } 50%{ transform: translate(-3vw,3vw); } }

.hero-inner { position: relative; max-width: 780px; }
.hero-title { font-size: clamp(2.6rem, 7vw, 4.6rem); margin-bottom: 1.3rem; }
.hero-title em { font-style: italic; color: var(--accent-strong); }
@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  .hero-title em { background: linear-gradient(100deg, var(--accent-strong), #2b6fb0); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }
}
.hero-sub { font-size: clamp(1.1rem, 2vw, 1.32rem); color: var(--ink); max-width: 600px; margin-bottom: 2.1rem; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.4rem; }
.hero-badges { list-style: none; display: flex; flex-wrap: wrap; gap: .6rem 1.4rem; padding: 0; font-weight: 600; color: var(--ink-soft); font-size: .95rem; }
.hero-badges li { display: flex; align-items: center; gap: .5rem; }
.hero-badges li::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--gold); }

.wave-divider { position: absolute; left: 0; right: 0; bottom: -1px; line-height: 0; }
.wave-divider svg { width: 100%; height: clamp(60px, 9vw, 120px); display: block; }

/* ============ 6. SECTIONS GÉNÉRIQUES ============ */
.section { padding: clamp(3.6rem, 9vw, 6.5rem) 0; }
.section-soft { background: var(--surface-2); }
.section-head { max-width: 720px; margin-bottom: clamp(2.2rem, 5vw, 3.4rem); }
.section-head h2 { font-size: clamp(1.9rem, 4.5vw, 3rem); }
.section-lead { margin-top: 1rem; font-size: 1.1rem; color: var(--ink-soft); }

/* ============ 7. COMPOSANTS ============ */
/* Cartes avantages */
.cards-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; }
.card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 2rem 1.6rem;
  box-shadow: var(--shadow-sm); transition: transform var(--t), box-shadow var(--t);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.card-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 56px; height: 56px; border-radius: 16px; margin-bottom: 1.1rem;
  background: var(--grad-brand);
}
.card-icon svg { width: 28px; height: 28px; fill: none; stroke: #fff; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.card h3 { font-size: 1.25rem; margin-bottom: .55rem; }
.card p { color: var(--ink-soft); font-size: .98rem; }

/* Timeline */
.timeline { list-style: none; padding: 0; display: grid; gap: 1.2rem; counter-reset: step; max-width: 880px; }
.timeline-step { display: flex; gap: 1.3rem; align-items: flex-start; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.5rem 1.7rem; box-shadow: var(--shadow-sm); position: relative; }
.step-num {
  flex: 0 0 auto; width: 48px; height: 48px; border-radius: 50%;
  display: grid; place-items: center;
  font-family: "Fraunces", serif; font-size: 1.4rem; font-weight: 600; color: #fff;
  background: var(--grad-brand);
}
.step-body h3 { font-size: 1.2rem; margin-bottom: .35rem; }
.step-body p { color: var(--ink-soft); }

/* Destinations */
.dest-grid { list-style: none; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
.dest-card {
  position: relative; aspect-ratio: 3/4; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); cursor: pointer; isolation: isolate;
  background-size: cover; background-position: center;
  transition: transform var(--t), box-shadow var(--t);
}
/* Dégradé de marque par défaut (visible même sans photo) + photo optionnelle via --img */
.dest-card { background-image: linear-gradient(150deg, var(--lilac), var(--sky)); }
.dest-card[data-dest="maldives"]  { background-image: var(--img), linear-gradient(150deg,#5ec6c9,#a7d8f5,#bfa2db); }
.dest-card[data-dest="japon"]     { background-image: var(--img), linear-gradient(150deg,#3a3a73,#9d6fb0,#e6a9c4); }
.dest-card[data-dest="newyork"]   { background-image: var(--img), linear-gradient(150deg,#3b4256,#7e7aa6,#d4af37); }
.dest-card[data-dest="bali"]      { background-image: var(--img), linear-gradient(150deg,#1f8a70,#6cc5a0,#d8d28a); }
.dest-card[data-dest="islande"]   { background-image: var(--img), linear-gradient(150deg,#2b4a8a,#6aa0d8,#b9a7e0); }
.dest-card[data-dest="guadeloupe"]{ background-image: var(--img), linear-gradient(150deg,#15a6b0,#7fd6c0,#e7e0a3); }
.dest-card[data-dest="maroc"]     { background-image: var(--img), linear-gradient(150deg,#b5552f,#d99a52,#8a5a8e); }
.dest-card[data-dest="laponie"]   { background-image: var(--img), linear-gradient(150deg,#1d2b54,#3c8f86,#9d7fc4); }
.dest-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(20,15,35,.78) 0%, rgba(20,15,35,.15) 45%, transparent 70%); z-index: 1; }
.dest-content { position: absolute; left: 0; right: 0; bottom: 0; padding: 1.3rem; z-index: 2; color: #fff; transform: translateY(6px); transition: transform var(--t); }
.dest-content h3 { color: #fff; font-size: 1.5rem; margin-bottom: .15rem; }
.dest-content p { font-size: .92rem; opacity: 0; max-height: 0; transition: opacity var(--t), max-height var(--t); }
.dest-card:hover, .dest-card:focus-within { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.dest-card:hover .dest-content, .dest-card:focus-within .dest-content { transform: translateY(0); }
.dest-card:hover .dest-content p, .dest-card:focus-within .dest-content p { opacity: .92; max-height: 4rem; }

/* Section accessibilité */
.access-section { position: relative; background: linear-gradient(135deg, #efe6fb 0%, #e3f1fd 100%); }
.access-inner { display: grid; grid-template-columns: 1.2fr .8fr; gap: clamp(2rem,5vw,4rem); align-items: center; }
.access-text h2 { font-size: clamp(1.9rem, 4.2vw, 2.8rem); margin-bottom: 1.1rem; }
.access-text p { color: var(--ink); font-size: 1.08rem; margin-bottom: 1rem; max-width: 52ch; }
.access-text .btn { margin-top: .8rem; }
.access-list { list-style: none; padding: 1.8rem; margin: 0; background: rgba(255,255,255,.7); border: 1px solid rgba(255,255,255,.9); border-radius: var(--radius); box-shadow: var(--shadow-md); display: grid; gap: .9rem; }
.access-list li { display: flex; align-items: center; gap: .8rem; font-weight: 600; font-size: 1.05rem; color: var(--accent-ink); }
.access-dot { width: 14px; height: 14px; border-radius: 50%; background: var(--grad-brand); flex: 0 0 auto; box-shadow: 0 0 0 4px rgba(191,162,219,.25); }

/* ============ 8. CARROUSEL ============ */
.carousel { max-width: 760px; margin-inline: auto; }
.carousel-track { position: relative; }
.testimonial {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: clamp(1.8rem, 4vw, 3rem); box-shadow: var(--shadow-md); text-align: center;
}
.rating { color: var(--gold); font-size: 1.4rem; letter-spacing: .15em; margin-bottom: 1rem; }
.testimonial blockquote p { font-family: "Fraunces", serif; font-size: clamp(1.2rem,2.4vw,1.6rem); font-style: italic; color: var(--accent-ink); line-height: 1.45; }
.testimonial-author { display: flex; align-items: center; justify-content: center; gap: .9rem; margin-top: 1.6rem; }
.avatar { width: 52px; height: 52px; border-radius: 50%; background: var(--grad-brand); display: grid; place-items: center; flex: 0 0 auto; }
.avatar::before { content: attr(data-initial); font-family: "Fraunces", serif; font-weight: 600; color: #fff; font-size: 1.3rem; }
.testimonial-author strong { display: block; color: var(--accent-ink); }
.author-meta { display: block; font-size: .9rem; color: var(--ink-soft); }
.carousel-controls { display: flex; align-items: center; justify-content: center; gap: 1.2rem; margin-top: 1.6rem; }
.carousel-btn { width: 48px; height: 48px; border-radius: 50%; border: 1px solid var(--border); background: var(--surface); cursor: pointer; display: grid; place-items: center; transition: var(--t); }
.carousel-btn:hover { background: var(--accent-strong); border-color: var(--accent-strong); }
.carousel-btn:hover svg { stroke: #fff; }
.carousel-btn svg { width: 22px; height: 22px; fill: none; stroke: var(--accent-ink); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.carousel-dots { display: flex; gap: .5rem; }
.carousel-dots button { width: 11px; height: 11px; border-radius: 50%; border: none; background: var(--border); cursor: pointer; padding: 0; transition: var(--t); }
.carousel-dots button[aria-selected="true"] { background: var(--accent-strong); transform: scale(1.25); }

/* ============ FAQ ============ */
.faq-list { display: grid; gap: .8rem; }
.faq-item { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; }
.faq-item h3 { margin: 0; }
.faq-q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  font-family: "Mulish", sans-serif; font-weight: 700; font-size: 1.08rem; color: var(--accent-ink);
  padding: 1.25rem 1.4rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.faq-icon { position: relative; width: 18px; height: 18px; flex: 0 0 auto; }
.faq-icon::before, .faq-icon::after { content: ""; position: absolute; background: var(--accent-strong); border-radius: 2px; transition: var(--t); }
.faq-icon::before { left: 0; top: 8px; width: 18px; height: 2px; }
.faq-icon::after  { left: 8px; top: 0; width: 2px; height: 18px; }
.faq-q[aria-expanded="true"] .faq-icon::after { transform: rotate(90deg); opacity: 0; }
.faq-a { padding: 0 1.4rem 1.3rem; color: var(--ink-soft); }
.faq-a p { max-width: 65ch; }

/* ============ FORMULAIRE ============ */
.section-contact { background: var(--surface-2); }
.contact-form { max-width: 880px; margin-inline: auto; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: clamp(1.6rem, 4vw, 2.8rem); box-shadow: var(--shadow-md); }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem 1.3rem; }
.field { display: flex; flex-direction: column; gap: .4rem; }
.field-full { grid-column: 1 / -1; }
.field label, .field-consent label { font-weight: 600; color: var(--accent-ink); font-size: .98rem; }
.req { color: #b3261e; }
.field input, .field select, .field textarea {
  font-family: "Mulish", sans-serif; font-size: 1rem; color: var(--ink);
  padding: .8rem .95rem; border: 1.5px solid var(--border); border-radius: 12px;
  background: var(--bg); transition: border-color var(--t), box-shadow var(--t);
}
.field input:hover, .field select:hover, .field textarea:hover { border-color: var(--lilac); }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--accent-strong); box-shadow: 0 0 0 3px rgba(92,61,142,.15); outline: none; }
.field textarea { resize: vertical; min-height: 120px; }
.field-hint { font-size: .85rem; color: var(--ink-soft); margin-top: .1rem; }
.field input[aria-invalid="true"], .field textarea[aria-invalid="true"] { border-color: #b3261e; box-shadow: 0 0 0 3px rgba(179,38,30,.12); }
.field-error { color: #b3261e; font-size: .85rem; font-weight: 600; }

.field-consent { display: flex; align-items: flex-start; gap: .7rem; margin: 1.4rem 0; }
.field-consent input { width: 20px; height: 20px; margin-top: .2rem; accent-color: var(--accent-strong); flex: 0 0 auto; }

.form-status { margin: 1rem 0; font-weight: 700; }
.form-status.is-ok { color: #1d7a4d; }
.form-status.is-error { color: #b3261e; }
.form-note { margin-top: 1rem; font-size: .88rem; color: var(--ink-soft); }

/* ============ 9. FOOTER ============ */
.site-footer { background: #241c38; color: #d9d3e6; padding-top: clamp(3rem,7vw,4.5rem); }
.footer-inner { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 2.4rem; padding-bottom: 2.8rem; }
.footer-brand .brand-name { color: #fff; }
.footer-brand p { margin: 1rem 0 1.3rem; max-width: 38ch; color: #b8b0cc; }
.site-footer h2 { color: #fff; font-size: 1.1rem; margin-bottom: 1rem; font-family: "Mulish", sans-serif; font-weight: 700; }
.footer-col ul { list-style: none; padding: 0; display: grid; gap: .6rem; }
.footer-col a, .footer-contact a { color: #d9d3e6; text-decoration: none; }
.footer-col a:hover, .footer-contact a:hover { color: #fff; text-decoration: underline; }
.footer-contact { list-style: none; padding: 0; display: grid; gap: .55rem; margin-bottom: 1.2rem; }
.socials { list-style: none; padding: 0; display: flex; gap: .7rem; }
.socials a { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; background: rgba(255,255,255,.08); color: #fff; transition: var(--t); }
.socials a:hover { background: var(--grad-brand); }
.socials svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding: 1.3rem 0; }
.footer-bottom-inner { display: flex; flex-wrap: wrap; gap: .6rem 1.5rem; align-items: center; justify-content: space-between; font-size: .9rem; color: #b8b0cc; }
.legal-links { list-style: none; display: flex; gap: 1.4rem; padding: 0; }
.legal-links a { color: #b8b0cc; text-decoration: none; }
.legal-links a:hover { color: #fff; text-decoration: underline; }

/* ============ PANNEAU CONFORT DE LECTURE ============ */
.a11y { position: fixed; left: 1rem; bottom: 1rem; z-index: 150; }
.a11y-toggle {
  display: inline-flex; align-items: center; gap: .55rem;
  background: var(--accent-strong); color: #fff; border: none; cursor: pointer;
  padding: .75rem 1.1rem; border-radius: 999px; font-family: "Mulish", sans-serif; font-weight: 700; font-size: .95rem;
  box-shadow: var(--shadow-md);
}
.a11y-toggle svg { width: 22px; height: 22px; fill: none; stroke: #fff; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.a11y-panel {
  position: absolute; left: 0; bottom: calc(100% + .7rem);
  width: min(300px, 86vw); background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-sm); box-shadow: var(--shadow-lg); padding: 1.2rem;
  display: grid; gap: 1rem;
}
.a11y-row { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.a11y-label { font-weight: 700; color: var(--accent-ink); font-size: .96rem; }
.a11y-controls { display: flex; gap: .4rem; }
.a11y-controls button { min-width: 40px; height: 40px; border: 1.5px solid var(--border); background: var(--bg); border-radius: 10px; cursor: pointer; font-weight: 700; color: var(--accent-ink); }
.a11y-controls button:hover { border-color: var(--accent-strong); }
.a11y-switch { width: 54px; height: 30px; border-radius: 999px; border: none; background: var(--border); cursor: pointer; position: relative; flex: 0 0 auto; transition: background var(--t); }
.switch-knob { position: absolute; top: 3px; left: 3px; width: 24px; height: 24px; border-radius: 50%; background: #fff; box-shadow: 0 2px 5px rgba(0,0,0,.2); transition: transform var(--t); }
.a11y-switch[aria-checked="true"] { background: var(--accent-strong); }
.a11y-switch[aria-checked="true"] .switch-knob { transform: translateX(24px); }

/* ============ 10a. RÉVÉLATIONS AU SCROLL ============ */
html.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
html.js .reveal.is-visible { opacity: 1; transform: none; }

/* ============ 10b. MODE CONTRASTE RENFORCÉ ============ */
html.hc {
  --bg: #ffffff; --ink: #111111; --ink-soft: #1a1a1a;
  --accent-strong: #3a1f6e; --accent-ink: #000000;
  --surface: #ffffff; --surface-2: #f0f0f0; --border: #555555;
  --gold: #6a5200;
}
html.hc body { background: #fff; color: #111; }
html.hc .hero-bg, html.hc .aurora { display: none; }
html.hc .hero { background: #fff; }
html.hc .access-section { background: #f0f0f0; }
html.hc .dest-overlay { background: linear-gradient(to top, rgba(0,0,0,.92) 0%, rgba(0,0,0,.45) 55%, rgba(0,0,0,.2) 100%); }
html.hc .card, html.hc .timeline-step, html.hc .testimonial, html.hc .faq-item,
html.hc .contact-form, html.hc .access-list, html.hc .a11y-panel { border-width: 2px; border-color: #111; }
html.hc a { text-decoration: underline; }
html.hc .hero-title em { -webkit-text-fill-color: var(--accent-strong); color: var(--accent-strong); }
html.hc .btn-ghost { background: #fff; border-color: #111; color: #111; }
html.hc .site-footer { background: #000; color: #fff; }
html.hc .footer-brand p, html.hc .footer-bottom-inner, html.hc .author-meta { color: #eee; }

/* ============ 10c. RÉDUCTION DES ANIMATIONS ============ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
}
html.reduce-motion *, html.reduce-motion *::before, html.reduce-motion *::after {
  animation: none !important; transition: none !important; scroll-behavior: auto !important;
}
html.reduce-motion .reveal { opacity: 1 !important; transform: none !important; }

/* ============ 10d. RESPONSIVE ============ */
@media (max-width: 980px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .dest-grid { grid-template-columns: repeat(2, 1fr); }
  .access-inner { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  .nav-toggle { display: inline-flex; }
  .nav-list {
    position: absolute; top: 72px; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--bg); border-bottom: 1px solid var(--border);
    padding: .6rem 1.1rem 1.2rem; box-shadow: var(--shadow-md);
    display: none;
  }
  .nav-list.is-open { display: flex; }
  .nav-list li { width: 100%; }
  .nav-list a { display: block; padding: .9rem .2rem; border-bottom: 1px solid var(--border); }
  .nav-cta { text-align: center; margin-top: .6rem; border: none; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .a11y-toggle span { display: none; }
  .a11y-toggle { padding: .8rem; }
}

@media (max-width: 480px) {
  .cards-grid { grid-template-columns: 1fr; }
  .dest-grid { grid-template-columns: 1fr; }
  .hero-cta .btn { width: 100%; }
}

/* ============ PAGES INTÉRIEURES ============ */
.page-hero { position: relative; overflow: hidden; padding: clamp(3rem, 8vh, 5.5rem) 0 clamp(4rem, 9vh, 6rem); }
.page-hero .hero-bg { position: absolute; inset: 0; background: var(--grad-soft); z-index: -2; }
.page-hero h1 { font-size: clamp(2.1rem, 5.5vw, 3.4rem); max-width: 18ch; margin-bottom: 1rem; }
.page-lead { font-size: clamp(1.05rem, 2vw, 1.25rem); color: var(--ink-soft); max-width: 60ch; }

.center-cta { display: flex; justify-content: center; margin-top: 2.4rem; }

/* Bandeau CTA de bas de page */
.cta-band { position: relative; overflow: hidden; padding: clamp(3.2rem, 7vw, 5rem) 0; }
.cta-band-bg { position: absolute; inset: 0; background: linear-gradient(120deg, var(--lilac), var(--sky)); z-index: -1; }
.cta-band-bg::after { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 80% 20%, rgba(212,175,55,.35), transparent 55%); }
.cta-band-inner { text-align: center; max-width: 720px; margin-inline: auto; }
.cta-band-inner h2 { color: #fff; font-size: clamp(1.8rem, 4vw, 2.7rem); margin-bottom: .8rem; }
.cta-band-inner p { color: rgba(255,255,255,.95); font-size: 1.1rem; margin-bottom: 1.8rem; }
.cta-band-actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }
.cta-band .btn-ghost { background: rgba(255,255,255,.85); border-color: #fff; color: var(--accent-ink); }
.cta-band .btn-primary { background: var(--accent-ink); }

/* Bannières de retour formulaire (sans JS) */
.form-banner { max-width: 880px; margin: 0 auto 1.6rem; padding: 1rem 1.3rem; border-radius: var(--radius-sm); font-weight: 700; }
.form-banner.is-ok { background: #e6f6ee; color: #1d7a4d; border: 1.5px solid #1d7a4d; }
.form-banner.is-error { background: #fdeceb; color: #b3261e; border: 1.5px solid #b3261e; }
.form-banner a { color: inherit; }

/* Pages légales */
.legal-page h2 { font-size: 1.3rem; margin: 1.7rem 0 .5rem; }
.legal-page .muted { color: var(--ink-soft); }

/* Contraste renforcé : bandeau CTA lisible */
html.hc .cta-band-bg { background: #000; }
html.hc .cta-band-inner h2, html.hc .cta-band-inner p { color: #fff; }
html.hc .cta-band .btn-primary { background: #fff; color: #000; border-color:#fff; }
html.hc .cta-band .btn-ghost { background:#000; color:#fff; border-color:#fff; }
html.hc .nav-list a.is-active::after { background:#111; }
