/* ============================================================
   RADI CAB — Premium Design System
   Palette: noir profond · or chaud · blanc ivoire
   ============================================================ */

/* ── TOKENS ──────────────────────────────────────────────── */
:root {
  --ink:        #17120E;
  --ink-2:      #1E1814;
  --ink-3:      #2A2218;
  --ink-4:      #38302A;
  --gold:       #C9A46C;
  --gold-hi:    #E2C28A;
  --gold-lo:    #9B7840;
  --ivory:      #FDFCF9;
  --ivory-2:    #F0EBE0;
  --text:       #28201A;
  --muted:      #9A8A7A;
  --border:     rgba(255,255,255,.07);
  --border-dk:  rgba(0,0,0,.08);

  --ff-serif:  'Cormorant Garamond', Georgia, serif;
  --ff-sans:   'Inter', system-ui, -apple-system, sans-serif;

  --ease:      cubic-bezier(.4,0,.2,1);
  --ease-out:  cubic-bezier(0,0,.2,1);
  --ease-in:   cubic-bezier(.4,0,1,1);
  --spring:    cubic-bezier(.34,1.56,.64,1);

  --r-sm:  6px;
  --r-md:  12px;
  --r-lg:  20px;

  --shadow-gold: 0 8px 32px rgba(201,164,108,.28);
  --shadow-md:   0 4px 24px rgba(0,0,0,.12);
  --shadow-lg:   0 12px 48px rgba(0,0,0,.2);

  --nav-h: 70px;
}

/* ── RESET ───────────────────────────────────────────────── */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: var(--ff-sans); color: var(--text); background: var(--ivory); line-height: 1.6; overflow-x: hidden; }
img,video,svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul,ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
address { font-style: normal; }
abbr[title] { text-decoration: none; cursor: help; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; border-radius: 4px; }

/* ── UTILS ───────────────────────────────────────────────── */
.wrap { max-width: 1180px; margin: 0 auto; padding: 0 clamp(1.25rem,5vw,2.5rem); }
.section { padding: clamp(5rem,9vw,9rem) 0; }

/* Section labels / titles */
.sec-label {
  display: block;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.sec-title {
  font-family: var(--ff-serif);
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--ivory);
}
.sec-title em { font-style: italic; color: var(--gold); }

/* Ivory sections */
.services .sec-title,
.reviews .sec-title,
.contact .sec-title { color: var(--ink); }
.services .sec-title em,
.reviews .sec-title em,
.contact .sec-title em { color: var(--gold-lo); }

/* Scroll reveal */
.reveal-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
}
.reveal-char {
  opacity: 0;
  transform: translateY(40px) skewY(2deg);
  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
}
.revealed { opacity: 1 !important; transform: none !important; }

/* ── NAV ─────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex; align-items: center;
  transition: background .4s var(--ease), box-shadow .4s var(--ease), backdrop-filter .4s;
}
.nav.scrolled {
  background: rgba(23,18,14,.92);
  backdrop-filter: blur(18px) saturate(1.4);
  box-shadow: 0 1px 0 var(--border);
}
.nav__inner {
  width: 100%; max-width: 1180px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem,5vw,2.5rem);
  display: flex; align-items: center; gap: 2rem;
}

.nav__logo {
  display: flex; align-items: center; gap: .6rem;
  font-family: var(--ff-serif);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--ivory);
  flex-shrink: 0;
  letter-spacing: .03em;
}
.nav__logo em { font-style: normal; color: var(--gold); }

.nav__links {
  display: flex; align-items: center; gap: .25rem;
  margin-left: auto;
}
.nav__link {
  padding: .4rem .8rem;
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: .02em;
  color: rgba(246,244,239,.65);
  border-radius: var(--r-sm);
  transition: color .25s, background .25s;
  position: relative;
}
.nav__link::after {
  content: '';
  position: absolute; bottom: 2px; left: 50%;
  width: 0; height: 1px;
  background: var(--gold);
  transform: translateX(-50%);
  transition: width .3s var(--ease);
}
.nav__link:hover { color: var(--ivory); }
.nav__link:hover::after { width: 60%; }
.nav__link.active { color: var(--gold); }

.nav__cta {
  display: flex; align-items: center; gap: .55rem;
  font-size: .82rem; font-weight: 600;
  color: var(--gold);
  border: 1px solid rgba(201,164,108,.3);
  padding: .45rem 1rem;
  border-radius: 100px;
  transition: background .25s, border-color .25s, color .25s;
  flex-shrink: 0;
  letter-spacing: .02em;
}
.nav__cta:hover { background: var(--gold); border-color: var(--gold); color: var(--ink); }

/* User account button */
.nav__account {
  display: flex; align-items: center; gap: .4rem;
  font-size: .82rem; font-weight: 500;
  color: var(--gold);
  opacity: .85;
  padding: .4rem .75rem;
  border-radius: 100px;
  border: 1px solid rgba(201,164,108,.2);
  transition: opacity .2s, border-color .2s, background .2s;
  flex-shrink: 0;
  white-space: nowrap;
  max-width: 120px;
  overflow: hidden;
  text-overflow: ellipsis;
}
.nav__account:hover { opacity: 1; border-color: rgba(201,164,108,.5); background: rgba(201,164,108,.07); }
.nav__account i { font-size: .9rem; }
@media (max-width: 860px) { .nav__account { padding: .35rem .6rem; font-size: .78rem; } }
.nav__cta-dot {
  width: 7px; height: 7px;
  background: #4ade80;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 0 2px rgba(74,222,128,.25);
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%,100% { box-shadow: 0 0 0 2px rgba(74,222,128,.25); }
  50%      { box-shadow: 0 0 0 5px rgba(74,222,128,.1); }
}

.nav__burger {
  display: none; flex-direction: column;
  gap: 6px; padding: .5rem; margin-left: auto;
}
.nav__burger span {
  display: block; width: 22px; height: 1.5px;
  background: var(--ivory); border-radius: 2px;
  transition: transform .3s var(--ease), opacity .3s;
  transform-origin: center;
}
.nav__burger[aria-expanded="true"] span:first-child { transform: rotate(45deg) translate(5.5px, 5.5px); }
.nav__burger[aria-expanded="true"] span:last-child  { transform: rotate(-45deg) translate(5.5px,-5.5px); }

/* ── LANGUAGE SWITCHER ───────────────────────────────────── */
.lang-switcher {
  display: flex; align-items: center; gap: .15rem;
  padding: 0 .35rem;
}
.lang-btn {
  background: none; border: none; cursor: pointer;
  font-size: 1.15rem; padding: .2rem .22rem;
  border-radius: .3rem; opacity: .4;
  transition: opacity .2s, transform .15s;
  line-height: 1; flex-shrink: 0;
}
.lang-btn:hover { opacity: .75; transform: scale(1.12); }
.lang-btn.active,
.lang-btn[aria-pressed="true"] { opacity: 1; transform: scale(1.18); }
@media (max-width: 820px) { .lang-switcher { display: none; } }

/* ── Lang bar — visible on all app sub-pages ────────────── */
.lang-bar {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: .1rem;
  padding: .15rem .625rem;
  background: rgba(7,9,26,.55);
  border-bottom: 1px solid rgba(255,255,255,.04);
}

@media (max-width: 820px) {
  .nav__links {
    position: fixed; inset: var(--nav-h) 0 0 0;
    background: rgba(23,18,14,.97);
    backdrop-filter: blur(20px);
    flex-direction: column; justify-content: center;
    gap: 2rem; margin: 0;
    transform: translateX(100%);
    transition: transform .4s var(--ease);
    z-index: 999;
  }
  .nav__links.open { transform: translateX(0); }
  .nav__link { font-size: 1.2rem; padding: .6rem 2rem; }
  .nav__link::after { display: none; }
  .nav__cta { display: none; }
  .nav__burger { display: flex; }
}

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn-prim {
  display: inline-flex; align-items: center; gap: .6rem;
  background: var(--gold);
  color: var(--ink);
  font-weight: 600; font-size: .9rem;
  letter-spacing: .03em;
  padding: .8rem 2rem;
  border-radius: var(--r-sm);
  border: none;
  transition: background .25s, box-shadow .25s, transform .2s var(--spring);
}
.btn-prim:hover { background: var(--gold-hi); box-shadow: var(--shadow-gold); transform: translateY(-2px) scale(1.02); }
.btn-prim:active { transform: scale(.98); }
.btn-prim--inv { background: var(--ink); color: var(--gold); border: 1px solid var(--gold); }
.btn-prim--inv:hover { background: var(--gold); color: var(--ink); }
.btn-prim--full { width: 100%; justify-content: center; }

.btn-ghost {
  display: inline-flex; align-items: center; gap: .5rem;
  background: transparent;
  color: var(--ivory);
  font-weight: 500; font-size: .9rem;
  padding: .75rem 1.75rem;
  border: 1px solid rgba(246,244,239,.2);
  border-radius: var(--r-sm);
  transition: border-color .25s, background .25s, transform .2s;
}
.btn-ghost:hover { border-color: var(--ivory); background: rgba(246,244,239,.06); transform: translateY(-2px); }

.btn-ghost-hero {
  font-size: .88rem; font-weight: 500;
  color: rgba(246,244,239,.6);
  letter-spacing: .02em;
  transition: color .25s;
  white-space: nowrap;
}
.btn-ghost-hero:hover { color: var(--gold); }

.btn-outline {
  display: inline-flex; align-items: center; gap: .5rem;
  background: transparent;
  color: var(--muted);
  font-size: .88rem; font-weight: 500;
  padding: .65rem 1.5rem;
  border: 1px solid var(--ivory-2);
  border-radius: var(--r-sm);
  transition: color .25s, border-color .25s, background .25s;
}
.btn-outline:hover { color: var(--ink); border-color: var(--ink); }

/* Magnetic (JS adds transform) */
.magnetic { --mx: 0px; --my: 0px; transform: translate(var(--mx), var(--my)); transition: transform .18s var(--ease-out); }

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: var(--ink-2);
  overflow: hidden;
  color: var(--ivory);
}

.hero__bg {
  position: absolute; inset: 0;
  background-image:
    url('https://images.unsplash.com/photo-1549317661-bd32c8ce0729?w=1800&q=75&auto=format&fit=crop');
  background-size: cover;
  background-position: center 40%;
  will-change: transform;
}
.hero__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(23,18,14,.45) 0%, rgba(23,18,14,.1) 40%, rgba(23,18,14,.82) 100%),
    linear-gradient(90deg, rgba(23,18,14,.55) 0%, transparent 60%);
}
/* SVG noise grain */
.hero__grain {
  position: absolute; inset: 0;
  opacity: .04;
  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='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px;
}

.hero__content {
  position: relative; z-index: 2;
  padding-top: calc(var(--nav-h) + 4rem);
  padding-bottom: 2rem;
}

.hero__kicker {
  display: inline-flex; align-items: center; gap: .6rem;
  font-size: .78rem; font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase;
  color: rgba(246,244,239,.55);
  margin-bottom: 1.5rem;
}
.hero__kicker-dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(201,164,108,.2);
  flex-shrink: 0;
}

.hero__title {
  display: flex; flex-direction: column;
  font-family: var(--ff-serif);
  font-weight: 300;
  line-height: 1;
  margin-bottom: 1.75rem;
  gap: .05em;
}
.ht {
  display: block;
  color: var(--ivory);
}
.ht-1 { font-size: clamp(3rem, 7vw, 6rem); font-style: italic; color: rgba(246,244,239,.55); }
.ht-2 { font-size: clamp(4.5rem, 10vw, 9rem); font-weight: 400; letter-spacing: -.02em; }
.ht-3 { font-size: clamp(3.5rem, 8vw, 7rem); font-weight: 300; letter-spacing: -.01em; }
.ht-period { color: var(--gold); }

.hero__tagline {
  font-size: clamp(.82rem, 1.5vw, .95rem);
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(246,244,239,.45);
  margin-bottom: 2.5rem;
}

.hero__ctas {
  display: flex; align-items: center; gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

/* Stats bar */
.hero__stats {
  position: relative; z-index: 2;
  display: flex; align-items: stretch;
  background: rgba(255,255,255,.04);
  backdrop-filter: blur(20px) saturate(1.2);
  border-top: 1px solid rgba(255,255,255,.07);
}
.hero__stat {
  flex: 1;
  display: flex; flex-direction: column; align-items: center;
  padding: 1.25rem 1rem;
  text-align: center;
}
.hero__stat b {
  font-family: var(--ff-serif);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
}
.hero__stat span {
  font-size: .72rem; font-weight: 500;
  letter-spacing: .08em; text-transform: uppercase;
  color: rgba(246,244,239,.45);
  margin-top: .3rem;
}
.hero__stat-sep {
  width: 1px;
  background: rgba(255,255,255,.07);
  align-self: stretch;
  flex-shrink: 0;
}

/* Scroll hint */
.hero__scroll-hint {
  position: absolute;
  bottom: 8rem; right: clamp(1.5rem,4vw,3rem);
  display: flex; flex-direction: column; align-items: center; gap: .6rem;
  color: rgba(246,244,239,.35);
  z-index: 3;
  transition: color .25s;
}
.hero__scroll-hint:hover { color: var(--gold); }
.hero__scroll-line {
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, transparent, currentColor);
  animation: scroll-line 2s ease-in-out infinite;
}
.hero__scroll-label {
  font-size: .65rem; letter-spacing: .18em; text-transform: uppercase;
  writing-mode: vertical-rl;
}
@keyframes scroll-line {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

@media (max-width: 640px) {
  .hero__stat-sep { display: none; }
  .hero__stats { flex-wrap: wrap; }
  .hero__stat { flex: 0 0 50%; border-top: 1px solid rgba(255,255,255,.07); }
  .hero__scroll-hint { display: none; }
  .hero__ctas { flex-direction: column; align-items: flex-start; }
}

/* ── MARQUEE ─────────────────────────────────────────────── */
.marquee {
  background: var(--gold);
  overflow: hidden;
  padding: .9rem 0;
  white-space: nowrap;
}
.marquee__track {
  display: inline-flex; align-items: center; gap: 1.5rem;
  animation: marquee-scroll 28s linear infinite;
  will-change: transform;
}
.marquee__track span {
  font-size: .78rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--ink);
}
.marquee__track em {
  font-style: normal; color: rgba(6,6,6,.35); font-size: .9em;
}
@keyframes marquee-scroll { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee__track { animation: none; } }

/* ── VAN SHOWCASE ────────────────────────────────────────── */
.van-section {
  position: relative;
  background: var(--ink);
  overflow: hidden;
  padding: clamp(4rem, 8vw, 7rem) 0 clamp(3rem, 6vw, 5rem);
}

/* Ambient golden glow behind the car */
.van-section__glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 55% at 50% 60%, rgba(201,164,108,.10) 0%, transparent 70%);
  pointer-events: none;
}

.van-section__wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.van-section__head {
  text-align: center;
  margin-bottom: 2rem;
}
.van-section__head .sec-label {
  color: rgba(201,164,108,.7);
  letter-spacing: .18em;
}
.van-section__head .sec-title {
  margin-top: .75rem;
  font-size: clamp(2rem, 4.5vw, 3.25rem);
}
.van-section__head .sec-title em { color: var(--gold); }

/* Stage — the image area */
.van-section__stage {
  position: relative;
  width: 100%;
  max-width: 900px;
}

.van-section__img {
  width: 100%;
  height: auto;
  display: block;
  /* The image already has a dark studio background — let it blend */
  filter: drop-shadow(0 30px 60px rgba(201,164,108,.18)) drop-shadow(0 4px 20px rgba(0,0,0,.6));
}

/* Floating spec badges */
.van-badge {
  position: absolute;
  display: flex; align-items: center; gap: .45rem;
  background: rgba(12,10,22,.82);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(201,164,108,.35);
  border-radius: 100px;
  padding: .45rem .9rem .45rem .7rem;
  font-size: .78rem; font-weight: 600;
  color: var(--gold);
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(0,0,0,.4), 0 0 0 1px rgba(201,164,108,.08);
  animation: van-badge-float 4s ease-in-out infinite;
}
.van-badge i { font-size: .85rem; }
.van-badge--seats  { top: 18%; left: 4%;  animation-delay: 0s;   }
.van-badge--luggage{ bottom: 28%; left: 6%; animation-delay: 1.3s; }
.van-badge--wifi   { top: 14%; right: 5%; animation-delay: 2.6s; }

@keyframes van-badge-float {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-5px); }
}

/* Spec list below image */
.van-specs {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  width: 100%;
  max-width: 900px;
  margin-top: 0;
  border-top: 1px solid rgba(201,164,108,.12);
}
.van-specs li {
  display: flex; align-items: center; gap: .75rem;
  padding: 1.1rem 1.5rem;
  border-right: 1px solid rgba(201,164,108,.12);
  font-size: .82rem;
  color: var(--muted);
  transition: color .25s, background .25s;
}
.van-specs li:nth-child(3n) { border-right: none; }
.van-specs li:hover { color: var(--ivory); background: rgba(201,164,108,.04); }
.van-specs li i {
  color: var(--gold);
  font-size: .85rem;
  flex-shrink: 0;
  opacity: .85;
}

@media (max-width: 680px) {
  .van-specs { grid-template-columns: 1fr 1fr; }
  .van-specs li:nth-child(3n) { border-right: 1px solid rgba(201,164,108,.12); }
  .van-specs li:nth-child(2n) { border-right: none; }
  .van-badge { font-size: .72rem; padding: .38rem .75rem .38rem .6rem; }
  .van-badge--seats  { top: 12%; left: 2%; }
  .van-badge--luggage{ bottom: 24%; left: 2%; }
  .van-badge--wifi   { top: 12%; right: 2%; }
}
@media (max-width: 420px) {
  .van-specs { grid-template-columns: 1fr; }
  .van-specs li { border-right: none !important; border-bottom: 1px solid rgba(201,164,108,.08); }
}

/* ── SERVICES ────────────────────────────────────────────── */
.services { background: var(--ivory); }

.sec-head {
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.services .sec-head .sec-label { color: var(--gold-lo); }

.scards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--ivory-2);
  border: 1.5px solid var(--ivory-2);
  border-radius: var(--r-lg);
  overflow: hidden;
}

.scard {
  background: var(--ivory);
  padding: clamp(2rem, 4vw, 3rem) clamp(1.5rem, 3vw, 2.5rem);
  display: flex; flex-direction: column;
  gap: 1rem;
  transition: background .3s, transform .3s var(--spring);
  position: relative;
  overflow: hidden;
}
.scard::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-hi));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--ease);
}
.scard:hover::before { transform: scaleX(1); }
.scard:hover { background: var(--ivory-2); }

.scard__nb {
  font-family: var(--ff-serif);
  font-size: 5rem;
  line-height: 1;
  color: var(--ivory-2);
  position: absolute; top: 1rem; right: 1.5rem;
  transition: color .3s;
  user-select: none;
  pointer-events: none;
}
.scard:hover .scard__nb { color: rgba(201,164,108,.12); }

.scard__ico {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  background: var(--ivory-2);
  border-radius: var(--r-sm);
  font-size: 1.2rem;
  color: var(--gold-lo);
  transition: background .3s, color .3s;
}
.scard:hover .scard__ico { background: var(--gold); color: var(--ink); }

.scard h3 {
  font-family: var(--ff-serif);
  font-size: 1.5rem; font-weight: 400;
  color: var(--ink);
  line-height: 1.2;
}
.scard p { font-size: .93rem; color: var(--muted); line-height: 1.75; flex: 1; }
.scard p strong { color: var(--ink-4); font-weight: 600; }

.scard__link {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .83rem; font-weight: 600;
  letter-spacing: .05em; text-transform: uppercase;
  color: var(--gold-lo);
  margin-top: .5rem;
  transition: gap .25s, color .25s;
}
.scard__link svg { transition: transform .25s var(--spring); }
.scard__link:hover { color: var(--gold); gap: .8rem; }
.scard__link:hover svg { transform: translateX(4px); }

@media (max-width: 820px) {
  .scards { grid-template-columns: 1fr; }
}

/* ── DIFFÉRENCE ──────────────────────────────────────────── */
.diff { background: var(--ink); }

.diff__wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 7vw, 7rem);
  align-items: center;
}

.diff__visual { position: relative; }
.diff__card {
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
  aspect-ratio: 3/4;
  max-height: 560px;
}
.diff__card-img {
  width: 100%; height: 100%;
  position: relative;
  overflow: hidden;
}
/* Gradient overlay — bottom text legibility */
.diff__card-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top,
    rgba(7,9,26,.98) 0%,
    rgba(7,9,26,.55) 38%,
    rgba(7,9,26,.10) 60%,
    transparent 80%);
  pointer-events: none;
}
.diff__card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  /* Focus crop on the driver (right portion of landscape image) */
  object-position: 76% 8%;
  display: block;
  filter: brightness(.95) contrast(1.06);
  transition: transform .7s var(--ease);
}
.diff__card:hover .diff__card-img img { transform: scale(1.04); }

/* ── Status dot — top left ── */
.diff__card-status {
  position: absolute; top: 1.1rem; left: 1.1rem;
  display: flex; align-items: center; gap: .4rem;
  background: rgba(7,9,26,.72);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 100px;
  padding: .32rem .8rem;
  font-size: .7rem; font-weight: 600;
  color: var(--ivory);
  letter-spacing: .04em;
  z-index: 2;
}
.diff__status-dot {
  display: inline-block;
  width: 7px; height: 7px;
  background: #4ade80;
  border-radius: 50%;
  box-shadow: 0 0 6px rgba(74,222,128,.8);
  animation: status-pulse 2.4s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes status-pulse {
  0%,100% { opacity: 1; box-shadow: 0 0 6px rgba(74,222,128,.8); }
  50%      { opacity: .65; box-shadow: 0 0 14px rgba(74,222,128,.5); }
}

/* ── Credential badge — top right ── */
.diff__card-badge {
  position: absolute; top: 1.1rem; right: 1.1rem;
  background: var(--gold);
  border-radius: var(--r-sm);
  padding: .6rem .85rem;
  display: flex; align-items: center; gap: .5rem;
  color: var(--ink);
  font-size: .74rem; font-weight: 700; line-height: 1.25;
  box-shadow: var(--shadow-gold);
  z-index: 2;
}
.diff__card-badge i { font-size: .95rem; }

/* ── Bottom info panel ── */
.diff__card-info {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 1.4rem 1.5rem 1.5rem;
  z-index: 2;
}
.diff__card-driver { margin-bottom: .9rem; }
.diff__card-name {
  font-family: var(--ff-serif);
  font-size: 1.5rem; font-weight: 700;
  color: var(--ivory);
  line-height: 1.1;
  margin: 0 0 .25rem;
}
.diff__card-role {
  font-size: .7rem; font-weight: 600;
  color: var(--gold);
  letter-spacing: .07em; text-transform: uppercase;
  margin: 0;
}
.diff__card-stats {
  display: flex;
  border-top: 1px solid rgba(201,164,108,.22);
  padding-top: .8rem;
}
.diff__card-stat {
  flex: 1;
  display: flex; flex-direction: column; align-items: center;
  border-right: 1px solid rgba(201,164,108,.15);
  padding: 0 .25rem;
  gap: .2rem;
}
.diff__card-stat:last-child { border-right: none; }
.diff__card-stat strong {
  font-size: 1.05rem; font-weight: 700;
  color: var(--ivory); line-height: 1;
  display: flex; align-items: center; gap: .22rem;
}
.diff__card-stat strong .fa-star { color: var(--gold); font-size: .8rem; }
.diff__card-stat span {
  font-size: .62rem; font-weight: 500;
  color: var(--muted);
  text-transform: uppercase; letter-spacing: .07em;
}

.diff__body { position: relative; }
.diff__body .sec-label { color: rgba(201,164,108,.7); }

.pillars { display: flex; flex-direction: column; gap: 1px; margin-top: 2.5rem; }
.pillar {
  display: flex; align-items: flex-start; gap: 1.25rem;
  background: rgba(255,255,255,.03);
  border: 1px solid var(--border);
  padding: 1.25rem 1.5rem;
  border-radius: var(--r-sm);
  transition: background .3s, border-color .3s, transform .3s var(--spring);
}
.pillar:hover {
  background: rgba(201,164,108,.06);
  border-color: rgba(201,164,108,.2);
  transform: translateX(6px);
}
.pillar__ico {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(201,164,108,.1);
  border-radius: var(--r-sm);
  color: var(--gold);
  font-size: .95rem;
  flex-shrink: 0;
  transition: background .3s;
}
.pillar:hover .pillar__ico { background: rgba(201,164,108,.18); }
.pillar strong { display: block; color: var(--ivory); font-size: .95rem; margin-bottom: .3rem; }
.pillar p { font-size: .88rem; color: rgba(246,244,239,.5); line-height: 1.65; }

@media (max-width: 820px) {
  .diff__wrap { grid-template-columns: 1fr; }
  .diff__visual { display: none; }
}

/* ── REVIEWS ─────────────────────────────────────────────── */
.reviews { background: var(--ivory-2); }
.reviews .sec-label { color: var(--gold-lo); }

.reviews__head {
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.reviews__stars {
  display: flex; align-items: center; gap: .6rem;
  margin-top: .75rem;
  font-size: .88rem; color: var(--muted);
}
.reviews__stars span { color: var(--gold-lo); font-size: 1rem; }
.reviews__stars strong { color: var(--ink); }

/* ── REVIEWS CAROUSEL ────────────────────────────────────── */
.rcaro {
  position:      relative;
  margin-bottom: 3rem;
}

.rcaro__track {
  display:                flex;
  overflow-x:             scroll;
  scroll-snap-type:       x mandatory;
  scroll-behavior:        smooth;
  -webkit-overflow-scrolling: touch;
  gap:                    1px;
  background:             var(--ivory-2);
  border:                 1px solid var(--ivory-2);
  border-radius:          var(--r-lg);
  overflow-y:             hidden;
  scrollbar-width:        none;
}
.rcaro__track::-webkit-scrollbar { display: none; }

.rcaro__track .rcard {
  flex:              0 0 calc(33.333% - 1px);
  scroll-snap-align: start;
  border-radius:     0;
  min-width:         260px;
}

@media (max-width: 820px) {
  .rcaro__track .rcard {
    flex:              0 0 100%;
    scroll-snap-align: center;
  }
}

.rcaro__nav {
  display:         flex;
  align-items:     center;
  justify-content: center;
  gap:             1rem;
  margin-top:      1.25rem;
}

.rcaro__btn {
  width:         40px;
  height:        40px;
  border-radius: 50%;
  border:        1.5px solid var(--border-dk);
  background:    var(--ivory);
  color:         var(--gold-lo);
  cursor:        pointer;
  display:       flex;
  align-items:   center;
  justify-content: center;
  font-size:     .85rem;
  transition:    background .2s, color .2s, border-color .2s;
  flex-shrink:   0;
}
.rcaro__btn:hover {
  background:    var(--gold);
  color:         #fff;
  border-color:  var(--gold);
}

.rcaro__dots {
  display:   flex;
  gap:       .45rem;
  align-items: center;
}
.rcaro__dot {
  width:         8px;
  height:        8px;
  border-radius: 50%;
  border:        none;
  background:    var(--border-dk);
  cursor:        pointer;
  padding:       0;
  transition:    background .25s, transform .25s, width .25s;
}
.rcaro__dot.active {
  background: var(--gold);
  width:      22px;
  border-radius: 4px;
}

.rcard {
  background: var(--ivory);
  padding: 2.5rem 2rem;
  display: flex; flex-direction: column; gap: 1.25rem;
  transition: background .3s, box-shadow .3s;
}
.rcard:hover { background: #fff; box-shadow: var(--shadow-md); }

.rcard__stars { color: var(--gold); font-size: .9rem; display: flex; gap: .2rem; }

.rcard blockquote {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.75;
  color: rgba(26,18,14,.72);
  flex: 1;
  position: relative;
  padding-left: 1.2rem;
}
.rcard blockquote::before {
  content: '';
  position: absolute; left: 0; top: .3em;
  width: 2px; height: calc(100% - .6em);
  background: var(--gold);
  opacity: .4;
}

.rcard figcaption {
  display: flex; flex-direction: column; gap: .2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-dk);
}
.rcard strong { font-size: .9rem; color: var(--ink); }
.rcard span { font-size: .78rem; color: var(--gold-lo); letter-spacing: .04em; }

/* ── CTA BAND ────────────────────────────────────────────── */
.ctaband {
  background: var(--gold);
  padding: clamp(3rem, 6vw, 4.5rem) 0;
}
.ctaband__inner {
  display: flex; align-items: center;
  justify-content: space-between;
  gap: 2rem; flex-wrap: wrap;
}
.ctaband p {
  font-family: var(--ff-serif);
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  font-weight: 300;
  color: var(--ink);
  line-height: 1.2;
}
.ctaband__btns { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.ctaband .btn-prim--inv { background: var(--ink); color: var(--ivory); border-color: transparent; }
.ctaband .btn-prim--inv:hover { background: var(--ink-3); }
.ctaband .btn-ghost { border-color: rgba(6,6,6,.25); color: var(--ink); }
.ctaband .btn-ghost:hover { background: rgba(6,6,6,.08); border-color: var(--ink); }

/* ── CONTACT ─────────────────────────────────────────────── */
.contact { background: var(--ivory); }
.contact .sec-label { color: var(--gold-lo); }

.contact__wrap {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: start;
}

.cdetails { margin-top: 2rem; display: flex; flex-direction: column; gap: .5rem; }
.cdetail {
  display: flex; align-items: center; gap: 1rem;
  padding: 1rem 1.25rem;
  border-radius: var(--r-sm);
  border: 1px solid var(--ivory-2);
  transition: border-color .25s, background .25s;
}
a.cdetail:hover { border-color: var(--gold); background: rgba(201,164,108,.04); }
.cdetail__ico {
  width: 38px; height: 38px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--ivory-2);
  border-radius: var(--r-sm);
  color: var(--gold-lo);
  font-size: .95rem;
  transition: background .25s, color .25s;
}
a.cdetail:hover .cdetail__ico { background: var(--gold); color: var(--ink); }
.cdetail strong { display: block; font-size: .72rem; font-weight: 600; letter-spacing: .07em; text-transform: uppercase; color: var(--muted); margin-bottom: .15rem; }
.cdetail span { font-size: .92rem; color: var(--ink); word-break: break-word; }

.contact__map {
  margin-top: 1.5rem;
  border-radius: var(--r-md);
  overflow: hidden;
  border: 2px solid var(--ivory-2);
  transition: border-color .25s;
}
.contact__map:hover { border-color: var(--gold); }
.contact__map iframe { display: block; }
/* Subtle link below the map embed */
.map-link {
  display: flex; align-items: center; gap: .45rem;
  padding: .6rem 1rem;
  font-size: .78rem; font-weight: 500;
  color: var(--muted);
  border-top: 1px solid var(--ivory-2);
  transition: color .2s, background .2s;
  text-decoration: none;
}
.map-link:hover { color: var(--gold-lo); background: rgba(0,0,0,.03); }
.map-link i { font-size: .75rem; opacity: .75; }

/* FORM */
.form {
  display: flex; flex-direction: column; gap: 1rem;
  background: var(--ink);
  border-radius: var(--r-lg);
  padding: clamp(1.75rem, 4vw, 3rem);
  border: 1px solid var(--border);
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form__f { display: flex; flex-direction: column; gap: .35rem; }
.form__f label {
  font-size: .72rem; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  color: rgba(246,244,239,.5);
}
.form__f label abbr { color: var(--gold); }

.form__f input,
.form__f select,
.form__f textarea {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--r-sm);
  padding: .7rem 1rem;
  color: var(--ivory);
  font-family: var(--ff-sans);
  font-size: .92rem;
  transition: border-color .25s, background .25s;
  -webkit-appearance: none;
  appearance: none;
}
.form__f input::placeholder,
.form__f textarea::placeholder { color: rgba(246,244,239,.2); }
.form__f input:focus,
.form__f select:focus,
.form__f textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255,255,255,.07);
}
.form__f input:invalid:not(:placeholder-shown):not(:focus) { border-color: #e05252; }
.form__f select { background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2012%207'%3E%3Cpath%20d='M1%201l5%205%205-5'%20stroke='%23C9A46C'%20stroke-width='1.5'%20fill='none'%20stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; background-size: 12px; padding-right: 2.5rem; }
.form__f select option { background: var(--ink-3); color: var(--ivory); }
.form__f textarea { resize: vertical; min-height: 90px; }

.form__rgpd {
  display: flex; align-items: flex-start; gap: .75rem;
  font-size: .82rem; color: rgba(246,244,239,.45);
  line-height: 1.55; cursor: pointer;
}
.form__rgpd input[type="checkbox"] { width: 16px; height: 16px; accent-color: var(--gold); flex-shrink: 0; margin-top: .15rem; }

.form__msg {
  padding: .7rem 1rem;
  border-radius: var(--r-sm);
  font-size: .88rem; font-weight: 600;
}
.form__msg.ok { background: rgba(74,222,128,.1); color: #4ade80; border: 1px solid rgba(74,222,128,.2); }
.form__msg.err { background: rgba(248,113,113,.1); color: #f87171; border: 1px solid rgba(248,113,113,.2); }

@media (max-width: 900px) {
  .contact__wrap { grid-template-columns: 1fr; }
}
@media (max-width: 580px) {
  .form__row { grid-template-columns: 1fr; }
}

/* ── FOOTER ──────────────────────────────────────────────── */
.footer {
  background: var(--ink);
  border-top: 1px solid var(--border);
  color: rgba(246,244,239,.55);
  font-size: .88rem;
}

.footer__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  padding: 4rem 0 2.5rem;
}

.footer__logo {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--ff-serif); font-size: 1.3rem;
  color: var(--ivory); margin-bottom: .75rem;
}
.footer__logo em { font-style: normal; color: var(--gold); }
.footer__brand p { font-size: .85rem; line-height: 1.75; }

.footer__nav { display: flex; flex-direction: column; gap: .5rem; }
.footer__nav a {
  display: flex; align-items: center; gap: .5rem;
  color: rgba(246,244,239,.45);
  font-size: .85rem;
  transition: color .25s;
}
.footer__nav a::before { content: '—'; color: rgba(201,164,108,.35); font-size: .75em; }
.footer__nav a:hover { color: var(--gold); }

.footer__contact { display: flex; flex-direction: column; gap: .6rem; }
.footer__contact a,
.footer__contact span { font-size: .85rem; transition: color .25s; }
.footer__contact a:hover { color: var(--gold); }

.footer__bottom {
  border-top: 1px solid var(--border);
  padding: 1.25rem 0;
}
.footer__bottom-row {
  display: flex; align-items: center;
  justify-content: space-between; gap: 1rem;
  flex-wrap: wrap;
}
.footer__bottom-row p { font-size: .78rem; color: rgba(246,244,239,.3); }
.footer__seo { display: flex; gap: .6rem; flex-wrap: wrap; }
.footer__seo a { color: rgba(246,244,239,.2); font-size: .73rem; transition: color .25s; }
.footer__seo a:hover { color: var(--gold); }
.footer__legal { display: flex; gap: .6rem; flex-wrap: wrap; margin-top: .25rem; }
.footer__legal a { color: rgba(246,244,239,.35); font-size: .73rem; transition: color .25s; }
.footer__legal a:hover { color: var(--gold); }

@media (max-width: 820px) {
  .footer__top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .footer__top { grid-template-columns: 1fr; }
  .footer__bottom-row { flex-direction: column; text-align: center; }
}

/* ── FLOATING BUTTONS ────────────────────────────────────── */
.floats {
  position: fixed; bottom: 1.5rem; right: 1.5rem;
  display: flex; flex-direction: column; gap: .7rem;
  z-index: 9000;
  align-items: flex-end;
}
.fbtn {
  height: 50px;
  min-width: 50px;
  border-radius: 100px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.15rem; color: var(--ivory);
  box-shadow: var(--shadow-lg);
  transition: transform .25s var(--spring), box-shadow .25s, padding .25s var(--spring), min-width .25s var(--spring);
  overflow: hidden;
  padding: 0 .85rem;
  gap: .5rem;
}
.fbtn__label {
  font-size: .78rem; font-weight: 600;
  white-space: nowrap;
  max-width: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-width .3s var(--ease), opacity .25s;
  font-family: var(--ff-sans);
  letter-spacing: .02em;
}
.fbtn:hover .fbtn__label { max-width: 140px; opacity: 1; }
.fbtn:hover { transform: translateY(-2px); }
.fbtn--wa  { background: #25D366; }
.fbtn--wa:hover { box-shadow: 0 8px 28px rgba(37,211,102,.45); }
.fbtn--call { background: var(--ink-3); border: 1px solid var(--gold); color: var(--gold); }
.fbtn--call:hover { background: var(--gold); color: var(--ink); box-shadow: var(--shadow-gold); }

.totop {
  position: fixed; bottom: 1.5rem; left: 1.5rem;
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(23,18,14,.72);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  color: rgba(246,244,239,.6);
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem;
  z-index: 9000;
  opacity: 0; pointer-events: none;
  transition: opacity .3s, background .25s, transform .25s var(--spring);
}
.totop:not([hidden]) { opacity: 1; pointer-events: auto; }
.totop:hover { background: var(--gold); color: var(--ink); transform: translateY(-3px); }

/* ── ACCESSIBILITY / PRINT / MOTION ─────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *,*::before,*::after { animation-duration:.01ms !important; transition-duration:.01ms !important; }
  html { scroll-behavior: auto; }
}
@media print {
  .nav,.floats,.totop,.hero__scroll-hint,.ctaband { display: none; }
  .hero { min-height: auto; }
  a::after { content: " (" attr(href) ")"; font-size: .8em; }
}