/* ECHAPPECAR — feuille de styles globale
   Charte : rouge #C1121F · noir #111 · sable/crème · ocre · animations */

:root {
  --red: #C1121F;
  --red-dark: #960d18;
  --red-soft: #e23b48;
  --ink: #141210;
  --ink-2: #2a2622;
  --sand: #faf6f0;
  --sand-2: #f1e9dd;
  --sand-3: #e6dac8;
  --ocre: #c8772e;
  --ocre-soft: #e0a463;
  --line: rgba(20, 18, 16, 0.12);
  --white: #ffffff;
  --muted: #6f675e;
  --shadow-sm: 0 2px 10px rgba(20, 18, 16, .06);
  --shadow: 0 18px 40px -18px rgba(20, 18, 16, .35);
  --shadow-lg: 0 40px 80px -30px rgba(20, 18, 16, .45);
  --radius: 18px;
  --radius-sm: 12px;
  --maxw: 1200px;
  --display: "Playfair Display", Georgia, serif;
  --sans: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--sand);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

h1, h2, h3, h4 { font-family: var(--display); font-weight: 700; line-height: 1.08; letter-spacing: -.01em; }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 22px; }

.eyebrow {
  font-size: .72rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase;
  color: var(--red); display: inline-flex; align-items: center; gap: .6rem;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--red); display: inline-block; }
.eyebrow.light { color: var(--ocre-soft); }
.eyebrow.light::before { background: var(--ocre-soft); }
.eyebrow.center { justify-content: center; }

.section { padding: clamp(56px, 8vw, 110px) 0; }
.section-head { max-width: 640px; margin-bottom: 48px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-title { font-size: clamp(1.9rem, 4.4vw, 3rem); margin: 16px 0 14px; }
.section-sub { color: var(--muted); font-size: 1.05rem; }

/* ---------- Buttons ---------- */
.btn {
  --bg: var(--red); --fg: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  background: var(--bg); color: var(--fg); font-weight: 600; font-size: .95rem;
  padding: 14px 26px; border-radius: 999px; border: 1.5px solid var(--bg);
  cursor: pointer; transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .25s, color .25s;
  position: relative; overflow: hidden; font-family: var(--sans);
}
.btn:hover { transform: translateY(-3px); box-shadow: 0 16px 30px -12px rgba(193,18,31,.55); }
.btn:active { transform: translateY(-1px); }
.btn--ghost { --bg: transparent; --fg: var(--ink); border-color: var(--line); }
.btn--ghost:hover { box-shadow: none; border-color: var(--ink); background: var(--ink); color: #fff; }
.btn--light { --bg: #fff; --fg: var(--ink); border-color: #fff; }
.btn--outline-light { --bg: transparent; --fg: #fff; border-color: rgba(255,255,255,.5); }
.btn--outline-light:hover { background: #fff; color: var(--ink); border-color:#fff; }
.btn--lg { padding: 17px 34px; font-size: 1rem; }
.btn--block { width: 100%; }
.btn svg { width: 18px; height: 18px; }

.link-arrow { font-weight: 600; color: var(--red); display: inline-flex; align-items: center; gap: .4rem; }
.link-arrow svg { width: 16px; height: 16px; transition: transform .3s var(--ease); }
.link-arrow:hover svg { transform: translateX(5px); }

/* ---------- Header ---------- */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background .4s var(--ease), box-shadow .4s var(--ease), padding .4s var(--ease);
  padding: 20px 0;
}
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.header.scrolled { background: rgba(250,246,240,.9); backdrop-filter: blur(14px); box-shadow: var(--shadow-sm); padding: 12px 0; }
.brand { font-family: var(--display); font-weight: 800; font-size: 1.5rem; letter-spacing: -.02em; color: var(--ink); display: flex; align-items: center; gap: .5rem; }
.brand .dot { color: var(--red); }
.brand__mark { width: 34px; height: 34px; border-radius: 9px; background: var(--red); display: grid; place-items: center; color: #fff; font-size: 1rem; box-shadow: var(--shadow-sm); }
.header.transparent .brand, .header.transparent .nav a { color: #fff; }
.header.transparent.scrolled .brand, .header.transparent.scrolled .nav a { color: var(--ink); }

.nav { display: flex; align-items: center; gap: 30px; }
.nav a { font-size: .92rem; font-weight: 500; position: relative; padding: 4px 0; }
.nav a::after { content:""; position:absolute; left:0; bottom:-2px; height:2px; width:0; background: var(--red); transition: width .3s var(--ease); }
.nav a:hover::after, .nav a.active::after { width: 100%; }
.header__cta { display: flex; align-items: center; gap: 14px; }
.burger { display: none; background: none; border: none; cursor: pointer; width: 42px; height: 42px; border-radius: 10px; }
.burger span { display:block; width: 22px; height: 2px; background: currentColor; margin: 4px auto; transition: .3s var(--ease); }
.header.transparent .burger { color: #fff; }
.header.transparent.scrolled .burger { color: var(--ink); }

.mobile-menu { position: fixed; inset: 0; z-index: 99; background: var(--ink); color: #fff; display: flex; flex-direction: column; justify-content: center; padding: 40px; transform: translateX(100%); transition: transform .5s var(--ease); }
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a { font-family: var(--display); font-size: 2rem; padding: 10px 0; opacity: 0; transform: translateY(20px); }
.mobile-menu.open a { animation: rise .5s var(--ease) forwards; }
.mobile-menu.open a:nth-child(1){animation-delay:.1s}.mobile-menu.open a:nth-child(2){animation-delay:.16s}.mobile-menu.open a:nth-child(3){animation-delay:.22s}.mobile-menu.open a:nth-child(4){animation-delay:.28s}.mobile-menu.open a:nth-child(5){animation-delay:.34s}.mobile-menu.open a:nth-child(6){animation-delay:.4s}.mobile-menu.open a:nth-child(7){animation-delay:.46s}
.mobile-menu__close { position: absolute; top: 24px; right: 24px; background: none; border: none; color: #fff; font-size: 2rem; cursor: pointer; }
@keyframes rise { to { opacity: 1; transform: translateY(0); } }

@media (max-width: 920px) {
  .nav, .header__cta .btn { display: none; }
  .burger { display: block; }
}

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; color: #fff; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; z-index: -2; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; animation: kenburns 22s ease-in-out infinite alternate; }
.hero::after { content:""; position:absolute; inset:0; z-index:-1; background: linear-gradient(105deg, rgba(20,18,16,.86) 0%, rgba(20,18,16,.55) 45%, rgba(20,18,16,.2) 100%); }
@keyframes kenburns { from { transform: scale(1) translate(0,0); } to { transform: scale(1.12) translate(-2%, -2%); } }
.hero__inner { padding-top: 120px; padding-bottom: 60px; width: 100%; display: grid; grid-template-columns: 1.1fr .9fr; gap: 50px; align-items: center; }
.hero__content { max-width: 620px; }
.hero h1 { font-size: clamp(2.5rem, 6.5vw, 4.6rem); margin: 18px 0 20px; }
.hero h1 .accent { color: var(--ocre-soft); font-style: italic; }
.hero__lead { font-size: 1.18rem; color: rgba(255,255,255,.85); max-width: 520px; margin-bottom: 30px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 36px; }
.hero__stats { display: flex; gap: 38px; flex-wrap: wrap; }
.hero__stat .num { font-family: var(--display); font-size: 2rem; font-weight: 700; }
.hero__stat .lbl { font-size: .82rem; text-transform: uppercase; letter-spacing: .12em; color: rgba(255,255,255,.7); }
.scroll-cue { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,.7); font-size: .75rem; letter-spacing: .2em; text-transform: uppercase; display: flex; flex-direction: column; align-items: center; gap: 8px; }
.scroll-cue .line { width: 1px; height: 40px; background: rgba(255,255,255,.5); position: relative; overflow: hidden; }
.scroll-cue .line::after { content:""; position:absolute; top:-40px; left:0; width:1px; height:40px; background:#fff; animation: scrolldrop 1.8s var(--ease) infinite; }
@keyframes scrolldrop { to { top: 40px; } }
@media (max-width: 920px){ .hero__inner{ grid-template-columns:1fr; } }

/* ---------- Booking card ---------- */
.booking { background: rgba(255,255,255,.97); color: var(--ink); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow-lg); }
.booking h3 { font-size: 1.35rem; margin-bottom: 4px; }
.booking p.sub { color: var(--muted); font-size: .9rem; margin-bottom: 18px; }
.field { margin-bottom: 14px; }
.field label { display: block; font-size: .78rem; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); margin-bottom: 6px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 14px; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  font-family: var(--sans); font-size: .95rem; background: var(--sand); color: var(--ink); transition: border-color .25s, box-shadow .25s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--red); box-shadow: 0 0 0 4px rgba(193,18,31,.12); background:#fff; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

/* ---------- Cards / grids ---------- */
.grid { display: grid; gap: 26px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px){ .grid-3,.grid-4{ grid-template-columns: repeat(2,1fr);} }
@media (max-width: 620px){ .grid-2,.grid-3,.grid-4{ grid-template-columns: 1fr;} .field-row{grid-template-columns:1fr 1fr;} }

.card { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--line); transition: transform .45s var(--ease), box-shadow .45s var(--ease); }
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }

/* Vehicle card */
.vcard__media { position: relative; aspect-ratio: 4/3; overflow: hidden; background: var(--sand-2); }
.vcard__media img { width:100%; height:100%; object-fit: cover; transition: transform .7s var(--ease); }
.card:hover .vcard__media img { transform: scale(1.07); }
.vcard__tag { position: absolute; top: 12px; left: 12px; background: var(--ink); color:#fff; font-size:.72rem; font-weight:600; padding: 5px 12px; border-radius: 999px; letter-spacing:.04em; }
.vcard__fav { position:absolute; top:12px; right:12px; background: var(--red); color:#fff; font-size:.7rem; font-weight:700; padding:5px 11px; border-radius:999px; text-transform:uppercase; letter-spacing:.06em; }
.vcard__body { padding: 20px; }
.vcard__name { font-size: 1.25rem; margin-bottom: 4px; }
.vcard__brand { color: var(--muted); font-size: .85rem; margin-bottom: 14px; }
.vcard__specs { display: flex; flex-wrap: wrap; gap: 8px 14px; font-size: .82rem; color: var(--ink-2); margin-bottom: 18px; }
.vcard__specs span { display:inline-flex; align-items:center; gap:5px; }
.vcard__specs svg{ width:15px;height:15px;color:var(--ocre); }
.vcard__foot { display:flex; align-items:center; justify-content: space-between; border-top:1px solid var(--line); padding-top:16px; }
.vcard__price b { font-family: var(--display); font-size: 1.5rem; color: var(--red); }
.vcard__price small { color: var(--muted); font-size:.8rem; }

/* feature / why cards */
.feature { background:#fff; border:1px solid var(--line); border-radius: var(--radius); padding: 28px; transition: transform .4s var(--ease), box-shadow .4s var(--ease); position: relative; overflow:hidden; }
.feature:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.feature__ic { width: 52px; height: 52px; border-radius: 14px; background: var(--sand-2); color: var(--red); display:grid; place-items:center; margin-bottom: 18px; transition: background .35s, color .35s; }
.feature:hover .feature__ic { background: var(--red); color:#fff; }
.feature__ic svg{ width:24px;height:24px; }
.feature h3 { font-size: 1.2rem; margin-bottom: 8px; }
.feature p { color: var(--muted); font-size: .94rem; }
.feature__num { position:absolute; top:14px; right:18px; font-family:var(--display); font-size:2.6rem; color: var(--sand-3); font-weight:700; line-height:1; }

/* ---------- Filters ---------- */
.filters { background:#fff; border:1px solid var(--line); border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow-sm); position: sticky; top: 90px; }
.filters h4 { font-family: var(--sans); font-size:.8rem; text-transform:uppercase; letter-spacing:.12em; color: var(--muted); margin: 18px 0 10px; }
.filters h4:first-child{ margin-top:0; }
.chip { display:inline-block; padding:8px 15px; border:1.5px solid var(--line); border-radius:999px; font-size:.85rem; cursor:pointer; margin:0 6px 8px 0; transition:.25s var(--ease); background:#fff; font-family:var(--sans); }
.chip:hover { border-color: var(--ink); }
.chip.active { background: var(--red); color:#fff; border-color: var(--red); }
.range-out { font-weight:600; color: var(--red); }
input[type=range]{ width:100%; accent-color: var(--red); }
.catalog-layout { display:grid; grid-template-columns: 280px 1fr; gap: 32px; align-items:start; }
@media (max-width: 880px){ .catalog-layout{ grid-template-columns:1fr; } .filters{ position:static; } }
.result-count { color: var(--muted); font-size:.9rem; margin-bottom:18px; }

/* ---------- Reveal animations ---------- */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"]{ transition-delay:.08s } .reveal[data-delay="2"]{ transition-delay:.16s }
.reveal[data-delay="3"]{ transition-delay:.24s } .reveal[data-delay="4"]{ transition-delay:.32s }
.reveal[data-delay="5"]{ transition-delay:.4s } .reveal[data-delay="6"]{ transition-delay:.48s }

/* ---------- Stats band ---------- */
.statsband { background: var(--ink); color:#fff; }
.statsband .grid-4 { gap: 30px; }
.stat { text-align:center; padding: 10px; }
.stat .n { font-family: var(--display); font-size: clamp(2.2rem,5vw,3.3rem); font-weight:700; color: var(--ocre-soft); }
.stat .l { font-size:.85rem; letter-spacing:.1em; text-transform:uppercase; color: rgba(255,255,255,.7); }

/* ---------- Split / about ---------- */
.split { display:grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items:center; }
@media (max-width: 880px){ .split{ grid-template-columns:1fr; gap:34px; } }
.split__media { position: relative; }
.split__media img { border-radius: var(--radius); box-shadow: var(--shadow); aspect-ratio: 4/3.4; object-fit: cover; }
.split__badge { position:absolute; bottom:-22px; left:-22px; background: var(--red); color:#fff; padding: 18px 24px; border-radius: var(--radius-sm); box-shadow: var(--shadow); }
.split__badge b { font-family:var(--display); font-size:1.8rem; display:block; }
.split__badge span { font-size:.78rem; text-transform:uppercase; letter-spacing:.1em; opacity:.85; }
.checklist li { display:flex; gap:12px; align-items:flex-start; margin-bottom:14px; }
.checklist .tick { flex:none; width:24px; height:24px; border-radius:50%; background: var(--red); color:#fff; display:grid; place-items:center; font-size:.8rem; margin-top:2px; }
.checklist b { display:block; }
.checklist span { color: var(--muted); font-size:.92rem; }

/* ---------- Destinations grid ---------- */
.dest { position: relative; border-radius: var(--radius); overflow: hidden; min-height: 320px; display:flex; align-items:flex-end; color:#fff; box-shadow: var(--shadow-sm); }
.dest img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; z-index:-2; transition: transform .8s var(--ease); }
.dest::after{ content:""; position:absolute; inset:0; z-index:-1; background: linear-gradient(to top, rgba(20,18,16,.85), rgba(20,18,16,.05)); }
.dest:hover img { transform: scale(1.08); }
.dest__body { padding: 24px; width:100%; }
.dest__body h3 { font-size: 1.5rem; margin-bottom: 4px; }
.dest__body p { font-size:.88rem; color: rgba(255,255,255,.8); }
.dest-big { min-height: 420px; }

/* ---------- Reviews ---------- */
.reviews { background: var(--sand-2); }
.review-track { display:flex; gap: 24px; transition: transform .6s var(--ease); }
.review-vp { overflow:hidden; }
.review { flex: 0 0 calc(33.333% - 16px); background:#fff; border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-sm); border:1px solid var(--line); }
@media (max-width:880px){ .review{ flex-basis: calc(100% - 0px);} }
.review .stars { color: var(--ocre); letter-spacing:2px; margin-bottom:12px; }
.review p { font-style: italic; color: var(--ink-2); margin-bottom: 18px; }
.review .who { display:flex; align-items:center; gap:12px; }
.review .av { width:42px; height:42px; border-radius:50%; background: var(--red); color:#fff; display:grid; place-items:center; font-weight:700; }
.review .who b { display:block; font-size:.95rem; }
.review .who span { font-size:.8rem; color: var(--muted); }
.carousel-nav { display:flex; gap:10px; justify-content:center; margin-top: 30px; }
.carousel-nav button { width:44px; height:44px; border-radius:50%; border:1.5px solid var(--line); background:#fff; cursor:pointer; display:grid; place-items:center; transition:.25s; }
.carousel-nav button:hover { background: var(--red); color:#fff; border-color: var(--red); }

/* ---------- CTA band ---------- */
.cta-band { position: relative; color:#fff; text-align:center; overflow:hidden; }
.cta-band img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; z-index:-2; }
.cta-band::after{ content:""; position:absolute; inset:0; z-index:-1; background: linear-gradient(120deg, rgba(150,13,24,.92), rgba(20,18,16,.85)); }
.cta-band h2 { font-size: clamp(2rem,5vw,3.2rem); margin-bottom: 16px; }
.cta-band p { max-width: 540px; margin: 0 auto 28px; color: rgba(255,255,255,.85); }
.cta-actions { display:flex; gap:14px; justify-content:center; flex-wrap:wrap; }

/* ---------- Page header ---------- */
.pagehead { position: relative; padding: 160px 0 70px; color:#fff; overflow:hidden; }
.pagehead img{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; z-index:-2; animation: kenburns 24s ease-in-out infinite alternate; }
.pagehead::after{ content:""; position:absolute; inset:0; z-index:-1; background: linear-gradient(100deg, rgba(20,18,16,.85), rgba(20,18,16,.45)); }
.pagehead h1 { font-size: clamp(2.2rem,5.5vw,3.6rem); margin: 14px 0 12px; max-width: 760px; }
.pagehead p { max-width: 600px; color: rgba(255,255,255,.85); font-size:1.08rem; }
.crumbs { font-size:.82rem; color: rgba(255,255,255,.7); }
.crumbs a:hover { color:#fff; }

/* ---------- Article / prose ---------- */
.prose { max-width: 760px; }
.prose h2 { font-size: clamp(1.5rem,3.5vw,2rem); margin: 38px 0 14px; }
.prose h3 { font-size: 1.3rem; margin: 28px 0 10px; }
.prose p { margin-bottom: 18px; color: var(--ink-2); }
.prose .lead { font-size: 1.2rem; color: var(--ink); }
.toc { background:#fff; border:1px solid var(--line); border-radius: var(--radius); padding: 22px; }
.toc h4 { font-size:.8rem; text-transform:uppercase; letter-spacing:.12em; color:var(--muted); margin-bottom:12px; }
.dest-layout { display:grid; grid-template-columns:1fr 300px; gap:46px; align-items:start; }
@media (max-width: 880px){ .dest-layout{ grid-template-columns:1fr; } .dest-layout aside{ position:static !important; } }
.toc a { display:block; padding:6px 0; font-size:.92rem; color: var(--ink-2); border-bottom:1px dashed var(--line); }
.toc a:hover { color: var(--red); }

/* ---------- FAQ ---------- */
.faq-item { background:#fff; border:1px solid var(--line); border-radius: var(--radius-sm); margin-bottom: 14px; overflow:hidden; }
.faq-q { width:100%; text-align:left; background:none; border:none; padding: 20px 22px; font-family:var(--display); font-size: 1.1rem; cursor:pointer; display:flex; justify-content:space-between; align-items:center; gap:14px; color: var(--ink); }
.faq-q .pm { flex:none; width:26px; height:26px; border-radius:50%; background: var(--sand-2); color: var(--red); display:grid; place-items:center; font-size:1.2rem; transition: transform .35s var(--ease), background .25s; }
.faq-item.open .faq-q .pm { transform: rotate(45deg); background: var(--red); color:#fff; }
.faq-a { max-height:0; overflow:hidden; transition: max-height .4s var(--ease); }
.faq-a p { padding: 0 22px 20px; color: var(--muted); }

/* ---------- Reservation wizard ---------- */
.wizard { max-width: 760px; margin-inline:auto; }
.steps { display:flex; justify-content:space-between; margin-bottom: 38px; position:relative; }
.steps::before{ content:""; position:absolute; top:18px; left:8%; right:8%; height:2px; background: var(--line); z-index:0; }
.stepbar { position:absolute; top:18px; left:8%; height:2px; background: var(--red); z-index:1; transition: width .5s var(--ease); }
.step { position:relative; z-index:2; text-align:center; flex:1; }
.step .dot { width:38px; height:38px; border-radius:50%; background:#fff; border:2px solid var(--line); display:grid; place-items:center; margin:0 auto 8px; font-weight:700; transition:.3s; }
.step.active .dot, .step.done .dot { background: var(--red); border-color: var(--red); color:#fff; }
.step .lbl { font-size:.78rem; color: var(--muted); }
.step.active .lbl { color: var(--ink); font-weight:600; }
.wizard-panel { background:#fff; border:1px solid var(--line); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow-sm); }
.wizard-page { display:none; animation: fadein .5s var(--ease); }
.wizard-page.show { display:block; }
@keyframes fadein { from{ opacity:0; transform: translateY(14px);} to{opacity:1;transform:none;} }
.veh-pick { display:grid; grid-template-columns: repeat(3,1fr); gap:14px; }
@media(max-width:620px){ .veh-pick{ grid-template-columns:1fr 1fr; } }
.veh-opt { border:2px solid var(--line); border-radius: var(--radius-sm); padding:10px; cursor:pointer; text-align:center; transition:.25s; }
.veh-opt img{ border-radius:8px; aspect-ratio:4/3; object-fit:cover; margin-bottom:8px; }
.veh-opt.sel { border-color: var(--red); box-shadow: 0 0 0 3px rgba(193,18,31,.15); }
.veh-opt b{ font-size:.9rem; display:block; } .veh-opt span{ font-size:.8rem; color: var(--red); font-weight:600; }
.summary { background: var(--sand-2); border-radius: var(--radius-sm); padding: 20px; margin-top: 18px; }
.summary .row { display:flex; justify-content:space-between; padding:6px 0; font-size:.94rem; }
.summary .total { border-top:1px solid var(--line); margin-top:8px; padding-top:12px; font-family:var(--display); font-size:1.4rem; color: var(--red); }
.wizard-actions { display:flex; justify-content:space-between; margin-top: 24px; gap:14px; }

/* ---------- Contact ---------- */
.contact-grid { display:grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items:start; }
@media(max-width:880px){ .contact-grid{ grid-template-columns:1fr; } }
.contact-row { display:flex; gap:14px; align-items:flex-start; margin-bottom: 22px; }
.contact-row .ic { flex:none; width:46px; height:46px; border-radius:12px; background: var(--sand-2); color: var(--red); display:grid; place-items:center; }
.contact-row b { display:block; }
.contact-row a, .contact-row span { color: var(--muted); }
.map-frame { border:0; width:100%; height:320px; border-radius: var(--radius); box-shadow: var(--shadow-sm); }

/* ---------- Trust marquee ---------- */
.marquee { overflow:hidden; border-top:1px solid var(--line); border-bottom:1px solid var(--line); background:#fff; padding: 18px 0; }
.marquee__track { display:flex; gap: 60px; white-space:nowrap; animation: scrollx 26s linear infinite; }
.marquee__track span { font-family:var(--display); font-size:1.1rem; color: var(--muted); display:inline-flex; align-items:center; gap:14px; }
.marquee__track span::after{ content:"•"; color: var(--red); }
@keyframes scrollx { to { transform: translateX(-50%); } }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: rgba(255,255,255,.72); padding: 70px 0 30px; }
.footer__grid { display:grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; margin-bottom: 44px; }
@media(max-width:880px){ .footer__grid{ grid-template-columns:1fr 1fr; gap:30px;} }
@media(max-width:520px){ .footer__grid{ grid-template-columns:1fr;} }
.footer .brand { color:#fff; margin-bottom: 14px; }
.footer h5 { color:#fff; font-family:var(--sans); font-size:.8rem; letter-spacing:.12em; text-transform:uppercase; margin-bottom:16px; }
.footer a { display:block; padding:5px 0; transition:.2s; }
.footer a:hover { color:#fff; padding-left:5px; }
.footer__bottom { border-top:1px solid rgba(255,255,255,.12); padding-top: 24px; display:flex; justify-content:space-between; flex-wrap:wrap; gap:12px; font-size:.85rem; }
.socials { display:flex; gap:12px; }
.socials a { width:38px; height:38px; border-radius:10px; background: rgba(255,255,255,.08); display:grid; place-items:center; }
.socials a:hover { background: var(--red); padding:0; }
.socials svg{ width:18px;height:18px; }

/* ---------- Floating buttons ---------- */
.whatsapp-fab { position: fixed; bottom: 24px; right: 24px; z-index: 90; width: 58px; height: 58px; border-radius:50%; background:#25D366; color:#fff; display:grid; place-items:center; box-shadow: var(--shadow); animation: pulse 2.4s infinite; }
.whatsapp-fab svg{ width:30px; height:30px; }
@keyframes pulse { 0%{ box-shadow:0 0 0 0 rgba(37,211,102,.5);} 70%{ box-shadow:0 0 0 16px rgba(37,211,102,0);} 100%{box-shadow:0 0 0 0 rgba(37,211,102,0);} }
.totop { position: fixed; bottom: 24px; left: 24px; z-index:90; width:46px; height:46px; border-radius:50%; background: var(--ink); color:#fff; display:grid; place-items:center; opacity:0; pointer-events:none; transform: translateY(10px); transition:.35s var(--ease); cursor:pointer; border:none; }
.totop.show { opacity:1; pointer-events:auto; transform:none; }

/* ---------- Toast ---------- */
.toast { position: fixed; bottom: 90px; left: 50%; transform: translateX(-50%) translateY(20px); background: var(--ink); color:#fff; padding: 14px 22px; border-radius: 999px; box-shadow: var(--shadow); opacity:0; pointer-events:none; transition:.4s var(--ease); z-index: 200; font-size:.92rem; }
.toast.show { opacity:1; transform: translateX(-50%) translateY(0); }

/* utilities */
.tac{ text-align:center } .mt0{margin-top:0} .muted{color:var(--muted)}
.badge-row{ display:flex; gap:10px; flex-wrap:wrap; margin-top:14px;}
.badge{ font-size:.78rem; background: var(--sand-2); color:var(--ink-2); padding:5px 12px; border-radius:999px; }
.center-narrow{ max-width:680px; margin-inline:auto; }
