/*
Theme Name:   Marrakech Transferts
Description:  Thème standalone — transport privé haut de gamme à Marrakech.
Author:       Marrakech Transferts
Version:      3.0.0
Text Domain:  mt
*/

/* ============================================================
   TOKENS
   ============================================================ */
:root {
  --or:      #C36E44;
  --or-d:    #A35634;
  --or-l:    rgba(195,110,68,.10);
  --or-b:    rgba(195,110,68,.24);
  --fond:    #FEFCF9;
  --creme:   #F7EBE0;
  --t:       #1E1D1F;
  --tm:      #58565A;
  --tl:      #9A9098;
  --ts:      #C8C0BC;
  --sombre:  #1E1D1F;
  --sombre-d:#131213;
  --blanc:   #FFFFFF;
  --b:       rgba(30,29,31,.09);
  --b2:      rgba(30,29,31,.06);
  --r:       6px;
  --rl:      12px;
  --sh:      0 8px 32px rgba(195,110,68,.14);
  --ss:      0 2px 10px rgba(195,110,68,.08);
  --max:     1220px;
  --font-h:  'Cormorant Garamond', Georgia, serif;
  --font-s:  'Playfair Display', Georgia, serif;
  --font-b:  'Inter', -apple-system, sans-serif;
  --tr:      0.22s ease;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: clip; scrollbar-gutter: stable; }
body {
  font-family: var(--font-b);
  font-size: 16px;
  line-height: 1.7;
  background: var(--fond);
  color: var(--t);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--or); text-decoration: none; transition: color var(--tr); }
a:hover { color: var(--or-d); }
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-thumb { background: var(--creme); border-radius: 2px; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2 {
  font-family: var(--font-h);
  font-weight: 600;
  line-height: 1.15;
  color: var(--t);
  letter-spacing: -.02em;
}
h3, h4 { font-family: var(--font-s); font-weight: 500; line-height: 1.35; color: var(--t); }
h5, h6  { font-family: var(--font-b); font-weight: 600; }
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.55rem); }
h4 { font-size: 1.1rem; }
p  { color: var(--tm); margin-bottom: 1.1em; }
p:last-child { margin-bottom: 0; }
strong, b { font-weight: 600; color: var(--t); }

.lbl {
  font-size: 11.5px; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--or); display: block; margin-bottom: .5rem;
}
.divider { width: 40px; height: 2px; background: var(--or); display: block; margin-bottom: 1.5rem; }
.divider--c { margin-left: auto; margin-right: auto; }

/* ============================================================
   LAYOUT
   ============================================================ */
.sin { max-width: var(--max); margin: 0 auto; padding: 0 1.5rem; }
.sec { padding: 5rem 0; }
.sec--sm { padding: 3.5rem 0; }
.sec--creme { background: var(--creme); border-top: 1px solid var(--b2); border-bottom: 1px solid var(--b2); }
.sec--sombre { background: var(--sombre); }

.sh { text-align: center; margin-bottom: 2.5rem; }
.sh h2 { margin-bottom: .5rem; }
.sh p { font-size: 1.05rem; max-width: 520px; margin: 0 auto; }
.sh--l { text-align: left; }
.sh--l p { margin: 0; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  background: var(--blanc) !important;
  border-bottom: 1px solid var(--b2) !important;
  box-shadow: 0 2px 20px rgba(44,24,16,.05) !important;
  position: sticky !important;
  top: 0;
  z-index: 999;
}
.hdr-in {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: stretch;
  height: 70px;
}
.hdr-in .site-logo  { grid-column: 1; display: flex; align-items: center; justify-self: start; min-width: 180px; }
.hdr-in .main-nav   { grid-column: 2; }
.hdr-in .nav-toggle { grid-column: 3; justify-self: end; align-self: center; }

/* Logo */
.site-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.site-logo picture,
.site-logo img {
  display: block;
  height: 46px;
  width: auto;
  transition: opacity var(--tr);
}
.site-logo:hover img { opacity: .82; }

/* Navigation desktop */
.main-nav {
  display: flex;
  align-items: center;
  height: 100%;
}
.nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  height: 100%;
  gap: 2px;
}
.nav-list > li {
  display: flex;
  align-items: center;
  height: 100%;
}
.nav-list > li > a {
  display: flex;
  align-items: center;
  font-size: .8rem;
  font-weight: 500;
  color: var(--t);
  padding: 7px 11px;
  border-radius: 5px;
  transition: color var(--tr), background var(--tr);
  white-space: nowrap;
}
.nav-list > li > a:hover,
.nav-list > li.current-menu-item > a {
  color: var(--or);
  background: var(--or-l);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--t);
  border-radius: 2px;
  transition: transform .22s, opacity .22s;
}
.nav-toggle.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-active span:nth-child(2) { opacity: 0; }
.nav-toggle.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   BOUTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-b);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 13px 28px;
  border-radius: var(--r);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all var(--tr);
  white-space: nowrap;
  text-decoration: none;
  line-height: 1;
}
.btn--primary { background: var(--or); color: var(--blanc) !important; border-color: var(--or); }
.btn--primary:hover { background: var(--or-d); border-color: var(--or-d); color: var(--blanc) !important; transform: translateY(-1px); box-shadow: var(--sh); }
.btn--outline  { background: transparent; color: var(--or) !important; border-color: var(--or); }
.btn--outline:hover { background: var(--or); color: var(--blanc) !important; transform: translateY(-1px); }
.btn--light    { background: transparent; color: rgba(255,255,255,.85) !important; border-color: rgba(255,255,255,.35); }
.btn--light:hover { background: rgba(255,255,255,.12); color: #fff !important; border-color: rgba(255,255,255,.6); }
.btn--wa { background: #25D366; color: var(--blanc) !important; border-color: #25D366; }
.btn--wa:hover { background: #1da851; border-color: #1da851; color: var(--blanc) !important; transform: translateY(-1px); }
.btn--wa svg { width: 18px; height: 18px; fill: #fff; flex-shrink: 0; }
.btn-group { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }

/* ============================================================
   ICON BOX
   ============================================================ */
.icon-box {
  width: 42px; height: 42px; border-radius: 10px;
  background: var(--or-l); border: 1px solid var(--or-b);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.icon-box svg { width: 18px; height: 18px; stroke: var(--or); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.icon-box--sm { width: 32px; height: 32px; border-radius: 8px; }
.icon-box--sm svg { width: 14px; height: 14px; }
.icon-box--dark { background: var(--or-l); border-color: var(--or-b); }

.check-icon {
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--or); display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; box-shadow: 0 0 0 3px var(--or-l);
}
.check-icon svg { width: 12px; height: 12px; stroke: #fff; fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }

.check-list { list-style: none; padding: 0; }
.check-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: .88rem; color: var(--tm); margin-bottom: 8px; line-height: 1.5;
}
.check-list li::before {
  content: ''; width: 5px; height: 5px; border-radius: 50%;
  background: var(--or); flex-shrink: 0; margin-top: 7px;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 72vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--sombre-d);
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.hero-bg img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-ov {
  position: absolute; inset: 0;
  background: linear-gradient(108deg, rgba(19,18,19,.92) 25%, rgba(19,18,19,.52) 100%);
}
.hero-in {
  position: relative; z-index: 2;
  max-width: var(--max); margin: 0 auto; padding: 4rem 1.5rem 3rem;
  display: grid; grid-template-columns: 1fr 420px; gap: 3.5rem;
  align-items: center; width: 100%;
}

/* Hero punch line + price tag */
.hero-punch {
  color: rgba(255,255,255,.82);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  font-weight: 400;
  margin-bottom: .9rem;
  letter-spacing: .01em;
}
.hero-star {
  color: #f5c518;
  font-weight: 700;
  letter-spacing: -.01em;
}
.hero-punch--glass {
  display: inline-block;
  background: rgba(255, 255, 255, .07);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 40px;
  padding: 7px 18px;
  margin-bottom: 1rem;
}
.hero-price-raw {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 1.8rem;
  flex-wrap: wrap;
}
.hero-price-raw__label {
  color: rgba(255,255,255,.45);
  font-size: .78rem;
  font-weight: 400;
  letter-spacing: .06em;
  text-transform: uppercase;
  align-self: center;
}
.hero-price-raw__num {
  color: var(--or);
  font-size: clamp(2.8rem, 4.5vw, 3.8rem);
  font-weight: 900;
  letter-spacing: -.04em;
  line-height: 1;
  font-family: var(--font-b);
}
.hero-price-raw__num sup {
  font-size: .45em;
  font-weight: 700;
  vertical-align: super;
  color: var(--or);
  letter-spacing: 0;
}
.hero-price-raw__sep {
  color: rgba(255,255,255,.2);
  font-size: 1rem;
  align-self: center;
}
.hero-price-raw__detail {
  color: rgba(255,255,255,.42);
  font-size: .8rem;
  letter-spacing: .02em;
  align-self: center;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--or-l); border: 1px solid var(--or-b);
  border-radius: 20px; padding: 5px 14px; margin-bottom: 1.2rem;
}
.hero-badge__dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--or); animation: pulse 2.2s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.4;transform:scale(1.4)} }
.hero-badge span { font-size: 11px; color: var(--or); font-weight: 500; letter-spacing: .04em; }

.hero h1 { color: var(--blanc); font-size: clamp(2.8rem, 5.2vw, 5rem); font-weight: 800; line-height: 1.08; letter-spacing: -.04em; margin-bottom: 1.1rem; }
.hero h1 em {
  color: var(--or);
  font-style: normal;
  display: block;
  height: 1.15em;
  overflow: hidden;
  white-space: nowrap;
  transition: opacity .38s ease, transform .38s ease;
}
.hero h1 em.hero-em--out {
  opacity: 0;
  transform: translateY(8px);
}
.hero p { font-size: .98rem; color: rgba(255,255,255,.6); line-height: 1.75; max-width: 440px; margin-bottom: 1.8rem; font-weight: 300; }

.hero-list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 9px; margin-bottom: 2rem; }
.hero-list li { display: flex; align-items: center; gap: 9px; font-size: .87rem; color: rgba(255,255,255,.72); }

.hero-form {
  background: var(--blanc); border-radius: var(--rl);
  padding: 1.4rem 1.5rem; box-shadow: 0 24px 80px rgba(0,0,0,.28);
}
.hero-form__title { font-family: var(--font-s); font-size: 1.05rem; color: var(--t); margin-bottom: .15rem; }
.hero-form__sub {
  font-size: .75rem; color: var(--tl); margin-bottom: .9rem;
  padding-bottom: .75rem; border-bottom: 1px solid var(--b2);
}

/* Booking form */
.booking-form { display: flex; flex-direction: column; gap: .6rem; }
.bf-row { display: grid; grid-template-columns: 1fr 1fr; gap: .6rem; }
.bf-field { display: flex; flex-direction: column; gap: 3px; }
.bf-label {
  display: flex; align-items: center; gap: 5px;
  font-size: .75rem; font-weight: 600; color: var(--tm);
  letter-spacing: .04em; text-transform: uppercase;
}
.bf-label svg { stroke: var(--or); flex-shrink: 0; }
.bf-input {
  width: 100%; padding: 9px 11px; font-size: .9rem;
  border: 1.5px solid var(--b); border-radius: var(--r);
  background: var(--fond); color: var(--t);
  transition: border-color var(--tr), box-shadow var(--tr);
  appearance: none; -webkit-appearance: none;
  font-family: var(--font-b);
}
.bf-input:focus { outline: none; border-color: var(--or); box-shadow: 0 0 0 3px var(--or-l); }
.bf-input option { background: var(--blanc); }
.bf-submit {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; padding: 13px; margin-top: 4px;
  background: var(--or); color: var(--blanc);
  border: none; border-radius: var(--r); cursor: pointer;
  font-size: .88rem; font-weight: 600; letter-spacing: .03em;
  transition: background var(--tr), transform var(--tr);
  font-family: var(--font-b);
}
.bf-submit:hover { background: var(--or-d); transform: translateY(-1px); }
.bf-submit:active { transform: translateY(0); }
.bf-note,
.hero-form .bf-note {
  display: flex; align-items: center; justify-content: center; gap: 5px;
  font-size: .78rem; color: var(--tm); margin: 0; text-align: center;
}
.bf-note svg { stroke: var(--or); flex-shrink: 0; }
.cf-textarea { min-height: 120px; resize: vertical; line-height: 1.6; }

/* Form blocks (Aller / Retour) */
.bf-block {
  border: 1.5px solid var(--b);
  border-radius: var(--r);
  padding: .75rem .9rem;
  display: flex; flex-direction: column; gap: .55rem;
}
.bf-block__lbl {
  display: flex; align-items: center; gap: 5px;
  font-size: .72rem; font-weight: 700; letter-spacing: .07em;
  text-transform: uppercase; color: var(--or);
  padding-bottom: .45rem;
  border-bottom: 1px solid var(--b2);
}
.bf-block__lbl svg { stroke: var(--or); flex-shrink: 0; }
/* Retour block hidden by default (reuses .bf-retour-field) */
.bf-block.bf-retour-field { display: none; }
.bf-block.bf-retour-field.is-visible { display: flex; }

/* Aller / Aller-retour toggle */
.bf-toggle {
  display: flex; background: var(--fond); border-radius: 8px; padding: 3px;
  margin-bottom: .25rem;
}
.bf-tog-btn {
  flex: 1; padding: 8px 12px; border: none; border-radius: 6px;
  font-size: .82rem; font-weight: 500; cursor: pointer;
  background: transparent; color: var(--tm);
  transition: background var(--tr), color var(--tr), box-shadow var(--tr);
  font-family: var(--font-b);
}
.bf-tog-btn--on {
  background: var(--blanc); color: var(--t);
  box-shadow: 0 1px 4px rgba(0,0,0,.10);
}
.bf-retour-field { display: none; }
.bf-retour-field.is-visible { display: flex; }
.bf-cond-field { display: none; }
.bf-cond-field.is-visible { display: flex; }
.bf-warn {
  display: none; align-items: center; gap: 5px;
  font-size: .75rem; color: #c0392b; margin: -.2rem 0 0;
}
.bf-warn.is-visible { display: flex; }
.bf-warn svg { stroke: #c0392b; flex-shrink: 0; }

/* Hero trust badges */
.hero-trust {
  display: flex; flex-wrap: wrap; gap: .5rem 1.2rem; margin-top: -.4rem;
}
.hero-trust__item {
  display: flex; align-items: center; gap: 5px;
  font-size: .78rem; color: rgba(255,255,255,.5); font-weight: 300;
}
.hero-trust__item svg { stroke: var(--or); flex-shrink: 0; }

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust-strip {
  background: linear-gradient(135deg, var(--sombre-d), var(--sombre));
  padding: 1.5rem;
  border-bottom: 1px solid var(--or-b);
}
.trust-strip__in {
  max-width: var(--max); margin: 0 auto;
  display: flex; gap: 1.5rem; flex-wrap: wrap;
  justify-content: center; align-items: center;
}
.trust-item { display: flex; align-items: center; gap: 10px; }
.trust-item__text { line-height: 1.3; }
.trust-item__label { font-size: .875rem; font-weight: 600; color: var(--blanc); display: block; }
.trust-item__sub   { font-size: .8rem; color: rgba(255,255,255,.42); display: block; }
.trust-strip__sep  { width: 1px; height: 28px; background: rgba(255,255,255,.08); flex-shrink: 0; }

/* ============================================================
   GRIDS & CARDS
   ============================================================ */
.grid-2   { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.grid-3   { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.grid-4   { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.grid-auto    { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 18px; }
.grid-auto-sm { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 16px; }

.card {
  background: var(--blanc); border: 1px solid var(--b2); border-radius: var(--rl);
  padding: 1.5rem; transition: box-shadow var(--tr), transform var(--tr), border-color var(--tr);
  position: relative; overflow: hidden; display: flex; flex-direction: column;
}
.card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--or), var(--or-d));
  transform: scaleX(0); transform-origin: left; transition: transform var(--tr);
}
.card:hover { box-shadow: var(--sh); transform: translateY(-3px); border-color: var(--or-b); }
.card:hover::after { transform: scaleX(1); }
.card__icon { margin-bottom: 1.1rem; }
.card__title { font-family: var(--font-s); font-size: 1rem; font-weight: 500; color: var(--t); margin-bottom: .5rem; }
.card__text  { font-size: .87rem; color: var(--tm); line-height: 1.6; margin-bottom: 1.1rem; }
.card__link  {
  font-size: .75rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--or); display: inline-flex; align-items: center; gap: 6px; margin-top: auto;
  transition: gap var(--tr);
}
.card__link svg { width: 12px; height: 12px; stroke: currentColor; fill: none; stroke-width: 2.2; stroke-linecap: round; }
.card__link:hover { gap: 10px; color: var(--or-d); }

.card--dark { background: rgba(255,255,255,.04); border-color: rgba(255,255,255,.06); }
.card--dark::after { display: none; }
.card--dark:hover { background: rgba(255,255,255,.07); border-color: rgba(195,110,68,.22); transform: translateY(-2px); }
.card--dark .card__title { color: var(--blanc); }
.card--dark .card__text  { color: rgba(255,255,255,.48); }

/* Route cards */
.route-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 14px; }
.route-card {
  background: var(--blanc); border: 1px solid var(--b2); border-radius: var(--rl);
  padding: 1.1rem 1.25rem; transition: all var(--tr);
  display: flex; flex-direction: column; gap: 10px;
}
.route-card:hover { border-color: var(--or-b); box-shadow: var(--ss); }
.route-card__route { display: flex; align-items: center; gap: 8px; font-family: var(--font-s); font-size: .95rem; font-weight: 500; color: var(--t); }
.route-card__sep { width: 20px; height: 1px; background: var(--or); flex-shrink: 0; }
.route-card__sep svg { width: 14px; height: 14px; stroke: var(--or); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.route-card__meta { display: flex; gap: 1rem; font-size: .8rem; color: var(--tl); }
.route-card__meta span { display: flex; align-items: center; gap: 4px; }
.route-card__meta svg { width: 12px; height: 12px; stroke: var(--or); fill: none; stroke-width: 1.8; }
.route-card__price { font-size: .78rem; color: var(--or); font-weight: 600; }

/* Stat cards */
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-bottom: 2rem; }
.stat-card { background: var(--blanc); border-radius: var(--r); padding: 1.25rem; text-align: center; border: 1px solid var(--b2); }
.stat-card__num   { font-family: var(--font-h); font-size: 2.4rem; color: var(--or); line-height: 1; margin-bottom: .3rem; }
.stat-card__label { font-size: .78rem; color: var(--tm); font-weight: 300; }
.stat-card--dark  { background: rgba(255,255,255,.04); border-color: rgba(255,255,255,.06); }
.stat-card--dark .stat-card__label { color: rgba(255,255,255,.42); }

/* Excursion cards */
.exc-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: 18px; }
.exc-card {
  background: var(--blanc); border: 1px solid var(--b2); border-radius: var(--rl);
  overflow: hidden; cursor: pointer; transition: transform .22s, box-shadow .22s; box-shadow: var(--ss);
}
.exc-card:hover { transform: translateY(-4px); box-shadow: var(--sh); }
.exc-card__img {
  height: 185px; position: relative; overflow: hidden;
  background: var(--creme); display: flex; align-items: center; justify-content: center;
  color: var(--ts); font-size: .8rem; letter-spacing: .06em; text-transform: uppercase;
}
.exc-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .38s; }
.exc-card:hover .exc-card__img img { transform: scale(1.05); }
.exc-card__badge { position: absolute; top: 10px; left: 10px; z-index: 2; font-size: .73rem; font-weight: 700; padding: 3px 10px; border-radius: 9px; letter-spacing: .04em; text-transform: uppercase; }
.exc-card__badge--day  { background: var(--or); color: var(--blanc); }
.exc-card__badge--tour { background: rgba(19,18,19,.88); color: var(--creme); border: 1px solid rgba(195,110,68,.38); backdrop-filter: blur(4px); }
.exc-card__body { padding: 1.2rem; }
.exc-card__title { font-size: 1rem; font-weight: 500; color: var(--t); margin-bottom: .5rem; line-height: 1.32; }
.exc-card__meta { display: flex; gap: .9rem; margin-bottom: .6rem; flex-wrap: wrap; }
.exc-card__meta span { font-size: .78rem; color: var(--tl); display: flex; align-items: center; gap: 4px; }
.exc-card__meta svg { width: 11px; height: 11px; stroke: var(--or); fill: none; stroke-width: 1.8; }
.exc-card__desc {
  font-size: .85rem; color: var(--tm); line-height: 1.6; margin-bottom: .9rem;
  display: -webkit-box; -webkit-line-clamp: 5; -webkit-box-orient: vertical; overflow: hidden;
}
.exc-card__foot { display: flex; align-items: center; justify-content: space-between; padding-top: .8rem; border-top: 1px solid var(--b2); }
.exc-card__price { font-size: .82rem; color: var(--tm); }
.exc-card__price strong { font-size: 1rem; color: var(--or); font-weight: 500; }

/* Fleet cards */
.fleet-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 340px)); gap: 18px; justify-content: center; }
.fleet-card { background: var(--blanc); border-radius: var(--rl); overflow: hidden; box-shadow: var(--ss); border: 1px solid var(--b2); transition: box-shadow .22s; }
.fleet-card:hover { box-shadow: var(--sh); }
.fleet-card__img {
  height: 170px; position: relative; overflow: hidden; background: var(--creme);
  display: flex; align-items: center; justify-content: center;
  font-size: .75rem; color: var(--ts); letter-spacing: .06em; text-transform: uppercase;
}
.fleet-card__img img { width: 100%; height: 100%; object-fit: cover; }
.fleet-card__pax {
  position: absolute; bottom: 10px; right: 10px;
  background: rgba(0,0,0,.65); color: var(--blanc); font-size: .75rem;
  font-weight: 500; padding: 4px 11px; border-radius: 6px; backdrop-filter: blur(4px);
}
.fleet-card__body { padding: 1.1rem; }
.fleet-card__title { font-size: 1rem; font-weight: 500; color: var(--t); margin-bottom: .25rem; }
.fleet-card__sub   { font-size: .78rem; color: var(--tl); margin-bottom: .8rem; font-weight: 300; }
.fleet-card__tags  { display: flex; flex-wrap: wrap; gap: 4px; margin-bottom: .9rem; }
.fleet-card__tag   { font-size: .72rem; color: var(--tm); background: var(--fond); padding: 3px 9px; border-radius: 5px; border: 1px solid var(--b2); }

/* Service image cards */
.srv-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 2.5rem;
}
.srv-card {
  background: var(--blanc); border-radius: var(--rl); overflow: hidden;
  box-shadow: var(--ss); border: 1px solid var(--b2);
  display: flex; flex-direction: column;
  transition: box-shadow .24s, transform .24s;
  color: inherit; text-decoration: none;
}
.srv-card:hover { box-shadow: var(--sh); transform: translateY(-5px); color: inherit; }
.srv-card__img { aspect-ratio: 3/2; overflow: hidden; }
.srv-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.srv-card:hover .srv-card__img img { transform: scale(1.07); }
.srv-card__body { padding: 1.2rem 1.3rem 1.5rem; display: flex; flex-direction: column; flex: 1; }
.srv-card__cat {
  font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--or); display: block; margin-bottom: .45rem;
}
.srv-card__title {
  font-family: var(--font-h); font-size: 1.12rem; font-weight: 600;
  color: var(--t); line-height: 1.28; margin-bottom: .5rem;
}
.srv-card__text { font-size: .9rem; color: var(--tm); line-height: 1.65; flex: 1; margin-bottom: 1rem; }
.srv-card__cta {
  font-size: .75rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase;
  color: var(--or); display: inline-flex; align-items: center; gap: 5px;
  transition: gap var(--tr), color var(--tr);
}
.srv-card__cta svg { stroke: currentColor; fill: none; stroke-width: 2.2; stroke-linecap: round; flex-shrink: 0; }
.srv-card:hover .srv-card__cta { gap: 9px; color: var(--or-d); }

/* Price table */
.price-table-wrap { overflow-x: auto; border-radius: var(--rl); box-shadow: var(--ss); margin-top: 2rem; }
.price-table { width: 100%; border-collapse: collapse; background: var(--blanc); font-size: .9rem; }
.price-table thead tr { background: var(--sombre); }
.price-table thead th {
  padding: .9rem 1.1rem; text-align: left; color: var(--creme);
  font-size: .72rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; white-space: nowrap;
}
.price-table thead th:nth-child(3),
.price-table thead th:nth-child(4) { text-align: center; }
.price-table__pax-label { display: inline-flex; align-items: center; gap: 5px; }
.price-table__pax-label svg { stroke: var(--or); }
.price-table tbody tr { border-bottom: 1px solid var(--b2); transition: background var(--tr); }
.price-table tbody tr:last-child { border-bottom: none; }
.price-table tbody tr:hover { background: var(--creme); }
.price-table td { padding: .85rem 1.1rem; color: var(--t); vertical-align: middle; }
.price-table__from { font-weight: 600; color: var(--t); }
.price-table__price { text-align: center; color: var(--or); font-weight: 500; font-size: .95rem; }
.price-table__price strong { color: var(--or); font-size: 1rem; font-weight: 700; }
.price-table td:last-child { text-align: right; padding-right: 1.25rem; }
.price-table__btn {
  display: inline-block; padding: 6px 14px; background: var(--or); color: #fff !important;
  border-radius: 6px; font-size: .72rem; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; white-space: nowrap; transition: background var(--tr), transform var(--tr);
}
.price-table__btn:hover { background: var(--or-d); transform: translateY(-1px); color: #fff !important; }
@media (max-width: 640px) {
  .price-table td:last-child { display: none; }
  .price-table thead th:last-child { display: none; }
  .price-table td, .price-table th { padding: .7rem .75rem; }
}

/* Fleet group CTA */
.fleet-group-cta {
  margin-top: 2rem;
  padding: 1.25rem 1.5rem;
  background: var(--creme);
  border: 1px solid var(--or-b);
  border-radius: var(--rl);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.fleet-group-cta__text {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .9rem;
  color: var(--tm);
  flex: 1;
  min-width: 220px;
}
.fleet-group-cta__text svg { stroke: var(--or); flex-shrink: 0; }
.fleet-group-cta__text strong { color: var(--t); font-weight: 600; }
.fleet-group-cta__actions { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }

/* Bagages cards */
.bagages-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 14px; }
.bagages-card { text-align: center; padding: 1.5rem 1rem; background: var(--blanc); border: 1px solid var(--b2); border-radius: var(--rl); transition: border-color var(--tr); }
.bagages-card:hover { border-color: var(--or-b); }
.bagages-card .icon-box { margin: 0 auto .9rem; width: 48px; height: 48px; }
.bagages-card__type  { font-family: var(--font-s); font-size: .93rem; margin-bottom: .4rem; }
.bagages-card__size  { font-size: .78rem; color: var(--tl); margin-bottom: .6rem; }
.bagages-card__price { font-size: .82rem; color: var(--or); font-weight: 600; }

/* ============================================================
   STEPS
   ============================================================ */
.steps { display: flex; flex-direction: column; gap: 0; max-width: 680px; }
.step  { display: flex; gap: 1.25rem; padding-bottom: 2.25rem; position: relative; }
.step:not(:last-child)::before {
  content: ''; position: absolute; left: 17px; top: 36px; bottom: 0;
  width: 1px; background: var(--or-b);
}
.step__num {
  width: 36px; height: 36px; min-width: 36px; background: var(--or);
  color: var(--blanc); border-radius: 50%; display: flex; align-items: center;
  justify-content: center; font-weight: 700; font-size: .82rem; flex-shrink: 0;
}
.step__body h4 { font-size: .95rem; margin-bottom: .3rem; }
.step__body p  { font-size: .88rem; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item { border: 1px solid var(--b2); border-radius: var(--r); margin-bottom: 7px; overflow: hidden; background: var(--blanc); transition: border-color var(--tr), box-shadow var(--tr); }
.faq-item.is-open { border-color: var(--or-b); box-shadow: 0 2px 12px rgba(195,110,68,.1); }
.faq-q { display: flex; align-items: center; justify-content: space-between; padding: 1rem 1.1rem; cursor: pointer; gap: 12px; background: var(--blanc) !important; border: none; outline: none; -webkit-appearance: none; appearance: none; width: 100%; text-align: left; color: inherit; transition: background var(--tr); }
.faq-q:hover,
.faq-q:focus { background: var(--fond) !important; }
.faq-item.is-open .faq-q { background: var(--blanc) !important; }
.faq-qt { font-size: 1rem; font-weight: 500; color: var(--t); line-height: 1.4; }
.faq-ico { width: 24px; height: 24px; border-radius: 50%; border: 1px solid var(--b); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: transform var(--tr), background var(--tr), border-color var(--tr); }
.faq-ico svg { width: 10px; height: 10px; stroke: var(--tm); fill: none; stroke-width: 2.2; stroke-linecap: round; }
.faq-item.is-open .faq-ico { transform: rotate(180deg); background: var(--or); border-color: var(--or); }
.faq-item.is-open .faq-ico svg { stroke: var(--blanc); }
.faq-a { display: none; padding: 1rem 1.1rem 1.3rem; border-top: 1px solid var(--b2); font-size: .95rem; color: var(--tm); line-height: 1.72; font-weight: 300; }
.faq-item.is-open .faq-a { display: block; }

.faq-layout { display: grid; grid-template-columns: 180px 1fr; gap: 2rem; align-items: start; }
.faq-cats   { position: sticky; top: 90px; }
.faq-cat-btn {
  display: flex; align-items: center; gap: 8px; width: 100%; padding: 8px 10px;
  border-radius: 7px; border: none; background: transparent; font-size: .82rem;
  color: var(--tm); cursor: pointer; text-align: left; font-family: var(--font-b); transition: all var(--tr);
}
.faq-cat-btn:hover { background: var(--or-l); color: var(--or-d); }
.faq-cat-btn.is-on { background: var(--or-l); color: var(--or-d); font-weight: 500; }
.faq-cat-btn__dot { width: 5px; height: 5px; border-radius: 50%; background: currentColor; flex-shrink: 0; opacity: .5; }
.faq-section { display: none; }
.faq-section.is-on { display: block; }
.faq-section__label { font-size: .88rem; font-weight: 500; color: var(--t); margin-bottom: .8rem; padding-bottom: .6rem; border-bottom: 1px solid var(--b2); }

/* ============================================================
   PAGE HERO (pages intérieures)
   ============================================================ */
.page-hero {
  background: var(--sombre);
  min-height: 360px; padding: 5rem 2rem 4rem;
  text-align: center; position: relative; overflow: hidden;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.page-hero__bg { position: absolute; inset: 0; z-index: 0; }
.page-hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.page-hero__ov { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(19,18,19,.84), rgba(19,18,19,.62)); z-index: 1; }
.page-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 100%, var(--or-l), transparent 60%); z-index: 2; }
.page-hero > *:not(.page-hero__bg):not(.page-hero__ov) { position: relative; z-index: 3; }
.page-hero h1 { color: var(--blanc); margin-bottom: .75rem; }
.page-hero p  { color: rgba(255,255,255,.55); font-size: .98rem; max-width: 520px; margin: 0 auto 1.8rem; font-weight: 300; }

/* ============================================================
   TABS
   ============================================================ */
.tabs { display: flex; gap: 3px; border-bottom: 2px solid var(--b2); margin-bottom: 2.5rem; flex-wrap: wrap; }
.tab-btn {
  background: none; border: none; padding: 10px 20px; font-family: var(--font-b);
  font-size: .85rem; font-weight: 500; color: var(--tl); cursor: pointer;
  border-bottom: 2px solid transparent; margin-bottom: -2px; transition: all var(--tr); letter-spacing: .01em;
}
.tab-btn.is-active,
.tab-btn:hover { color: var(--or); border-bottom-color: var(--or); }
.tab-content { display: none; }
.tab-content.is-active { display: block; }

/* ============================================================
   CTA
   ============================================================ */
.cta-sec {
  background: linear-gradient(135deg, var(--sombre-d), var(--sombre));
  padding: 5rem 1.5rem; text-align: center; position: relative; overflow: hidden;
}
.cta-sec::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 15% 60%, rgba(195,110,68,.09), transparent 50%),
              radial-gradient(ellipse at 85% 20%, rgba(195,110,68,.06), transparent 45%);
}
.cta-sec__in { position: relative; z-index: 2; max-width: 580px; margin: 0 auto; }
.cta-sec h2 { color: var(--blanc); margin-bottom: .7rem; }
.cta-sec p  { color: rgba(255,255,255,.48); font-size: .98rem; margin-bottom: 2rem; font-weight: 300; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--sombre);
  color: rgba(255,255,255,.55);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding: 3.5rem 1.5rem 2.5rem;
  max-width: var(--max);
  margin: 0 auto;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.footer-logo-wrap { margin-bottom: 1rem; }
.footer-logo-wrap img { height: 52px; width: auto; display: block; opacity: .92; }
.footer-logo-wrap a:hover img { opacity: 1; }
.footer-tagline { font-size: .875rem; color: rgba(255,255,255,.38); line-height: 1.65; margin-bottom: 1.25rem; }
.footer-col__title {
  font-size: .7rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--or); margin-bottom: 1.1rem; display: block;
}
.footer-col ul { list-style: none; padding: 0; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { font-size: .875rem; color: rgba(255,255,255,.48); transition: color var(--tr); }
.footer-col ul li a:hover { color: var(--or); }
.footer-bottom {
  max-width: var(--max); margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.25rem 1.5rem; font-size: .75rem; color: rgba(255,255,255,.22);
  flex-wrap: wrap; gap: 10px;
}
.footer-bottom a { font-size: .75rem; color: rgba(255,255,255,.22); }
.footer-bottom a:hover { color: var(--or); }

/* ============================================================
   WHATSAPP FLOATING
   ============================================================ */
.wa-float { position: fixed; bottom: 24px; right: 24px; z-index: 9999; display: flex; flex-direction: column; align-items: flex-end; gap: 8px; }
.wa-float__bubble { background: var(--blanc); border-radius: 10px 10px 0 10px; padding: 9px 14px; font-size: .8rem; color: var(--t); box-shadow: var(--sh); white-space: nowrap; animation: bubbleIn .4s ease forwards; }
.wa-float__btn { width: 54px; height: 54px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(37,211,102,.4); transition: all var(--tr); text-decoration: none; position: relative; }
.wa-float__btn:hover { transform: scale(1.08); box-shadow: 0 6px 28px rgba(37,211,102,.55); }
.wa-float__btn svg { width: 28px; height: 28px; fill: #fff; }
.wa-float__btn::before { content: ''; position: absolute; inset: -4px; border-radius: 50%; border: 2px solid rgba(37,211,102,.35); animation: waPulse 2s infinite; }
@keyframes waPulse  { 0%{transform:scale(1);opacity:1} 100%{transform:scale(1.45);opacity:0} }
@keyframes bubbleIn { from{opacity:0;transform:translateY(6px)} to{opacity:1;transform:none} }

/* ============================================================
   MISC UTILS
   ============================================================ */
.text-or     { color: var(--or) !important; }
.text-center { text-align: center; }
.form-wrap   { background: var(--blanc); border-radius: var(--rl); padding: 2.25rem; box-shadow: var(--sh); border: 1px solid var(--b2); }

.will-animate { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.will-animate.is-visible { opacity: 1; transform: none; }
.fade-in { opacity: 1; transform: none; }

/* Grille 2 colonnes */
.g2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.g2--gap-lg { gap: 3rem; }
.g2--start  { align-items: start; }

/* WPForms */
.wpforms-container .wpforms-form input,
.wpforms-container .wpforms-form select,
.wpforms-container .wpforms-form textarea {
  font-family: var(--font-b) !important; font-size: .88rem !important;
  border: 1px solid rgba(0,0,0,.1) !important; border-radius: var(--r) !important;
  padding: 10px 13px !important; transition: border-color var(--tr) !important; color: var(--t) !important;
}
.wpforms-container .wpforms-form input:focus,
.wpforms-container .wpforms-form select:focus,
.wpforms-container .wpforms-form textarea:focus {
  border-color: var(--or) !important; outline: none !important; box-shadow: 0 0 0 3px var(--or-l) !important;
}
.wpforms-container .wpforms-form label {
  font-size: .78rem !important; font-weight: 600 !important; color: var(--t) !important;
  letter-spacing: .04em !important; text-transform: uppercase !important; margin-bottom: 5px !important;
}
.wpforms-container .wpforms-form .wpforms-submit {
  background: var(--or) !important; color: var(--blanc) !important; border: none !important;
  font-family: var(--font-b) !important; font-size: .78rem !important; font-weight: 700 !important;
  letter-spacing: .1em !important; text-transform: uppercase !important; padding: 13px 32px !important;
  border-radius: var(--r) !important; cursor: pointer !important; transition: all var(--tr) !important;
}
.wpforms-container .wpforms-form .wpforms-submit:hover { background: var(--or-d) !important; transform: translateY(-1px) !important; }

/* Admin bar */
#wpadminbar { display: none !important; }
html.wp-toolbar, body.admin-bar { margin-top: 0 !important; padding-top: 0 !important; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .footer-grid  { grid-template-columns: 1fr 1fr; }
  .hero-in      { grid-template-columns: 1fr; }
  .hero-form    { max-width: 520px; margin: 0 auto; }
  .faq-layout   { grid-template-columns: 1fr; }
  .faq-cats     { display: flex; flex-wrap: wrap; gap: 4px; position: static; }
  .stat-grid    { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .srv-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .sec { padding: 3rem 0; }
  .hero { min-height: auto; }
  .hero-in { padding: 4.5rem 1.25rem 2.5rem; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .g2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-logo-wrap { text-align: center; }
  .footer-logo-wrap img { height: 64px; margin: 0 auto; }
  .trust-strip__sep { display: none; }
  .trust-strip__in  { gap: 1rem; justify-content: flex-start; }
  .tabs { overflow-x: auto; }
  .tab-btn { white-space: nowrap; }
  .page-hero { padding: 3.5rem 1.25rem 3rem; min-height: 280px; }
  .steps { max-width: 100%; }

  /* Nav mobile */
  .nav-toggle { display: flex; }
  .main-nav {
    display: none; position: fixed; top: 70px; left: 0; right: 0;
    background: var(--blanc) !important; padding: 1rem 1.5rem;
    box-shadow: 0 8px 24px rgba(0,0,0,.12);
    border-top: 1px solid var(--b2);
    z-index: 9999;
  }
  .main-nav.is-open { display: block; }
  .nav-list { flex-direction: column; align-items: flex-start; gap: 2px; }
  .nav-list > li { width: 100%; }
  .nav-list > li > a { padding: 10px 12px; font-size: .9rem; display: block; }
}

@media (max-width: 600px) {
  .grid-auto, .grid-auto-sm { grid-template-columns: 1fr; }
  .exc-grid, .fleet-grid, .route-grid, .srv-grid { grid-template-columns: 1fr; }
  .stat-grid { grid-template-columns: 1fr 1fr; }
  .btn-group { flex-direction: column; align-items: stretch; }
  .btn-group .btn { text-align: center; justify-content: center; }
  .wa-float { bottom: 16px; right: 16px; }
  .hdr-in { padding: 0 1.25rem; }
  .hero-punch--glass {
    font-size: .8rem;
    padding: 6px 13px;
    white-space: nowrap;
  }
}

/* ============================================================
   DARK MODE
   ============================================================ */
@media (prefers-color-scheme: dark) {
  :root {
    --fond:   #1E1D1F;
    --creme:  #272527;
    --blanc:  #2A2829;
    --t:      #F7EBE0;
    --tm:     #C8B8AC;
    --tl:     #8A7E78;
    --ts:     #4A4448;
    --b:      rgba(247,235,224,.07);
    --b2:     rgba(247,235,224,.05);
    --sh:     0 8px 32px rgba(0,0,0,.45);
    --ss:     0 2px 10px rgba(0,0,0,.28);
  }

  /* Header */
  .site-header {
    background: #1E1D1F !important;
    border-bottom-color: rgba(247,235,224,.07) !important;
    box-shadow: 0 2px 20px rgba(0,0,0,.35) !important;
  }
  /* Le <picture> bascule automatiquement vers logo-white.svg
     grâce au <source media="(prefers-color-scheme: dark)"> */

  /* Nav */
  .nav-list > li > a { color: var(--tm); }
  .nav-list > li > a:hover,
  .nav-list > li.current-menu-item > a { color: var(--or); background: rgba(195,110,68,.12); }
  .nav-toggle span { background: var(--tm); }

  /* Mobile nav */
  .main-nav { background: #1a1a1a; border-top-color: rgba(255,255,255,.07); }

  /* Cards */
  .service-card,
  .exc-card,
  .fleet-card,
  .hero-form { background: #1e1e1e; border-color: rgba(255,255,255,.07); }

  /* Route cards */
  .route-card { background: #1a1a1a; border-color: rgba(255,255,255,.06); }

  /* FAQ */
  .faq-item { border-color: rgba(255,255,255,.07); }
  .faq-item__q { color: var(--t); }

  /* Sections creme */
  .sec--creme {
    background: #181818;
    border-top-color: rgba(255,255,255,.05);
    border-bottom-color: rgba(255,255,255,.05);
  }

  /* Footer reste sombre — pas de changement nécessaire */

  /* ── Booking form ── */
  .bf-input {
    background: #252325;
    color: var(--t);
    border-color: rgba(247,235,224,.1);
  }
  .bf-input option { background: #252325; color: var(--t); }
  .bf-label { color: var(--tm); }
  .bf-block__lbl { color: rgba(247,235,224,.5); }
  .bf-note { color: var(--tm) !important; }
  .bf-tog-btn {
    background: transparent;
    color: var(--tm);
    border-color: rgba(247,235,224,.15);
  }
  .bf-tog-btn--on { background: var(--or); color: #fff; border-color: var(--or); }
  .bf-retour-wrap { border-color: rgba(247,235,224,.08); }
  .hero-form__title { color: var(--t); }
  .hero-form__sub   { color: var(--tm); }

  /* ── Boutons ── */
  .btn--light {
    background: rgba(247,235,224,.07);
    color: var(--t);
    border-color: rgba(247,235,224,.18);
  }
  .btn--light:hover { background: rgba(247,235,224,.13); }
  .btn--ghost {
    color: var(--t);
    border-color: rgba(247,235,224,.2);
  }

  /* ── Trust strip ── */
  .trust-strip { background: #1E1D1F; border-top-color: rgba(247,235,224,.05); }
  .trust-item__label { color: var(--t); }
  .trust-item__sub   { color: var(--tm); }
  .trust-strip__sep  { background: rgba(247,235,224,.07); }

  /* ── Section headings & text ── */
  .sh h2, .sec h2 { color: var(--t); }
  .sh p,  .sec p  { color: var(--tm); }
  .lbl { color: var(--or); }
  .divider { background: rgba(247,235,224,.12); }

  /* ── Page hero (pages internes) ── */
  .page-hero h1 { color: #fff; }
  .page-hero p  { color: rgba(255,255,255,.78); }
  .page-hero .lbl { color: var(--or); }

  /* ── Service cards ── */
  .srv-card { background: #1e1d1f; border-color: rgba(247,235,224,.06); }
  .srv-card__cat   { color: var(--or); }
  .srv-card__title { color: var(--t); }
  .srv-card__text  { color: var(--tm); }
  .srv-card__cta   { color: var(--or); }

  /* ── Excursion / fleet cards ── */
  .exc-card__title, .fleet-card__name { color: var(--t); }
  .exc-card__text,  .fleet-card__desc { color: var(--tm); }
  .exc-card__meta span { color: var(--tl); }
  .exc-badge { background: var(--or); color: #fff; }

  /* ── Price table ── */
  .price-table th { background: rgba(195,110,68,.18); color: var(--t); }
  .price-table td { color: var(--t); border-color: rgba(247,235,224,.07); }
  .price-table tr:nth-child(even) td { background: rgba(247,235,224,.03); }

  /* ── Stat cards ── */
  .stat-card { background: #1e1d1f; border-color: rgba(247,235,224,.06); }
  .stat-card__value { color: var(--or); }
  .stat-card__label { color: var(--tm); }

  /* ── FAQ ── */
  .faq-item__q { color: var(--t); }
  .faq-item__a { color: var(--tm); }

  /* ── CTA sections ── */
  .cta-sec { background: #1E1D1F; }
  .cta-sec h2, .cta-sec p { color: var(--t); }

  /* ── Logo nav → version nuit ── */
  .site-logo img {
    content: url('/wp-content/themes/kadence-child/assets/img/logo-night.png');
  }

  /* ── Hero texte (forcé blanc car --blanc devient sombre) ── */
  .hero h1,
  .hero h1 em { color: #fff !important; }
  .hero-punch { color: rgba(255,255,255,.82) !important; }
  .hero p     { color: rgba(255,255,255,.65) !important; }

  /* ── Hero price raw (accueil) ── */
  .hero-price-raw__num { color: var(--or); }
  .hero-price-raw__detail { color: rgba(255,255,255,.38); }
}
