  :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 { position: relative; }
  .lang-switch summary {
    list-style: none; cursor: pointer; user-select: none;
    display: inline-flex; align-items: center; gap: 7px;
    color: var(--color-black);
    font-size: 11px; font-weight: 500;
    letter-spacing: 0.18em; text-transform: uppercase;
    padding: 8px 0;
    transition: color .2s ease;
  }
  .lang-switch summary::-webkit-details-marker { display: none; }
  .lang-switch summary:hover,
  .lang-switch[open] summary { color: var(--color-gold); }
  .lang-switch .flag, .lang-menu .flag {
    display: inline-block; flex: none; object-fit: cover;
    border-radius: 2px; box-shadow: 0 0 0 1px rgba(17, 16, 14, 0.10);
  }
  .lang-switch .flag { width: 21px; height: 14px; }
  .lang-menu .flag { width: 23px; height: 16px; }
  .lang-switch .lang-chev {
    width: 9px; height: 9px; stroke: currentColor;
    opacity: .5; transition: transform .25s ease, opacity .2s ease;
  }
  .lang-switch summary:hover .lang-chev,
  .lang-switch[open] .lang-chev { opacity: 1; }
  .lang-switch[open] .lang-chev { transform: rotate(180deg); }
  .lang-menu {
    position: absolute; top: calc(100% + 16px); right: 0;
    min-width: 156px;
    display: flex; flex-direction: column;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--r-sm);
    box-shadow: 0 12px 32px -18px rgba(17, 16, 14, 0.28);
    padding: 7px 0; z-index: 60;
  }
  .lang-menu a {
    display: flex; align-items: center; gap: 11px;
    color: var(--color-muted); text-decoration: none;
    padding: 10px 22px;
    border-left: 2px solid transparent;
    font-size: 11px; font-weight: 500;
    letter-spacing: 0.16em; text-transform: uppercase;
    transition: color .18s ease, background .18s ease, border-color .18s ease;
  }
  .lang-menu a:hover { color: var(--color-gold); background: var(--color-cream-light); }
  .lang-menu a.is-active {
    color: var(--color-black); border-left-color: var(--color-gold);
  }
  .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; justify-content: center;
    box-sizing: border-box;
    width: 48px; height: 48px; padding: 0; flex: none;
    border: 1px solid var(--color-border);
    border-radius: 50%;
    text-decoration: none; color: var(--color-black);
    background: var(--color-white);
    transition: border-color .2s ease, background .2s ease;
  }
  .nav-phone svg { width: 18px; height: 18px; color: var(--color-gold); }
  .nav-phone:hover { border-color: var(--color-gold); background: var(--color-cream-light); }

  /* ─────────────────── 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); }

  /* ─────────────────── TYPEFORM-STYLE RESERVATION ─────────────────── */
  .tf {
    background: var(--color-black); color: var(--color-cream);
    padding: clamp(64px, 8vw, 112px) 0;
    position: relative; overflow: hidden;
  }
  .tf-progress {
    position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: rgba(244, 239, 232, 0.08);
  }
  .tf-progress span {
    display: block; height: 100%; width: 0;
    background: var(--color-gold);
    transition: width .45s cubic-bezier(.4, 0, .2, 1);
  }
  .tf-inner { max-width: 760px; margin: 0 auto; padding: 0 32px; }
  .tf-eyebrow { color: var(--color-gold); display: inline-flex; margin-bottom: 26px; }
  .tf-counter {
    display: block; font-size: 11px; letter-spacing: 0.2em;
    text-transform: uppercase; color: var(--color-gold);
    margin-bottom: 16px; min-height: 14px;
  }
  .tf-form { position: relative; min-height: 320px; }
  .tf-step {
    position: absolute; left: 0; right: 0; top: 0;
    opacity: 0; transform: translateY(16px); pointer-events: none;
    transition: opacity .35s ease, transform .35s ease;
  }
  .tf-step.is-active {
    position: relative; opacity: 1; transform: none; pointer-events: auto;
  }
  .tf-q {
    display: block; font-family: "Cormorant Garamond", serif;
    font-weight: 400; font-size: clamp(26px, 3.6vw, 44px);
    line-height: 1.12; color: var(--color-cream); margin: 0 0 26px;
  }
  .tf-input {
    width: 100%; background: transparent; border: none;
    border-bottom: 1px solid rgba(244, 239, 232, 0.22);
    color: var(--color-cream); font-family: inherit;
    font-size: clamp(18px, 2vw, 23px); padding: 12px 2px;
    outline: none; transition: border-color .2s ease;
  }
  .tf-input::placeholder { color: rgba(244, 239, 232, 0.30); }
  .tf-input:focus { border-bottom-color: var(--color-gold); }
  .tf-input[type="date"], .tf-input[type="time"] { color-scheme: dark; }
  .tf-textarea {
    resize: vertical; min-height: 92px;
    border: 1px solid rgba(244, 239, 232, 0.18);
    border-radius: var(--r-sm); padding: 14px; font-size: 17px;
  }
  .tf-grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 22px; }
  .tf-grid2 .tf-full { grid-column: 1 / -1; }
  .tf-choices { display: flex; flex-direction: column; gap: 12px; }
  .tf-choice {
    display: flex; align-items: center; gap: 14px;
    border: 1px solid rgba(244, 239, 232, 0.18);
    border-radius: var(--r-md); padding: 16px 20px;
    cursor: pointer; font-size: 16px;
    transition: border-color .18s ease, background .18s ease;
  }
  .tf-choice:hover { border-color: rgba(184, 155, 104, 0.55); }
  .tf-choice input { position: absolute; opacity: 0; pointer-events: none; }
  .tf-choice .tf-key {
    width: 26px; height: 26px; flex: none;
    border: 1px solid rgba(244, 239, 232, 0.30);
    border-radius: var(--r-sm); display: grid; place-items: center;
    font-size: 12px; color: rgba(244, 239, 232, 0.6);
  }
  .tf-choice:has(input:checked) {
    border-color: var(--color-gold); background: rgba(184, 155, 104, 0.10);
  }
  .tf-choice:has(input:checked) .tf-key {
    background: var(--color-gold); color: var(--color-black);
    border-color: var(--color-gold);
  }
  .tf-controls {
    display: flex; align-items: center; gap: 16px;
    margin-top: 36px; flex-wrap: wrap;
  }
  .tf-ok {
    background: var(--color-gold); color: var(--color-black);
    border: none; border-radius: var(--r-pill);
    padding: 15px 32px; font-family: "Inter", sans-serif;
    font-size: 12px; font-weight: 600; letter-spacing: 0.14em;
    text-transform: uppercase; cursor: pointer;
    transition: background .2s ease, transform .2s ease;
  }
  .tf-ok:hover { background: var(--color-gold-light); transform: translateY(-1px); }
  .tf-ok[disabled] { opacity: .55; cursor: default; transform: none; }
  .tf-back {
    background: transparent; color: var(--color-cream);
    border: 1px solid rgba(244, 239, 232, 0.28);
    border-radius: var(--r-pill); padding: 14px 24px;
    font-family: "Inter", sans-serif; font-size: 12px; font-weight: 500;
    letter-spacing: 0.12em; text-transform: uppercase; cursor: pointer;
    transition: border-color .2s ease, color .2s ease;
  }
  .tf-back:hover { border-color: var(--color-gold); color: var(--color-gold); }
  .tf-hint { font-size: 12px; color: rgba(244, 239, 232, 0.42); }
  .tf-hint b { color: rgba(244, 239, 232, 0.72); font-weight: 600; }
  .tf-errmsg {
    color: #E0908A; font-size: 13px; margin-top: 12px; display: none;
  }
  .tf-step.tf-invalid .tf-input { border-bottom-color: #E0908A; }
  .tf-step.tf-invalid .tf-errmsg { display: block; }
  .tf-hp {
    position: absolute !important; left: -9999px;
    width: 1px; height: 1px; opacity: 0;
  }
  .tf-done, .tf-error { display: none; }
  .tf-done.is-on, .tf-error.is-on { display: block; }
  .tf-done-ic {
    width: 56px; height: 56px; border-radius: 50%;
    border: 1px solid var(--color-gold); color: var(--color-gold);
    display: grid; place-items: center; font-size: 24px; margin-bottom: 22px;
  }
  .tf-done h3 {
    font-family: "Cormorant Garamond", serif; font-weight: 400;
    font-size: clamp(28px, 3.6vw, 44px); margin: 0 0 12px;
    color: var(--color-cream);
  }
  .tf-done p, .tf-error p { color: rgba(244, 239, 232, 0.7); font-size: 16px; }
  .tf-error a { color: var(--color-gold); }
  @media (max-width: 760px) {
    .tf-grid2 { grid-template-columns: 1fr; }
    .tf-controls { gap: 12px; }
    .tf-ok, .tf-back { padding: 13px 22px; }
  }

  /* ─────────────────── RESERVATION MODAL ─────────────────── */
  .tf-modal { position: fixed; inset: 0; z-index: 200; display: none; }
  .tf-modal.is-open { display: flex; align-items: flex-start; justify-content: center; }
  @media (min-width: 760px) { .tf-modal.is-open { align-items: center; } }
  .tf-modal-backdrop {
    position: absolute; inset: 0;
    background: rgba(10, 9, 8, 0.62);
    -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
    animation: tf-fade .25s ease;
  }
  .tf-modal-dialog {
    position: relative; z-index: 1; margin: auto;
    width: min(680px, calc(100vw - 36px));
    max-height: calc(100vh - 64px); overflow-y: auto;
    background: var(--color-black); color: var(--color-cream);
    border: 1px solid rgba(184, 155, 104, 0.28);
    border-radius: var(--r-lg);
    box-shadow: 0 40px 90px -28px rgba(0, 0, 0, 0.7);
    animation: tf-pop .3s cubic-bezier(.4, 0, .2, 1);
  }
  .tf-modal .tf-progress { border-radius: var(--r-lg) var(--r-lg) 0 0; }
  .tf-modal-body { padding: clamp(30px, 4.4vw, 56px); }
  .tf-modal .tf-form { min-height: 300px; }
  .tf-modal .tf-eyebrow { margin-bottom: 22px; }
  .tf-modal-x {
    position: absolute; top: 14px; right: 16px; z-index: 2;
    width: 38px; height: 38px; border-radius: 50%;
    background: rgba(244, 239, 232, 0.06); color: var(--color-cream);
    border: 1px solid rgba(244, 239, 232, 0.16);
    font-size: 19px; line-height: 1; cursor: pointer;
    display: grid; place-items: center;
    transition: background .2s ease, color .2s ease, border-color .2s ease;
  }
  .tf-modal-x:hover {
    background: var(--color-gold); color: var(--color-black);
    border-color: var(--color-gold);
  }
  @keyframes tf-fade { from { opacity: 0; } to { opacity: 1; } }
  @keyframes tf-pop {
    from { opacity: 0; transform: translateY(16px) scale(.98); }
    to { opacity: 1; transform: none; }
  }
  @media (prefers-reduced-motion: reduce) {
    .tf-modal-backdrop, .tf-modal-dialog { animation: none; }
  }

  .contact-cta {
    display: flex; flex-direction: column;
    justify-content: center; gap: 18px;
  }
  .contact-cta h3 {
    font-family: "Cormorant Garamond", serif; font-weight: 400;
    font-size: clamp(24px, 2.6vw, 34px); line-height: 1.1;
    color: var(--color-cream); margin: 0;
  }
  .contact-cta p { color: rgba(244, 239, 232, 0.6); font-size: 14px; margin: 0; }
  .contact-cta .submit-btn { align-self: flex-start; margin-top: 4px; }

  .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; } }

/* ═══════════════════ TRIP CALCULATOR ═══════════════════ */
.calc{
  background:var(--color-black); color:var(--color-cream);
  padding:clamp(64px,8vw,110px) 0;
}
.calc-inner{ max-width:760px; margin:0 auto; padding:0 32px; text-align:center; }
.calc-eyebrow{
  font-size:11px; letter-spacing:.28em; text-transform:uppercase;
  color:var(--color-gold);
}
.calc-h{
  font-family:"Cormorant Garamond",serif; font-weight:400;
  font-size:clamp(28px,4vw,46px); line-height:1.1;
  margin:14px 0 10px; color:var(--color-cream);
}
.calc-sub{ color:rgba(244,239,232,.6); font-size:15px; margin:0 auto 38px; max-width:46ch; }
.calc-fields{ display:grid; grid-template-columns:1fr 1fr; gap:20px 24px; text-align:left; }
.calc-field label{
  display:block; font-size:11px; letter-spacing:.2em; text-transform:uppercase;
  color:var(--color-gold); margin-bottom:9px;
}
.calc-input{
  width:100%; background:transparent; border:none;
  border-bottom:1px solid rgba(244,239,232,.24);
  color:var(--color-cream); font-family:inherit; font-size:17px;
  padding:12px 2px; outline:none; transition:border-color .2s ease;
}
.calc-input::placeholder{ color:rgba(244,239,232,.28); }
.calc-input:focus{ border-bottom-color:var(--color-gold); }
.calc-field{ position:relative; }
.calc-field.busy::after{
  content:""; position:absolute; right:4px; bottom:16px;
  width:14px; height:14px; border-radius:50%;
  border:2px solid rgba(244,239,232,.22); border-top-color:var(--color-gold);
  animation:calc-spin .7s linear infinite;
}
@keyframes calc-spin{ to{ transform:rotate(360deg); } }
.calc-sug{
  position:absolute; left:0; right:0; top:calc(100% + 6px);
  background:var(--color-charcoal);
  border:1px solid rgba(244,239,232,.16); border-radius:var(--r-md);
  box-shadow:0 22px 48px -18px rgba(0,0,0,.7);
  z-index:40; max-height:262px; overflow-y:auto; display:none;
  text-align:left;
}
.calc-sug.is-on{ display:block; }
.calc-sug-item{
  padding:12px 16px; cursor:pointer; font-size:14px; line-height:1.3;
  color:var(--color-cream);
  border-bottom:1px solid rgba(244,239,232,.06);
}
.calc-sug-item:last-child{ border-bottom:none; }
.calc-sug-item small{
  display:block; margin-top:3px; font-size:12px;
  color:rgba(244,239,232,.45);
}
.calc-sug-item:hover, .calc-sug-item.act{ background:rgba(184,155,104,.16); }
.calc-route{
  font-size:13px; color:rgba(244,239,232,.58);
  margin-bottom:20px; letter-spacing:.02em;
}
.calc-route b{ color:var(--color-cream); font-weight:500; }
.calc-route .sep{ color:var(--color-gold); margin:0 8px; }
.calc-opts{
  display:inline-flex; align-items:center; gap:10px;
  margin:26px auto 0; font-size:14px; color:rgba(244,239,232,.78);
  cursor:pointer; user-select:none;
}
.calc-opts input{ width:16px; height:16px; accent-color:var(--color-gold); cursor:pointer; }
.calc-btn{
  margin-top:30px;
  background:var(--color-gold); color:var(--color-black);
  border:none; border-radius:var(--r-pill); cursor:pointer;
  font-family:"Inter",sans-serif; font-weight:600;
  font-size:12px; letter-spacing:.16em; text-transform:uppercase;
  padding:16px 40px; transition:background .2s ease, transform .2s ease;
}
.calc-btn:hover{ background:var(--color-gold-light); transform:translateY(-1px); }
.calc.loading .calc-btn{ opacity:.6; pointer-events:none; }
.calc-msg{ min-height:18px; margin-top:18px; font-size:13px; color:#E0908A; }
.calc-result{ display:none; margin-top:42px; border-top:1px solid rgba(244,239,232,.12); padding-top:36px; }
.calc-result.is-on{ display:block; }
.calc-dist{
  font-size:13px; letter-spacing:.18em; text-transform:uppercase;
  color:rgba(244,239,232,.6);
}
.calc-plabel{
  margin-top:18px; font-size:11px; letter-spacing:.22em;
  text-transform:uppercase; color:var(--color-gold);
}
.calc-price{
  font-family:"Cormorant Garamond",serif; font-weight:500;
  font-size:clamp(42px,7vw,76px); line-height:1.05;
  color:var(--color-gold); margin:8px 0 6px;
}
.calc-note{ font-size:12.5px; color:rgba(244,239,232,.45); }
.calc-cta{ margin-top:26px; }
@media (max-width:600px){
  .calc-inner{ padding:0 18px; }
  .calc-fields{ grid-template-columns:1fr; gap:18px; }
}

/* ═══════════════════ RESPONSIVE — PHONES ═══════════════════ */
/* Global: never let a long word or element force horizontal scroll. */
html, body { overflow-x: hidden; max-width: 100%; }
h1, h2, h3, h4,
.hero-title, .veh-title, .veh-cta-h, .tf-q,
.services-head h2, .testimonials-left h2, .onboard-head h2,
.experience-left h2, .pricing-head h2, .contact-left h2, .legal-head h1 {
  overflow-wrap: break-word; word-break: break-word;
}

@media (max-width: 600px) {
  /* Tighter gutters give content more room */
  .wrap { padding-left: 18px; padding-right: 18px; }

  /* Nav fits brand + language + Réserver on one line */
  .nav-inner { padding: 14px 18px; gap: 12px; }
  .brand-mark { width: 38px; height: 38px; font-size: 15px; }
  .brand-name { font-size: 17px; letter-spacing: 0.03em; }
  .nav-cta { gap: 10px; }
  .nav .btn-primary { padding: 12px 16px; font-size: 10.5px; gap: 7px; }
  .lang-switch summary { font-size: 10.5px; letter-spacing: 0.12em; }

  /* Hero — scale the oversized title so it can't overflow */
  .hero-title { font-size: clamp(30px, 8.6vw, 42px); line-height: 1.08; }
  .hero-sub { font-size: 14.5px; }
  .hero-inner { padding: 44px 18px 60px; }
  .hero-eyebrow { margin-bottom: 22px; }
  .hero-trust { gap: 8px 14px; font-size: 12px; }

  /* Stack and full-width every button group */
  .hero-actions, .veh-actions { flex-direction: column; align-items: stretch; gap: 12px; }
  .hero-actions .btn, .veh-actions .btn { width: 100%; justify-content: center; }

  /* Large section headings */
  .veh-title { font-size: clamp(30px, 8vw, 42px); }
  .veh-cta-h { font-size: 26px; }
  .veh-cta-inner { max-width: 100%; padding: 32px 22px; }
  .services-head h2, .testimonials-left h2, .onboard-head h2,
  .experience-left h2, .pricing-head h2 { font-size: clamp(28px, 7.6vw, 40px); }

  /* Grids that were still multi-column on phones */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px 24px; }
  .veh-stats { grid-template-columns: 1fr 1fr; gap: 24px; }
  .veh-features { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .contact-grid { gap: 28px; }
  .contact-cta .submit-btn { align-self: stretch; text-align: center; }

  /* Reservation modal comfy on small screens */
  .tf-modal-body { padding: 30px 20px; }
  .tf-modal-dialog { width: calc(100vw - 24px); max-height: calc(100vh - 40px); }
  .tf-q { font-size: clamp(22px, 6.6vw, 30px); }
}

@media (max-width: 380px) {
  .brand-name { font-size: 15px; }
  .nav .btn-primary { padding: 11px 13px; letter-spacing: 0.08em; }
  .hero-title { font-size: 30px; }
}

/* ─────────────── MOBILE NAV DRAWER (hamburger) ─────────────── */
.nav-burger { display: none; }
.nav-drawer { display: none; }
@media (max-width: 1024px) {
  .nav-links { display: none !important; }
  .nav-cta { display: none !important; }
  .nav-inner { grid-template-columns: 1fr auto !important; }
  .nav-burger {
    display: inline-flex; flex-direction: column;
    justify-content: center; gap: 5px;
    width: 44px; height: 44px; padding: 0;
    background: transparent; border: none; cursor: pointer;
  }
  .nav-burger span {
    display: block; width: 24px; height: 2px; margin: 0 auto;
    background: var(--color-black); border-radius: 2px;
    transition: transform .25s ease, opacity .2s ease;
  }
  .nav-burger.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-burger.is-active span:nth-child(2) { opacity: 0; }
  .nav-burger.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .nav-drawer { display: block; position: fixed; inset: 0; z-index: 150; }
  .nav-drawer-backdrop {
    position: absolute; inset: 0;
    background: rgba(10, 9, 8, 0.55);
    opacity: 0; pointer-events: none; transition: opacity .3s ease;
  }
  .nav-drawer-panel {
    position: absolute; top: 0; right: 0; height: 100%;
    width: min(340px, 84vw);
    background: var(--color-black); color: var(--color-cream);
    box-shadow: -24px 0 60px -20px rgba(0, 0, 0, 0.6);
    padding: 96px 32px 40px;
    display: flex; flex-direction: column; gap: 14px;
    overflow-y: auto;
    transform: translateX(100%); transition: transform .32s cubic-bezier(.4, 0, .2, 1);
  }
  .nav-drawer.is-open { display: block; }
  .nav-drawer.is-open .nav-drawer-backdrop { opacity: 1; pointer-events: auto; }
  .nav-drawer.is-open .nav-drawer-panel { transform: none; }

  .nav-drawer-links { display: flex; flex-direction: column; }
  .nav-drawer-links a {
    color: var(--color-cream); text-decoration: none;
    font-size: 13px; font-weight: 500;
    letter-spacing: 0.18em; text-transform: uppercase;
    padding: 16px 0; border-bottom: 1px solid rgba(244, 239, 232, 0.10);
    transition: color .18s ease;
  }
  .nav-drawer-links a:hover,
  .nav-drawer-links a.is-active { color: var(--color-gold); }

  .nav-drawer-cta {
    display: flex; flex-direction: column; gap: 16px; margin-top: 22px;
  }
  .nav-drawer-cta .nav-phone { display: none; }
  .nav-drawer-cta .btn {
    width: 100%; justify-content: center;
    background: var(--color-gold); color: var(--color-black);
    border-color: var(--color-gold); padding: 16px 22px;
  }
  .nav-drawer .lang-switch { position: static; }
  .nav-drawer .lang-switch summary {
    color: var(--color-cream); padding: 8px 0;
    justify-content: flex-start;
  }
  .nav-drawer .lang-switch summary:hover,
  .nav-drawer .lang-switch[open] summary { color: var(--color-gold); }
  .nav-drawer .lang-menu {
    position: static; min-width: 0; margin-top: 8px;
    background: transparent; border: none; box-shadow: none; padding: 0;
  }
  .nav-drawer .lang-menu a { color: rgba(244, 239, 232, 0.7); padding: 10px 0; }
  .nav-drawer .lang-menu a.is-active { color: var(--color-gold); }
}
