

/* ============================================================
   LUX TRAVELY — Landing styles
   Brand: champagne gold #b4a886 + charcoal #3b3b3b
   Clean, modern, premium (perk.com-inspired)
   ============================================================ */

/* Display + UI fonts: Montserrat (display) + Inter (UI/body), self-hosted */
@font-face { font-display: swap; font-family: "Inter"; font-style: normal; font-weight: 300 700; src: url("/static/web/assets/fonts/inter-latin.woff2") format("woff2"); }

:root {
  --serif: "Montserrat", system-ui, sans-serif;
  /* Brand */
  --gold: #b4a886;
  --gold-600: #9b8e69;
  --gold-700: #847953;
  --gold-300: #cfc6ac;
  --gold-100: #ece7da;
  --gold-tint: #f5f2ea;

  /* Neutrals */
  --ink: #3b3b3b;
  --black: #1b1a18;
  --white: #ffffff;
  --cream: #f4f2ea;        /* perk-style warm page base */
  --cream-2: #efece2;
  --paper: #faf9f6;
  --paper-2: #f3f1ec;
  --line: #e8e4db;
  --line-2: #ddd8cc;
  --muted: #706d65;        /* WCAG AA: was #8c887e (~3.2:1 on cream); darkened to ~4.6:1 keeping the warm-gray hue */
  --muted-2: #b6b1a6;

  /* Type */
  --display: "Montserrat", system-ui, sans-serif;
  --text: "Inter", system-ui, -apple-system, sans-serif;

  /* Radius */
  --r-xs: 8px;
  --r-sm: 12px;
  --r-md: 16px;
  --r-lg: 22px;
  --r-xl: 30px;

  /* Shadow */
  --sh-sm: 0 1px 2px rgba(27,26,24,.05), 0 1px 3px rgba(27,26,24,.04);
  --sh-md: 0 4px 14px rgba(27,26,24,.06), 0 2px 6px rgba(27,26,24,.04);
  --sh-lg: 0 24px 60px -18px rgba(27,26,24,.22), 0 8px 24px -12px rgba(27,26,24,.12);
  --sh-gold: 0 14px 34px -10px rgba(155,142,105,.5);

  --maxw: 1240px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

* { box-sizing: border-box; }
html { -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; scroll-behavior: smooth; overflow-anchor: none; }
@keyframes lt-appear { from { opacity: 0; } to { opacity: 1; } }
#root { animation: lt-appear .6s ease both; }
@media (prefers-reduced-motion: reduce) { #root { animation: none; } }
body {
  margin: 0;
  font-family: var(--text);
  color: var(--black);
  /* dark page base so the iOS status bar / overscroll area reads dark (matches the
     hero + theme-color). The only cream expanse — the footer separation band —
     sets its own background, so nothing visible in the content changes. */
  background: #0c0c0b;
  line-height: 1.55;
  font-size: 16px;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; color: inherit; cursor: pointer; border: none; background: none; }  /* else some mobile browsers paint button text link-blue */
input { font-family: inherit; }
::selection { background: var(--gold-300); color: var(--black); }

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

/* Type helpers */
h1,h2,h3,h4 { font-family: var(--display); font-weight: 700; letter-spacing: -.02em; line-height: 1.05; margin: 0; color: var(--black); }
.eyebrow {
  font-family: var(--text);
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold-700);
  display: inline-flex;
  align-items: center;
  gap: 9px;
  white-space: nowrap;
}
.eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }
.lead { font-size: 18px; color: var(--ink); line-height: 1.6; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--text); font-weight: 700; font-size: 15px;
  border-radius: 999px; padding: 0 24px; height: 50px;
  transition: transform .18s var(--ease), box-shadow .25s var(--ease), background .2s, color .2s;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-gold {
  background: linear-gradient(180deg, var(--gold) 0%, var(--gold-600) 100%);
  color: #2a2618; box-shadow: var(--sh-gold);
}
.btn-gold:hover { box-shadow: 0 18px 40px -10px rgba(155,142,105,.62); transform: translateY(-1px); }
.btn-dark { background: var(--black); color: #fff; }
.btn-dark:hover { background: #322f2a; transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--black); border: 1.5px solid var(--line-2); }
.btn-ghost:hover { border-color: var(--ink); background: var(--paper); }
.btn-lg { height: 58px; font-size: 16px; padding: 0 30px; }
.btn svg { width: 18px; height: 18px; }

/* Logo */
.logo svg { display: block; height: 26px; width: auto; }
.logo .lt-mark { fill: var(--gold); }
.logo .lt-word { fill: var(--black); }
.logo.on-dark .lt-word { fill: #fff; }
.logo.all-gold .lt-mark, .logo.all-gold .lt-word { fill: var(--gold); }

/* ============================================================ HEADER */
.header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(244,242,234,.82);
  backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s, background .3s;
}
.header.scrolled { border-bottom-color: var(--line); box-shadow: 0 1px 0 rgba(0,0,0,.02); }
.header__inner { display: flex; align-items: center; gap: 32px; height: 78px; }
.nav { display: flex; align-items: center; gap: 30px; margin-left: 8px; }
.nav a {
  font-size: 14.5px; font-weight: 600; color: var(--ink);
  display: inline-flex; align-items: center; gap: 6px;
  transition: color .18s;
}
.nav a:hover { color: var(--black); }
.nav .chev { width: 14px; height: 14px; opacity: .55; }
.header__spacer { flex: 1; }
.header__actions { display: flex; align-items: center; gap: 14px; }
.linkbtn { font-size: 14.5px; font-weight: 600; color: var(--black); display: inline-flex; align-items: center; gap: 7px; }
.linkbtn:hover { color: var(--gold-700); }
.linkbtn svg { width: 16px; height: 16px; }

/* ============================================================ HERO */
.hero { position: relative; padding: 56px 0 30px; overflow: hidden; }
.hero__bg {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(60% 50% at 88% 8%, rgba(180,168,134,.14), transparent 70%),
    radial-gradient(50% 40% at 4% 100%, rgba(180,168,134,.08), transparent 70%);
}
.hero .wrap { position: relative; z-index: 1; }
.hero__grid {
  display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1.04fr);
  gap: 56px; align-items: center;
}
.hero__copy { max-width: 560px; }
.hero h1 {
  font-size: clamp(38px, 4vw, 56px); line-height: 1.02; letter-spacing: -.03em;
  margin: 18px 0 0;
}
.hero h1 .hl { color: var(--gold-700); }
.hero__sub { margin-top: 20px; max-width: 470px; }
.hero__trustline { display: flex; align-items: center; gap: 18px; margin-top: 26px; flex-wrap: wrap; }
.hero__stars { display: inline-flex; gap: 2px; color: var(--gold); }
.hero__stars svg { width: 16px; height: 16px; }
.hero__trustline .t { font-size: 13.5px; color: var(--ink); font-weight: 600; }
.hero__trustline .sep { width: 1px; height: 16px; background: var(--line-2); }

/* ============================================================ BOOKING CARD */
.booking {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  box-shadow: var(--sh-lg);
  padding: 22px;
}
.tabs { display: inline-flex; background: var(--paper-2); padding: 5px; border-radius: 999px; gap: 4px; }
.tab {
  font-size: 14px; font-weight: 700; color: var(--ink);
  padding: 9px 20px; border-radius: 999px; display: inline-flex; align-items: center; gap: 8px;
  transition: all .2s var(--ease);
}
.tab svg { width: 16px; height: 16px; }
.tab.active { background: var(--black); color: #fff; box-shadow: var(--sh-sm); }
.tab:not(.active):hover { color: var(--black); }

.field-stack { display: flex; flex-direction: column; gap: 12px; margin-top: 18px; }
.field {
  position: relative; border: 1.5px solid var(--line-2); border-radius: var(--r-sm);
  background: #fff; transition: border-color .18s, box-shadow .18s; padding: 0;
}
.field:focus-within { border-color: var(--gold); box-shadow: 0 0 0 4px rgba(180,168,134,.16); }
.field.error { border-color: #c2553e; box-shadow: 0 0 0 4px rgba(194,85,62,.12); }
.field .ic { position: absolute; left: 16px; top: 50%; transform: translateY(-50%); width: 18px; height: 18px; color: var(--gold-700); pointer-events: none; }
.field .dotmark { position: absolute; left: 17px; top: 50%; transform: translateY(-50%); width: 12px; height: 12px; }
.field input, .field .ph {
  width: 100%; border: none; outline: none; background: transparent;
  font-size: 15px; color: var(--black); padding: 16px 16px 16px 44px; border-radius: var(--r-sm);
}
.field input::placeholder { color: var(--muted-2); }
.field-row { display: flex; gap: 12px; align-items: stretch; }
.field-row > .field { flex: 1; }

.field-lab { display: block; font-size: 11.5px; font-weight: 700; letter-spacing: .04em; color: var(--muted); text-transform: uppercase; padding: 11px 16px 0 16px; }
.field.has-lab input { padding-top: 4px; padding-bottom: 13px; }
.field.has-lab .ic { top: 62%; }

.addstop {
  flex: 0 0 auto; border: 1.5px dashed var(--line-2); border-radius: var(--r-sm);
  padding: 0 18px; font-size: 14px; font-weight: 700; color: var(--ink);
  display: inline-flex; align-items: center; gap: 8px; background: #fff; transition: all .18s;
}
.addstop:hover { border-color: var(--gold); color: var(--gold-700); background: var(--gold-tint); }
.addstop svg { width: 15px; height: 15px; }

.pax {
  border: 1.5px solid var(--line-2); border-radius: var(--r-sm); padding: 12px 16px;
  display: flex; align-items: center; justify-content: space-between; gap: 14px; background:#fff;
}
.pax .lab { font-size: 11.5px; font-weight: 700; letter-spacing: .04em; color: var(--muted); text-transform: uppercase; }
.pax .val { font-size: 22px; font-weight: 700; font-family: var(--display); margin-top: 2px; line-height: 1; }
.stepper { display: flex; align-items: center; gap: 10px; }
.step-btn {
  width: 38px; height: 38px; border-radius: 50%; background: var(--black); color: #fff;
  display: grid; place-items: center; transition: transform .15s, background .2s, opacity .2s;
}
.step-btn:hover { background: #322f2a; }
.step-btn:active { transform: scale(.92); }
.step-btn:disabled { opacity: .3; cursor: not-allowed; }
.step-btn svg { width: 16px; height: 16px; }

.roundtrip {
  border: 1.5px dashed var(--line-2); border-radius: var(--r-sm); background:#fff;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  font-size: 14px; font-weight: 700; color: var(--ink); transition: all .18s; padding: 16px;
}
.roundtrip:hover, .roundtrip.on { border-color: var(--gold); color: var(--gold-700); background: var(--gold-tint); border-style: solid; }
.roundtrip svg { width: 17px; height: 17px; }

.booking__cta { width: 100%; margin-top: 16px; height: 56px; font-size: 16px; }
.field-msg { font-size: 12.5px; color: #c2553e; font-weight: 600; margin: 7px 2px 0; display: flex; align-items: center; gap: 6px; }
.field-msg svg { width: 14px; height: 14px; }

/* Hourly duration chips */
.dur-row { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 12px; }
.dur-chip {
  border: 1.5px solid var(--line-2); border-radius: 999px; padding: 9px 16px;
  font-size: 13.5px; font-weight: 700; color: var(--ink); background: #fff; transition: all .18s;
}
.dur-chip:hover { border-color: var(--gold-300); }
.dur-chip.on { background: var(--black); color: #fff; border-color: var(--black); }

/* ============================================================ MAP */
.mapcard {
  position: relative; border-radius: var(--r-xl); overflow: hidden;
  border: 1px solid var(--line); box-shadow: var(--sh-lg);
  aspect-ratio: 1.06 / 1; background: #eceae4;
}
.mapcard svg.map { position: absolute; inset: 0; width: 100%; height: 100%; }
.map-controls { position: absolute; right: 16px; display: flex; flex-direction: column; gap: 8px; z-index: 5; }
.map-controls.top { top: 16px; }
.map-controls.zoom { bottom: 64px; }
.map-ctrl {
  width: 40px; height: 40px; border-radius: 11px; background: rgba(255,255,255,.92);
  backdrop-filter: blur(6px); box-shadow: var(--sh-md); display: grid; place-items: center;
  color: var(--ink); transition: background .15s, transform .15s; border: 1px solid rgba(0,0,0,.04);
}
.map-ctrl:hover { background: #fff; }
.map-ctrl:active { transform: scale(.94); }
.map-ctrl svg { width: 18px; height: 18px; }
.map-zoom { padding: 0; flex-direction: column; }
.map-zoom .map-ctrl { border-radius: 0; box-shadow: none; width: 40px; height: 40px; }
.map-zoom { border-radius: 11px; overflow: hidden; box-shadow: var(--sh-md); }
.map-zoom .map-ctrl:first-child { border-bottom: 1px solid var(--line); }

.map-attr { position: absolute; bottom: 10px; left: 14px; font-size: 10.5px; color: #9a978f; z-index: 4; font-weight: 600; letter-spacing: .02em; }
.map-brand { position: absolute; bottom: 9px; left: 12px; z-index: 4; opacity: .5; }

/* idle hint */
.map-hint {
  position: absolute; left: 50%; bottom: 22px; transform: translateX(-50%);
  background: rgba(27,26,24,.86); color: #fff; backdrop-filter: blur(6px);
  padding: 10px 16px; border-radius: 999px; font-size: 13px; font-weight: 600;
  display: inline-flex; align-items: center; gap: 9px; z-index: 6; white-space: nowrap;
  box-shadow: var(--sh-md);
}
.map-hint svg { width: 15px; height: 15px; color: var(--gold-300); }

/* route estimate card */
/* route estimate card — outer wrapper animates (no backdrop-filter), inner holds the blur */
.route-card-wrap {
  position: absolute; left: 16px; top: 16px; z-index: 7;
  opacity: 1; transform: none;
}
.route-card {
  background: rgba(255,255,255,.96); backdrop-filter: blur(8px);
  border-radius: var(--r-md); box-shadow: var(--sh-lg); padding: 14px 16px;
  border: 1px solid var(--line); min-width: 264px;
}
@keyframes cardIn { from { opacity: 0; transform: translateY(-10px) scale(.96); } to { opacity: 1; transform: none; } }
.route-card .rc-route { display: flex; flex-direction: column; gap: 9px; }
.rc-leg { display: flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 600; color: var(--black); }
.rc-leg .pin { width: 18px; height: 18px; flex: 0 0 auto; display: grid; place-items: center; }
.rc-leg .pin.a svg { color: var(--gold); }
.rc-leg .pin.b svg { color: var(--black); }
.rc-leg span { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 150px; }
.rc-line { height: 16px; border-left: 2px dotted var(--line-2); margin-left: 8px; }
.rc-stats { display: flex; gap: 12px; margin-top: 12px; padding-top: 12px; border-top: 1px solid var(--line); }
.rc-stat { flex: 1; min-width: 0; }
.rc-stat .k { font-size: 10px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--muted); white-space: nowrap; }
.rc-stat .v { font-size: 15.5px; font-weight: 700; font-family: var(--display); color: var(--black); margin-top: 2px; white-space: nowrap; }
.rc-stat .v.gold { color: var(--gold-700); }

/* moving pin pulse */
.pin-pulse { transform-box: fill-box; transform-origin: center; animation: pulse 2.4s ease-out infinite; }
@keyframes pulse { 0% { opacity:.5; r: 8; } 70%{ opacity:0; r: 26; } 100%{ opacity:0; r:26; } }

.route-path { stroke-dasharray: var(--len); stroke-dashoffset: 0; }
.pin-drop { transform-box: fill-box; transform-origin: bottom center; opacity: 1; }

/* ============================================================ GENERIC SECTION */
section.block { padding: 96px 0; }
section.block.tight { padding: 72px 0; }
.bg-paper { background: var(--paper); }
.bg-white { background: var(--white); }
.bg-ink { background: var(--black); color: #fff; }
.bg-tint { background: var(--gold-tint); }

/* pill tag (perk DNA) */
.tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; border: 1px solid var(--line);
  border-radius: 999px; padding: 7px 15px 7px 13px;
  font-size: 13px; font-weight: 700; color: var(--ink);
  box-shadow: var(--sh-sm);
}
.tag .d { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); }
.tag svg { width: 15px; height: 15px; color: var(--gold-700); }
.tag.gold { background: var(--gold); border-color: var(--gold-600); color: #2a2618; }
.tag.gold .d { background: #2a2618; }
.tag.dark { background: var(--black); border-color: var(--black); color: #fff; }
.tag.dark svg { color: var(--gold-300); }

/* ====================== FEATURE GRID (perk mixed cards) */
.feat-grid { display: grid; grid-template-columns: repeat(12,1fr); gap: 20px; margin-top: 52px; }
.fcard {
  border-radius: var(--r-xl); padding: 30px; position: relative; overflow: hidden;
  display: flex; flex-direction: column; min-height: 290px; border: 1px solid var(--line);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.fcard:hover { transform: translateY(-5px); box-shadow: var(--sh-lg); }
.fcard h3 { font-size: 22px; margin-top: auto; }
.fcard p { font-size: 14.5px; margin-top: 10px; color: var(--ink); }
.fcard .fkicker { font-size: 12.5px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--gold-700); }
.fcard .fic { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; }
.fcard--white { background: #fff; }
.fcard--white .fic { background: var(--gold-tint); color: var(--gold-700); }
.fcard--gold { background: var(--gold); border-color: var(--gold-600); color: #2a2618; }
.fcard--gold h3, .fcard--gold p { color: #2a2618; }
.fcard--gold .fkicker { color: #5e5436; }
.fcard--gold .fic { background: rgba(0,0,0,.1); color: #2a2618; }
.fcard--dark { background: var(--black); border-color: var(--black); }
.fcard--dark h3 { color: #fff; }
.fcard--dark p { color: #c4c0b7; }
.fcard--dark .fkicker { color: var(--gold-300); }
.fcard--dark .fic { background: rgba(255,255,255,.08); color: var(--gold-300); }
.fcard--photo { background: linear-gradient(165deg,#26241f,#3c382f); border: none; justify-content: flex-end; }
.fcard--photo::after { content:""; position:absolute; inset:0; background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,.55)); }
.fcard--photo h3, .fcard--photo p { color: #fff; position: relative; z-index: 2; }
.fcard--photo .fkicker { color: var(--gold-300); position: relative; z-index: 2; }
.fcard .fic svg { width: 26px; height: 26px; }
.col-4 { grid-column: span 4; } .col-5 { grid-column: span 5; } .col-6 { grid-column: span 6; }
.col-7 { grid-column: span 7; } .col-8 { grid-column: span 8; } .col-3 { grid-column: span 3; }

/* ====================== READY / dark CTA with pills (perk DNA) */
.ready { background: var(--black); color: #fff; border-radius: var(--r-xl); padding: 80px 48px; position: relative; overflow: hidden; }
.ready::before { content:""; position:absolute; inset:0; background: radial-gradient(60% 90% at 50% -10%, rgba(180,168,134,.28), transparent 60%); }
.ready__in { position: relative; z-index: 2; text-align: center; max-width: 720px; margin: 0 auto; }
.ready h2 { color: #fff; font-size: clamp(38px,4.4vw,64px); letter-spacing: -.03em; line-height: .98; }
.ready p { color: #c9c5bc; font-size: 18px; margin-top: 20px; }
.ready .acts { display: flex; gap: 14px; justify-content: center; margin-top: 36px; flex-wrap: wrap; }
.ready .pills { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 8px; }
.rpill { border-radius: 999px; padding: 9px 18px; font-size: 13.5px; font-weight: 700; display: inline-flex; align-items: center; gap: 8px; white-space: nowrap; }
.rpill svg { width: 15px; height: 15px; }
.rpill.g1 { background: var(--gold); color: #2a2618; }
.rpill.g2 { background: rgba(255,255,255,.1); color: #fff; border: 1px solid rgba(255,255,255,.16); }
.rpill.g3 { background: var(--gold-tint); color: #2a2618; }

/* giant wordmark footer (perk DNA) */
.giant-mark { overflow: hidden; padding: 30px 0 8px; }
.giant-mark svg { width: 100%; height: auto; display: block; }
.giant-mark .lt-word { fill: rgba(255,255,255,.07); }
.giant-mark .lt-mark { fill: rgba(180,168,134,.16); }

/* elegant image placeholders (dark, brand star watermark) */
.ph-star { position: absolute; inset: 0; display: grid; place-items: center; color: rgba(180,168,134,.16); pointer-events: none; }
.ph-star svg { width: 46%; height: auto; }
.ph-grain { position: absolute; inset: 0; pointer-events: none; opacity: .5;
  background:
    radial-gradient(120% 90% at 80% 0%, rgba(180,168,134,.16), transparent 55%),
    radial-gradient(80% 70% at 0% 100%, rgba(255,255,255,.05), transparent 60%);
}
.ph-label { position: absolute; left: 18px; bottom: 16px; z-index: 3; display: inline-flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,.82); font-size: 12.5px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
.ph-label svg { width: 14px; height: 14px; color: var(--gold-300); }
.ph-tile { position: absolute; inset: 0; background-image:
  linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
  linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 38px 38px; mask-image: radial-gradient(120% 100% at 50% 0%, #000, transparent 75%); }
.sec-head { max-width: 640px; }
.sec-head.center { margin: 0 auto; text-align: center; }
.sec-head h2 { font-size: clamp(30px, 3vw, 42px); margin-top: 14px; letter-spacing: -.025em; }
.sec-head p { margin-top: 16px; font-size: 17.5px; color: var(--ink); }
.bg-ink h1,.bg-ink h2,.bg-ink h3 { color: #fff; }
.bg-ink .sec-head p { color: #c9c5bc; }
.bg-ink .eyebrow { color: var(--gold-300); }

/* trust bar */
.trust { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--white); }
.trust__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 26px 0; flex-wrap: wrap; }
.trust__lab { font-size: 12.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.trust__logos { display: flex; align-items: center; gap: 40px; flex-wrap: wrap; }
.trust__logos .tl { font-family: var(--display); font-weight: 700; font-size: 19px; color: var(--muted-2); letter-spacing: .01em; transition: color .2s; }
.trust__logos .tl:hover { color: var(--ink); }

/* stats */
.stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; }
.stat { padding: 4px 28px; border-left: 1px solid rgba(255,255,255,.14); }
.stat:first-child { border-left: none; padding-left: 0; }
.stat .num { font-family: var(--display); font-weight: 700; font-size: 46px; letter-spacing: -.03em; color: #fff; line-height: 1; }
.stat .num .u { color: var(--gold); }
.stat .lab { margin-top: 10px; font-size: 14.5px; color: #bdb9b0; }

/* fleet */
.fleet-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; margin-top: 50px; }
.vcard {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
  display: flex; flex-direction: column;
}
.vcard:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); border-color: var(--gold-300); }
.vcard__img { aspect-ratio: 16/11; position: relative; overflow: hidden; background: linear-gradient(135deg,#23211d,#3a372f); }
.vcard__img .ph-car { position: absolute; inset: 0; display: grid; place-items: center; }
.vcard__tag { position: absolute; top: 12px; left: 12px; white-space: nowrap; background: rgba(255,255,255,.92); backdrop-filter: blur(6px); color: var(--black); font-size: 11.5px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; padding: 6px 12px; border-radius: 999px; }
.vcard__body { padding: 20px 20px 22px; display: flex; flex-direction: column; flex: 1; }
.vcard__body h3 { font-size: 21px; }
.vcard__body .sub { font-size: 13.5px; color: var(--muted); margin-top: 4px; }
.vcard__meta { display: flex; gap: 16px; margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--line); margin-top: auto; }
.vcard__meta .m { display: flex; align-items: center; gap: 7px; font-size: 13.5px; font-weight: 600; color: var(--ink); }
.vcard__meta .m svg { width: 16px; height: 16px; color: var(--gold-700); }

/* steps */
.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; margin-top: 54px; position: relative; }
.step-c { position: relative; }
.step-c .n {
  width: 52px; height: 52px; border-radius: 50%; border: 1.5px solid var(--gold-300);
  display: grid; place-items: center; font-family: var(--display); font-weight: 700; font-size: 20px;
  color: var(--gold-700); background: #fff; margin-bottom: 22px;
}
.step-c h3 { font-size: 22px; }
.step-c p { margin-top: 12px; color: var(--ink); font-size: 16px; }

/* services */
.svc-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-top: 50px; }
.svc {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 30px 28px;
  transition: transform .3s var(--ease), box-shadow .3s, border-color .3s; position: relative; overflow: hidden;
}
.svc:hover { transform: translateY(-5px); box-shadow: var(--sh-lg); border-color: var(--gold-300); }
.svc .ic-wrap { width: 56px; height: 56px; border-radius: 15px; background: var(--gold-tint); display: grid; place-items: center; color: var(--gold-700); margin-bottom: 22px; transition: background .3s, color .3s; }
.svc:hover .ic-wrap { background: var(--black); color: var(--gold-300); }
.svc .ic-wrap svg { width: 26px; height: 26px; }
.svc h3 { font-size: 20px; }
.svc p { margin-top: 11px; color: var(--ink); font-size: 15px; }
.svc .lnk { margin-top: 18px; display: inline-flex; align-items: center; gap: 7px; font-size: 14px; font-weight: 700; color: var(--gold-700); }
.svc .lnk svg { width: 15px; height: 15px; transition: transform .2s; }
.svc:hover .lnk svg { transform: translateX(4px); }

/* why-us split */
.why { display: grid; grid-template-columns: 1.05fr .95fr; gap: 64px; align-items: center; }
.why__media { aspect-ratio: 4/4.4; border-radius: var(--r-xl); overflow: hidden; position: relative; background: linear-gradient(150deg,#26241f,#403c33); box-shadow: var(--sh-lg); }
.why__feats { display: flex; flex-direction: column; gap: 8px; margin-top: 30px; }
.feat { display: flex; gap: 16px; padding: 18px; border-radius: var(--r-md); transition: background .2s; }
.feat:hover { background: var(--gold-tint); }
.feat .fic { width: 46px; height: 46px; flex: 0 0 auto; border-radius: 12px; background: #fff; border: 1px solid var(--line); display: grid; place-items: center; color: var(--gold-700); box-shadow: var(--sh-sm); }
.feat .fic svg { width: 22px; height: 22px; }
.feat h4 { font-size: 17px; font-family: var(--display); }
.feat p { margin-top: 4px; font-size: 14.5px; color: var(--ink); }

/* badge float on media */
.media-badge {
  position: absolute; background: rgba(255,255,255,.96); backdrop-filter: blur(8px);
  border-radius: var(--r-md); padding: 16px 18px; box-shadow: var(--sh-lg); border: 1px solid var(--line);
}
.media-badge.bl { left: -22px; bottom: 32px; min-width: 232px; }
.media-badge .mb-top { display: flex; align-items: center; gap: 10px; }
.media-badge .av { width: 38px; height: 38px; flex: 0 0 auto; border-radius: 50%; background: var(--gold-tint); border: 1px solid var(--gold-300); display:grid; place-items:center; color: var(--gold-700); }
.media-badge .av svg { width: 20px; height: 20px; }
.media-badge .nm { font-size: 13.5px; font-weight: 700; white-space: nowrap; }
.media-badge .rl { font-size: 12px; color: var(--muted); white-space: nowrap; }
.media-badge .qt { font-size: 12.5px; color: var(--ink); margin-top: 10px; max-width: 210px; line-height: 1.45; }

/* testimonials */
.tst-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-top: 50px; }
.tst { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 28px; display: flex; flex-direction: column; }
.tst .qmark { color: var(--gold-300); }
.tst .qmark svg { width: 36px; height: 36px; }
.tst p.q { font-size: 16.5px; line-height: 1.55; color: var(--black); margin: 14px 0 0; flex: 1; }
.tst .who { display: flex; align-items: center; gap: 12px; margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--line); }
.tst .who .av { width: 44px; height: 44px; border-radius: 50%; background: var(--gold-tint); border:1px solid var(--gold-300); display:grid; place-items:center; color: var(--gold-700); font-family: var(--display); font-weight: 700; }
.tst .who .nm { font-size: 14.5px; font-weight: 700; }
.tst .who .rl { font-size: 13px; color: var(--muted); }
.tst .stars { display: inline-flex; gap: 2px; color: var(--gold); }
.tst .stars svg { width: 15px; height: 15px; }

/* coverage */
.cov { display: grid; grid-template-columns: .9fr 1.1fr; gap: 56px; align-items: center; }
.cov__map { aspect-ratio: 1.3/1; border-radius: var(--r-xl); overflow: hidden; position: relative; border: 1px solid var(--line); box-shadow: var(--sh-lg); background: #eceae4; }
.cov__list { columns: 2; column-gap: 36px; margin-top: 28px; }
.cov__list .ci { break-inside: avoid; display: flex; align-items: center; gap: 11px; padding: 11px 0; border-bottom: 1px solid var(--line); font-size: 15.5px; font-weight: 600; }
.cov__list .ci svg { width: 15px; height: 15px; color: var(--gold-700); flex: 0 0 auto; }
.cov__list .ci .ct { color: var(--muted); font-weight: 600; font-size: 13px; margin-left: auto; }

/* faq */
.faq-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 56px; align-items: start; }
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; text-align: left; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 24px 0; font-family: var(--display); font-weight: 700; font-size: 19px; color: var(--black); }
.faq-q .pm { width: 30px; height: 30px; flex: 0 0 auto; border-radius: 50%; border: 1.5px solid var(--line-2); display: grid; place-items: center; transition: all .25s var(--ease); color: var(--ink); }
.faq-item.open .pm { background: var(--black); border-color: var(--black); color: #fff; transform: rotate(180deg); }
.faq-q .pm svg { width: 16px; height: 16px; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq-a__in { padding: 0 0 24px; color: var(--ink); font-size: 16px; max-width: 90%; }

/* CTA */
.cta-band { position: relative; border-radius: var(--r-xl); overflow: hidden; background: linear-gradient(135deg,#201e1a 0%, #322e26 60%, #423c30 100%); padding: 70px 64px; }
.cta-band::after { content:""; position:absolute; inset:0; background: radial-gradient(50% 120% at 90% -10%, rgba(180,168,134,.35), transparent 60%); pointer-events:none; }
.cta-band__in { position: relative; z-index: 2; max-width: 640px; }
.cta-band h2 { color: #fff; font-size: clamp(30px,3.2vw,44px); }
.cta-band p { color: #cfcabf; margin-top: 16px; font-size: 18px; }
.cta-band .acts { display: flex; gap: 14px; margin-top: 32px; flex-wrap: wrap; }
.cta-deco { position: absolute; right: 48px; top: 50%; transform: translateY(-50%); z-index: 1; opacity: .22; }
.cta-deco svg { width: 320px; height: auto; color: var(--gold); }

/* footer help band */
.footer__help { display: flex; align-items: center; gap: 28px; padding-bottom: 40px; margin-bottom: 56px; border-bottom: 1px solid rgba(255,255,255,.1); flex-wrap: nowrap; }
.footer__help h3 { font-family: var(--display); color: #fff; font-size: 22px; font-weight: 700; line-height: 1.25; white-space: nowrap; margin: 0; }
.fh-links { display: flex; gap: 24px; }
.fh-links a { position: relative; color: #e8e5de; font-size: 15px; font-weight: 600; transition: color .18s; white-space: nowrap; }
.fh-links a::before { content: ""; position: absolute; inset: -12px -10px; } /* ~44px tap target (Contact us / Help center were 23px) */
.fh-links a:hover { color: var(--gold-300); }
.fh-social { display: flex; gap: 10px; margin-left: auto; }
.fh-social a { position: relative; width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(255,255,255,.16); display: grid; place-items: center; color: #e8e5de; transition: all .2s; }
.fh-social a::before { content: ""; position: absolute; inset: -3px; border-radius: 50%; } /* ~44px tap target */
.fh-social a:hover { background: var(--gold); border-color: var(--gold); color: #2a2618; }
.fh-social svg { width: 17px !important; height: 17px !important; }
.fh-app { display: inline-flex; align-items: center; gap: 9px; height: 44px; padding: 0 20px; border-radius: 999px; background: #000; border: 1px solid rgba(255,255,255,.16); color: #fff; font-family: var(--text); font-weight: 700; font-size: 14.5px; white-space: nowrap; transition: border-color .2s, background .2s; }
.fh-app:hover { border-color: var(--gold); background: #14130f; }
.fh-app .dv { width: 1px; height: 18px; background: rgba(255,255,255,.28); }
.fh-app svg { width: 17px !important; height: 17px !important; }
.fh-lang { display: inline-flex; align-items: center; gap: 8px; height: 44px; padding: 0 18px; border-radius: 999px; border: 1px solid rgba(255,255,255,.18); background: none; color: #e8e5de; font-family: var(--text); font-size: 14.5px; white-space: nowrap; cursor: pointer; transition: border-color .2s; }
.fh-lang:hover { border-color: var(--gold); }
.fh-lang svg { width: 15px !important; height: 15px !important; }

/* sign-in dropdown */
.signin { position: relative; display: inline-flex; }
.signin__btn { cursor: pointer; background: none; border: 0; }
.signin__btn > svg:last-child { opacity: .65; transition: transform .18s; }
.signin.open .signin__btn > svg:last-child { transform: rotate(180deg); }
.signin__menu {
  position: absolute; top: calc(100% + 12px); right: 0; min-width: 268px; z-index: 90;
  display: flex; flex-direction: column; gap: 1px;
  background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 6px;
  box-shadow: 0 12px 32px -12px rgba(20,18,12,.18);
}
.signin__menu a {
  display: flex; align-items: center; gap: 11px; padding: 11px 13px; border-radius: 9px;
  font-family: var(--text); font-size: 14px; font-weight: 500; color: var(--ink);
  transition: background .15s, color .15s; white-space: nowrap;
}
.signin__menu a svg { width: 18px !important; height: 18px !important; flex: 0 0 auto; color: var(--gold-700); transition: color .15s; }
.signin__menu a:hover { background: var(--gold-tint); color: var(--black); }
.signin__menu a:hover svg { color: var(--gold-600); }

/* featured card (used for the primary Customer Login) */
.signin__menu a.signin__feat { align-items: center; gap: 12px; padding: 11px 12px; white-space: normal; }
.signin__feat-tx { display: flex; flex-direction: column; gap: 3px; flex: 1; min-width: 0; }
.signin__feat-tx strong { font-size: 14.5px; font-weight: 700; color: var(--black); line-height: 1.25; }
.signin__feat-tx > span { font-size: 12px; font-weight: 400; color: var(--muted); line-height: 1.35; }
.signin__feat-ic { width: 48px; height: 48px; border-radius: 12px; flex: 0 0 auto; display: grid; place-items: center; background: var(--gold-tint); color: var(--gold-700); }
.signin__menu .signin__feat-ic svg { width: 26px !important; height: 26px !important; }
.signin__menu a.signin__feat:hover { background: rgba(0,0,0,.035); }
.signin__menu a.signin__feat:hover .signin__feat-ic { background: #ece5d4; }

/* bold bottom CTA */
.signin__menu a.signin__cta { justify-content: center; font-weight: 700; color: var(--black); }
.signin__menu a.signin__cta:hover { background: var(--gold-tint); }

.signin__div { height: 1px; background: var(--line); margin: 4px 10px; }

/* separation band between the hero and the footer (height set live in JS to
   match the footer; colour matches the page so the two dark blocks separate) */
.footer-gap { background: var(--cream); }

/* footer */
.footer { background: var(--black); color: #cbc7be; padding: 56px 0 28px; }
.footer__top { display: grid; grid-template-columns: 1.8fr .85fr 1fr 1fr; gap: 28px; }
.footer__top .fcol { position: relative; }
.footer__top .fcol + .fcol { padding-left: 44px; }
.footer__top .fcol + .fcol::before { content: ""; position: absolute; left: 0; top: 50%; transform: translateY(-50%); height: 75%; width: 1px; background: rgba(255,255,255,.09); }
.fcol__2col { display: grid; grid-auto-flow: column; grid-template-rows: repeat(4, auto); grid-template-columns: 1fr 1fr; column-gap: 24px; }
.footer h4 { color: #fff; font-family: var(--text); font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 20px; }
.footer .fcol a { display: block; padding: 11px 0; font-size: 14px; color: #b4b0a7; transition: color .18s; } /* padding 8->11 = ~44px tap height */
.footer .fcol a:hover { color: var(--gold-300); }
.footer__brand p { font-size: 14.5px; color: #a8a49b; margin-top: 18px; max-width: 280px; line-height: 1.6; }
.footer__social { display: flex; gap: 10px; margin-top: 22px; }
.footer__social a { width: 40px; height: 40px; border-radius: 11px; border: 1px solid rgba(255,255,255,.12); display: grid; place-items: center; color: #cbc7be; transition: all .2s; }
.footer__social a:hover { background: var(--gold); color: #2a2618; border-color: var(--gold); }
.footer__social svg { width: 18px; height: 18px; }
/* footer contact column — big phone as the anchor, no label */
.footer .fcol--contact { display: flex; flex-direction: column; align-items: flex-start; }
.footer .fcol--contact .fc-tel { display: block; padding: 0; margin-top: -6px; font-family: var(--display); font-size: clamp(22px, 1.8vw, 27px); font-weight: 800; letter-spacing: .01em; line-height: 1.2; color: #fff; white-space: nowrap; transition: color .18s; }
.footer .fcol--contact .fc-tel:hover { color: var(--gold-300); }
.footer .fcol--contact .fc-mail { display: block; padding: 12px 0 0; font-size: 15px; color: #cbc7be; transition: color .18s; }
.footer .fcol--contact .fc-mail:hover { color: var(--gold-300); }
.footer .fcol--contact .fc-meta { margin-top: 24px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.14); align-self: stretch; display: flex; flex-direction: column; gap: 7px; font-size: 13px; line-height: 1.5; color: #8d8980; }

.footer__bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 32px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,.1); flex-wrap: wrap; }
.footer__bottom .cp { font-size: 13.5px; color: #8d8980; }
.footer__bottom .lks { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.footer__bottom .lks .sep { color: rgba(255,255,255,.22); font-size: 12px; }
.footer__bottom .lks .ck { display: inline-flex; align-items: center; gap: 7px; }
.footer__bottom .lks .ck svg { width: 15px; height: 15px; color: var(--gold); }
.footer__bottom .lks a { position: relative; font-size: 13.5px; color: #a8a49b; }
.footer__bottom .lks a::before { content: ""; position: absolute; inset: -12px -8px; } /* ~44px tap target */
.footer__bottom .lks a:hover { color: var(--gold-300); }

/* cookie preferences modal */
.ckm-overlay {
  position: fixed; inset: 0; z-index: 200;
  display: flex; align-items: center; justify-content: center; padding: 24px;
  background: rgba(16,15,13,.55); backdrop-filter: blur(4px);
}
.ckm {
  width: 100%; max-width: 540px; max-height: 88vh;
  display: flex; flex-direction: column;
  background: #fff; border-radius: 20px;
  box-shadow: 0 40px 90px -30px rgba(0,0,0,.55);
  overflow: hidden;
}
.ckm__head { position: relative; padding: 28px 28px 20px; border-bottom: 1px solid var(--line); }
.ckm__head h3 { font-size: 21px; color: var(--black); margin: 0; }
.ckm__head p { margin: 8px 0 0; font-size: 14px; line-height: 1.5; color: var(--muted); max-width: 92%; }
.ckm__x {
  position: absolute; top: 18px; right: 18px;
  width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center;
  background: var(--paper-2); color: var(--ink); transition: background .15s, color .15s;
}
.ckm__x:hover { background: var(--line); color: var(--black); }
.ckm__body { padding: 8px 28px; overflow-y: auto; flex: 1; }
.ckc { display: flex; align-items: flex-start; gap: 20px; padding: 20px 0; border-bottom: 1px solid var(--line); }
.ckc:last-child { border-bottom: 0; }
.ckc__tx { flex: 1; min-width: 0; }
.ckc__tx h4 { font-size: 15px; color: var(--black); margin: 0 0 5px; }
.ckc__tx p { margin: 0; font-size: 13px; line-height: 1.55; color: var(--muted); }
.ckc__always { flex: 0 0 auto; margin-top: 3px; font-size: 12px; font-weight: 600; color: var(--gold-700); letter-spacing: .01em; white-space: nowrap; }
.ck-switch {
  flex: 0 0 auto; margin-top: 2px; position: relative;
  width: 46px; height: 27px; border-radius: 999px;
  background: var(--line-2); transition: background .22s var(--ease); cursor: pointer;
}
.ck-switch::after {
  content: ""; position: absolute; top: 3px; left: 3px;
  width: 21px; height: 21px; border-radius: 50%;
  background: #fff; box-shadow: 0 1px 3px rgba(0,0,0,.25);
  transition: transform .22s var(--ease);
}
.ck-switch.on { background: var(--gold); }
.ck-switch.on::after { transform: translateX(19px); }
.ckm__foot { display: flex; gap: 12px; justify-content: flex-end; padding: 18px 28px 24px; border-top: 1px solid var(--line); }
.ckm__foot .btn { height: 46px; font-size: 14.5px; }
@media (max-width: 540px) {
  .ckm__foot { flex-direction: column-reverse; }
  .ckm__foot .btn { width: 100%; }
}

/* reveal on scroll */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  * { scroll-behavior: auto; }
}

/* responsive */
@media (max-width: 1080px) {
  .hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .hero__copy { max-width: 640px; }
  .fleet-grid { grid-template-columns: repeat(2,1fr); }
  .stats { grid-template-columns: repeat(2,1fr); gap: 32px 0; }
  .svc-grid, .tst-grid, .steps { grid-template-columns: repeat(2,1fr); }
  .why, .cov, .faq-grid { grid-template-columns: 1fr; gap: 40px; }
  .nav { display: none; }
  .feat-grid > * { grid-column: span 6 !important; }
  .ready { padding: 56px 28px; }
  .footer__help { flex-wrap: wrap; }
  .footer__top { grid-template-columns: 1fr 1fr 1fr; row-gap: 36px; }
  .footer__top .fcol--services { grid-column: 1 / -1; }
  .footer__top .fcol--services .fcol__2col { grid-template-columns: repeat(2, minmax(0, 240px)); }
  .footer__top .fcol + .fcol { padding-left: 0; }
  .footer__top .fcol + .fcol::before { display: none; }
  .footer__bottom { justify-content: center; text-align: center; row-gap: 10px; }
}
@media (max-width: 680px) {
  .wrap { padding: 0 20px; }
  .fleet-grid, .svc-grid, .tst-grid, .steps, .stats { grid-template-columns: 1fr; }
  .cta-band { padding: 48px 28px; }
  .footer__top { grid-template-columns: 1fr 1fr; column-gap: 24px; }
  .footer__top .fcol--services { grid-column: 1 / -1; }
  .footer__top .fcol { padding-left: 0 !important; text-align: left; }
  .footer__top .fcol::before { display: none !important; }
  .footer__help { gap: 18px; padding-bottom: 32px; margin-bottom: 40px; justify-content: center; }
  .footer__help h3 { white-space: normal; flex: 1 0 100%; text-align: center; font-size: 26px; }
  .fh-links { width: 100%; justify-content: center; }
  .fh-social { margin-left: 0; width: 100%; justify-content: center; }
  .footer__bottom { justify-content: center; text-align: center; }
  .footer__bottom .lks { justify-content: center; }
  .field-row { flex-direction: column; }
  .cov__list { columns: 1; }
  .feat-grid > * { grid-column: span 12 !important; }
}

/* ============================================================
   BLACKLANE-STYLE HERO  (full-bleed photo · serif headline · glass booking bar)
   ============================================================ */

/* header overlays the photo, turns solid on scroll */
.header { background: transparent; backdrop-filter: none; border-bottom-color: transparent;
  transition: background .35s ease, box-shadow .35s ease, border-color .35s ease; }
.header.scrolled { background: rgba(244,242,234,.85); backdrop-filter: saturate(140%) blur(14px); }
.header:not(.scrolled) .nav a,
.header:not(.scrolled) .linkbtn { color: rgba(255,255,255,.9); }
.header:not(.scrolled) .nav a:hover,
.header:not(.scrolled) .linkbtn:hover { color: #fff; }
.header:not(.scrolled) .linkbtn svg { color: var(--gold-300); }
.header:not(.scrolled) .nav .chev { opacity: .7; }

.lhero {
  position: relative;
  z-index: 5; /* popovers from the booking bar paint above following sections */
  min-height: 100svh;
  margin-top: -78px;               /* slide up under the sticky header */
  display: flex; flex-direction: column;
  align-items: center; justify-content: flex-end;
  padding: 132px 24px 40px;
  /* CSS background (with the per-breakpoint position/size tuning below) — the
     AVIF keeps it light, image-set falls back to webp/jpg */
  background-color: #0c0c0b;
  background-image: url("/static/web/assets/hero-2528.jpg");
  background-image: image-set(
    url("/static/web/assets/hero-2528.avif") type("image/avif"),
    url("/static/web/assets/hero-2528.webp") type("image/webp"),
    url("/static/web/assets/hero-2528.jpg") type("image/jpeg"));
  background-position: center 38%;
  background-size: cover;
  background-repeat: no-repeat;
}
.lhero__video {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%; object-fit: cover; object-position: center 38%;
  pointer-events: none; transition: opacity .6s ease;
}
.lhero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 1;
  background:
    linear-gradient(180deg, rgba(8,8,7,.52) 0%, rgba(8,8,7,.10) 24%, rgba(8,8,7,0) 44%),
    linear-gradient(0deg, rgba(8,8,7,.80) 0%, rgba(8,8,7,.28) 36%, rgba(8,8,7,0) 62%);
}
.lhero__inner {
  position: relative; z-index: 2; width: 100%; max-width: 960px;
  display: flex; flex-direction: column; align-items: center;
}
.lhero__eyebrow {
  display: inline-flex; align-items: center; gap: 9px; white-space: nowrap;
  background: rgba(20,20,18,.42); border: 1px solid rgba(255,255,255,.16);
  backdrop-filter: blur(12px); border-radius: 999px;
  padding: 8px 16px 8px 13px; margin-top: 26px;
  font-family: var(--text); font-size: 13px; font-weight: 500; color: rgba(255,255,255,.92);
}
.lhero__eyebrow .stars { display: inline-flex; gap: 1px; color: var(--gold-300); }
.lhero__eyebrow .stars svg { width: 14px; height: 14px; }
.lhero__eyebrow .sep { width: 1px; height: 13px; background: rgba(255,255,255,.22); }

.lhero__title {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(40px, 5.4vw, 66px); line-height: 1.0; letter-spacing: .25px;
  color: #f4efe5; text-align: center; margin: 0 0 34px;
  text-shadow: 0 2px 40px rgba(0,0,0,.45); max-width: 780px;
}
.lhero__title .em { font-style: italic; color: var(--gold-300); }

/* ---- glass booking widget ---- */
.bw { width: 100%; max-width: 940px; display: flex; flex-direction: column; align-items: center; gap: 14px; }
.bw__seg {
  display: inline-flex; gap: 4px; padding: 4px; position: relative;
  background: rgba(18,18,16,.5); border: 1px solid rgba(255,255,255,.16);
  backdrop-filter: blur(14px); border-radius: 999px;
}
.bw__seg-ind {
  position: absolute; left: 0; top: 0; z-index: 0;
  background: #fff; border-radius: 999px; pointer-events: none;
}
.bw__seg-ind.is-anim {
  transition: transform .34s cubic-bezier(.4,0,.2,1), width .34s cubic-bezier(.4,0,.2,1);
}
.bw__seg button {
  font-family: var(--text); font-size: 14px; font-weight: 500; color: rgba(255,255,255,.78);
  padding: 9px 20px; min-height: 44px; border-radius: 999px; display: inline-flex; align-items: center; gap: 8px;
  position: relative; z-index: 1; transition: color .25s;   /* min-height 44 = touch target (the sliding pill measures this live) */
}
.bw__seg button svg { width: 16px; height: 16px; }
.bw__seg button.on { color: #1b1a18; font-weight: 600; }
@media (prefers-reduced-motion: reduce) { .bw__seg-ind.is-anim { transition: none; } }

.bw__bar {
  width: 100%; display: flex; align-items: stretch; gap: 2px; padding: 8px;
  background: rgba(16,16,14,.5); border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(22px) saturate(150%); border-radius: 22px;
  box-shadow: 0 34px 70px -24px rgba(0,0,0,.7);
  position: relative; z-index: 30; /* popovers/suggestions above content below */
}
.bw__group { display: flex; align-items: stretch; flex: 1; gap: 2px; min-width: 0; }
.bw__field {
  flex: 1; min-width: 0; position: relative; padding: 11px 18px; border-radius: 15px;
  transition: background .16s; cursor: text; text-align: left;
}
.bw__field:hover { background: rgba(255,255,255,.05); }
.bw__field.is-focus { background: rgba(255,255,255,.08); }
.bw__field.is-error { box-shadow: inset 0 0 0 1.5px rgba(224,122,95,.7); border-radius: 15px; }
.bw__field label { display: block; font-family: var(--text); font-size: 11px; font-weight: 500; letter-spacing: .02em; color: rgba(255,255,255,.62); margin-bottom: 4px; pointer-events: none; white-space: nowrap; }
.bw__field input {
  width: 100%; border: none; outline: none; background: transparent;
  color: #fff; font-size: 15px; font-family: var(--text); font-weight: 500;
  color-scheme: dark; padding: 0;
}
.bw__field input::placeholder { color: rgba(255,255,255,.5); font-weight: 400; } /* .42 -> .5 for WCAG AA (~4.8:1) */
.bw__field input { accent-color: var(--gold-600); caret-color: var(--gold-300); }
.bw__field input:-webkit-autofill,
.bw__field input:-webkit-autofill:hover,
.bw__field input:-webkit-autofill:focus {
  -webkit-text-fill-color: #fff;
  -webkit-box-shadow: 0 0 0 1000px rgba(28,28,25,.95) inset;
  transition: background-color 99999s ease-out;
}
.bw__field input[type="date"]::-webkit-calendar-picker-indicator,
.bw__field input[type="time"]::-webkit-calendar-picker-indicator { filter: invert(1); opacity: .55; cursor: pointer; }

/* fixed widths so location fields keep room */
.bw__f-date { flex: 0 0 152px; }
.bw__f-time { flex: 0 0 134px; }
.bw__f-pax { flex: 0 0 168px; }
.bw__f-dur { flex: 0 0 150px; }
.bw__field label { overflow: hidden; text-overflow: ellipsis; }
@media (max-width: 1100px) and (min-width: 921px) {
  .bw__f-date { flex: 0 0 130px; }
  .bw__f-time { flex: 0 0 120px; }
  .bw__f-pax { flex: 0 0 142px; }
  .bw__f-date, .bw__f-time { padding: 11px 10px; }
  .bw__go { padding: 0 20px; }
}
.bw__div { width: 1px; align-self: stretch; background: rgba(255,255,255,.16); margin: 8px 4px; flex: 0 0 auto; }
.bw__action { display: flex; align-items: stretch; padding-left: 4px; }

/* Soft fade/slide when switching One way <-> By the hour */
@keyframes bwSwapFade { from { opacity: 0; transform: translateY(5px); } to { opacity: 1; transform: none; } }
.bw-swapfade { animation: bwSwapFade .3s cubic-bezier(.22,.61,.36,1); }
@media (prefers-reduced-motion: reduce) { .bw-swapfade { animation: none; } }

/* Smooth enter + exit for dropdowns / popovers / menus (Airbnb-style) */
.pop-anim {
  opacity: 0; transform: translateY(-9px) scale(.955); transform-origin: top center; pointer-events: none;
  /* exit: gentle, slightly quicker */
  transition: opacity .2s ease, transform .27s cubic-bezier(.4,0,.6,1);
  will-change: opacity, transform;
}
.pop-anim.is-open {
  opacity: 1; transform: none; pointer-events: auto;
  /* enter: soft, blooming "opening" feel (fast out, long gentle settle) */
  transition: opacity .3s ease, transform .46s cubic-bezier(.16,1,.3,1);
}
.signin__menu.pop-anim { transform-origin: top right; }
@media (prefers-reduced-motion: reduce) { .pop-anim, .pop-anim.is-open { transition: none; } }

/* Clock: soft fade when switching hours -> minutes */
@keyframes bwClockIn { from { opacity: 0; transform: scale(.96); } to { opacity: 1; transform: none; } }
.bw__clock { animation: bwClockIn .3s ease; }
@media (prefers-reduced-motion: reduce) { .bw__clock { animation: none; } .bw__clock g { transition: none !important; } }

.bw__go {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  min-height: 56px; padding: 0 28px; border-radius: 15px; white-space: nowrap;
  font-family: var(--text); font-weight: 600; font-size: 15px; color: #2a2618;
  background: linear-gradient(180deg, var(--gold) 0%, var(--gold-600) 100%);
  box-shadow: 0 10px 26px -8px rgba(155,142,105,.6); transition: transform .16s, box-shadow .22s, filter .2s;
}
.bw__go:hover { transform: translateY(-1px); box-shadow: 0 16px 34px -10px rgba(155,142,105,.7); }
.bw__go:active { transform: translateY(0); }
.bw__go svg { width: 18px; height: 18px; }
.bw__go:focus-visible, .bw__field:focus-visible { outline: 2px solid var(--gold, #c9a86a); outline-offset: 2px; }

.bw__err { font-family: var(--text); font-size: 13px; font-weight: 500; color: #f0c2b4; display: inline-flex; align-items: center; gap: 7px; }
.bw__err svg { width: 15px; height: 15px; }

/* duration chips — live inside a popover, single row */
/* Duration slider (2–24h) */
.bw__dur-head { font-family: var(--text); color: rgba(255,255,255,.7); font-size: 13px; font-weight: 500; }
.bw__dur-head b { color: #fff; font-size: 22px; font-weight: 600; margin-right: 3px; }
.bw__dur-range {
  -webkit-appearance: none; appearance: none; width: 100%; height: 28px;
  background: transparent; cursor: pointer; margin: 12px 0 4px; display: block;
}
.bw__dur-range::-webkit-slider-runnable-track {
  height: 6px; border-radius: 999px;
  background: linear-gradient(to right, var(--gold-300) 0 var(--pct,30%), rgba(255,255,255,.18) var(--pct,30%) 100%);
}
.bw__dur-range::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none; width: 24px; height: 24px; margin-top: -9px;
  border: none; border-radius: 0; background-color: transparent;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' fill='%23fff'%3E%3Cg transform='translate(0 512) scale(0.1 -0.1)'%3E%3Cpath d='M590 4950 c-25 -5 -81 -27 -125 -49 -224 -111 -346 -360 -291 -594 9 -37 150 -381 314 -765 165 -383 306 -719 315 -747 52 -162 48 -340 -11 -505 -11 -30 -151 -361 -312 -735 -160 -374 -298 -709 -307 -745 -54 -231 69 -481 292 -591 44 -21 107 -44 140 -50 82 -15 199 -5 276 24 35 13 915 450 1954 970 2026 1014 1947 971 2029 1090 40 58 86 172 86 212 0 14 5 25 10 25 6 0 10 30 10 70 0 40 -4 70 -10 70 -5 0 -10 11 -10 25 0 37 -43 147 -80 205 -78 122 14 72 -2035 1097 -1039 520 -1919 957 -1955 971 -73 27 -211 38 -290 22z'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center; background-size: contain;
  cursor: grab; filter: drop-shadow(0 1px 2px rgba(0,0,0,.65)); transition: transform .12s;
}
.bw__dur-range:active::-webkit-slider-thumb { transform: scale(1.12); }
.bw__dur-range::-moz-range-track { height: 6px; border-radius: 999px; background: rgba(255,255,255,.18); }
.bw__dur-range::-moz-range-progress { height: 6px; border-radius: 999px; background: var(--gold-300); }
.bw__dur-range::-moz-range-thumb {
  width: 24px; height: 24px; border: none; border-radius: 0; background-color: transparent;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' fill='%23fff'%3E%3Cg transform='translate(0 512) scale(0.1 -0.1)'%3E%3Cpath d='M590 4950 c-25 -5 -81 -27 -125 -49 -224 -111 -346 -360 -291 -594 9 -37 150 -381 314 -765 165 -383 306 -719 315 -747 52 -162 48 -340 -11 -505 -11 -30 -151 -361 -312 -735 -160 -374 -298 -709 -307 -745 -54 -231 69 -481 292 -591 44 -21 107 -44 140 -50 82 -15 199 -5 276 24 35 13 915 450 1954 970 2026 1014 1947 971 2029 1090 40 58 86 172 86 212 0 14 5 25 10 25 6 0 10 30 10 70 0 40 -4 70 -10 70 -5 0 -10 11 -10 25 0 37 -43 147 -80 205 -78 122 14 72 -2035 1097 -1039 520 -1919 957 -1955 971 -73 27 -211 38 -290 22z'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center; background-size: contain;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,.65));
}
.bw__dur-range:focus-visible { outline: none; }
.bw__dur-range:focus-visible::-webkit-slider-thumb { filter: drop-shadow(0 0 3px rgba(207,198,172,.95)) drop-shadow(0 1px 2px rgba(0,0,0,.6)); }
.bw__dur-scale { display: flex; justify-content: space-between; font-family: var(--text); font-size: 11px; color: rgba(255,255,255,.5); }

/* info chip — Blacklane InfoCard echo */
.lhero__chip {
  margin-top: 22px; display: inline-flex; align-items: center; gap: 14px;
  background: rgba(18,18,16,.42); border: 1px solid rgba(255,255,255,.15);
  backdrop-filter: blur(14px); padding: 13px 20px 13px 14px; border-radius: 18px;
}
.lhero__chip .ic { width: 44px; height: 44px; flex: 0 0 auto; border-radius: 12px; display: grid; place-items: center; color: #fff; background: linear-gradient(135deg, var(--gold) 0%, var(--gold-700) 100%); }
.lhero__chip .ic svg { width: 24px; height: 24px; }
.lhero__chip .tx { font-family: var(--text); font-size: 14.5px; line-height: 1.4; color: #fff; }
.lhero__chip .tx span { color: rgba(255,255,255,.72); }

@media (max-width: 920px) {
  /* tablet: ease the crop toward the passenger (right side of the photo) */
  .lhero { background-position: 60% 34%; }
  .bw__bar { flex-direction: column; gap: 4px; padding: 8px; }
  .bw__group { flex-direction: column; gap: 4px; flex: 0 0 auto !important; }
  .bw__div { display: none; }
  .bw__field { border-radius: 13px; padding: 12px 16px; }
  /* >=16px stops iOS Safari from auto-zooming (and then panning) when a field is focused */
  .bw__field input, .bw__flight input { font-size: 16px; }
  .bw__f-date, .bw__f-time, .bw__f-pax, .bw__f-dur { flex: 0 0 auto; min-width: 0; }
  .bw__action { padding: 0; margin-top: 10px; }
  .bw__go { width: 100%; }
}

/* ---- location autocomplete ---- */
.bw__sug {
  position: absolute; top: calc(100% + 8px); left: 0; min-width: 320px; max-width: 360px; z-index: 40;
  background: rgba(20,20,18,.96); border: 1px solid rgba(255,255,255,.14); border-radius: 16px;
  backdrop-filter: blur(20px) saturate(140%); box-shadow: 0 30px 60px -18px rgba(0,0,0,.75);
  padding: 6px; display: flex; flex-direction: column;
}
.bw__sug-lab { font-family: var(--text); font-size: 10.5px; font-weight: 500; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.45); padding: 8px 12px 4px; }
.bw__sug-empty { font-family: var(--text); font-size: 13px; color: rgba(255,255,255,.55); padding: 8px 12px 12px; }
.bw__sug button {
  display: flex; align-items: center; gap: 11px; padding: 10px 12px; border-radius: 11px;
  color: #fff; font-family: var(--text); font-size: 14px; text-align: left; transition: background .14s;
}
.bw__sug button:hover { background: rgba(255,255,255,.08); }
.bw__sug button.hi { background: rgba(255,255,255,.12); }
.bw__sug button svg { color: var(--gold-300); flex: 0 0 auto; }
.bw__sug button > span { display: flex; flex-direction: column; gap: 1px; min-width: 0; }
.bw__sug button strong { font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.bw__sug button em { font-style: normal; font-size: 12px; color: rgba(255,255,255,.55); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* ---- swap pickup/dropoff ---- */
.bw__swap {
  align-self: center; flex: 0 0 auto; width: 34px; height: 34px; margin: 0 2px;
  border-radius: 50%; display: grid; place-items: center; position: relative;
  color: rgba(255,255,255,.8); border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.05);
  transition: transform .3s ease, background .18s, color .18s;
}
.bw__swap::before { content: ""; position: absolute; inset: -5px; border-radius: 50%; } /* ~44px tap target */
.bw__swap:hover { background: rgba(255,255,255,.14); color: #fff; transform: rotate(180deg); }

/* ---- travellers popover ---- */
.bw__pax-pop {
  position: absolute; top: calc(100% + 8px); right: 0; z-index: 40; min-width: 264px;
  background: rgba(20,20,18,.96); border: 1px solid rgba(255,255,255,.14); border-radius: 16px;
  backdrop-filter: blur(20px) saturate(140%); box-shadow: 0 30px 60px -18px rgba(0,0,0,.75);
  padding: 14px 16px; display: flex; flex-direction: column; gap: 14px; cursor: default;
}
.bw__pax-row { display: flex; align-items: center; justify-content: space-between; gap: 16px; font-family: var(--text); font-size: 14px; font-weight: 500; color: #fff; }
.bw__pax-row .sub { display: block; font-size: 11.5px; font-weight: 400; color: rgba(255,255,255,.5); margin-top: 1px; }
.bw__dur-pop { left: 0; right: auto; min-width: 232px; padding: 14px 16px; }

/* ---- custom date / time pickers (brand-colored, no native blue) ---- */
.bw__pick {
  display: flex; align-items: center; justify-content: space-between; gap: 8px;
  font-family: var(--text); font-size: 15px; font-weight: 500; color: #fff; white-space: nowrap;
}
.bw__pick svg { color: var(--gold-300); flex: 0 0 auto; }

.bw__cal { left: 0; right: auto; width: 282px; padding: 14px; cursor: default; }
.bw__cal-h { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.bw__cal-h b { font-family: var(--text); font-size: 14px; font-weight: 600; color: #fff; }
.bw__cal-h button {
  width: 28px; height: 28px; border-radius: 50%; display: grid; place-items: center;
  color: #fff; border: 1px solid rgba(255,255,255,.22); transition: background .15s, opacity .15s;
}
.bw__cal-h button:hover { background: rgba(255,255,255,.12); }
.bw__cal-h button:disabled { opacity: .25; pointer-events: none; }
.bw__cal-g { display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px; margin-top: 10px; }
.bw__cal-dow span {
  text-align: center; font-family: var(--text); font-size: 10.5px; font-weight: 600;
  letter-spacing: .06em; color: rgba(255,255,255,.45);
}
.bw__cal-dow { margin-top: 12px; }
.bw__cal-d {
  height: 32px; border-radius: 9px; display: grid; place-items: center;
  font-family: var(--text); font-size: 13.5px; font-weight: 500; color: #fff;
  transition: background .12s;
}
.bw__cal-d:hover { background: rgba(255,255,255,.1); }
.bw__cal-d:disabled { opacity: .25; pointer-events: none; }
.bw__cal-d.today { box-shadow: inset 0 0 0 1px rgba(207,198,172,.55); }
.bw__cal-d.sel {
  background: linear-gradient(180deg, var(--gold) 0%, var(--gold-600) 100%);
  color: #2a2618; font-weight: 700; box-shadow: none;
}
.bw__cal-f { display: flex; justify-content: flex-end; margin-top: 12px; }
.bw__cal-f button {
  font-family: var(--text); font-size: 13px; font-weight: 600; color: var(--gold-300);
  padding: 6px 12px; border-radius: 9px; transition: background .15s;
}
.bw__cal-f button:hover { background: rgba(255,255,255,.08); }

.bw__tpop { left: 0; right: auto; min-width: 0; padding: 6px; cursor: default; }
.bw__tlist {
  width: 148px; max-height: 252px; overflow-y: auto;
  display: flex; flex-direction: column; gap: 2px; padding-right: 2px;
  scrollbar-width: thin; scrollbar-color: rgba(255,255,255,.25) transparent;
}
.bw__tlist::-webkit-scrollbar { width: 5px; }
.bw__tlist::-webkit-scrollbar-thumb { background: rgba(255,255,255,.22); border-radius: 99px; }
.bw__tlist button {
  flex: 0 0 auto; text-align: left; padding: 8px 12px; border-radius: 9px;
  font-family: var(--text); font-size: 14px; font-weight: 500; color: #fff;
  transition: background .12s;
}
.bw__tlist button:hover { background: rgba(255,255,255,.1); }
.bw__tlist button.sel {
  background: linear-gradient(180deg, var(--gold) 0%, var(--gold-600) 100%);
  color: #2a2618; font-weight: 700;
}
.bw__step { display: inline-flex; align-items: center; gap: 10px; }
.bw__step button {
  width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center;
  color: #fff; border: 1px solid rgba(255,255,255,.25); transition: background .15s, opacity .15s;
}
.bw__step button:hover { background: rgba(255,255,255,.12); }
.bw__step button:disabled { opacity: .3; pointer-events: none; }
.bw__step b { min-width: 18px; text-align: center; font-family: var(--text); font-size: 15px; font-weight: 600; }

/* ---- airport flight row ---- */
.bw__flight {
  width: 100%; max-width: 940px; display: flex; align-items: center; gap: 12px;
  padding: 11px 16px; border-radius: 14px;
  background: rgba(18,18,16,.45); border: 1px solid rgba(255,255,255,.15);
  backdrop-filter: blur(12px);
  font-family: var(--text); font-size: 13.5px; color: rgba(255,255,255,.85);
}
.bw__flight svg { color: var(--gold-300); flex: 0 0 auto; }
.bw__flight strong { color: #fff; font-weight: 600; }
.bw__flight input {
  margin-left: auto; width: 150px; flex: 0 0 auto;
  background: transparent; border: none; outline: none;
  border-bottom: 1px solid rgba(255,255,255,.25); padding: 2px 0;
  color: #fff; font-family: var(--text); font-size: 14px; font-weight: 500;
}
.bw__flight input::placeholder { color: rgba(255,255,255,.4); font-weight: 400; }
.bw__flight input:focus { border-bottom-color: var(--gold-300); }
.bw__flight.is-error { border-color: rgba(224,122,95,.7); }
.bw__flight.is-error input { border-bottom-color: rgba(224,122,95,.9); }
.bw__flight.is-error input::placeholder { color: #f0c2b4; }

@media (max-width: 920px) {
  /* swap overlays the pickup/drop-off boundary (absolute) so it adds no height —
     keeps the form the same size when switching One way <-> By the hour */
  .bw__group { position: relative; }
  .bw__swap { position: absolute; top: calc(50% - 17px); right: 14px; margin: 0; transform: rotate(90deg); z-index: 5; background: rgba(35,34,30,.95); }
  .bw__swap:hover { transform: rotate(270deg); }
  .bw__flight { flex-wrap: nowrap; align-items: flex-start; }
  .bw__flight svg { margin-top: 1px; }
}

/* (hero entrance animation removed — keyframe animations can freeze at t=0 in this webview, stranding content invisible) */

@media (max-width: 680px) {
  .bw__sug { min-width: 0; width: 100%; max-width: none; }
}
@media (max-width: 680px) {
  .lhero { padding: 108px 16px 8px; min-height: 110svh; }
  /* portrait: zoomed-out size (~50% of the photo visible), aligned to the
     RIGHT edge so the passenger is in frame; fades into black toward the form */
  .lhero {
    background-size: 185% auto;
    background-position: 55% top; /* photo shifted right — passenger lands on the right side of the screen */
    background-repeat: no-repeat;
    justify-content: flex-end;
  }
  .lhero::before {
    background:
      linear-gradient(180deg, rgba(8,8,7,.5) 0%, rgba(8,8,7,0) 16%),
      linear-gradient(180deg, rgba(8,8,7,0) 260px, rgba(8,8,7,.9) 430px, rgba(8,8,7,1) 100%);
  }
  .lhero__eyebrow {
    white-space: normal; flex-wrap: wrap; justify-content: center; row-gap: 4px;
    text-align: center; font-size: 12.5px; max-width: 100%;
  }
  .lhero__title { margin-bottom: 25px; font-size: 30px !important; /* beats the inline 45px from a direct edit */ }
  .bw__seg { width: 100%; }
  .bw__seg button { flex: 1; justify-content: center; }
  .lhero__chip { margin-top: 12px; width: 100%; }
  .lhero__chip .tx { font-size: 13.5px; }
}

/* ============================================================
   BLACKLANE-WIDE — display type (Montserrat) + Inter UI + real photos
   ============================================================ */
:root {
  --display: "Montserrat", system-ui, sans-serif;
  --text: "Inter", system-ui, -apple-system, sans-serif;
}

/* headings become the elegant serif at its true weight (400) */
h1, h2, h3, h4 { font-family: var(--display); font-weight: 400; letter-spacing: .2px; }
h1 { letter-spacing: .25px; }
.sec-head h2, .ready h2, .cta-band h2 { letter-spacing: .2px; }
.vcard__body h3, .svc h3, .fcard h3, .step-c h3, .feat h4, .faq-q, .tst p.q { line-height: 1.16; }

/* numbers / monograms that previously leaned on bold weight → serif 400 (no faux-bold) */
.stat .num, .pax .val, .step-c .n, .rc-stat .v, .trust__logos .tl,
.faq-q, .tst .who .av { font-weight: 400; }

/* keep small uppercase labels + meta in Inter for crispness */
.eyebrow, .fkicker, .trust__lab, .vcard__tag, .ph-label,
.field-lab, .pax .lab, .rc-stat .k, .step-c h3 ~ p,
.nav a, .linkbtn, .tab, .tag { font-family: "Inter", sans-serif; }

/* real photo fill */
.ph-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; z-index: 0; }
.ph-scrim { position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(180deg, transparent 38%, rgba(12,11,9,.62) 100%); }
.vcard__img .ph-img { z-index: 0; }
.fcard--photo .ph-img { z-index: 0; }
.fcard--photo::after { z-index: 1; }
.why__media .ph-img { z-index: 0; }

/* ============================================================
   V2 VARIANT — centered logo in the header (body.logo-center)
   nav left · logo dead-center · actions right
   ============================================================ */
body.logo-center .header__inner { position: relative; gap: 24px; }
body.logo-center .header__inner > a[aria-label="Lux Travely home"] {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  z-index: 2;
}
body.logo-center .header__inner > a[aria-label="Lux Travely home"] .logo svg { height: 32px; }
body.logo-center .nav { margin-left: 0; justify-content: flex-start; gap: 26px; }
body.logo-center .nav-left { display: flex; align-items: center; gap: 18px; flex: 1; position: relative; }
body.logo-center .header__spacer { display: none; }
body.logo-center .header__actions { flex: 1; justify-content: flex-end; }

/* phone: icon-only, number reveals on hover */
body.logo-center .linkbtn[href^="tel"] {
  gap: 0; padding: 10px; margin: -10px 0; border-radius: 12px;
  transition: background .18s;
}
body.logo-center .linkbtn[href^="tel"]:hover { background: rgba(255,255,255,.12); }
body.logo-center .linkbtn[href^="tel"] svg { width: 22px; height: 22px; }
body.logo-center .header.scrolled .linkbtn[href^="tel"]:hover { background: rgba(0,0,0,.06); }
body.logo-center .linkbtn[href^="tel"] .tel-num {
  display: inline-block; max-width: 0; overflow: hidden; white-space: nowrap;
  opacity: 0; margin-left: 0;
  transition: max-width .4s ease, opacity .3s ease, margin-left .4s ease;
}
body.logo-center .linkbtn[href^="tel"]:hover .tel-num,
body.logo-center .linkbtn[href^="tel"]:focus-visible .tel-num {
  max-width: 150px; opacity: 1; margin-left: 8px;
}

/* hamburger button */
body.logo-center .hamb {
  width: 42px; height: 42px; flex: 0 0 auto;
  display: grid; place-items: center; border-radius: 12px;
  color: var(--ink); transition: background .18s; /* color snaps — no fade through gray */
}
body.logo-center .hamb:hover { background: rgba(0,0,0,.06); }
body.logo-center .header:not(.scrolled) .hamb { color: rgba(255,255,255,.92); }
body.logo-center .header:not(.scrolled) .hamb:hover { background: rgba(255,255,255,.12); color: #fff; }

/* hamburger dropdown */
body.logo-center .hamb-menu {
  position: absolute; top: 60px; left: 0; min-width: 232px; z-index: 60;
  display: flex; flex-direction: column; gap: 1px; padding: 6px;
  background: #fff; border: 1px solid var(--line); border-radius: 12px;
  box-shadow: 0 12px 32px -12px rgba(0,0,0,.18);
}
body.logo-center .hamb-menu a {
  font-family: "Inter", sans-serif; font-size: 14px; font-weight: 500;
  color: var(--ink); padding: 10px 13px; border-radius: 8px; transition: background .15s;
}
body.logo-center .hamb-menu a:hover { background: rgba(0,0,0,.05); color: var(--black); }

/* ---- v2: floating capsule header when scrolled (perk-style) ---- */
body.logo-center .header { padding: 12px 16px 0; }
body.logo-center .header.scrolled {
  background: transparent; backdrop-filter: none;
  border-bottom-color: transparent; box-shadow: none;
}
body.logo-center .header__inner {
  border: 1px solid transparent; border-radius: 999px;
  transition: border-color .2s ease; /* bg/height/shadow snap — transitions freeze in some webviews */
}
body.logo-center .header.scrolled .header__inner {
  background: rgb(244,242,234);
  border-color: var(--line);
  box-shadow: 0 18px 44px -18px rgba(0,0,0,.3);
  height: 62px; padding: 0 12px 0 24px;
}
body.logo-center .header.scrolled .linkbtn { color: var(--black); }
body.logo-center .header.scrolled .linkbtn svg { color: var(--black); }
body.logo-center .header.scrolled .hamb { color: var(--black); }
body.logo-center .header.scrolled .nav-left .hamb { color: var(--black); } /* high-specificity guard */

/* ---- language picker (globe · EN/ES) ---- */
body.logo-center .lang { position: relative; display: flex; align-items: center; }
body.logo-center .lang__btn {
  gap: 4px; padding: 10px 8px; margin: -10px 0; border-radius: 12px;
  transition: background .18s;
}
body.logo-center .lang__btn:hover { background: rgba(255,255,255,.12); }
body.logo-center .header.scrolled .lang__btn:hover { background: rgba(0,0,0,.06); }
body.logo-center .lang__btn svg:last-child { opacity: .65; }
body.logo-center .lang__menu {
  position: absolute; top: calc(100% + 14px); right: 0; min-width: 172px; z-index: 70;
  display: flex; flex-direction: column; gap: 2px; padding: 6px;
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  box-shadow: 0 24px 56px -16px rgba(0,0,0,.3);
}
body.logo-center .lang__menu button {
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  font-family: "Inter", sans-serif; font-size: 14.5px; font-weight: 500; color: var(--ink);
  padding: 10px 12px; border-radius: 9px; text-align: left; transition: background .15s;
}
body.logo-center .lang__menu button:hover { background: rgba(0,0,0,.05); color: var(--black); }
body.logo-center .lang__menu button.on { background: rgba(180,168,134,.16); color: var(--black); }
body.logo-center .lang__menu button em { font-style: normal; font-size: 11.5px; letter-spacing: .06em; color: rgba(0,0,0,.45); }
body.logo-center .lang__menu button.on em { color: var(--gold-700); font-weight: 600; }
body.logo-center .lhero { margin-top: -95px; }

@media (max-width: 860px) {
  body.logo-center .header { padding: 10px 10px 0; }
  body.logo-center .lhero { margin-top: -89px; }
  body.logo-center .header.scrolled .header__inner { height: 56px; padding: 0 10px 0 14px; }
}
body.logo-center .hamb-menu a { display: flex; align-items: center; gap: 10px; }
body.logo-center .hamb-menu .hm-div { height: 1px; background: var(--line); margin: 6px 8px; }

/* ---- v2 mobile header: ☰ left · logo centered · compact actions right ---- */
@media (max-width: 860px) {
  body.logo-center .header__inner { gap: 12px; }
  body.logo-center .header__inner > a[aria-label="Lux Travely home"] .logo svg { height: 26px; }
  body.logo-center .nav-left { gap: 8px; }
  body.logo-center .header__actions { flex: 1; gap: 10px; }
  body.logo-center .linkbtn[href="#faq"] { display: none; }
  body.logo-center .header__actions .btn { height: 40px !important; padding: 0 16px !important; font-size: 14px; }
}
@media (max-width: 600px) {
  body.logo-center .header__inner > a[aria-label="Lux Travely home"] .logo svg { height: 20px; }
  body.logo-center .header__actions .linkbtn { display: none; } /* phone + sign in live in ☰ menu */
  body.logo-center .header__actions .btn { height: 38px !important; padding: 0 14px !important; font-size: 13.5px; }
  body.logo-center .hamb { width: 40px; height: 40px; }
  body.logo-center .hamb-menu { left: -6px; min-width: 248px; top: 56px; }
}

/* ---- v2 mobile actions: user icon only (phone + Book now live in ☰ menu) ---- */
@media (max-width: 680px) {
  body.logo-center .header__actions { gap: 2px; }
  body.logo-center .header__actions .btn,
  body.logo-center .header__actions .linkbtn[href^="tel"],
  body.logo-center .header__actions .linkbtn[href="#faq"] { display: none; }
  body.logo-center .header__actions .linkbtn[href="#book"] {
    display: inline-flex; align-items: center; justify-content: center;
    width: 44px; height: 44px; margin: -10px 0; padding: 0; border-radius: 12px;
    transition: background .18s;
  }
  body.logo-center .header__actions .linkbtn[href="#book"] .signin-label { display: none; }
  body.logo-center .header__actions .linkbtn[href="#book"] svg { width: 25px; height: 25px; }
  body.logo-center .header:not(.scrolled) .header__actions .linkbtn { color: rgba(255,255,255,.92); }
  body.logo-center .header:not(.scrolled) .header__actions .linkbtn:hover { background: rgba(255,255,255,.12); color: #fff; }
  body.logo-center .header.scrolled .header__actions .linkbtn:hover { background: rgba(0,0,0,.06); }
}

/* ---- v2 mobile sheet menu: full-screen panel ---- */
@media (max-width: 680px) {
  body.logo-center .hamb { position: relative; z-index: 80; }
  body.logo-center .hamb[aria-expanded="true"] { color: #fff; }
  body.logo-center .hamb[aria-expanded="true"]:hover { background: rgba(255,255,255,.12); }
  body.logo-center .hamb-menu {
    position: fixed; inset: 0; top: 0 !important; left: 0 !important;
    min-width: 0; border-radius: 0; border: none; z-index: 70;
    background: rgba(13,13,11,.97); backdrop-filter: blur(20px) saturate(130%);
    box-shadow: none; padding: 104px 26px 40px; gap: 2px; overflow-y: auto;
  }
  body.logo-center .hamb-menu a {
    color: rgba(255,255,255,.92); font-family: var(--serif); font-weight: 400;
    font-size: 27px; padding: 12px 6px; border-radius: 12px;
  }
  body.logo-center .hamb-menu a:hover { background: rgba(255,255,255,.06); color: #fff; }
  body.logo-center .hamb-menu .hm-div { background: rgba(255,255,255,.14); margin: 16px 6px; }
  body.logo-center .hamb-menu .hm-div ~ a {
    font-family: "Inter", sans-serif; font-size: 16px; font-weight: 500;
    color: rgba(255,255,255,.75); padding: 11px 6px;
  }
  body.logo-center .hamb-menu .hm-div ~ a svg { color: var(--gold-300); }
}

/* ---- mobile header polish: bigger ☰ pulled to the edge, Sign in kept in the bar ---- */
@media (max-width: 600px) {
  body.logo-center .header__inner { padding-left: 8px; padding-right: 8px; }
  body.logo-center .nav-left { margin-left: -2px; }
  body.logo-center .hamb { width: 44px; height: 44px; }
  body.logo-center .hamb svg { width: 23px; height: 23px; }
  /* show the desktop user icon instead of the "Sign in" text */
  body.logo-center .header__actions .signin { display: inline-flex; }
  body.logo-center .header__actions .signin .signin__btn {
    display: inline-flex; align-items: center; justify-content: center;
    width: 44px; height: 44px; gap: 0; padding: 0; -webkit-tap-highlight-color: transparent;
  }
  /* match the hamburger (23px); !important overrides the icon's inline 20px */
  body.logo-center .header__actions .signin .signin__btn > svg:first-child { display: inline-block; width: 23px !important; height: 23px !important; }
  body.logo-center .header__actions .signin .signin__btn .signin-label,
  body.logo-center .header__actions .signin .signin__btn > svg:last-child { display: none; }
  /* touch latches :hover after a tap — keep the button clean (no sticky box) */
  body.logo-center .header__actions .signin .signin__btn:hover,
  body.logo-center .header__actions .signin .signin__btn:active { background: transparent !important; }
}





/* cyrillic-ext */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 200;
  font-display: swap;
  src: url("/static/web/assets/fonts/a57d8e87.woff2") format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 200;
  font-display: swap;
  src: url("/static/web/assets/fonts/396765bf.woff2") format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* vietnamese */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 200;
  font-display: swap;
  src: url("/static/web/assets/fonts/b39e3dae.woff2") format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 200;
  font-display: swap;
  src: url("/static/web/assets/fonts/44701788.woff2") format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 200;
  font-display: swap;
  src: url("/static/web/assets/fonts/0c25296a.woff2") format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("/static/web/assets/fonts/a57d8e87.woff2") format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("/static/web/assets/fonts/396765bf.woff2") format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* vietnamese */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("/static/web/assets/fonts/b39e3dae.woff2") format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("/static/web/assets/fonts/44701788.woff2") format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("/static/web/assets/fonts/0c25296a.woff2") format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/static/web/assets/fonts/a57d8e87.woff2") format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/static/web/assets/fonts/396765bf.woff2") format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* vietnamese */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/static/web/assets/fonts/b39e3dae.woff2") format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/static/web/assets/fonts/44701788.woff2") format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/static/web/assets/fonts/0c25296a.woff2") format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("/static/web/assets/fonts/a57d8e87.woff2") format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("/static/web/assets/fonts/396765bf.woff2") format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* vietnamese */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("/static/web/assets/fonts/b39e3dae.woff2") format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("/static/web/assets/fonts/44701788.woff2") format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("/static/web/assets/fonts/0c25296a.woff2") format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/static/web/assets/fonts/a57d8e87.woff2") format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/static/web/assets/fonts/396765bf.woff2") format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* vietnamese */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/static/web/assets/fonts/b39e3dae.woff2") format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/static/web/assets/fonts/44701788.woff2") format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/static/web/assets/fonts/0c25296a.woff2") format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/static/web/assets/fonts/a57d8e87.woff2") format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/static/web/assets/fonts/396765bf.woff2") format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* vietnamese */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/static/web/assets/fonts/b39e3dae.woff2") format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/static/web/assets/fonts/44701788.woff2") format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/static/web/assets/fonts/0c25296a.woff2") format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
