/* ==============================================
   VSL MONACO — Feuille de style
   Direction artistique : institution monégasque, calme et précise
   Typographie : Spectral (display) + Manrope (corps)
   Palette : ivoire minéral · marine sanitaire · rouge Monaco
   ============================================== */

/* ── RESET ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ── VARIABLES ──────────────────────────────── */
:root {
  /* Couleurs */
  --ivory:       #F7F1E9;
  --ivory:       oklch(0.962 0.018 84);
  --ivory-dark:  #ECE2D4;
  --ivory-dark:  oklch(0.925 0.024 83);
  --ivory-deep:  #DED0BF;
  --ivory-deep:  oklch(0.865 0.034 80);
  --navy:        #0A182B;
  --navy:        oklch(0.22 0.045 260);
  --navy-mid:    #183250;
  --navy-mid:    oklch(0.30 0.055 258);
  --navy-light:  #294668;
  --navy-light:  oklch(0.39 0.06 255);
  --red:         #B92A32;
  --red:         oklch(0.50 0.16 25);
  --red-dark:    #8F2027;
  --red-dark:    oklch(0.42 0.14 25);
  --gold:        #947548;
  --gold:        oklch(0.56 0.08 83);
  --gold-light:  #C9A568;
  --gold-light:  oklch(0.73 0.09 82);
  --text:        #1C2029;
  --text:        oklch(0.22 0.015 260);
  --text-mid:    #404653;
  --text-mid:    oklch(0.35 0.018 260);
  --muted:       #787D88;
  --muted:       oklch(0.54 0.015 260);
  --white:       #FFFEFC;
  --white:       oklch(0.995 0.005 85);
  --border:      rgba(12,26,46,0.10);
  --border-light: rgba(255,255,255,0.12);

  /* Typographie */
  --f-display: 'Spectral', Georgia, 'Times New Roman', serif;
  --f-body:    'Manrope', system-ui, sans-serif;
  --f-mono:    'Bebas Neue', var(--f-display);

  /* Espacements */
  --wrap: 1160px;
  --gap:  clamp(24px, 4vw, 60px);
  --r:    3px;

  /* Transitions */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ── SKIP LINK (accessibilité) ──────────────── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 20px;
  z-index: 10001;
  padding: 10px 22px;
  background: var(--navy);
  color: var(--white);
  font-family: var(--f-body);
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: var(--r);
  transition: top 0.18s var(--ease);
  white-space: nowrap;
}
.skip-link:focus {
  top: 20px;
  outline: 2px solid var(--red);
  outline-offset: 3px;
}

/* ── BASE BODY ──────────────────────────────── */
body {
  font-family: var(--f-body);
  font-weight: 400;
  line-height: 1.65;
  color: var(--text);
  background: var(--ivory);
  overflow-x: hidden;
  text-wrap: pretty;
}

/* Grain texture subtil sur tout le site */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 128px 128px;
  opacity: 0.35;
}

/* ── LAYOUT HELPERS ─────────────────────────── */
.section-wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
}

/* ── TYPOGRAPHIE COMMUNES ───────────────────── */
.section-num {
  font-family: var(--f-mono);
  font-size: clamp(5rem, 12vw, 9rem);
  font-weight: 400;
  line-height: 1;
  color: var(--ivory-deep);
  display: block;
  letter-spacing: -0.02em;
  user-select: none;
}

.section-label {
  font-family: var(--f-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
}

.section-title {
  font-family: var(--f-display);
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 600;
  line-height: 1.12;
  color: var(--navy);
  letter-spacing: 0;
  text-wrap: balance;
}
.section-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--red);
}

.section-head {
  display: flex;
  align-items: flex-end;
  gap: 16px;
  margin-bottom: clamp(40px, 6vw, 72px);
}
.section-head--light .section-num { color: rgba(255,255,255,0.08); }
.section-head--light .section-title { color: var(--white); }
.section-head--light .section-label { color: var(--gold-light); }

/* ── BOUTONS ────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: var(--red);
  color: var(--white);
  font-family: var(--f-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: var(--r);
  transition: background 0.2s var(--ease), transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(194,40,45,0.3);
}
.btn-primary:active,
.btn-ghost:active,
.btn-submit:active,
.header-tel:active,
.service-cta:active {
  transform: translateY(1px) scale(0.99);
}
.btn-primary:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  background: transparent;
  color: var(--white);
  font-family: var(--f-body);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  border: 1.5px solid rgba(255,255,255,0.4);
  border-radius: var(--r);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.btn-ghost:hover {
  border-color: rgba(255,255,255,0.8);
  background: rgba(255,255,255,0.08);
}
.btn-ghost:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 3px;
}

/* ── HEADER ─────────────────────────────────── */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease), backdrop-filter 0.4s;
}

#site-header:not(.scrolled) .brand-vsl,
#site-header:not(.scrolled) nav:not(.open) .nav-link {
  color: rgba(255,254,252,0.72);
}

#site-header:not(.scrolled) .brand-monaco {
  color: rgba(255,254,252,0.48);
}

#site-header:not(.scrolled) nav:not(.open) .nav-link:hover,
#site-header:not(.scrolled) nav:not(.open) .nav-link.active {
  color: var(--white);
}

#site-header:not(.scrolled) .header-tel {
  background: rgba(255,254,252,0.10);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.14);
}

#site-header:not(.scrolled) .header-tel:hover {
  background: rgba(255,254,252,0.16);
}

#site-header:not(.scrolled) .burger span {
  background: var(--white);
}

#site-header.scrolled {
  background: rgba(245,240,232,0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--border), 0 4px 24px rgba(12,26,46,0.06);
}

.header-inner {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
  height: 72px;
  display: flex;
  align-items: center;
  gap: 32px;
}

/* BRAND */
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  transition: opacity 0.2s;
}
.brand:hover { opacity: 0.8; }
.brand:focus-visible { outline: 2px solid var(--red); outline-offset: 4px; border-radius: 2px; }

.brand-mark {
  width: 34px;
  height: 34px;
  background: var(--red);
  color: var(--white);
  font-size: 1.4rem;
  font-weight: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  line-height: 1;
  flex-shrink: 0;
}

.brand-name {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.brand-vsl {
  font-family: var(--f-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.08em;
}
.brand-monaco {
  font-family: var(--f-display);
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--muted);
  letter-spacing: 0.04em;
  font-style: italic;
}

/* NAV */
#site-header nav { margin-left: auto; }

.nav-list {
  display: flex;
  gap: 4px;
}

.nav-link {
  display: inline-block;
  padding: 7px 14px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text-mid);
  border-radius: var(--r);
  transition: color 0.2s, background 0.2s;
  position: relative;
}
.nav-link span {
  position: relative;
}
.nav-link span::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 1.5px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s var(--ease);
}
.nav-link:hover span::after,
.nav-link.active span::after {
  transform: scaleX(1);
  transform-origin: left;
}
.nav-link:hover, .nav-link.active { color: var(--navy); }
.nav-link:focus-visible { outline: 2px solid var(--red); outline-offset: 2px; }

/* TEL HEADER */
.header-tel {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding: 8px 18px;
  background: var(--navy);
  border-radius: var(--r);
  transition: background 0.2s, transform 0.2s var(--ease), box-shadow 0.2s;
  flex-shrink: 0;
}
.header-tel:hover { background: var(--navy-mid); }
.header-tel:focus-visible { outline: 2px solid var(--red); outline-offset: 3px; }
.tel-label {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  line-height: 1;
  margin-bottom: 2px;
}
.tel-number {
  font-family: var(--f-display);
  font-size: 1rem;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.02em;
}

/* BURGER */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  margin-left: 12px;
}
.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transform-origin: center;
  transition: transform 0.25s var(--ease), opacity 0.25s;
}
.burger[aria-expanded="true"] span:nth-child(1),
.burger.is-open span:nth-child(1) { transform: translateY(3.5px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2),
.burger.is-open span:nth-child(2) { transform: translateY(-3.5px) rotate(-45deg); }

/* ── HERO ───────────────────────────────────── */
.hero {
  min-height: clamp(680px, 90svh, 860px);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: var(--navy);
  overflow: hidden;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8,17,30,0.92) 0%, rgba(8,17,30,0.78) 42%, rgba(8,17,30,0.34) 72%, rgba(8,17,30,0.66) 100%),
    linear-gradient(to top, rgba(8,17,30,0.78) 0%, rgba(8,17,30,0.24) 48%, rgba(8,17,30,0.48) 100%),
    radial-gradient(54% 68% at 14% 22%, rgba(156,123,69,0.16) 0%, transparent 62%),
    url("https://images.unsplash.com/photo-1519494026892-80bbd2d6fd0d?auto=format&fit=crop&w=1800&q=82");
  background-size: cover;
  background-position: center 42%;
  transform-origin: center;
}
.hero-media::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,254,252,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,254,252,0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 90% 80% at 48% 50%, black 16%, transparent 84%);
  -webkit-mask-image: radial-gradient(ellipse 90% 80% at 48% 50%, black 16%, transparent 84%);
  pointer-events: none;
}
.hero-media-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(194,40,45,0.16) 0%, transparent 32%),
    linear-gradient(to right, rgba(12,26,46,0.30), transparent 58%);
}

.hero-body {
  position: relative;
  z-index: 2;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: clamp(96px, 14vh, 132px) clamp(20px, 5vw, 60px) 0;
  width: 100%;
}

.hero-text {
  max-width: 760px;
  padding-bottom: clamp(34px, 5vw, 58px);
}

.hero-kicker {
  font-family: var(--f-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-title {
  font-family: var(--f-display);
  font-size: clamp(3.1rem, 7.4vw, 6.6rem);
  font-weight: 600;
  line-height: 0.99;
  color: var(--white);
  letter-spacing: 0;
  margin-bottom: 24px;
  text-wrap: balance;
}
.hero-title em {
  font-style: italic;
  font-weight: 400;
  color: rgba(255,254,252,0.70);
}

.hero-desc {
  font-size: clamp(1rem, 1.35vw, 1.1rem);
  color: rgba(255,254,252,0.72);
  line-height: 1.7;
  max-width: 540px;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Credentials strip */
.hero-credentials {
  border: 1px solid rgba(255,255,255,0.11);
  border-bottom: 0;
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(9,18,31,0.76);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 -18px 80px rgba(0,0,0,0.18);
}

.credential {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 18px 32px;
  flex: 1;
  text-align: center;
}
.credential-val {
  font-family: var(--f-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}
.credential-key {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,254,252,0.52);
}
.credential-sep {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.12);
  flex-shrink: 0;
}

/* ── CALLBAND ───────────────────────────────── */
.callband {
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 4vw, 48px);
  padding: 16px clamp(20px, 5vw, 60px);
  flex-wrap: wrap;
}
.callband-text {
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.04em;
}
.callband-number {
  font-family: var(--f-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.02em;
  transition: opacity 0.2s;
}
.callband-number:hover { opacity: 0.85; }
.callband-number:focus-visible { outline: 2px solid var(--white); outline-offset: 3px; }
.callband-hours {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  padding: 4px 12px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50px;
}

/* ── TRUST (CONFIANCE) ──────────────────────── */
.trust {
  padding: clamp(72px, 10vw, 130px) 0;
  background:
    radial-gradient(70% 70% at 12% 10%, rgba(194,40,45,0.055) 0%, transparent 58%),
    linear-gradient(180deg, var(--ivory) 0%, var(--ivory-dark) 100%);
}

.trust-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  grid-template-areas:
    "accreditation coverage"
    "accreditation team"
    "fleet fleet";
  gap: clamp(10px, 1.5vw, 16px);
  background: transparent;
}

.trust-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: clamp(24px, 4vw, 44px);
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 100%;
  transition: background 0.2s, transform 0.12s linear, box-shadow 0.12s linear, border-color 0.2s;
  will-change: transform;
  transform-style: preserve-3d;
  box-shadow: 0 16px 42px rgba(12,26,46,0.055);
}
.trust-card:nth-child(1) { grid-area: accreditation; }
.trust-card:nth-child(2) { grid-area: coverage; }
.trust-card:nth-child(3) { grid-area: team; }
.trust-card:nth-child(4) { grid-area: fleet; }

.trust-card:hover {
  background: var(--ivory);
  border-color: rgba(12,26,46,0.16);
}

.trust-card:nth-child(1) {
  background:
    radial-gradient(90% 80% at 0% 0%, rgba(194,40,45,0.18) 0%, transparent 54%),
    linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-color: rgba(255,255,255,0.10);
  box-shadow: 0 26px 68px rgba(12,26,46,0.18);
}

.trust-card:nth-child(1):hover {
  background:
    radial-gradient(90% 80% at 0% 0%, rgba(194,40,45,0.22) 0%, transparent 54%),
    linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 100%);
}

.trust-card-header {
  display: flex;
  align-items: baseline;
  gap: 18px;
  margin-bottom: 2px;
}

.trust-card-ico {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(194,40,45,0.08);
  border-radius: 10px;
  color: var(--red);
  flex-shrink: 0;
  user-select: none;
}
.trust-card-ico svg {
  display: block;
}

.trust-card:nth-child(1) .trust-card-ico {
  background: rgba(255,254,252,0.10);
  color: var(--gold-light);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.12);
}

.trust-card-title {
  font-family: var(--f-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.2;
  margin-top: 4px;
}

.trust-card:nth-child(1) .trust-card-title {
  color: var(--white);
  font-size: clamp(1.65rem, 3vw, 2.2rem);
}

.trust-card-body {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.75;
  flex: 1;
}

.trust-card:nth-child(1) .trust-card-body {
  color: rgba(255,254,252,0.72);
  font-size: 0.96rem;
}

.trust-card-ref {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 8px;
}

.trust-card:nth-child(1) .trust-card-ref {
  color: var(--gold-light);
}
.trust-card-ref::before {
  content: '';
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--gold);
}

/* ── SERVICES ───────────────────────────────── */
.services {
  padding: clamp(72px, 10vw, 130px) 0;
  background: var(--ivory-dark);
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
  background: var(--border);
}

.service-item {
  background: var(--white);
}

.service-item-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 380px;
}

.service-item--rev .service-item-inner {
  direction: rtl;
}
.service-item--rev .service-item-inner > * {
  direction: ltr;
}

.service-img-wrap {
  overflow: hidden;
  position: relative;
}
.service-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.service-item:hover .service-img-wrap img {
  transform: scale(1.04);
}

.service-content {
  padding: clamp(28px, 4vw, 56px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.service-idx {
  font-family: var(--f-mono);
  font-size: 5rem;
  font-weight: 400;
  color: var(--ivory-deep);
  line-height: 1;
  position: absolute;
  top: 24px;
  right: 32px;
  letter-spacing: -0.02em;
  user-select: none;
}

.service-content h3 {
  font-family: var(--f-display);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.service-content p {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 28px;
  max-width: 420px;
}

.service-cta {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  transition: gap 0.25s var(--ease), color 0.2s;
}
.service-cta::after {
  content: '→';
  transition: transform 0.25s var(--ease);
}
.service-cta:hover { gap: 14px; color: var(--red-dark); }
.service-cta:hover::after { transform: translateX(3px); }
.service-cta:focus-visible { outline: 2px solid var(--red); outline-offset: 3px; border-radius: 2px; }

/* ── PROCESSUS ──────────────────────────────── */
.process {
  padding: clamp(72px, 10vw, 130px) 0;
  background: var(--navy);
}

.process-steps {
  counter-reset: steps;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.08);
  margin-bottom: clamp(32px, 5vw, 60px);
}

.process-step {
  background: var(--navy);
  padding: clamp(24px, 3vw, 40px) clamp(20px, 3vw, 36px);
  position: relative;
  transition: background 0.2s;
}
.process-step:hover { background: var(--navy-mid); }

.step-n {
  font-family: var(--f-mono);
  font-size: 3.5rem;
  font-weight: 400;
  color: rgba(255,255,255,0.07);
  line-height: 1;
  display: block;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  user-select: none;
}

.step-body h3 {
  font-family: var(--f-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.2;
}

.step-body p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.75;
}

/* Connecteur entre étapes */
.process-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: clamp(24px, 3vw, 40px);
  right: -1px;
  height: 1px;
  width: 1px;
  background: var(--red);
  box-shadow: 0 0 0 4px var(--red);
  border-radius: 50%;
  z-index: 1;
}

/* Notice remboursement */
.remb-notice {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--r);
  padding: clamp(20px, 3vw, 36px);
  display: flex;
  gap: 20px;
  align-items: flex-start;
  box-shadow: inset 0 0 0 1px rgba(196,162,106,0.10);
}
.remb-notice-icon {
  color: var(--gold-light);
  flex-shrink: 0;
  margin-top: 2px;
}
.remb-notice strong {
  display: block;
  font-family: var(--f-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}
.remb-notice p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
}

/* ── SIMULATEUR PRISE EN CHARGE ─────────────── */
.simulator {
  background: var(--ivory-dark);
  padding: clamp(64px, 9vw, 110px) 0;
}

.sim-card {
  background: var(--white);
  border-radius: var(--r);
  border: 1px solid var(--border);
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(12,26,46,0.08);
}

.sim-header {
  background: var(--navy);
  padding: clamp(28px, 4vw, 44px) clamp(28px, 5vw, 52px);
  position: relative;
  overflow: hidden;
}
.sim-header::after {
  content: '?';
  position: absolute;
  right: clamp(28px, 5vw, 52px);
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--f-display);
  font-size: clamp(5rem, 12vw, 9rem);
  line-height: 1;
  color: rgba(255,255,255,0.04);
  pointer-events: none;
  user-select: none;
}

.sim-eyebrow {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 8px;
}

.sim-title {
  font-family: var(--f-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0;
}

.sim-body {
  padding: clamp(28px, 5vw, 48px) clamp(28px, 5vw, 52px);
}

.sim-progress {
  display: flex;
  gap: 6px;
  margin-bottom: 32px;
}
.sim-progress-dot {
  height: 3px;
  flex: 1;
  background: var(--border);
  border-radius: 2px;
  transition: background 0.5s var(--ease);
}
.sim-progress-dot.active { background: var(--red); }

.sim-step { animation: simFadeIn 0.4s var(--ease); }
.sim-step--hidden { display: none; }

@keyframes simFadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

.sim-question {
  font-family: var(--f-display);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 24px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.sim-step-num {
  font-family: var(--f-mono);
  font-size: 2rem;
  color: var(--ivory-deep);
  line-height: 1;
  flex-shrink: 0;
  padding-top: 3px;
}

.sim-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.sim-option {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  background: var(--ivory);
  border: 2px solid transparent;
  border-radius: var(--r);
  cursor: pointer;
  text-align: left;
  font: inherit;
  transition: border-color 0.2s, background 0.2s, transform 0.25s var(--ease), box-shadow 0.25s;
  will-change: transform;
}
.sim-option:hover {
  border-color: var(--navy);
  background: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(12,26,46,0.08);
}
.sim-option:focus-visible { outline: 2px solid var(--red); outline-offset: 2px; }
.sim-option-ico {
  width: 36px;
  height: 36px;
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: rgba(12,26,46,0.05);
  color: var(--navy);
}
.sim-option-label {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.3;
}

/* Résultats */
.sim-result { animation: simFadeIn 0.5s var(--ease); }
.sim-result--hidden { display: none; }

.sim-result-inner {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: clamp(18px, 3vw, 28px);
  border-radius: var(--r);
  margin-bottom: 24px;
}
.sim-result-inner--success { background: rgba(22,163,74,0.07);  border: 1.5px solid rgba(22,163,74,0.22); }
.sim-result-inner--info    { background: rgba(59,130,246,0.07);  border: 1.5px solid rgba(59,130,246,0.22); }
.sim-result-inner--warn    { background: rgba(156,123,69,0.08);  border: 1.5px solid rgba(156,123,69,0.25); }

.sim-result-ico {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.sim-result-inner--success .sim-result-ico { background: rgba(22,163,74,0.12);  color: #16a34a; }
.sim-result-inner--info    .sim-result-ico { background: rgba(59,130,246,0.12);  color: #3b82f6; }
.sim-result-inner--warn    .sim-result-ico { background: rgba(156,123,69,0.12);  color: #9c7b45; }

.sim-result-title {
  font-family: var(--f-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
  line-height: 1.2;
}
.sim-result-body {
  font-size: 0.875rem;
  color: var(--text-mid);
  line-height: 1.75;
}

.sim-actions { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.sim-reset {
  font-size: 0.78rem;
  color: var(--muted);
  background: none;
  border: none;
  cursor: pointer;
  font: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
  padding: 4px 0;
  transition: color 0.2s;
}
.sim-reset:hover { color: var(--text); }

@media (max-width: 560px) {
  .sim-options { grid-template-columns: 1fr; }
}

/* ── TÉMOIGNAGES ────────────────────────────── */
.testimonials {
  padding: clamp(72px, 10vw, 130px) 0;
  background: var(--ivory);
}

.testimonials .section-label {
  text-align: center;
  margin-bottom: clamp(32px, 5vw, 56px);
}

.testi-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2px;
  background: var(--border);
}

.testi-col {
  display: flex;
  flex-direction: column;
  gap: 2px;
  background: var(--border);
}

.testi-card {
  background: var(--white);
  padding: clamp(28px, 4vw, 48px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: background 0.2s;
}
.testi-card:hover { background: var(--ivory); }

.testi-card--large { padding: clamp(32px, 5vw, 60px); }

.testi-quote {
  font-family: var(--f-display);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-style: italic;
  font-weight: 400;
  color: var(--navy);
  line-height: 1.55;
  margin-bottom: 28px;
}
.testi-card--large .testi-quote {
  font-size: clamp(1.3rem, 2.5vw, 2rem);
}

.testi-footer {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid var(--border);
  padding-top: 20px;
}
.testi-footer img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--ivory-deep);
  flex-shrink: 0;
}
.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--ivory);
  font-family: var(--f-display);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--ivory-deep);
  flex-shrink: 0;
  user-select: none;
}
.testi-footer cite {
  display: block;
  font-family: var(--f-body);
  font-style: normal;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
}
.testi-footer span {
  font-size: 0.75rem;
  color: var(--muted);
}

/* ── ÉQUIPE ─────────────────────────────────── */
.team {
  background: var(--ivory);
  padding: clamp(72px, 10vw, 120px) 0;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 36px);
}

.team-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
  will-change: transform;
}
.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 64px rgba(12,26,46,0.13);
}

.team-img-wrap {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  position: relative;
}
.team-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12,26,46,0.18) 0%, transparent 50%);
  pointer-events: none;
}
.team-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.65s var(--ease);
}
.team-card:hover .team-img-wrap img {
  transform: scale(1.05);
}

/* Monogrammes (en attente de photos réelles) */
.team-monogram {
  background:
    radial-gradient(120% 100% at 0% 0%, rgba(194,40,45,0.10) 0%, transparent 55%),
    linear-gradient(155deg, var(--navy) 0%, var(--navy-mid) 58%, var(--navy-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  isolation: isolate;
}
.team-monogram--alt {
  background:
    radial-gradient(120% 100% at 100% 0%, rgba(156,123,69,0.18) 0%, transparent 55%),
    linear-gradient(200deg, var(--navy-mid) 0%, var(--navy) 60%, #060F1C 100%);
}
.team-monogram::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  opacity: 0.6;
  pointer-events: none;
  z-index: 0;
}
.team-mono-initials {
  font-family: var(--f-display);
  font-size: clamp(3.6rem, 7vw, 5rem);
  font-weight: 500;
  color: var(--ivory);
  letter-spacing: 0.02em;
  line-height: 1;
  z-index: 1;
  text-shadow: 0 2px 24px rgba(0,0,0,0.25);
}
.team-mono-cross {
  position: absolute;
  bottom: 18px;
  right: 18px;
  color: var(--red);
  opacity: 0.85;
  z-index: 1;
  display: inline-flex;
}
.team-card:hover .team-monogram .team-mono-initials {
  transform: scale(1.04);
  transition: transform 0.65s var(--ease);
}

.team-info {
  padding: clamp(20px, 3vw, 30px);
}

.team-name {
  font-family: var(--f-display);
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}

.team-role {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}

.team-bio {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.65;
  margin-bottom: 18px;
}

.team-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.team-badge {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--ivory);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 3px 9px;
}

.team-note {
  margin-top: clamp(36px, 5vw, 56px);
  text-align: center;
  font-size: 0.85rem;
  color: var(--muted);
  font-style: italic;
}

@media (max-width: 960px) {
  .team-grid {
    grid-template-columns: 1fr 1fr;
  }
  .team-card:nth-child(3) {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .team-card:nth-child(3) .team-img-wrap {
    aspect-ratio: auto;
  }
}

@media (max-width: 600px) {
  .team-grid { grid-template-columns: 1fr; }
  .team-card:nth-child(3) {
    grid-column: auto;
    display: block;
  }
  .team-card:nth-child(3) .team-img-wrap {
    aspect-ratio: 4 / 3;
  }
}

/* ── FLOTTE / GALERIE ───────────────────────── */
.fleet {
  background: var(--navy);
  padding: clamp(64px, 9vw, 110px) 0;
  overflow: hidden;
}

.fleet-head {
  max-width: var(--wrap);
  margin: 0 auto clamp(36px, 5vw, 56px);
  padding: 0 clamp(20px, 5vw, 60px);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.fleet-title {
  font-family: var(--f-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.fleet-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold-light);
}

.fleet-sub {
  font-size: 0.82rem;
  color: rgba(245,240,232,0.55);
  max-width: 280px;
  text-align: right;
  line-height: 1.6;
}

.fleet-grid {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: 240px 240px;
  gap: 10px;
}

.fleet-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--r);
  cursor: default;
}
.fleet-item--illus .fleet-illus {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fleet-illus--vehicle {
  background:
    radial-gradient(80% 80% at 80% 10%, rgba(194,40,45,0.18) 0%, transparent 56%),
    linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
}
.fleet-illus--clean {
  background:
    radial-gradient(90% 70% at 20% 0%, rgba(196,162,106,0.16) 0%, transparent 58%),
    linear-gradient(135deg, var(--navy-mid) 0%, var(--navy-light) 100%);
}
.fleet-illus--comfort {
  background:
    radial-gradient(85% 80% at 88% 80%, rgba(194,40,45,0.12) 0%, transparent 58%),
    linear-gradient(135deg, var(--navy-mid) 0%, var(--navy) 100%);
}
.fleet-item--illus svg {
  width: 100%;
  height: 100%;
  display: block;
}
.fleet-item--illus:hover .fleet-illus {
  filter: brightness(0.85);
}
.fleet-item--large {
  grid-row: 1 / 3;
}
.fleet-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
  filter: brightness(0.88);
}
.fleet-item:hover img {
  transform: scale(1.06);
  filter: brightness(0.72);
}
.fleet-item-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 16px 18px 14px;
  background: linear-gradient(to top, rgba(12,26,46,0.82) 0%, transparent 100%);
  font-family: var(--f-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.9);
  transform: translateY(4px);
  transition: transform 0.4s var(--ease), opacity 0.4s;
}
.fleet-item:hover .fleet-item-label {
  transform: translateY(0);
  opacity: 1;
}

@media (max-width: 840px) {
  .fleet-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 200px 200px 200px;
  }
  .fleet-item--large {
    grid-column: 1 / 3;
    grid-row: 1 / 2;
  }
}
@media (max-width: 520px) {
  .fleet-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 180px);
  }
  .fleet-item--large {
    grid-column: auto;
    grid-row: auto;
  }
  /* Masquer 4e image sur petit écran */
  .fleet-item:nth-child(4) { display: none; }
}

/* ── Désactiver grain sur mobile (performance) ── */
@media (max-width: 768px) {
  body::before { display: none; }
}

/* ── ZONE ───────────────────────────────────── */
.zone {
  padding: clamp(72px, 10vw, 130px) 0;
  background: var(--ivory-dark);
}

.zone-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.zone-text .section-num { margin-bottom: -16px; }

.zone-desc {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin: 20px 0 28px;
}

.zone-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.zone-list li {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 10px;
}
.zone-list li::before {
  content: '';
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--red);
  flex-shrink: 0;
}

.zone-visual {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 2px;
  border: 1px solid var(--border);
}

/* ── LEAFLET MAP ──────────────────────────────── */
#zone-map {
  width: 100%;
  height: 100%;
  min-height: 380px;
  border-radius: 2px;
}

.map-fallback {
  min-height: 380px;
  display: grid;
  place-items: center;
  padding: 28px;
  background: var(--ivory-dark);
  color: var(--text-mid);
  font-size: 0.9rem;
  text-align: center;
}

/* Leaflet overrides — match site palette */
.leaflet-control-zoom a {
  color: var(--navy) !important;
  font-weight: 600 !important;
}
.leaflet-control-zoom a:hover {
  background: var(--ivory-dark) !important;
}
.leaflet-control-attribution {
  background: rgba(245,240,232,0.88) !important;
  font-size: 0.6rem !important;
}

/* Custom map markers */
.map-marker {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}
.map-marker-label {
  font-family: var(--f-body);
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--navy);
  white-space: nowrap;
  background: rgba(245,240,232,0.95);
  padding: 2px 7px;
  border-radius: 2px;
  box-shadow: 0 2px 10px rgba(12,26,46,0.18);
  letter-spacing: 0.04em;
}
.map-marker-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  border: 2px solid var(--white);
  box-shadow: 0 2px 8px rgba(194,40,45,0.45);
}
.map-marker-dot--main {
  width: 13px;
  height: 13px;
  background: var(--red);
  border: 2.5px solid var(--white);
  box-shadow: 0 3px 14px rgba(194,40,45,0.5);
}

/* ── RÉSERVATION ────────────────────────────── */
.booking {
  padding: clamp(72px, 10vw, 130px) 0;
  background: var(--ivory-dark);
}

.booking-inner {
  display: grid;
  grid-template-columns: 0.85fr 1.35fr;
  gap: clamp(40px, 7vw, 92px);
  align-items: start;
}

.booking-copy .section-num { margin-bottom: -16px; }

.booking-copy {
  position: sticky;
  top: 112px;
}

.booking-desc {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin: 20px 0 30px;
  max-width: 440px;
}

.booking-points {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.booking-points li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 500;
  line-height: 1.65;
}

.booking-points li::before {
  content: '';
  width: 7px;
  height: 7px;
  margin-top: 9px;
  flex: 0 0 auto;
  background: var(--red);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(194,40,45,0.08);
}

.booking-panel {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: clamp(24px, 4vw, 44px);
  box-shadow: 0 10px 46px rgba(12,26,46,0.08);
  position: relative;
  overflow: hidden;
}

.booking-panel::before {
  content: '';
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background:
    linear-gradient(90deg, var(--red) 0 34%, var(--white) 34% 66%, var(--red) 66% 100%);
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.booking-form-head {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding-bottom: 4px;
}

.booking-form-kicker {
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
}

.booking-form-head h3 {
  font-family: var(--f-display);
  font-size: clamp(1.45rem, 2.3vw, 2rem);
  font-weight: 600;
  line-height: 1.12;
  color: var(--navy);
}

.booking-status {
  min-height: 22px;
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.55;
}

.booking-status--private {
  margin: 0;
  padding: 14px 16px;
  background: rgba(194,40,45,0.055);
  border: 1px solid rgba(194,40,45,0.14);
  border-radius: var(--r);
}

.booking-status.is-error { color: var(--red-dark); }
.booking-status.is-success { color: var(--navy); }

/* ── CONTACT ────────────────────────────────── */
.contact {
  padding: clamp(72px, 10vw, 130px) 0;
  background: var(--white);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(40px, 7vw, 100px);
  align-items: start;
}

.contact-info .section-num { margin-bottom: -16px; }

.contact-desc {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin: 20px 0 36px;
}

.contact-details { display: flex; flex-direction: column; gap: 0; }

.contact-detail {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}
.contact-detail:first-child { border-top: 1px solid var(--border); }

.detail-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.detail-value {
  font-family: var(--f-body);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
}

.detail-phone {
  font-family: var(--f-display);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.01em;
  transition: color 0.2s;
}
.detail-phone:hover { color: var(--red); }
.detail-phone:focus-visible { outline: 2px solid var(--red); outline-offset: 3px; border-radius: 2px; }

/* FORM */
.contact-form-wrap {
  background:
    linear-gradient(180deg, var(--white), var(--ivory));
  padding: clamp(28px, 4vw, 48px);
  border-radius: var(--r);
  border: 1px solid var(--border);
  box-shadow: 0 18px 54px rgba(12,26,46,0.075);
}

.contact-form { display: flex; flex-direction: column; gap: 18px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.field label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-mid);
}
.field label span[aria-hidden] { color: var(--red); margin-left: 2px; }
.field-optional { font-weight: 400; text-transform: none; letter-spacing: 0; color: var(--muted); }

.field input,
.field select,
.field textarea {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  color: var(--text);
  font-family: var(--f-body);
  font-size: 0.9rem;
  padding: 12px 14px;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: 2px solid transparent;
  outline-offset: 2px;
  width: 100%;
}
.field input::placeholder,
.field textarea::placeholder { color: var(--muted); }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%2372727E' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; cursor: pointer; }
.field select option { background: var(--white); }

.time-pair {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 8px;
}

.time-pair select {
  min-width: 0;
}

.time-pair-sep {
  color: var(--text-mid);
  font-family: var(--f-display);
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1;
}

.field--checkbox {
  gap: 8px;
}
.field--checkbox label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: 0;
  text-transform: none;
  color: var(--text-mid);
}
.field--checkbox input[type="checkbox"] {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  margin-top: 3px;
  padding: 0;
  border-radius: 2px;
  accent-color: var(--red);
}
.field--checkbox a {
  color: var(--red);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.field--checkbox .field-error {
  margin-left: 26px;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(12,26,46,0.08);
}
.field input:focus-visible,
.field select:focus-visible,
.field textarea:focus-visible {
  outline-color: var(--navy);
}
.field textarea { resize: vertical; min-height: 90px; }

.btn-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 24px;
  background: var(--navy);
  color: var(--white);
  font-family: var(--f-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: var(--r);
  width: 100%;
  transition: background 0.2s, transform 0.2s var(--ease), box-shadow 0.2s;
}
.btn-submit:hover {
  background: var(--navy-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(12,26,46,0.2);
}
.btn-submit:focus-visible { outline: 2px solid var(--navy); outline-offset: 3px; }

.form-success {
  display: none;
  align-items: center;
  gap: 12px;
  background: rgba(12,26,46,0.05);
  border: 1px solid rgba(12,26,46,0.15);
  border-radius: var(--r);
  padding: 14px 18px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--navy);
}
.form-success svg { flex-shrink: 0; color: var(--navy); }

.form-legal {
  font-size: 0.72rem;
  color: var(--muted);
  line-height: 1.6;
  text-align: center;
}

/* ── FOOTER ─────────────────────────────────── */
.footer {
  background: var(--navy);
  padding: clamp(56px, 8vw, 96px) 0 0;
}

.footer-inner {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: clamp(32px, 5vw, 64px);
  padding-bottom: clamp(48px, 6vw, 72px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .brand { margin-bottom: 16px; }
.footer-brand p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.75;
  max-width: 260px;
  margin-bottom: 20px;
}

.footer-tel {
  font-family: var(--f-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--white);
  transition: color 0.2s;
}
.footer-tel:hover { color: var(--gold-light); }
.footer-tel:focus-visible { outline: 2px solid var(--white); outline-offset: 3px; border-radius: 2px; }

.footer-brand .brand-vsl { color: var(--white); }
.footer-brand .brand-monaco { color: rgba(255,255,255,0.45); }
.footer-brand .brand-mark { background: var(--red); }

.footer-nav-title {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 18px;
}

.footer-nav ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  transition: color 0.2s;
}
.footer-nav a:hover { color: var(--white); }
.footer-nav a:focus-visible { outline: 2px solid var(--white); outline-offset: 2px; border-radius: 2px; }

.certif-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.certif-list li {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.5;
  padding-left: 14px;
  position: relative;
}
.certif-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 1px;
  background: var(--gold);
}

.footer-bottom {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 20px clamp(20px, 5vw, 60px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom p {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.25);
}
.footer-legal-links { display: flex; gap: 24px; }
.footer-legal-links a {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.25);
  transition: color 0.2s;
}
.footer-legal-links a:hover { color: rgba(255,255,255,0.6); }

/* ── ANIMATIONS ─────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ── PRELOADER ──────────────────────────────── */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 28px;
  transition: transform 0.9s cubic-bezier(0.76, 0, 0.24, 1);
}
#preloader.done {
  transform: translateY(-100%);
  pointer-events: none;
}
.preloader-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  animation: preloaderFadeIn 0.5s var(--ease) 0.1s both;
}
.preloader-brand .p-mark {
  width: 46px; height: 46px;
  background: var(--red);
  color: var(--white);
  font-size: 1.8rem; font-weight: 300;
  display: flex; align-items: center; justify-content: center;
  border-radius: 2px; line-height: 1;
}
.preloader-brand .p-name { display: flex; flex-direction: column; line-height: 1.15; }
.preloader-brand .p-vsl  { font-family: var(--f-body); font-size: 1.2rem; font-weight: 600; color: var(--white); letter-spacing: 0.08em; }
.preloader-brand .p-sub  { font-family: var(--f-display); font-size: 0.88rem; font-style: italic; color: rgba(255,255,255,0.38); letter-spacing: 0.04em; }
.preloader-bar-wrap {
  width: 100px; height: 1px;
  background: rgba(255,255,255,0.1);
  overflow: hidden; border-radius: 1px;
  animation: preloaderFadeIn 0.5s var(--ease) 0.3s both;
}
.preloader-bar-fill {
  height: 100%; background: var(--red);
  width: 0; animation: preloaderProgress 1.4s ease-in-out 0.4s forwards;
}
@keyframes preloaderFadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes preloaderProgress { 0% { width: 0; } 100% { width: 100%; } }

/* ── SCROLL PROGRESS BAR ────────────────────── */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px; width: 0%;
  background: var(--red);
  z-index: 9998;
  pointer-events: none;
  will-change: width;
}

/* ── HERO ENTRANCE ANIMATION ────────────────── */
.line-wrap { display: block; overflow: hidden; padding-bottom: 0.06em; }
.line { display: block; transition: transform 0.95s var(--ease), opacity 0.8s var(--ease); }

html.loading .line                   { transform: translateY(108%); opacity: 0; }
html.loading .hero-kicker,
html.loading .hero-desc,
html.loading .hero-actions,
html.loading .hero-credentials       { opacity: 0; transform: translateY(18px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }

html.loaded .line                    { transform: translateY(0); opacity: 1; }
html.loaded .hero-title .line-wrap:nth-child(1) .line { transition-delay: 0.06s; }
html.loaded .hero-title .line-wrap:nth-child(2) .line { transition-delay: 0.27s; }
html.loaded .hero-kicker             { opacity: 1; transform: none; transition-delay: 0s; }
html.loaded .hero-desc               { opacity: 1; transform: none; transition-delay: 0.50s; }
html.loaded .hero-actions            { opacity: 1; transform: none; transition-delay: 0.66s; }
html.loaded .hero-credentials        { opacity: 1; transform: none; transition-delay: 0.82s; }

@media (prefers-reduced-motion: reduce) {
  html.loading .line,
  html.loading .hero-kicker,
  html.loading .hero-desc,
  html.loading .hero-actions,
  html.loading .hero-credentials { opacity: 1 !important; transform: none !important; transition: none !important; }
  #preloader { transition: none; }
  .preloader-bar-fill { animation: none; width: 100%; }
  .preloader-brand, .preloader-bar-wrap { animation: none; opacity: 1; }
}

/* ── MOBILE STICKY CALL BAR ─────────────────── */
.mobile-cta { display: none; }

/* ── RESPONSIVE ─────────────────────────────── */
@media (max-width: 1120px) {
  .header-inner { gap: 16px; }
  .header-tel { margin-left: auto; }
  .burger { display: flex; }

  #site-header nav {
    display: none;
    position: fixed;
    top: 72px; left: 0; right: 0;
    max-height: calc(100svh - 72px);
    overflow-y: auto;
    background: rgba(255,254,252,0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    flex-direction: column;
    padding: 20px clamp(20px, 5vw, 60px) 34px;
    z-index: 99;
    border-top: 1px solid var(--border);
    box-shadow: 0 24px 56px rgba(12,26,46,0.14);
  }
  #site-header nav.open { display: flex; }
  #site-header nav.open .nav-list { flex-direction: column; gap: 0; }
  #site-header nav.open .nav-link {
    display: block;
    font-size: 1.04rem;
    font-weight: 600;
    letter-spacing: 0;
    padding: 15px 0;
    color: var(--navy);
    border-bottom: 1px solid var(--border);
  }
  #site-header nav.open .nav-link span::after { display: none; }
  #site-header nav.open .nav-link:hover,
  #site-header nav.open .nav-link.active { color: var(--red); }
}

@media (max-width: 1024px) {
  .trust-grid {
    grid-template-columns: 1fr;
    grid-template-areas: none;
    gap: 10px;
    background: transparent;
  }
  .trust-card { grid-area: auto !important; }
  .service-item-inner { grid-template-columns: 1fr; min-height: auto; }
  .service-item--rev .service-item-inner { direction: ltr; }
  .service-img-wrap { height: 280px; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .testi-col { background: none; gap: 2px; }
  .zone-inner { grid-template-columns: 1fr; }
  .zone-visual { aspect-ratio: 16/9; }
  .booking-inner { grid-template-columns: 1fr; }
  .booking-copy { position: static; }
  .booking-desc { max-width: 680px; }
  .contact-inner { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  /* ── Header ─────────────────────────────────── */
  .header-inner { gap: 12px; height: 60px; padding: 0 16px; }
  #site-header nav {
    display: none;
    position: fixed;
    top: 60px; left: 0; right: 0;
    max-height: calc(100svh - 60px);
    overflow-y: auto;
    background: rgba(245,240,232,0.99);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    flex-direction: column;
    padding: 20px 20px 40px;
    z-index: 99;
    border-top: 1px solid var(--border);
    box-shadow: 0 20px 40px rgba(12,26,46,0.1);
  }
  #site-header nav.open { display: flex; }
  .nav-list { flex-direction: column; gap: 0; }
  .nav-link {
    font-family: var(--f-body);
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    padding: 14px 0;
    color: var(--navy);
    border-bottom: 1px solid var(--border);
  }
  .nav-link:last-child { border-bottom: none; }
  .nav-link span::after { display: none; }
  .header-tel { display: none; }
  .burger { display: flex; }

  /* ── Sections — cacher les numéros décoratifs ── */
  .section-num { display: none; }
  .section-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    margin-bottom: clamp(24px, 5vw, 40px);
  }

  /* ── Hero ───────────────────────────────────── */
  .hero {
    min-height: clamp(680px, 86svh, 760px);
  }
  .hero-media {
    background-position: 58% center;
  }
  .hero-body { padding-top: 92px; padding-bottom: 0; }
  .hero-text { padding-bottom: 24px; }
  .hero-desc { font-size: 0.9rem; line-height: 1.7; }
  .hero-credentials {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: rgba(255,255,255,0.08);
    margin-top: 32px;
  }
  .credential {
    padding: 16px 12px;
    background: rgba(12,26,46,0.55);
    backdrop-filter: blur(8px);
    flex-basis: auto;
  }
  .credential-sep { display: none; }

  /* ── Callband ───────────────────────────────── */
  .callband { display: none; }

  /* ── Stats ──────────────────────────────────── */
  .stats-inner { flex-wrap: wrap; gap: 1px; background: rgba(255,255,255,0.08); }
  .stat-item { flex-basis: calc(50% - 1px); background: var(--navy-mid); padding: 20px 16px; }
  .stat-sep { display: none; }

  /* ── Trust cards ────────────────────────────── */
  .trust-card { padding: 20px 18px; gap: 10px; }
  .trust-card-header { gap: 14px; align-items: center; }
  .trust-card-ico { width: 38px; height: 38px; border-radius: 8px; }
  .trust-card-ico svg { width: 20px; height: 20px; }

  /* ── Services ───────────────────────────────── */
  .service-img-wrap { height: 200px; }
  .service-content { padding: clamp(20px, 4vw, 32px); }
  .service-content h3 { font-size: 1.25rem; }
  .service-content p { font-size: 0.88rem; }

  /* ── Process ────────────────────────────────── */
  .process-steps { grid-template-columns: 1fr; gap: 1px; }
  .process-step::after { display: none; }
  .process-step {
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08);
    padding-left: 20px;
    transition: box-shadow 0.2s, background 0.2s;
  }
  .process-step:hover { box-shadow: inset 0 0 0 1px rgba(194,40,45,0.32); }
  .step-n { font-size: 2rem; margin-bottom: 8px; }
  .step-body h3 { font-size: 1.05rem; }

  /* ── Remb notice ────────────────────────────── */
  .remb-notice { flex-direction: column; gap: 12px; }
  .remb-notice-icon { margin-top: 0; }

  /* ── Testimonials ───────────────────────────── */
  .testi-card { padding: 20px; }
  .testi-quote { font-size: 1rem; }

  /* ── FAQ ────────────────────────────────────── */
  .faq-q { padding: 18px 16px; min-height: 56px; }
  .faq-body { padding: 0 16px 16px; }

  /* ── Zone ───────────────────────────────────── */
  .zone-visual { aspect-ratio: 4/3; min-height: 240px; }

  /* ── Booking ────────────────────────────────── */
  .booking-panel { padding: 20px 16px; }

  /* ── Form ───────────────────────────────────── */
  .form-row { grid-template-columns: 1fr; }

  /* ── Footer ─────────────────────────────────── */
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 8px; }
  .footer-legal-links { justify-content: center; }

  /* ── Mobile CTA bar ─────────────────────────── */
  .mobile-cta {
    display: flex;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 200;
    gap: 10px;
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom, 0px));
    background: linear-gradient(to top, var(--ivory) 72%, rgba(245,240,232,0));
    pointer-events: none;
  }
  .mobile-cta-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex: 1;
    padding: 0 20px;
    background: var(--navy);
    color: var(--white);
    font-family: var(--f-body);
    font-weight: 600;
    border-radius: var(--r);
    box-shadow: 0 4px 20px rgba(12,26,46,0.25);
    pointer-events: auto;
    min-height: 54px;
    letter-spacing: 0.02em;
    transition: background 0.2s;
  }
  .mobile-cta-link:active { background: var(--navy-mid); }
  .mobile-cta-wa {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    padding: 0 18px;
    background: #1A9E50;
    color: var(--white);
    font-family: var(--f-body);
    font-size: 0.58rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-radius: var(--r);
    pointer-events: auto;
    min-height: 54px;
    flex-shrink: 0;
    transition: background 0.2s;
  }
  .mobile-cta-wa:active { background: #157a3e; }
  .mobile-cta-label {
    font-size: 0.58rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    opacity: 0.65;
    display: block;
    line-height: 1;
    margin-bottom: 3px;
  }
  .mobile-cta-number {
    font-family: var(--f-display);
    font-size: 1.2rem;
    font-weight: 600;
    display: block;
    line-height: 1.1;
    letter-spacing: 0.01em;
  }

  /* ── Safe area bottom padding ───────────────── */
  body { padding-bottom: 88px; }
  .footer-bottom { padding-bottom: 8px; }
}

@media (max-width: 480px) {
  /* ── Global ─────────────────────────────────── */
  .section-wrap { padding: 0 16px; }
  .section-title { font-size: 1.8rem; }
  .section-label { font-size: 0.65rem; }

  /* ── Hero ───────────────────────────────────── */
  .hero-title { font-size: 2.4rem; }
  .hero-actions { flex-direction: column; gap: 10px; }
  .hero-actions > * { width: 100%; justify-content: center; }
  .hero-kicker { font-size: 0.65rem; margin-bottom: 14px; }
  .credential-val { font-size: 1.1rem; }
  .credential-key { font-size: 0.58rem; }

  /* ── Services — images plus compactes ────────── */
  .service-img-wrap { height: 160px; }
  .service-content { padding: 18px 16px 20px; }
  .service-content h3 { font-size: 1.2rem; }
  .service-content p { font-size: 0.85rem; line-height: 1.65; }
  .service-idx { font-size: 2rem; }

  /* ── Trust cards ────────────────────────────── */
  .trust-card { padding: 16px; gap: 8px; }
  .trust-card-header { gap: 12px; }
  .trust-card-ico { width: 34px; height: 34px; border-radius: 7px; }
  .trust-card-ico svg { width: 18px; height: 18px; }
  .trust-card-title { font-size: 1.05rem; }
  .trust-card-body { font-size: 0.84rem; }
  .trust-card-ref { font-size: 0.62rem; }

  /* ── Simulateur ─────────────────────────────── */
  .sim-header { padding: 20px 16px; }
  .sim-body { padding: 22px 16px 28px; }
  .sim-options { gap: 10px; }
  .sim-option { padding: 16px 14px; }

  /* ── Process ────────────────────────────────── */
  .step-n { font-size: 1.6rem; }
  .step-body h3 { font-size: 1rem; }
  .step-body p { font-size: 0.85rem; }

  /* ── Testimonials ───────────────────────────── */
  .testi-card { padding: 18px; }
  .testi-quote { font-size: 0.95rem; }

  /* ── FAQ ────────────────────────────────────── */
  .faq-q { padding: 16px 14px; gap: 12px; min-height: 52px; }
  .faq-q > span:first-child { font-size: 0.95rem; }
  .faq-body { padding: 0 14px 16px; font-size: 0.88rem; }
  .faq-icon { width: 20px; height: 20px; }
  .faq-icon::before { width: 8px; }
  .faq-icon::after { height: 8px; }

  /* ── Team ───────────────────────────────────── */
  .team-img-wrap { height: 200px; }
  .team-info { padding: 16px; }
  .team-name { font-size: 1.05rem; }
  .team-bio { font-size: 0.84rem; }
  .team-badge { font-size: 0.62rem; padding: 4px 8px; }

  /* ── Zone ───────────────────────────────────── */
  .zone-desc { font-size: 0.88rem; }
  .zone-list li { font-size: 0.88rem; }

  /* ── Contact ────────────────────────────────── */
  .contact-desc { font-size: 0.88rem; }
  .detail-phone { font-size: 1.1rem; }

  /* ── Mobile CTA ─────────────────────────────── */
  .mobile-cta { padding: 8px 12px calc(8px + env(safe-area-inset-bottom, 0px)); gap: 8px; }
  .mobile-cta-link { min-height: 50px; font-size: 0.88rem; }
  .mobile-cta-wa { min-height: 50px; }
  .mobile-cta-number { font-size: 1.05rem; }

  /* ── Footer ─────────────────────────────────── */
  .footer-nav-title { font-size: 0.65rem; }
}

@media (max-width: 380px) {
  .hero-title { font-size: 2rem; }
  .section-title { font-size: 1.6rem; }
  .hero-actions .btn-primary { padding: 12px 20px; font-size: 0.82rem; }
  .hero-actions .btn-ghost { padding: 11px 18px; font-size: 0.82rem; }
  .service-img-wrap { height: 140px; }
  .credential { padding: 12px 10px; }
  .credential-val { font-size: 1rem; }
}

/* ── SCROLL INDICATOR (hero) ────────────────── */
.scroll-ind {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  width: 1.5px;
  height: 52px;
  z-index: 3;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.5s var(--ease) 1.4s;
}
html.loaded .scroll-ind { opacity: 1; }
.scroll-ind::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent, var(--gold-light), transparent);
  animation: scrollIndTravel 2s ease-in-out 2s infinite;
}
@keyframes scrollIndTravel {
  0%   { top: -100%; }
  100% { top: 100%; }
}
@media (max-width: 768px) { .scroll-ind { display: none; } }

/* ── STATS BAND ─────────────────────────────── */
.stats-band {
  background: var(--navy-mid);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.stats-inner {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
  display: flex;
  align-items: stretch;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(24px, 3vw, 36px) clamp(16px, 3vw, 40px);
  flex: 1;
  text-align: center;
  transition: background 0.2s;
}
.stat-item:hover { background: rgba(255,255,255,0.03); }
.stat-val {
  font-family: var(--f-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.stat-val sup {
  font-size: 0.55em;
  vertical-align: super;
  font-weight: 400;
}
.stat-lbl {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  line-height: 1.4;
}
.stat-sep {
  width: 1px;
  background: rgba(255,255,255,0.08);
  flex-shrink: 0;
  align-self: stretch;
}
@media (max-width: 600px) {
  .stats-inner { flex-wrap: wrap; gap: 1px; background: rgba(255,255,255,0.08); }
  .stat-item { flex-basis: calc(50% - 1px); background: var(--navy-mid); }
  .stat-sep { display: none; }
}

/* ── FAQ ────────────────────────────────────── */
.faq {
  padding: clamp(72px, 10vw, 130px) 0;
  background: var(--navy);
}

.faq-list { display: flex; flex-direction: column; gap: 1px; background: rgba(255,255,255,0.07); }

.faq-item {
  background: var(--navy);
  list-style: none;
}
.faq-item[open] { background: var(--navy-mid); }

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: clamp(18px, 2.5vw, 26px) clamp(20px, 3vw, 36px);
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background 0.2s;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::marker { display: none; }
.faq-q:hover { background: rgba(255,255,255,0.04); }

.faq-q > span:first-child {
  font-family: var(--f-display);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  font-weight: 500;
  color: var(--white);
  line-height: 1.3;
}

.faq-icon {
  flex-shrink: 0;
  width: 26px; height: 26px;
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: border-color 0.2s, background 0.2s, transform 0.35s var(--ease);
}
.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: rgba(255,255,255,0.7);
  border-radius: 1px;
  transition: transform 0.35s var(--ease), opacity 0.25s;
}
.faq-icon::before { width: 10px; height: 1.5px; }
.faq-icon::after  { width: 1.5px; height: 10px; }

.faq-item[open] .faq-icon { background: var(--red); border-color: var(--red); }
.faq-item[open] .faq-icon::after { transform: rotate(90deg); opacity: 0; }
.faq-item[open] .faq-icon::before { transform: scaleX(1.1); }
.faq-item[open] .faq-q > span:first-child { color: var(--gold-light); }

.faq-body {
  padding: 0 clamp(20px, 3vw, 36px) clamp(20px, 2.5vw, 28px);
  animation: faqOpen 0.3s var(--ease);
}
@keyframes faqOpen {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.faq-body p {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.8;
  max-width: 700px;
}
.faq-body p strong { color: rgba(255,255,255,0.85); font-weight: 600; }
.faq-body p a { color: var(--gold-light); text-decoration: underline; text-underline-offset: 3px; }
.faq-body p a:hover { color: var(--white); }

/* ── FORM VALIDATION FEEDBACK ───────────────── */
.field-error {
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--red);
  margin-top: 4px;
  min-height: 1em;
  transition: opacity 0.2s;
}
.field.is-invalid input,
.field.is-invalid select,
.field.is-invalid textarea {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(194,40,45,0.12);
}
.field.is-valid input,
.field.is-valid select,
.field.is-valid textarea {
  border-color: #2a9d5c;
  box-shadow: 0 0 0 3px rgba(42,157,92,0.1);
}

/* ── FAB GROUP (desktop) ────────────────────── */
.fab-group {
  position: fixed;
  right: 24px;
  bottom: 32px;
  z-index: 300;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}
.fab {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  transition: transform 0.25s var(--ease), box-shadow 0.25s, opacity 0.3s, visibility 0.3s;
  cursor: pointer;
  border: none;
  font: inherit;
  text-decoration: none;
}
.fab:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.25); }
.fab:focus-visible { outline: 2px solid var(--gold-light); outline-offset: 3px; }

.fab-wa  { background: #25D366; color: var(--white); position: relative; }
.fab-top { background: var(--navy); color: var(--white); opacity: 0; visibility: hidden; }
.fab-top.visible { opacity: 1; visibility: visible; }

/* Chat bubble tooltip on WhatsApp FAB */
.fab-wa-bubble {
  position: absolute;
  right: calc(100% + 14px);
  top: 50%;
  transform: translateY(-50%) translateX(6px);
  background: var(--white);
  color: var(--navy);
  font-family: var(--f-body);
  font-size: 0.78rem;
  font-weight: 500;
  white-space: nowrap;
  padding: 8px 14px;
  border-radius: 20px 20px 4px 20px;
  box-shadow: 0 4px 20px rgba(12,26,46,0.18);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
  user-select: none;
}
.fab-wa-bubble::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 6px solid var(--white);
}
.fab-wa-bubble.visible {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
  pointer-events: auto;
}

/* Hide FABs on mobile (mobile-cta handles it) */
@media (max-width: 768px) {
  .fab-group { display: none; }
}

/* ══════════════════════════════════════════════
   BLOG & ARTICLES
   ══════════════════════════════════════════════ */

/* ── BLOG INDEX ─────────────────────────────── */
.blog-hero {
  background: var(--navy);
  padding: clamp(100px, 14vw, 160px) 0 clamp(56px, 8vw, 90px);
  position: relative;
  overflow: hidden;
}
.blog-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 128px 128px;
  opacity: 0.3;
}
.blog-hero-kicker {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 14px;
}
.blog-hero-title {
  font-family: var(--f-display);
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 600;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1.08;
  margin-bottom: 16px;
}
.blog-hero-title em { font-style: italic; font-weight: 400; color: var(--gold-light); }
.blog-hero-desc {
  font-size: 0.95rem;
  color: rgba(245,240,232,0.6);
  max-width: 460px;
  line-height: 1.75;
}

.blog-section {
  background: var(--ivory);
  padding: clamp(56px, 8vw, 100px) 0;
}
.blog-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 3vw, 32px);
}
.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.blog-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 22px 54px rgba(12,26,46,0.11);
}
.blog-card-img {
  aspect-ratio: 16/9;
  overflow: hidden;
}
.blog-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.65s var(--ease);
  filter: brightness(0.92);
}
.blog-card:hover .blog-card-img img { transform: scale(1.05); filter: brightness(0.85); }
.blog-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.blog-card-meta {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
}
.blog-card-title {
  font-family: var(--f-display);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.22;
  margin-bottom: 12px;
}
.blog-card-excerpt {
  font-size: 0.84rem;
  color: var(--text-mid);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 18px;
}
.blog-card-link {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--red);
  letter-spacing: 0.06em;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.25s;
}
.blog-card:hover .blog-card-link { gap: 11px; }

@media (max-width: 900px) { .blog-cards { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .blog-cards { grid-template-columns: 1fr; } }

/* ── ARTICLE PAGE ───────────────────────────── */
.article-hero {
  background: var(--navy);
  padding: clamp(100px, 14vw, 160px) 0 clamp(48px, 7vw, 80px);
  position: relative;
  overflow: hidden;
}
.article-hero::before {
  content: '';
  position: absolute; inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 128px 128px;
  opacity: 0.3;
}
.article-breadcrumb {
  font-size: 0.7rem;
  color: rgba(245,240,232,0.45);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.article-breadcrumb a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
.article-breadcrumb a:hover { color: rgba(245,240,232,0.8); }
.article-breadcrumb span { color: rgba(245,240,232,0.2); }
.article-category {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 14px;
}
.article-title {
  font-family: var(--f-display);
  font-size: clamp(2rem, 5.5vw, 4rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.07;
  letter-spacing: -0.02em;
  max-width: 860px;
  margin-bottom: 22px;
}
.article-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.75rem;
  color: rgba(245,240,232,0.45);
  flex-wrap: wrap;
}
.article-meta-sep { color: rgba(245,240,232,0.18); }

.article-body {
  background: var(--ivory);
  padding: clamp(48px, 8vw, 96px) 0;
}
.article-content {
  max-width: 740px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 40px);
}
.article-content p {
  font-size: 1rem;
  line-height: 1.88;
  color: var(--text);
  margin-bottom: 22px;
}
.article-content h2 {
  font-family: var(--f-display);
  font-size: clamp(1.45rem, 3vw, 2rem);
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.01em;
  line-height: 1.18;
  margin: 48px 0 16px;
  padding-top: 8px;
  border-top: 1.5px solid var(--border);
}
.article-content h3 {
  font-family: var(--f-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--navy);
  margin: 28px 0 10px;
}
.article-content ul, .article-content ol {
  padding-left: 0;
  margin-bottom: 22px;
  list-style: none;
}
.article-content li {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text);
  margin-bottom: 8px;
  padding-left: 22px;
  position: relative;
}
.article-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 14px;
  height: 1.5px;
  background: var(--red);
}
.article-content ol {
  counter-reset: ol;
}
.article-content ol li {
  counter-increment: ol;
}
.article-content ol li::before {
  content: counter(ol) ".";
  position: absolute;
  left: 0;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--red);
  top: 3px;
}
.article-content strong { color: var(--navy); font-weight: 600; }
.article-content a { color: var(--red); text-decoration: underline; text-underline-offset: 3px; }
.article-content a:hover { color: var(--red-dark); }

.article-highlight {
  background: var(--navy);
  color: var(--white);
  padding: clamp(22px, 3vw, 36px);
  border-radius: var(--r);
  margin: 36px 0;
}
.article-highlight p { color: rgba(245,240,232,0.82); margin: 0; font-size: 0.93rem; }
.article-highlight strong { color: var(--white); }
.article-highlight .article-highlight-title {
  font-family: var(--f-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 8px;
  display: block;
}

.article-table-wrap { overflow-x: auto; margin: 28px 0; }
.article-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}
.article-table th {
  background: var(--navy);
  color: var(--white);
  padding: 12px 16px;
  text-align: left;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
}
.article-table td {
  padding: 11px 16px;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  line-height: 1.5;
}
.article-table tr:nth-child(even) td { background: var(--ivory); }

.article-cta-block {
  background: var(--red);
  padding: clamp(48px, 7vw, 80px) 0;
}
.article-cta-inner {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
  text-align: center;
}
.article-cta-title {
  font-family: var(--f-display);
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.article-cta-desc {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.78);
  margin-bottom: 28px;
  line-height: 1.65;
}
.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  background: var(--white);
  color: var(--red);
  font-family: var(--f-body);
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: var(--r);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: transform 0.2s var(--ease), box-shadow 0.2s;
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(0,0,0,0.2); }

/* Public homepage: clearer surfaces and a calmer patient journey. */
.site-refresh {
  --ivory: #f7f9f8;
  --ivory-dark: #eef3f1;
  --ivory-deep: #d9e3de;
  --navy: #202c29;
  --navy-mid: #31443d;
  --navy-light: #4b6259;
  --red: #b62d3b;
  --red-dark: #93212d;
  --gold: #48685c;
  --gold-light: #c5dfd2;
  --text: #25322d;
  --text-mid: #50625a;
  --muted: #617168;
  --white: #ffffff;
  --border: #dce5e0;
  --wrap: 1280px;
  --r: 6px;
  background: var(--white);
}
.site-refresh *, .site-refresh *::before, .site-refresh *::after { letter-spacing: 0; }
.site-refresh::before, .site-refresh .scroll-progress,
.site-refresh .hero-media::before, .site-refresh .hero-media-overlay,
.site-refresh .scroll-ind { display: none; }
.site-refresh #site-header, .site-refresh #site-header.scrolled {
  background: #ffffff;
  border-bottom: 1px solid var(--border);
  box-shadow: none;
}
.site-refresh .header-inner { max-width: var(--wrap); gap: 20px; }
.site-refresh .nav-list { gap: 8px; }
.site-refresh .brand-vsl { font-family: var(--f-body); font-size: 22px; font-weight: 700; }
.site-refresh .brand-monaco { font-family: var(--f-body); font-size: 12px; font-style: normal; }
.site-refresh .brand-mark { background: var(--red); border-radius: 6px; }
.site-refresh .nav-link { font-size: 13px; text-transform: none; padding: 8px 10px; white-space: nowrap; }
.site-refresh .burger { margin-left: auto; }
.site-refresh #site-header:not(.scrolled) .brand-vsl,
.site-refresh #site-header:not(.scrolled) .brand-monaco,
.site-refresh #site-header:not(.scrolled) nav:not(.open) .nav-link { color: var(--navy); }
.site-refresh #site-header:not(.scrolled) .burger span { background: var(--navy); }
.site-refresh .header-tel { background: var(--ivory-dark); color: var(--navy); border: 0; border-radius: 6px; }
.site-refresh .tel-label { color: var(--text-mid); text-transform: none; }
.site-refresh .tel-number { color: var(--navy); font-family: var(--f-body); font-size: 14px; font-weight: 700; }
.site-refresh .hero { min-height: min(740px, 88svh); padding-top: 76px; background: #2c3f37; }
.site-refresh .hero-media {
  background-image: linear-gradient(90deg, rgba(21,40,31,.86), rgba(21,40,31,.60) 48%, rgba(21,40,31,.12)), url("https://images.unsplash.com/photo-1519494026892-80bbd2d6fd0d?auto=format&fit=crop&w=1800&q=82");
  background-position: center;
}
.site-refresh .hero-body { padding-top: 72px; }
.site-refresh .hero-text { max-width: 750px; padding-bottom: 64px; }
.site-refresh .hero-kicker { color: #e0ece5; font-size: 14px; text-transform: none; margin-bottom: 24px; }
.site-refresh .hero-title { font-size: 78px; font-weight: 500; line-height: 1.1; margin-bottom: 24px; }
.site-refresh .hero-desc { font-size: 18px; max-width: 510px; color: #f3f7f4; line-height: 1.75; margin-bottom: 32px; }
.site-refresh .btn-primary, .site-refresh .btn-ghost, .site-refresh .btn-submit {
  min-height: 50px; border-radius: 6px; font-size: 15px; font-weight: 600; text-transform: none;
}
.site-refresh .hero .btn-ghost { color: #fff; border-color: #c4d2ca; display: inline-flex; gap: 10px; align-items: center; }
.site-refresh .btn-primary:hover, .site-refresh .btn-submit:hover { box-shadow: 0 5px 16px #69222b24; transform: translateY(-1px); }
.site-refresh button:active, .site-refresh .btn-primary:active { transform: translateY(1px); }
.site-refresh :focus-visible { outline: 3px solid #28745b; outline-offset: 4px; }
.site-refresh .hero-credentials { background: #ffffff; border: 0; box-shadow: none; backdrop-filter: none; }
.site-refresh .credential { padding: 24px 16px; align-items: flex-start; text-align: left; }
.site-refresh .credential-val { color: var(--navy); font-family: var(--f-body); font-size: 19px; line-height: 1.35; }
.site-refresh .credential-key { color: var(--text-mid); font-size: 12px; text-transform: none; }
.site-refresh .credential-sep { background: var(--border); }
.site-refresh .callband { background: var(--ivory-dark); padding: 16px 24px; gap: 24px; }
.site-refresh .callband-text { color: var(--text-mid); font-size: 14px; }
.site-refresh .callband-number { color: var(--red); font-family: var(--f-body); font-size: 18px; }
.site-refresh .callband-hours { color: var(--text-mid); border-color: var(--border); }
.site-refresh .section-num { display: none; }
.site-refresh .section-label { font-size: 13px; text-transform: none; margin-bottom: 14px; font-weight: 700; }
.site-refresh .section-title { font-size: 42px; line-height: 1.2; font-weight: 500; }
.site-refresh .section-head { margin-bottom: 40px; }
.site-refresh :is(.trust, .services, .process, .team, .faq, .zone, .booking, .contact) { padding-block: 88px; }
.site-refresh .trust-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-template-areas: none; gap: 0 40px; }
.site-refresh .trust-card, .site-refresh .trust-card:nth-child(1):hover {
  grid-area: auto; background: transparent; border: 0; border-top: 1px solid var(--border);
  padding: 28px 0; border-radius: 0; box-shadow: none;
}
.site-refresh .trust-card-header { align-items: center; gap: 16px; margin-bottom: 14px; }
.site-refresh .trust-card-ico, .site-refresh .trust-card:nth-child(1) .trust-card-ico { border-radius: 6px; background: #eaf1ed; color: #38664f; box-shadow: none; }
.site-refresh .trust-card-title, .site-refresh .trust-card:nth-child(1) .trust-card-title { font-family: var(--f-body); font-size: 18px; color: var(--navy); }
.site-refresh .trust-card-body, .site-refresh .trust-card:nth-child(1) .trust-card-body { font-size: 15px; color: var(--text-mid); }
.site-refresh .trust-card-ref, .site-refresh .trust-card:nth-child(1) .trust-card-ref { font-size: 12px; text-transform: none; color: var(--gold); }
.site-refresh .simulator { background: var(--ivory-dark); padding-block: 64px; }
.site-refresh .sim-card { box-shadow: none; border: 1px solid var(--border); border-radius: 8px; }
.site-refresh .sim-header { background: #365b49; }
.site-refresh .sim-header::after { display: none; }
.site-refresh .sim-title { font-size: 30px; }
.site-refresh .sim-option { min-height: 56px; font-size: 15px; }
.site-refresh .services { background: var(--white); }
.site-refresh .services-list { gap: 40px; background: transparent; }
.site-refresh .service-item-inner { min-height: 310px; background: var(--ivory); }
.site-refresh .service-img-wrap { min-height: 280px; }
.site-refresh .service-content { padding: 36px; }
.site-refresh .service-idx { position: static; font-family: var(--f-body); font-size: 13px; color: var(--gold); margin-bottom: 18px; }
.site-refresh .service-content h3 { font-size: 30px; }
.site-refresh .service-content p { font-size: 15px; }
.site-refresh .service-cta { font-size: 14px; text-transform: none; }
.site-refresh .process { background: #304b3e; }
.site-refresh .process-step { background: #304b3e; padding: 28px; }
.site-refresh .process-step:hover { background: #375444; }
.site-refresh .step-n { font-family: var(--f-body); font-size: 22px; color: #c3d8cb; }
.site-refresh .step-body h3 { font-family: var(--f-body); font-size: 18px; }
.site-refresh .step-body p { color: #d9e5de; font-size: 14px; }
.site-refresh .process-step::after { display: none; }
.site-refresh .team-grid { gap: 24px; }
.site-refresh .faq-q { font-size: 17px; padding-block: 24px; }
.site-refresh .faq-body p { font-size: 15px; }
.site-refresh .booking { background: #eef3f0; }
.site-refresh .booking-inner { grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: 64px; }
.site-refresh .booking-desc, .site-refresh .booking-points li { font-size: 16px; }
.site-refresh .booking-points { gap: 18px; }
.site-refresh .booking-panel { box-shadow: none; border-radius: 8px; padding: 32px; }
.site-refresh .booking-panel::before { display: none; }
.site-refresh .booking-form { gap: 20px; }
.site-refresh .booking-form-kicker { color: var(--gold); font-size: 12px; text-transform: none; }
.site-refresh .booking-form-head h3 { font-family: var(--f-body); font-size: 24px; }
.site-refresh .form-section-title { font-family: var(--f-body); font-size: 18px; font-weight: 700; border-top: 1px solid var(--border); padding-top: 24px; margin-top: 4px; }
.site-refresh .field label { font-size: 14px; text-transform: none; letter-spacing: 0; }
.site-refresh .field input:not([type="checkbox"]), .site-refresh .field select, .site-refresh .field textarea { background-color: #fff; font-size: 16px; border: 1px solid #bbc9c1; border-radius: 5px; min-height: 48px; }
.site-refresh .field-error { font-size: 13px; }
.site-refresh .booking-status--private { background: #f2f6f3; border: 0; border-left: 3px solid #638672; font-size: 13px; }
.site-refresh .booking-status.is-error { background: #fff0f0; border-color: var(--red); }
.site-refresh .form-row > *, .site-refresh .booking-inner > * { min-width: 0; }
.site-refresh .reveal { transition-duration: .4s; }
.site-refresh .footer-brand .brand-vsl { color: #fff; }
.site-refresh .footer-brand .brand-monaco,
.site-refresh .footer-desc, .site-refresh .footer-nav a,
.site-refresh .certif-list li, .site-refresh .footer-bottom p,
.site-refresh .footer-legal-links a { color: #c2d0c8; }
@media (max-width: 1100px) {
  .site-refresh .hero-title { font-size: 64px; }
  .site-refresh .booking-inner { gap: 32px; }
  .site-refresh .section-title { font-size: 36px; }
}
@media (max-width: 900px) {
  .site-refresh .booking-inner { grid-template-columns: 1fr; }
  .site-refresh .booking-copy { position: static; max-width: 650px; }
  .site-refresh .booking-panel { max-width: 740px; width: 100%; }
}
@media (max-width: 600px) {
  .site-refresh .hero { min-height: 0; padding-top: 72px; }
  .site-refresh .hero-body { padding-top: 48px; }
  .site-refresh .hero-title { font-size: 44px; }
  .site-refresh .hero-kicker { font-size: 12px; margin-bottom: 20px; }
  .site-refresh .hero-desc { font-size: 16px; line-height: 1.65; }
  .site-refresh .hero-text { padding-bottom: 32px; }
  .site-refresh .hero-actions { gap: 12px; }
  .site-refresh .hero-actions > * { width: 100%; justify-content: center; }
  .site-refresh .hero-credentials { display: grid; grid-template-columns: 1fr 1fr; margin-inline: -20px; }
  .site-refresh .credential { padding: 16px 20px; border-bottom: 1px solid var(--border); }
  .site-refresh .credential-val { font-size: 17px; }
  .site-refresh .credential-sep { display: none; }
  .site-refresh .callband { gap: 6px 20px; }
  .site-refresh .callband-text { width: 100%; text-align: center; }
  .site-refresh .section-title { font-size: 30px; }
  .site-refresh .section-head { margin-bottom: 28px; }
  .site-refresh :is(.trust, .services, .process, .team, .faq, .zone, .booking, .contact) { padding-block: 56px; }
  .site-refresh .trust-grid { grid-template-columns: 1fr; }
  .site-refresh .service-content { padding: 24px; }
  .site-refresh .service-content h3 { font-size: 26px; }
  .site-refresh .service-img-wrap { min-height: 220px; }
  .site-refresh .sim-title { font-size: 26px; }
  .site-refresh .booking-panel { padding: 24px 18px; }
  .site-refresh .header-tel { padding: 8px 10px; }
  .site-refresh .tel-number { font-size: 12px; }
}
@media (max-width: 360px) {
  .site-refresh .hero-title { font-size: 38px; }
  .site-refresh .hero-credentials { margin-inline: -16px; }
}
