  :root {
    --color-cream: #F4EFE8;
    --color-cream-light: #FBF8F3;
    --color-black: #11100E;
    --color-charcoal: #1A1917;
    --color-muted: #756F68;
    --color-gold: #B89B68;
    --color-gold-light: #D6C4A2;
    --color-border: #DED4C6;
    --color-white: #FFFFFF;

    --maxw: 1320px;
    --r-sm: 4px;
    --r-md: 8px;
    --r-lg: 14px;
    --r-pill: 999px;
  }

  *, *::before, *::after { box-sizing: border-box; }
  html, body { margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    font-family: "Inter", system-ui, -apple-system, sans-serif;
    background: var(--color-cream-light);
    color: var(--color-black);
    font-size: 15px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
  }
  img { display: block; max-width: 100%; }

  .serif { font-family: "Cormorant Garamond", "Times New Roman", serif; }
  .mono-eyebrow {
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-muted);
    font-weight: 500;
  }
  .gold-line {
    display: inline-flex; align-items: center; gap: 12px;
  }
  .gold-line::before {
    content: ""; width: 24px; height: 1px; background: var(--color-gold);
  }

  .wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 32px; }

  /* ─────────────────── BUTTONS ─────────────────── */
  .btn {
    display: inline-flex; align-items: center; gap: 12px;
    padding: 14px 24px; border-radius: var(--r-pill);
    font-size: 12px; font-weight: 500; letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none; cursor: pointer; border: 1px solid transparent;
    transition: all .25s ease;
    white-space: nowrap;
    font-family: inherit;
  }
  .btn-primary { background: var(--color-black); color: var(--color-cream); }
  .btn-primary:hover { background: var(--color-charcoal); transform: translateY(-1px); }
  .btn-ghost { background: transparent; color: var(--color-black); border-color: var(--color-black); }
  .btn-ghost:hover { background: var(--color-black); color: var(--color-cream); }
  .btn-gold { background: var(--color-gold); color: var(--color-black); }
  .btn-gold:hover { background: var(--color-gold-light); }
  .btn-on-dark-ghost { background: transparent; color: var(--color-cream); border-color: var(--color-gold); }
  .btn-on-dark-ghost:hover { background: var(--color-gold); color: var(--color-black); }

  .arrow {
    width: 14px; height: 14px;
    display: inline-block;
    background: currentColor;
    -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M5 12h14M13 6l6 6-6 6' fill='none' stroke='black' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/></svg>") center/contain no-repeat;
            mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M5 12h14M13 6l6 6-6 6' fill='none' stroke='black' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/></svg>") center/contain no-repeat;
  }

  /* ─────────────────── NAV ─────────────────── */
  .nav {
    position: sticky; top: 0; z-index: 50;
    background: color-mix(in oklab, var(--color-cream-light) 92%, transparent);
    backdrop-filter: saturate(140%) blur(14px);
    -webkit-backdrop-filter: saturate(140%) blur(14px);
    border-bottom: 1px solid transparent;
    transition: border-color .3s ease;
  }
  .nav.is-stuck { border-bottom-color: var(--color-border); }
  .nav-inner {
    max-width: var(--maxw); margin: 0 auto;
    padding: 18px 32px;
    display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 32px;
  }
  .brand {
    display: inline-flex; align-items: center; gap: 14px;
    text-decoration: none; color: var(--color-black);
  }
  .brand-mark {
    width: 44px; height: 44px; border-radius: 50%;
    background: var(--color-black); color: var(--color-cream);
    display: grid; place-items: center;
    font-family: "Cormorant Garamond", serif; font-size: 18px; font-weight: 500;
    letter-spacing: 0;
    border: 2px solid var(--color-gold);
  }
  .brand-text {
    display: flex; flex-direction: column; line-height: 1;
  }
  .brand-name {
    font-family: "Cormorant Garamond", serif;
    font-size: 22px; font-weight: 500; letter-spacing: 0.04em;
  }
  .brand-tag {
    font-size: 9px; letter-spacing: 0.24em; text-transform: uppercase;
    color: var(--color-muted); margin-top: 4px;
  }
  .nav-links {
    display: flex; gap: 32px; justify-self: center; align-items: center;
  }
  .lang-switch {
    display: flex; gap: 2px; align-items: center;
    font-size: 11px; letter-spacing: 0.1em; font-weight: 500;
    margin-right: 4px;
  }
  .lang-switch a {
    color: var(--color-muted); text-decoration: none;
    padding: 6px 8px; border-radius: 3px;
    display: inline-flex; align-items: center; gap: 5px;
    transition: color .2s ease;
  }
  .lang-switch a.is-active { color: var(--color-black); font-weight: 700; }
  .lang-switch a:hover { color: var(--color-gold); }
  .lang-switch .flag { font-size: 14px; line-height: 1; }
  .lang-switch .sep { color: var(--color-border); padding: 0 1px; }
  .nav-links a {
    color: var(--color-black); text-decoration: none;
    font-size: 11px; font-weight: 500;
    letter-spacing: 0.18em; text-transform: uppercase;
    position: relative;
    padding: 8px 0;
  }
  .nav-links a.is-active::after {
    content: ""; position: absolute; left: 0; right: 0; bottom: 0;
    height: 1px; background: var(--color-gold);
  }
  .nav-links a:hover { color: var(--color-gold); }
  .nav-cta { display: flex; gap: 12px; align-items: center; }
  .nav-phone {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 12px 20px;
    border: 1px solid var(--color-border);
    border-radius: var(--r-pill);
    text-decoration: none; color: var(--color-black);
    font-size: 13px; font-weight: 500;
    background: var(--color-white);
  }
  .nav-phone svg { width: 14px; height: 14px; color: var(--color-gold); }
  .nav-phone:hover { border-color: var(--color-gold); }

  /* ─────────────────── HERO ─────────────────── */
  .hero-wrap {
    max-width: var(--maxw); margin: 0 auto;
    padding: 24px 32px 0;
  }
  .hero {
    position: relative;
    background: var(--color-cream);
    overflow: hidden;
    border-radius: var(--r-md);
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    align-items: stretch;
    min-height: 540px;
  }
  .hero-photo-wrap {
    position: relative;
    overflow: hidden;
    min-height: 540px;
  }
  .hero-photo-wrap {
    background: var(--color-cream);
  }
  .hero-photo {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: contain;
    object-position: center;
  }
  .hero-veil { display: none; }
  .hero-skyline { display: none; }
  .hero-inner {
    position: relative;
    padding: 56px 48px;
    display: flex; flex-direction: column; justify-content: center;
  }
  .hero-text { max-width: 100%; }
  .hero-eyebrow { display: inline-flex; align-items: center; gap: 12px; margin-bottom: 32px; }
  .hero-eyebrow .gold-dot {
    width: 6px; height: 6px; border-radius: 50%; background: var(--color-gold);
    box-shadow: 0 0 0 4px rgba(184,155,104,.18);
  }
  .hero-title {
    font-family: "Cormorant Garamond", serif;
    font-weight: 400;
    font-size: clamp(48px, 6.4vw, 92px);
    line-height: 1.0;
    letter-spacing: -0.012em;
    margin: 0 0 28px;
    color: var(--color-black);
  }
  .hero-title em {
    font-style: italic;
    color: var(--color-gold);
    font-weight: 400;
  }
  .hero-sub {
    color: var(--color-muted);
    font-size: 16px; line-height: 1.65;
    max-width: 44ch;
    margin: 0 0 36px;
  }
  .hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
  .hero-trust {
    display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
    margin-top: 28px;
    font-size: 12.5px; color: var(--color-muted);
  }
  .hero-trust-item { display: inline-flex; align-items: center; gap: 8px; }
  .hero-trust-item b { color: var(--color-black); font-weight: 600; }
  .hero-trust-item .stars { color: var(--color-gold); letter-spacing: 1px; font-size: inherit; line-height: 1; }
  .hero-trust-sep { width: 1px; height: 14px; background: var(--color-border); }

  /* ─────────────────── PRICING ─────────────────── */
  .pricing { background: var(--color-cream); padding: 110px 0; }
  .pricing-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
  .pricing-head .gold-line { display: inline-block; }
  .pricing-h {
    font-family: "Cormorant Garamond", serif;
    font-weight: 400; font-size: clamp(36px, 4vw, 52px);
    line-height: 1.05; margin: 18px 0 18px;
  }
  .pricing-h em { font-style: italic; color: var(--color-gold); font-weight: 400; }
  .pricing-sub { color: var(--color-muted); font-size: 15px; max-width: 50ch; margin: 0 auto; }
  .pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
  .price-card {
    position: relative;
    background: #fff;
    border: 1px solid var(--color-border);
    padding: 32px 24px;
    display: flex; flex-direction: column;
  }
  .price-card-feat {
    background: var(--color-black);
    color: var(--color-cream);
    border-color: var(--color-black);
  }
  .price-tag {
    position: absolute; top: -10px; left: 24px;
    background: var(--color-gold); color: var(--color-black);
    font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 600;
    padding: 5px 10px;
  }
  .price-eyebrow {
    font-family: "Inter", sans-serif;
    font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--color-gold); font-weight: 600; margin-bottom: 10px;
  }
  .price-card-feat .price-eyebrow { color: var(--color-gold); }
  .price-route {
    font-family: "Cormorant Garamond", serif;
    font-size: 24px; line-height: 1.1; margin-bottom: 14px;
  }
  .price-val {
    font-family: "Cormorant Garamond", serif;
    font-size: 38px; font-weight: 400; line-height: 1;
    margin-bottom: 22px;
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 22px;
  }
  .price-card-feat .price-val { border-color: rgba(244,239,232,.18); }
  .price-from {
    font-family: "Inter", sans-serif; font-size: 11px;
    letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--color-muted); font-weight: 500; margin-right: 6px;
    vertical-align: middle;
  }
  .price-card-feat .price-from { color: rgba(244,239,232,.55); }
  .price-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
  .price-list li {
    font-size: 13px; padding-left: 22px; position: relative; line-height: 1.45;
    color: var(--color-muted);
  }
  .price-card-feat .price-list li { color: rgba(244,239,232,.78); }
  .price-list li::before {
    content: ""; position: absolute; left: 0; top: 6px;
    width: 8px; height: 8px;
    border-left: 1.5px solid var(--color-gold);
    border-bottom: 1.5px solid var(--color-gold);
    transform: rotate(-45deg);
  }
  .pricing-foot {
    text-align: center; margin: 48px 0 0;
    font-size: 14px; color: var(--color-muted);
  }
  .pricing-foot a { color: var(--color-black); font-weight: 500; border-bottom: 1px solid var(--color-gold); text-decoration: none; }

  .hero-visual { display: none; }
  .hero-car { display: none; }
  .hero-badge {
    position: absolute;
    right: 24px; bottom: 24px;
    z-index: 3;
    background: rgba(17,16,14,.78);
    color: var(--color-cream);
    padding: 14px 22px;
    border-radius: var(--r-sm);
    border: 1px solid rgba(184,155,104,.45);
    text-align: left;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }
  .hero-badge .lbl { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--color-cream); font-weight: 500; }
  .hero-badge .val { font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; margin-top: 4px; color: rgba(244,239,232,.7); font-weight: 400; }

  /* ─────────────────── PILLARS (flush under hero) ─────────────────── */
  .pillars {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-top: none;
    border-radius: 0 0 var(--r-md) var(--r-md);
    max-width: var(--maxw);
    margin: 0 auto;
    margin-left: 32px;
    margin-right: 32px;
    margin-bottom: 80px;
  }
  @media (min-width: 1384px) {
    .pillars { margin-left: auto; margin-right: auto; }
  }
  .pillars-grid {
    display: grid; grid-template-columns: repeat(5, 1fr);
    gap: 0;
  }
  .pillar {
    padding: 36px 24px;
    text-align: center;
    border-right: 1px solid var(--color-border);
    display: flex; flex-direction: column; align-items: center; gap: 14px;
  }
  .pillar:last-child { border-right: none; }
  .pillar-ico {
    width: 36px; height: 36px;
    color: var(--color-gold);
  }
  .pillar h4 {
    margin: 0;
    font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
    font-weight: 600; color: var(--color-black);
  }
  .pillar p {
    margin: 0;
    font-size: 13px; color: var(--color-muted); line-height: 1.55;
    max-width: 28ch;
  }

  /* ─────────────────── SERVICES (DARK) ─────────────────── */
  .services {
    background: var(--color-black);
    color: var(--color-cream);
    padding: 110px 0;
  }
  .services .section-head { color: var(--color-cream); }
  .services-head {
    display: grid; grid-template-columns: 1fr 1.4fr;
    gap: 64px; align-items: end;
    margin-bottom: 56px;
  }
  .services-head h2 {
    font-family: "Cormorant Garamond", serif;
    font-weight: 400;
    font-size: clamp(36px, 4.8vw, 60px);
    line-height: 1.0; letter-spacing: -0.01em;
    margin: 16px 0 0;
    color: var(--color-cream);
  }
  .services-head h2 em { font-style: italic; color: var(--color-gold); }
  .services-head .right p {
    color: rgba(244,239,232,.72); font-size: 15px; max-width: 52ch; margin: 0 0 24px;
  }
  .services-head .mono-eyebrow { color: var(--color-gold); }
  .services-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }
  .service-card {
    position: relative;
    aspect-ratio: 3/4;
    border-radius: var(--r-md);
    overflow: hidden;
    background: #2a2724;
    border: 1px solid rgba(184,155,104,.18);
    cursor: pointer;
    transition: transform .35s ease;
  }
  .service-card:hover { transform: translateY(-4px); }
  .service-card img {
    position: absolute; inset: 0; width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
  }
  .service-card:hover img { transform: scale(1.04); }
  .service-card .veil {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(17,16,14,0) 30%, rgba(17,16,14,.85) 100%);
  }
  .service-card .body {
    position: absolute; left: 0; right: 0; bottom: 0;
    padding: 24px;
    display: flex; flex-direction: column; gap: 10px;
  }
  .service-card .ico-pin {
    width: 30px; height: 30px;
    border: 1px solid rgba(184,155,104,.55);
    border-radius: 50%;
    display: grid; place-items: center;
    color: var(--color-gold);
  }
  .service-card .ico-pin svg { width: 14px; height: 14px; }
  .service-card h3 {
    margin: 0;
    font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
    font-weight: 600; color: var(--color-cream);
  }
  .service-card .arrow-wrap {
    position: absolute; right: 18px; bottom: 24px;
    width: 32px; height: 32px;
    border-radius: 50%;
    background: var(--color-cream);
    color: var(--color-black);
    display: grid; place-items: center;
    transition: background .25s ease;
  }
  .service-card:hover .arrow-wrap { background: var(--color-gold); }
  .service-card .arrow-wrap .arrow { width: 12px; height: 12px; }

  /* ─────────────────── VEHICLE ─────────────────── */
  .vehicle {
    background: var(--color-cream-light);
    padding: 110px 0 0;
  }

  /* hero véhicule */
  .veh-hero {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 64px;
    align-items: center;
    text-align: left;
    padding-bottom: 72px;
    border-bottom: 1px solid var(--color-border);
  }
  .veh-hero-text { max-width: 720px; margin: 0; }
  .veh-hero .gold-line { display: inline-flex; }
  .veh-actions { justify-content: flex-start; }
  .veh-title {
    font-family: "Cormorant Garamond", serif;
    font-weight: 400;
    font-size: clamp(40px, 5vw, 64px);
    line-height: 1.02;
    letter-spacing: -0.01em;
    margin: 18px 0 22px;
    color: var(--color-black);
  }
  .veh-title em { font-style: italic; color: var(--color-gold); font-weight: 400; }
  .veh-lede {
    color: var(--color-muted); font-size: 15.5px; line-height: 1.65;
    max-width: 44ch; margin: 0 0 28px;
  }
  .veh-actions { display: flex; gap: 12px; flex-wrap: wrap; }

  .veh-hero-photo {
    position: relative;
    aspect-ratio: 4/3;
    background: var(--color-cream-light);
  }
  .veh-hero-photo img {
    position: absolute; inset: 0; width: 100%; height: 100%;
    object-fit: contain;
  }
  .veh-3d {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    border: 0; display: block;
    background: var(--color-cream-light);
  }
  .veh-3d-mask {
    position: absolute;
    left: 0; right: 0;
    height: 48px;
    background: var(--color-cream-light);
    pointer-events: none;
    z-index: 2;
  }
  .veh-3d-mask-top { top: 0; }
  .veh-3d-mask-bottom { bottom: 0; }

  /* features grid (à droite du hero) */
  .veh-features {
    display: grid; grid-template-columns: repeat(2, 1fr);
    gap: 0;
    padding: 0;
  }
  .veh-feat {
    text-align: center; padding: 24px 18px;
    border-right: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
  }
  .veh-feat:nth-child(2n) { border-right: none; }
  .veh-feat:nth-last-child(-n+2) { border-bottom: none; }
  .veh-feat-ico {
    display: inline-flex; align-items: center; justify-content: center;
    width: 40px; height: 40px; color: var(--color-gold);
    margin-bottom: 14px;
  }
  .veh-feat-ico svg { width: 28px; height: 28px; }
  .veh-feat-lbl {
    font-family: "Inter", sans-serif;
    font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
    font-weight: 600; color: var(--color-black);
    margin-bottom: 8px;
  }
  .veh-feat-desc {
    font-size: 12.5px; line-height: 1.5; color: var(--color-muted);
    max-width: 18ch; margin: 0 auto;
  }

  /* galerie 3 photos */
  .veh-gallery {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    padding: 56px 0;
  }
  .veh-gal-item {
    position: relative; aspect-ratio: 4/3;
    background: #1a1817; overflow: hidden;
  }
  .veh-gal-item img {
    position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  }
  .veh-ph {
    background: linear-gradient(180deg, #1f1c19 0%, #131110 100%);
    display: flex; align-items: center; justify-content: center;
  }
  .veh-ph-lbl {
    font-family: "Inter", sans-serif;
    font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
    color: rgba(184,155,104,.55);
  }

  /* bottom : confort + cta */
  .veh-bottom {
    display: grid; grid-template-columns: 1fr 1.1fr;
    gap: 48px; align-items: stretch;
    padding-bottom: 72px;
  }
  .veh-confort { padding-top: 8px; }
  .veh-confort-h {
    font-family: "Cormorant Garamond", serif;
    font-weight: 400; font-size: 36px; line-height: 1.1;
    margin: 14px 0 16px;
  }
  .veh-confort-p {
    color: var(--color-muted); font-size: 14.5px; line-height: 1.65;
    max-width: 50ch; margin: 0 0 24px;
  }
  .veh-bullets {
    list-style: none; padding: 0; margin: 0;
    display: flex; flex-direction: column; gap: 10px;
  }
  .veh-bullets li {
    font-size: 14px; padding-left: 24px; position: relative;
  }
  .veh-bullets li::before {
    content: ""; position: absolute; left: 0; top: 7px;
    width: 12px; height: 12px; border-radius: 50%;
    border: 1px solid var(--color-gold);
    background: radial-gradient(circle, var(--color-gold) 0 3px, transparent 4px);
  }

  .veh-cta {
    position: relative; overflow: hidden;
    background: #000; color: var(--color-cream);
    border-radius: 0; min-height: 380px;
  }
  .veh-cta-img {
    position: absolute;
    top: 50%; right: -4%;
    height: 130%; width: 70%;
    transform: translateY(-50%);
    object-fit: contain;
    object-position: right center;
    filter: brightness(0.9) contrast(1.05);
    z-index: 0;
    pointer-events: none;
  }
  .veh-cta-bg {
    position: absolute; inset: 0;
    background:
      linear-gradient(90deg, #000 0%, #000 22%, rgba(0,0,0,.92) 38%, rgba(0,0,0,.55) 60%, rgba(0,0,0,.15) 85%, transparent 100%),
      radial-gradient(120% 90% at 100% 100%, rgba(184,155,104,.05) 0%, transparent 55%);
    z-index: 1;
  }
  .veh-cta-pill { background: rgba(184,155,104,.18) !important; border: 1px solid rgba(184,155,104,.25); }
  @media (max-width: 760px) {
    .veh-cta-img { width: 100%; right: -10%; opacity: .35; }
    .veh-cta-bg { background: linear-gradient(180deg, rgba(0,0,0,.85) 0%, rgba(0,0,0,.95) 100%); }
  }
  .veh-cta-inner {
    position: relative; z-index: 2;
    padding: 44px 44px 40px;
    max-width: 60%;
  }
  .veh-cta-eyebrow { color: var(--color-gold); display: inline-block; margin-bottom: 18px; }
  .veh-cta-h {
    font-family: "Cormorant Garamond", serif;
    font-weight: 400; font-size: 32px; line-height: 1.15;
    margin: 0 0 28px; color: var(--color-cream);
  }
  .veh-cta-contacts {
    display: flex; flex-direction: column; gap: 14px;
    margin-bottom: 28px;
  }
  .veh-cta-row {
    display: inline-flex; align-items: center; gap: 14px;
    color: var(--color-cream); text-decoration: none;
    font-size: 14px;
  }
  .veh-cta-pill {
    display: inline-flex; align-items: center; justify-content: center;
    width: 32px; height: 32px; border-radius: 50%;
    background: rgba(184,155,104,.15); color: var(--color-gold);
    flex: none;
  }
  .veh-cta-pill svg { width: 14px; height: 14px; }
  .btn-gold {
    background: var(--color-gold); color: var(--color-black);
    border: 1px solid var(--color-gold);
    padding: 14px 22px; display: inline-flex; align-items: center; gap: 10px;
    font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 600;
    text-decoration: none;
  }
  .btn-gold:hover { background: #c8a978; border-color: #c8a978; }

  /* stats footer */
  .veh-stats {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 32px; align-items: center;
    padding: 36px 0;
    border-top: 1px solid var(--color-border);
  }
  .veh-stat-q {
    display: flex; gap: 14px; align-items: flex-start;
    color: var(--color-muted); font-size: 13.5px; line-height: 1.55;
  }
  .veh-q {
    font-family: "Cormorant Garamond", serif;
    font-size: 36px; line-height: 1; color: var(--color-gold);
    flex: none;
  }
  .veh-stat-q p { margin: 0; max-width: 36ch; }
  .veh-stat { text-align: center; }
  .veh-stat-v {
    font-family: "Cormorant Garamond", serif;
    font-weight: 400; font-size: 32px; color: var(--color-black);
    margin-bottom: 4px;
  }
  .veh-stat-l {
    font-family: "Inter", sans-serif;
    font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--color-muted); font-weight: 500;
  }

  /* ─────────────────── ONBOARD ─────────────────── */
  .onboard {
    background: var(--color-cream);
    padding: 110px 0;
    border-top: 1px solid var(--color-border);
  }
  .onboard-head {
    display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
    align-items: end; margin-bottom: 64px;
  }
  .onboard-head h2 {
    font-family: "Cormorant Garamond", serif;
    font-weight: 400;
    font-size: clamp(36px, 4.4vw, 56px);
    line-height: 1.05; letter-spacing: -0.01em;
    margin: 14px 0 0;
    color: var(--color-black);
  }
  .onboard-head h2 em { font-style: italic; color: var(--color-gold); }
  .onboard-head p {
    color: var(--color-muted); font-size: 15px; line-height: 1.65;
    max-width: 44ch; margin: 0;
  }
  .onboard-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-top: 1px solid var(--color-border);
    border-left: 1px solid var(--color-border);
  }
  .onboard-card {
    padding: 40px 32px;
    background: #fff;
    border-right: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    display: flex; flex-direction: column;
    transition: background .25s ease;
  }
  .onboard-card:hover { background: #fcfaf6; }
  .onboard-ico {
    width: 44px; height: 44px;
    color: var(--color-gold);
    margin-bottom: 24px;
  }
  .onboard-ico svg { width: 100%; height: 100%; }
  .onboard-card h4 {
    font-family: "Cormorant Garamond", serif;
    font-weight: 500;
    font-size: 22px;
    margin: 0 0 8px;
    color: var(--color-black);
    letter-spacing: -0.01em;
  }
  .onboard-card p {
    color: var(--color-muted);
    font-size: 14px; line-height: 1.6;
    margin: 0;
  }
  .onboard-card .tag {
    margin-top: auto; padding-top: 18px;
    font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--color-gold); font-weight: 500;
    font-family: "JetBrains Mono", "SF Mono", monospace;
  }

  @media (max-width: 1024px) {
    .onboard-grid { grid-template-columns: repeat(2, 1fr); }
    .onboard-head { grid-template-columns: 1fr; gap: 24px; }
  }
  @media (max-width: 600px) {
    .onboard-grid { grid-template-columns: 1fr; }
  }

  /* ─────────────────── EXPERIENCE (DARK 2) ─────────────────── */
  .experience {
    background: var(--color-black);
    color: var(--color-cream);
    padding: 110px 0;
  }
  .experience-grid {
    display: grid; grid-template-columns: 1fr 2.3fr;
    gap: 64px; align-items: stretch;
  }
  .experience-left h2 {
    font-family: "Cormorant Garamond", serif;
    font-weight: 400;
    font-size: clamp(36px, 4.6vw, 56px);
    line-height: 1.0; letter-spacing: -0.01em;
    margin: 16px 0 20px;
    color: var(--color-cream);
  }
  .experience-left h2 em { font-style: italic; color: var(--color-gold); }
  .experience-left p {
    color: rgba(244,239,232,.72); font-size: 15px; max-width: 36ch; margin: 0 0 32px;
  }
  .experience-cards {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(184,155,104,.14);
    border: 1px solid rgba(184,155,104,.14);
    border-radius: var(--r-md);
    overflow: hidden;
  }
  .exp-card {
    background: var(--color-black);
    padding: 32px 22px;
    display: flex; flex-direction: column; gap: 14px;
    transition: background .25s ease;
  }
  .exp-card:hover { background: var(--color-charcoal); }
  .exp-card-ico {
    width: 36px; height: 36px;
    color: var(--color-gold);
  }
  .exp-card h4 {
    margin: 0;
    font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
    font-weight: 600;
  }
  .exp-card p {
    color: rgba(244,239,232,.6); font-size: 13px; line-height: 1.55; margin: 0;
  }

  /* ─────────────────── TESTIMONIALS ─────────────────── */
  .testimonials {
    background: var(--color-cream-light);
    padding: 110px 0;
  }
  .testimonials-grid {
    display: grid; grid-template-columns: 0.8fr 2.4fr;
    gap: 64px; align-items: start;
  }
  .testimonials-left h2 {
    font-family: "Cormorant Garamond", serif;
    font-weight: 400;
    font-size: clamp(32px, 3.6vw, 44px);
    line-height: 1.05; letter-spacing: -0.01em;
    margin: 16px 0 16px;
  }
  .testimonials-left p {
    color: var(--color-muted); font-size: 14px; max-width: 30ch; margin: 0 0 24px;
  }
  .testimonials-cards {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .testimonial {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--r-md);
    padding: 32px 28px;
    display: flex; flex-direction: column; gap: 16px;
  }
  .testimonial .quote-mark {
    color: var(--color-gold);
    font-family: "Cormorant Garamond", serif;
    font-size: 36px;
    line-height: 0.6;
    font-style: italic;
  }
  .testimonial .body {
    font-size: 14.5px; color: var(--color-black); line-height: 1.55;
    flex: 1;
  }
  .testimonial .stars {
    color: var(--color-gold); font-size: 13px; letter-spacing: 2px;
  }
  .testimonial .author {
    border-top: 1px solid var(--color-border);
    padding-top: 14px;
    display: flex; flex-direction: column; gap: 2px;
  }
  .testimonial .author .n { font-weight: 600; font-size: 13px; }
  .testimonial .author .r { font-size: 12px; color: var(--color-muted); }

  /* ─────────────────── PROCESS ─────────────────── */
  .process {
    background: var(--color-cream-light);
    padding: 0 0 110px;
  }
  .process-head {
    text-align: center;
    border-top: 1px solid var(--color-border);
    padding-top: 64px;
    margin-bottom: 56px;
  }
  .process-head h2 {
    font-family: "Cormorant Garamond", serif;
    font-weight: 400;
    font-size: clamp(28px, 3vw, 38px);
    margin: 16px 0 0;
    letter-spacing: 0.02em;
  }
  .process-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
  .step {
    text-align: center;
    padding: 24px 16px;
    display: flex; flex-direction: column; align-items: center; gap: 14px;
  }
  .step-num {
    font-family: "Cormorant Garamond", serif;
    font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
    color: var(--color-gold);
    font-weight: 500;
  }
  .step-ico {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    display: grid; place-items: center;
    color: var(--color-gold);
  }
  .step-ico svg { width: 22px; height: 22px; }
  .step h4 {
    margin: 0;
    font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
    font-weight: 600;
  }
  .step p {
    margin: 0; font-size: 13px; color: var(--color-muted); max-width: 24ch;
  }

  /* ─────────────────── CONTACT (DARK FOOTER PROPER) ─────────────────── */
  .contact {
    background: var(--color-black);
    color: var(--color-cream);
    padding: 100px 0 0;
  }
  .contact-grid {
    display: grid; grid-template-columns: 0.9fr 1.4fr 1fr;
    gap: 48px; align-items: start;
  }
  .contact-left h2 {
    font-family: "Cormorant Garamond", serif;
    font-weight: 400;
    font-size: clamp(28px, 3vw, 38px);
    line-height: 1.05; margin: 16px 0 24px;
    color: var(--color-cream);
  }
  .contact-left .row {
    display: flex; align-items: center; gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(244,239,232,.1);
    text-decoration: none; color: var(--color-cream);
    font-size: 14px;
  }
  .contact-left .row:last-child { border-bottom: none; }
  .contact-left .row .ico {
    width: 32px; height: 32px;
    border-radius: 50%;
    background: rgba(184,155,104,.14);
    color: var(--color-gold);
    display: grid; place-items: center;
  }
  .contact-left .row .ico svg { width: 14px; height: 14px; }
  .contact-left .row:hover .ico { background: var(--color-gold); color: var(--color-black); }

  .contact-form h3 {
    font-family: "Cormorant Garamond", serif;
    font-weight: 500;
    font-size: 16px; letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--color-gold);
    margin: 0 0 24px;
  }
  .form-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
  }
  .form-grid .full { grid-column: 1 / -1; }
  .input, .select, .textarea {
    width: 100%;
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(244,239,232,.12);
    color: var(--color-cream);
    padding: 12px 14px;
    border-radius: var(--r-sm);
    font-family: inherit; font-size: 13.5px;
    outline: none;
    transition: border-color .2s ease, background .2s ease;
  }
  .input::placeholder, .textarea::placeholder { color: rgba(244,239,232,.36); }
  .input:focus, .select:focus, .textarea:focus { border-color: var(--color-gold); background: rgba(184,155,104,.05); }
  .textarea { resize: vertical; min-height: 80px; }
  .submit-btn {
    grid-column: 1 / -1;
    background: var(--color-gold);
    color: var(--color-black);
    padding: 14px 22px;
    border: none;
    border-radius: var(--r-pill);
    font-family: inherit;
    font-size: 12px; font-weight: 600;
    letter-spacing: 0.14em; text-transform: uppercase;
    cursor: pointer;
    margin-top: 6px;
    transition: background .2s ease;
  }
  .submit-btn:hover { background: var(--color-gold-light); }

  .contact-photo {
    position: relative;
    aspect-ratio: 3/4;
    border-radius: var(--r-md);
    overflow: hidden;
    background: linear-gradient(180deg, #2a2620 0%, #11100E 100%);
  }
  .contact-photo img {
    position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.85;
  }
  .contact-photo .veil {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(17,16,14,.85) 100%);
  }
  .contact-photo .quote {
    position: absolute; left: 24px; right: 24px; bottom: 24px;
    font-family: "Cormorant Garamond", serif;
    font-size: 18px; line-height: 1.3;
    color: var(--color-cream);
    font-style: italic;
  }
  .contact-photo .quote .signature {
    display: block; margin-top: 12px;
    font-style: normal; font-family: "Inter", sans-serif;
    font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
    color: var(--color-gold);
  }

  .contact-bottom {
    margin-top: 80px;
    border-top: 1px solid rgba(244,239,232,.1);
    padding: 24px 0;
    display: flex; justify-content: space-between; align-items: center;
    color: rgba(244,239,232,.4); font-size: 12px;
  }
  .contact-bottom .links { display: flex; gap: 24px; }
  .contact-bottom a { color: rgba(244,239,232,.7); text-decoration: none; }
  .contact-bottom a:hover { color: var(--color-gold); }

  /* ─────────────────── FOOTER ─────────────────── */
  .footer {
    background: var(--color-black);
    color: rgba(244,239,232,.6);
    padding: 72px 0 0;
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 48px;
    padding-bottom: 56px;
    border-bottom: 1px solid rgba(244,239,232,.1);
  }
  .footer-brand-link {
    display: inline-flex; align-items: center; gap: 12px;
    margin-bottom: 18px;
    text-decoration: none; color: var(--color-cream);
  }
  .footer-brand-link .brand-mark {
    width: 40px; height: 40px;
    background: transparent; border: 2px solid var(--color-gold);
    color: var(--color-cream);
    font-size: 16px;
  }
  .footer-brand-name {
    font-family: "Cormorant Garamond", serif;
    font-size: 20px; font-weight: 500; letter-spacing: 0.04em;
    color: var(--color-cream);
  }
  .footer-col p {
    font-size: 13px; line-height: 1.6;
    margin: 0; max-width: 30ch;
    color: rgba(244,239,232,.55);
  }
  .footer-col h4 {
    font-family: "Inter", sans-serif;
    font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
    font-weight: 600; color: var(--color-cream);
    margin: 0 0 22px;
  }
  .footer-col ul { list-style: none; padding: 0; margin: 0; }
  .footer-col li { margin-bottom: 10px; }
  .footer-col a, .footer-col .footer-line {
    display: block;
    color: rgba(244,239,232,.6);
    text-decoration: none;
    font-size: 13px; line-height: 1.7;
    transition: color .2s ease;
  }
  .footer-col a:hover { color: var(--color-gold); }

  .footer-bottom {
    padding: 24px 0;
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 16px;
    color: rgba(244,239,232,.4); font-size: 12px;
  }
  .footer-bottom .links { display: flex; gap: 24px; }
  .footer-bottom a { color: rgba(244,239,232,.7); text-decoration: none; }
  .footer-bottom a:hover { color: var(--color-gold); }

  /* WhatsApp FAB */
  .wa-fab {
    position: fixed; right: 24px; bottom: 24px; z-index: 60;
    background: #25D366; color: #073d20;
    height: 52px; padding: 0 22px 0 18px;
    border-radius: 999px;
    display: inline-flex; align-items: center; gap: 10px;
    text-decoration: none;
    font-weight: 600; font-size: 13px;
    box-shadow: 0 14px 40px -14px rgba(37,211,102,.55);
    transition: transform .2s ease;
  }
  .wa-fab:hover { transform: translateY(-2px); }
  .wa-fab svg { width: 20px; height: 20px; }

  /* ─────────────────── RESPONSIVE ─────────────────── */
  @media (max-width: 1100px) {
    .nav-phone { display: none; }
    .pillars-grid { grid-template-columns: repeat(3, 1fr); }
    .pricing-grid { grid-template-columns: repeat(2, 1fr); }
    .pillar:nth-child(3) { border-right: none; }
    .pillar:nth-child(4), .pillar:nth-child(5) { border-top: 1px solid var(--color-border); }
    .pillar:nth-child(4) { border-right: 1px solid var(--color-border); }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .experience-cards { grid-template-columns: repeat(2, 1fr); }
    .testimonials-cards { grid-template-columns: 1fr; }
    .veh-hero { grid-template-columns: 1fr; gap: 40px; }
    .veh-features { grid-template-columns: repeat(3, 1fr); padding-top: 8px; }
    .veh-features .veh-feat { border-right: 1px solid var(--color-border); border-bottom: none; }
    .veh-features .veh-feat:nth-child(2n) { border-right: 1px solid var(--color-border); }
    .veh-features .veh-feat:nth-child(3n) { border-right: none; }
    .veh-features .veh-feat:nth-last-child(-n+2) { border-bottom: none; }
    .veh-features .veh-feat:nth-child(n+4) { border-top: 1px solid var(--color-border); padding-top: 32px; margin-top: 0; }
    .veh-stats { grid-template-columns: 1fr 1fr 1fr; }
    .veh-stat-q { grid-column: 1 / -1; }
  }

  @media (max-width: 1024px) {
    .nav-links { display: none; }
    .nav-inner { grid-template-columns: 1fr auto; gap: 16px; }
    .brand-tag { display: none; }
  }

  @media (max-width: 760px) {
    .nav-links { display: none; }
    .nav-inner { grid-template-columns: 1fr auto; gap: 16px; }
    .nav-cta .nav-phone { display: none; }
    .pricing-grid { grid-template-columns: 1fr; }
    .hero-trust { gap: 10px; }
    .hero-trust-sep { display: none; }
    .hero { grid-template-columns: 1fr; min-height: auto; }
    .hero-photo-wrap { min-height: 320px; }
    .hero-inner { padding: 40px 28px; }
    .hero-inner { grid-template-columns: 1fr; padding: 60px 24px 80px; min-height: auto; }
    .hero-visual { min-height: 320px; }
    .pillars-grid { grid-template-columns: 1fr 1fr; }
    .pillar { border-right: 1px solid var(--color-border); }
    .pillar:nth-child(2n) { border-right: none; }
    .pillar:nth-child(n+3) { border-top: 1px solid var(--color-border); }
    .services-head, .experience-grid, .testimonials-grid, .contact-grid { grid-template-columns: 1fr; gap: 32px; }
    .services-grid, .experience-cards { grid-template-columns: 1fr; }
    .process-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .veh-hero { grid-template-columns: 1fr; gap: 32px; padding-bottom: 48px; }
    .veh-features { grid-template-columns: repeat(2, 1fr); padding: 16px 0 0; }
    .veh-features .veh-feat { border-right: none; padding: 20px 12px; border-bottom: 1px solid var(--color-border); border-top: none; }
    .veh-features .veh-feat:nth-child(odd) { border-right: 1px solid var(--color-border); }
    .veh-features .veh-feat:nth-last-child(-n+2) { border-bottom: none; }
    .veh-gallery { grid-template-columns: 1fr; padding: 36px 0; }
    .veh-bottom { grid-template-columns: 1fr; gap: 32px; padding-bottom: 48px; }
    .veh-cta-inner { max-width: 100%; padding: 32px 28px; }
    .veh-stats { grid-template-columns: 1fr 1fr; gap: 24px; }
    .veh-stat-q { grid-column: 1 / -1; }
    .form-grid { grid-template-columns: 1fr; }
    .contact-bottom { flex-direction: column; gap: 12px; align-items: flex-start; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
    .footer-bottom { flex-direction: column; align-items: flex-start; gap: 14px; }
  }

/* ─── Agency watermark ─── */
.aeom-watermark {
  font-size: 12px;
  color: rgba(244,239,232,.5);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color .2s ease;
}
.aeom-watermark strong { color: rgba(244,239,232,.85); font-weight: 600; transition: color .2s ease; }
.aeom-watermark:hover, .aeom-watermark:hover strong { color: var(--color-gold); }

/* ─── Legal / static text pages ─── */
.legal-wrap { background: var(--color-cream-light); padding: 80px 0 110px; }
.legal-head { text-align: center; max-width: 760px; margin: 0 auto 56px; padding: 0 24px; }
.legal-head .gold-line { display: inline-block; }
.legal-head h1 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 400; font-size: clamp(36px, 4.4vw, 56px);
  line-height: 1.05; letter-spacing: -0.01em;
  margin: 16px 0 14px;
}
.legal-head h1 em { font-style: italic; color: var(--color-gold); }
.legal-head p { color: var(--color-muted); font-size: 15px; max-width: 56ch; margin: 0 auto; }
.legal-body {
  max-width: 780px; margin: 0 auto; padding: 0 24px;
  background: #fff; padding: 56px 64px;
  border: 1px solid var(--color-border);
  border-radius: var(--r-md);
}
.legal-body h2 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500; font-size: 26px;
  margin: 40px 0 14px; letter-spacing: -0.005em;
  color: var(--color-black);
}
.legal-body h2:first-child { margin-top: 0; }
.legal-body h3 {
  font-family: "Inter", sans-serif;
  font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--color-gold); font-weight: 600;
  margin: 28px 0 10px;
}
.legal-body p, .legal-body li {
  color: #2c2a26; font-size: 14.5px; line-height: 1.7;
}
.legal-body p { margin: 0 0 14px; }
.legal-body ul { padding-left: 22px; margin: 0 0 14px; }
.legal-body li { margin-bottom: 6px; }
.legal-body a { color: var(--color-black); border-bottom: 1px solid var(--color-gold); text-decoration: none; }
.legal-body a:hover { color: var(--color-gold); }
.legal-body strong { color: var(--color-black); font-weight: 600; }
.legal-body .muted { color: var(--color-muted); font-size: 13px; font-style: italic; }
.legal-body .updated { font-size: 12.5px; color: var(--color-muted); letter-spacing: 0.04em; margin-bottom: 32px; padding-bottom: 24px; border-bottom: 1px solid var(--color-border); }
@media (max-width: 760px) { .legal-body { padding: 36px 24px; } .legal-wrap { padding: 60px 0 80px; } }
