/* ============================================================
   CAR SYSTEM — LES ABYMES
   Template DÉCOLLAGE
   WebStudio Caraïbes · 2026
   Design grammar: black + amber, runway diagonals, editorial type
   ============================================================ */

/* ── RESET & BASE ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black:   #0D0D0D;
  --dark:    #161616;
  --dark-2:  #1F1F1F;
  --amber:   #F59E0B;
  --amber-d: #D97706;
  --amber-l: #FCD34D;
  --white:   #FFFFFF;
  --grey-1:  #F5F5F5;
  --grey-2:  #E5E5E5;
  --grey-text: #A3A3A3;
  --danger:  #EF4444;

  --font-head: 'Syne', system-ui, sans-serif;
  --font-body: 'Space Grotesk', system-ui, sans-serif;

  --radius: 4px;
  --radius-lg: 8px;
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);

  --wrap: 1200px;
  --wrap-narrow: 860px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
}

/* ── ACCESSIBILITY ────────────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -999px;
  left: 1rem;
  background: var(--amber);
  color: var(--black);
  font-weight: 700;
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  z-index: 9999;
  text-decoration: none;
}
.skip-link:focus { top: 1rem; }

/* ── WRAPPERS ─────────────────────────────────────────────── */
.wrap {
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: 1.5rem;
}
.wrap-full {
  max-width: 100%;
  padding-inline: 2rem;
}
.wrap-narrow {
  max-width: var(--wrap-narrow);
  margin-inline: auto;
  padding-inline: 1.5rem;
}

/* ── TYPOGRAPHY ───────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  line-height: 1.1;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 800; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.75rem); font-weight: 700; }
h3 { font-size: 1.2rem; font-weight: 700; }
p  { color: var(--grey-text); line-height: 1.7; }

em { font-style: normal; color: var(--amber); }

/* ── BUTTONS ──────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  background: var(--amber);
  color: var(--black);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius);
  text-decoration: none;
  transition: background var(--transition), transform var(--transition);
  letter-spacing: 0.02em;
}
.btn-primary:hover {
  background: var(--amber-l);
  transform: translateY(-2px);
}
.btn-primary--large {
  font-size: 1.15rem;
  padding: 1rem 2.5rem;
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.75rem 1.75rem;
  border: 1.5px solid rgba(255,255,255,0.3);
  border-radius: var(--radius);
  text-decoration: none;
  transition: border-color var(--transition), background var(--transition);
}
.btn-outline:hover {
  border-color: var(--amber);
  background: rgba(245,158,11,0.08);
}

/* ── TOPBAR ALERT ─────────────────────────────────────────── */
.topbar-alert {
  background: var(--amber);
  color: var(--black);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-align: center;
  padding: 0.5rem 1rem;
}
.alert-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--black);
  border-radius: 50%;
  margin-right: 0.5rem;
  vertical-align: middle;
  animation: blink 1.5s infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* ── SITE HEADER ──────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13,13,13,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-block: 1rem;
}

/* Brand */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  flex-shrink: 0;
}
.brand-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--amber);
  color: var(--black);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.85rem;
  border-radius: var(--radius);
  letter-spacing: -0.03em;
}
.brand-name {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
}
.brand-name strong { color: var(--amber); }

/* Nav */
.main-nav {
  display: flex;
  gap: 1.75rem;
  margin-left: auto;
}
.main-nav a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color var(--transition);
}
.main-nav a:hover { color: var(--white); }

/* Header CTA */
.header-cta {
  display: inline-flex;
  align-items: center;
  background: var(--amber);
  color: var(--black);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.55rem 1rem;
  border-radius: var(--radius);
  text-decoration: none;
  white-space: nowrap;
  transition: background var(--transition);
  flex-shrink: 0;
}
.header-cta:hover { background: var(--amber-l); }

/* ── HERO — DÉCOLLAGE ─────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--black);
}

/* Runway diagonal motif */
.hero-runway {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      -15deg,
      transparent,
      transparent 60px,
      rgba(245,158,11,0.025) 60px,
      rgba(245,158,11,0.025) 62px
    );
  pointer-events: none;
}
.hero-runway::before {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
  height: 100%;
  background: radial-gradient(ellipse at 80% 50%, rgba(245,158,11,0.07) 0%, transparent 65%);
}
.hero-runway::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--amber);
  opacity: 0.4;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4rem;
  align-items: center;
  padding-block: 5rem;
}

.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1rem;
}

.hero-title {
  color: var(--white);
  margin-bottom: 1.5rem;
}

.hero-lead {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  max-width: 540px;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Hero badges */
.hero-badge-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  width: 260px;
  flex-shrink: 0;
}
.badge {
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  text-align: center;
  transition: border-color var(--transition), transform var(--transition);
}
.badge:hover { border-color: rgba(245,158,11,0.3); transform: translateY(-2px); }
.badge-num {
  display: block;
  font-family: var(--font-head);
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.badge-num sup {
  font-size: 0.8rem;
  font-weight: 700;
  vertical-align: super;
  color: var(--amber);
}
.badge-label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.4;
  display: block;
}

/* Reveal animations — see motion pass block at end of file */

/* ── INTRO STRIP ──────────────────────────────────────────── */
.intro-strip {
  background: var(--amber);
  padding: 2.5rem 0;
}
.strip-headline {
  font-family: var(--font-head);
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-weight: 700;
  color: var(--black);
  text-align: center;
  line-height: 1.3;
}

/* ── SECTION SHARED ───────────────────────────────────────── */
.section-fleet,
.section-avantages,
.section-process,
.section-avis,
.section-faq,
.section-contact {
  padding-block: 5rem;
}
.section-reservation {
  padding-block: 5rem;
  background: var(--dark);
}

.section-header {
  margin-bottom: 3rem;
}
.section-header--centered {
  text-align: center;
}
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.75rem;
}
.section-header h2 { color: var(--white); margin-bottom: 0.75rem; }
.section-intro {
  font-size: 1rem;
  color: rgba(255,255,255,0.55);
  max-width: 600px;
}

/* ── FLEET ────────────────────────────────────────────────── */
.section-fleet { background: var(--dark); }

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.fleet-card {
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: border-color var(--transition), transform var(--transition);
}
.fleet-card:hover {
  border-color: rgba(245,158,11,0.25);
  transform: translateY(-3px);
}
.fleet-card--featured {
  border-color: rgba(245,158,11,0.2);
  background: linear-gradient(135deg, var(--dark-2) 0%, rgba(245,158,11,0.04) 100%);
}

.fleet-card-cat {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.75rem;
}
.fleet-card h3 {
  color: var(--white);
  margin-bottom: 0.75rem;
  font-size: 1.15rem;
}
.fleet-card > p {
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
  color: rgba(255,255,255,0.55);
}

.fleet-specs {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 1.25rem;
}
.fleet-specs li {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
}
.spec-icon { margin-right: 0.4rem; }

.fleet-price {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.45);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 1rem;
}
.fleet-price strong {
  color: var(--amber);
  font-size: 1.1rem;
}

.fleet-cta {
  text-align: center;
  background: var(--dark-2);
  border: 1px solid rgba(245,158,11,0.15);
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.fleet-cta p { margin-bottom: 1.25rem; color: rgba(255,255,255,0.6); }

/* ── AVANTAGES ────────────────────────────────────────────── */
.section-avantages { background: var(--black); }

.avantages-layout {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  gap: 2rem;
  align-items: start;
  margin-bottom: 3rem;
}
.compare-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius);
  display: inline-block;
  margin-bottom: 1rem;
}
.compare-label--bad  { background: rgba(239,68,68,0.15); color: #FCA5A5; }
.compare-label--good { background: rgba(245,158,11,0.15); color: var(--amber); }

.compare-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.compare-list li {
  font-size: 0.9rem;
  padding: 0.6rem 0.75rem;
  border-radius: var(--radius);
  position: relative;
}
.compare-list--bad li {
  background: rgba(239,68,68,0.05);
  color: rgba(255,255,255,0.5);
  padding-left: 1.75rem;
}
.compare-list--bad li::before {
  content: '✕';
  position: absolute;
  left: 0.6rem;
  color: #EF4444;
  font-size: 0.8rem;
}
.compare-list--good li {
  background: rgba(245,158,11,0.06);
  color: rgba(255,255,255,0.8);
  padding-left: 1.75rem;
}
.compare-list--good li::before {
  content: '✓';
  position: absolute;
  left: 0.6rem;
  color: var(--amber);
  font-size: 0.8rem;
}

.avantages-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 800;
  color: rgba(255,255,255,0.2);
  padding-top: 3.5rem;
}

.avantages-extras {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}
.extra-card {
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: border-color var(--transition);
}
.extra-card:hover { border-color: rgba(245,158,11,0.2); }
.extra-icon {
  display: block;
  font-size: 1.8rem;
  margin-bottom: 0.75rem;
}
.extra-card h3 { color: var(--white); font-size: 1rem; margin-bottom: 0.5rem; }
.extra-card p  { font-size: 0.875rem; color: rgba(255,255,255,0.5); }

/* ── PROCESS ──────────────────────────────────────────────── */
.section-process {
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.process-steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  counter-reset: none;
}
.process-step {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}
.process-num {
  font-family: var(--font-head);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--amber);
  line-height: 1;
  flex-shrink: 0;
  opacity: 0.6;
}
.process-content h3 { color: var(--white); margin-bottom: 0.5rem; }
.process-content p  { font-size: 0.9rem; color: rgba(255,255,255,0.5); }

/* ── RESERVATION ─────────────────────────────────────────── */
.reservation-wrap {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}
.reservation-left h2 { color: var(--white); margin-bottom: 1rem; }
.reservation-left > p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 2rem;
}
.phone-link {
  color: var(--amber);
  font-weight: 700;
  text-decoration: none;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-item { display: flex; flex-direction: column; gap: 0.2rem; }
.ci-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
}
.ci-val {
  font-size: 0.9rem;
  color: var(--white);
  text-decoration: none;
}
a.ci-val:hover { color: var(--amber); }

/* Form */
.reservation-form {
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.form-row { display: flex; flex-direction: column; gap: 1.25rem; }
.form-row--2col {
  flex-direction: row;
  gap: 1rem;
}
.form-row--2col .form-group { flex: 1; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }

label {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.03em;
}
input, select, textarea {
  background: var(--dark);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  padding: 0.65rem 0.875rem;
  width: 100%;
  transition: border-color var(--transition);
  -webkit-appearance: none;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--amber);
}
input::placeholder, textarea::placeholder { color: rgba(255,255,255,0.2); }
select option { background: var(--dark); }

.btn-submit {
  background: var(--amber);
  color: var(--black);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.875rem 1.5rem;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background var(--transition);
  letter-spacing: 0.02em;
}
.btn-submit:hover { background: var(--amber-l); }

.form-mention {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
  text-align: center;
}

/* ── AVIS ─────────────────────────────────────────────────── */
.section-avis { background: var(--dark); }
.rating-summary {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 1rem;
}
.rating-num {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 800;
  color: var(--amber);
  line-height: 1;
}
.rating-stars { font-size: 1.3rem; color: var(--amber); }
.rating-src {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
}

.avis-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
  margin-top: 2.5rem;
}
.avis-card {
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: border-color var(--transition);
}
.avis-card:hover { border-color: rgba(245,158,11,0.15); }
.avis-stars { color: var(--amber); font-size: 1rem; margin-bottom: 0.75rem; }
.avis-card blockquote {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  font-style: italic;
  line-height: 1.65;
  margin-bottom: 0.75rem;
}
.avis-card cite {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  font-style: normal;
}

/* ── FAQ ──────────────────────────────────────────────────── */
.section-faq { background: var(--black); }
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  max-width: 780px;
}
.faq-item {
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item:hover { border-color: rgba(245,158,11,0.15); }
.faq-item[open] { border-color: rgba(245,158,11,0.25); }

.faq-item summary {
  cursor: pointer;
  padding: 1.1rem 1.5rem;
  font-weight: 600;
  color: var(--white);
  font-size: 0.95rem;
  list-style: none;
  position: relative;
  padding-right: 3rem;
  transition: color var(--transition);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.25rem;
  color: var(--amber);
  transition: transform var(--transition);
}
.faq-item[open] summary::after {
  content: '−';
}
.faq-item summary:hover { color: var(--amber); }

.faq-item > p {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  border-top: 1px solid rgba(255,255,255,0.04);
  margin-top: 0;
  padding-top: 1rem;
}

/* ── CONTACT SECTION ──────────────────────────────────────── */
.section-contact { background: var(--dark); }
.contact-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3.5rem;
}
.contact-headline {
  text-align: center;
}
.contact-headline h2 { color: var(--white); margin-bottom: 0.75rem; }
.contact-headline > p { color: rgba(255,255,255,0.55); margin-bottom: 2rem; }

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
  width: 100%;
  max-width: 780px;
}
.contact-info-card {
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-align: center;
  transition: border-color var(--transition);
}
.contact-info-card:hover { border-color: rgba(245,158,11,0.15); }
.contact-info-card h3 {
  color: var(--amber);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.contact-info-card p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
}

/* ── FOOTER ───────────────────────────────────────────────── */
.site-footer {
  background: #080808;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-block: 2.5rem;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: center;
  text-align: center;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.footer-brand-name {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
}
.footer-nav {
  display: flex;
  gap: 1.75rem;
}
.footer-nav a {
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color var(--transition);
}
.footer-nav a:hover { color: var(--amber); }
.footer-legal {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.25);
  line-height: 1.6;
}
.footer-legal a {
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color var(--transition);
}
.footer-legal a:hover { color: var(--amber); }

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .hero-badge-grid {
    width: 100%;
    grid-template-columns: repeat(4, 1fr);
  }
  .avantages-layout {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .avantages-divider { display: none; }
  .reservation-wrap {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 640px) {
  .header-inner { flex-wrap: wrap; gap: 1rem; }
  .main-nav { display: none; }
  .hero { min-height: auto; }
  .hero-content { padding-block: 3rem; }
  .hero-badge-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row--2col { flex-direction: column; }
  .intro-strip { padding: 1.75rem 0; }
  .fleet-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .avantages-extras { grid-template-columns: 1fr 1fr; }
  .contact-info-grid { grid-template-columns: 1fr; }
  .footer-nav { gap: 1rem; flex-wrap: wrap; justify-content: center; }
}

/* ============================================================
   MOTION PASS — DÉCOLLAGE
   Animation Designer · WebStudio Caraïbes · 2026
   All motion gated on prefers-reduced-motion: no-preference
   ============================================================ */

/* ── 1. SCROLL REVEAL — js-gated to avoid no-JS opacity trap ─ */
@media (prefers-reduced-motion: no-preference) {
  .js-reveal-ready [data-reveal],
  .js-reveal-ready [data-reveal-stagger] > * {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.55s ease, transform 0.55s ease;
  }
  .js-reveal-ready [data-reveal].is-revealed,
  .js-reveal-ready [data-reveal-stagger].is-revealed > * {
    opacity: 1;
    transform: none;
  }
  .js-reveal-ready [data-reveal-stagger].is-revealed > *:nth-child(2) { transition-delay: 0.1s; }
  .js-reveal-ready [data-reveal-stagger].is-revealed > *:nth-child(3) { transition-delay: 0.2s; }
  .js-reveal-ready [data-reveal-stagger].is-revealed > *:nth-child(4) { transition-delay: 0.3s; }
  .js-reveal-ready [data-reveal-stagger].is-revealed > *:nth-child(5) { transition-delay: 0.4s; }
  .js-reveal-ready [data-reveal-stagger].is-revealed > *:nth-child(6) { transition-delay: 0.5s; }
}

/* ── 2. HERO KINETIC ENTRY — titre, lead, CTA glissent vers le haut ─ */
@keyframes hero-in {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: none; }
}

@media (prefers-reduced-motion: no-preference) {
  .hero-eyebrow {
    animation: hero-in 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.10s both;
  }
  .hero-title {
    animation: hero-in 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.22s both;
  }
  .hero-lead {
    animation: hero-in 0.55s cubic-bezier(0.4, 0, 0.2, 1) 0.38s both;
  }
  .hero-actions {
    animation: hero-in 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.50s both;
  }
}

/* ── 3. RUNWAY DIAGONAL DRIFT — piste qui défile en fond ─────── */
@keyframes runway-scroll {
  to { background-position: 120px 0; }
}

@media (prefers-reduced-motion: no-preference) {
  .hero-runway {
    animation: runway-scroll 8s linear infinite;
  }
}

/* ── 4. NAV UNDERLINE ANIMÉE — soulignement ambre left→right ──── */
@media (prefers-reduced-motion: no-preference) {
  .main-nav a {
    background-image: linear-gradient(var(--amber), var(--amber));
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: 0% 1.5px;
    transition: color var(--transition), background-size var(--transition);
  }
  .main-nav a:hover {
    background-size: 100% 1.5px;
  }
}

/* ── 5. FOCUS VISIBLE — ring ambre accessible ─────────────────── */
:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 3px;
  border-radius: var(--radius);
}

/* ── 6. CTA PULSE — halo ambre sur le CTA de contact ─────────── */
@keyframes amber-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.45); }
  60%       { box-shadow: 0 0 0 12px rgba(245, 158, 11, 0); }
}

@media (prefers-reduced-motion: no-preference) {
  .btn-primary--large {
    animation: amber-pulse 2.5s ease-in-out 1.2s infinite;
  }
  .btn-primary--large:hover,
  .btn-primary--large:focus-visible {
    animation: none;
  }
}

/* ── KILL-SWITCH : prefers-reduced-motion: reduce ─────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
