*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --carbon:  #0a0b0e;
  --sand:    #c4a97a;
  --sand-lt: #d9be97;
  --blue:    #2558d9;
  --white:   #f5f5f2;
  --muted:   rgba(245,245,242,.45);
  --border:  rgba(245,245,242,.09);
  --serif:   'Cormorant Garamond', Georgia, serif;
  --sans:    'Raleway', system-ui, sans-serif;
}

html { scroll-behavior: smooth; overflow-x: hidden; max-width: 100%; }
body {
  font-family: var(--sans);
  font-weight: 300;
  background: var(--carbon);
  color: var(--white);
  overflow-x: hidden;
  max-width: 100%;
}

[data-en]                      { display: none; }
html[data-lang="en"] [data-es] { display: none; }
html[data-lang="en"] [data-en] { display: inline; }
html[data-lang="es"] [data-es] { display: inline; }


/* ═══════════════════════════
   NAVBAR
═══════════════════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 52px;
  transition: background .4s, backdrop-filter .4s, padding .3s, border-color .4s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(10,11,14,.96);
  backdrop-filter: blur(20px);
  padding: 16px 52px;
  border-color: var(--border);
}
.nav__brand  { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav__logo   { height: 36px; width: auto; }
.nav__name   {
  font-family: var(--serif);
  font-size: 22px; font-weight: 400;
  letter-spacing: 6px; text-transform: uppercase;
  color: var(--white);
}
.nav__name-sub {
  font-family: var(--serif);
  font-size: 22px; font-weight: 400;
  letter-spacing: 6px;
  color: var(--white);
}
.nav__links  { display: flex; gap: 2px; list-style: none; }
.nav__links a {
  color: rgba(245,245,242,.65); text-decoration: none;
  font-size: 12px; font-weight: 400; letter-spacing: .8px;
  padding: 8px 16px; border-radius: 4px;
  display: flex; align-items: center; gap: 4px;
  transition: color .2s, background .2s;
}
.nav__links a:hover { color: var(--white); background: rgba(255,255,255,.06); }
.nav__right  { display: flex; align-items: center; gap: 10px; }
.nav__lang {
  background: none; border: none; font-family: var(--sans); cursor: pointer;
  color: rgba(245,245,242,.65); font-size: 12px; font-weight: 400; letter-spacing: .8px;
  padding: 8px 14px; border-radius: 4px;
  display: flex; align-items: center; gap: 4px;
  transition: color .2s, background .2s;
}
.nav__lang:hover { color: var(--white); background: rgba(255,255,255,.06); }
.nav__lang-short { display: none; }
.nav__cta {
  color: var(--white); text-decoration: none;
  font-size: 12px; font-weight: 500; letter-spacing: .8px;
  border: 1px solid rgba(245,245,242,.3); padding: 9px 24px; border-radius: 100px;
  transition: border-color .25s, background .25s;
}
.nav__cta:hover { border-color: var(--white); background: rgba(255,255,255,.07); }
.nav__book {
  color: var(--carbon); text-decoration: none;
  font-size: 12px; font-weight: 600; letter-spacing: .8px;
  background: var(--sand);
  padding: 9px 22px; border-radius: 100px;
  transition: background .22s, transform .18s;
  white-space: nowrap;
}
.nav__book:hover { background: var(--sand-lt); transform: translateY(-1px); }
.chev { width: 11px; height: 11px; opacity: .4; }

/* ── Hamburger button ── */
.nav__burger {
  display: none;
  flex-direction: column; justify-content: center; align-items: center; gap: 5px;
  width: 36px; height: 36px;
  background: none; border: none; cursor: pointer; padding: 0;
  z-index: 210; position: relative;
}
.nav__burger span {
  display: block; width: 20px; height: 1.5px;
  background: rgba(245,245,242,.8); border-radius: 2px;
  transition: transform .32s cubic-bezier(.22,1,.36,1), opacity .22s, width .28s;
}
.nav__burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; width: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── Mobile drawer ── */
.nav__drawer {
  position: fixed; inset: 0;
  background: rgba(8,7,5,.97);
  backdrop-filter: blur(24px);
  z-index: 195;
  display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  padding: 80px 40px 60px;
  opacity: 0; pointer-events: none;
  transition: opacity .28s ease;
}
.nav__drawer.open { opacity: 1; pointer-events: all; }

.nav__drawer-links {
  list-style: none;
  display: flex; flex-direction: column; align-items: stretch;
  width: 100%; max-width: 380px; margin-bottom: 48px;
}
.nav__drawer-links li { border-bottom: 1px solid rgba(245,245,242,.08); }
.nav__drawer-links li:first-child { border-top: 1px solid rgba(245,245,242,.08); }
.nav__drawer-links a {
  display: block;
  font-family: var(--serif);
  font-size: clamp(30px, 7vw, 48px);
  font-weight: 300; letter-spacing: 2px;
  color: rgba(245,245,242,.72);
  text-decoration: none;
  padding: 18px 0;
  transition: color .2s, padding-left .24s;
}
.nav__drawer-links a:hover,
.nav__drawer-links a.active { color: var(--sand); }

.nav__drawer-footer {
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap; justify-content: center;
}
.nav__drawer-wa {
  display: inline-flex; align-items: center; gap: 8px;
  color: rgba(245,245,242,.45); text-decoration: none;
  font-size: 12px; font-weight: 400; letter-spacing: 2px; text-transform: uppercase;
  border: 1px solid rgba(245,245,242,.14); padding: 10px 24px; border-radius: 100px;
  transition: color .2s, border-color .2s;
}
.nav__drawer-wa:hover { color: #25d366; border-color: rgba(37,211,102,.4); }

body.menu-open { overflow: hidden; }

@media (max-width: 1100px) {
  .nav__burger { display: flex; }
  .nav__right .nav__lang { display: flex; }
  #lang-label, .nav__lang .chev { display: none; }
  .nav__lang-short { display: inline; font-size: 11px; letter-spacing: 1.5px; }
  .nav__drawer-footer .nav__lang { display: none; }
}
@media (max-width: 480px) {
  .nav__name   { display: none; } /* solo logo en pantallas muy pequeñas */
  .nav__book   { font-size: 11px; padding: 7px 16px; }
}


/* ═══════════════════════════
   HERO
═══════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 140px 40px 44px;
}

/* Hero headline */
.hero__copy {
  flex: 1;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  position: relative; z-index: 10;
  pointer-events: none;
  padding-bottom: 24px;
}
.hero__tag {
  font-size: 10px; font-weight: 600; letter-spacing: 5px;
  text-transform: uppercase; color: var(--sand);
  margin-bottom: 20px;
  display: flex; align-items: center; gap: 14px;
}
.hero__tag::before,
.hero__tag::after { content: ''; width: 28px; height: 1px; background: var(--sand); opacity: .55; }
.hero__h1 {
  font-family: var(--serif);
  font-size: clamp(44px, 6vw, 88px);
  font-weight: 300; line-height: 1.08;
  letter-spacing: -.5px;
  color: var(--white);
  text-shadow: 0 4px 32px rgba(0,0,0,.4);
  margin-bottom: 20px;
}
.hero__sub {
  font-size: 15px; font-weight: 300;
  color: rgba(245,245,242,.62);
  letter-spacing: .5px;
  display: flex; align-items: center; gap: 14px;
}
.hero__sub-line { display: inline-block; width: 28px; height: 1px; background: var(--sand); opacity: .55; flex-shrink: 0; }
.hero__24 {
  font-family: var(--sans); font-size: 11px; font-weight: 300;
  letter-spacing: 3.5px; text-transform: uppercase;
  color: rgba(245,245,242,.65);
  margin: 6px 0 22px;
}
.hero__bg {
  position: absolute; inset: 0;
  background: url('../img/hero.jpg') center 40% / cover no-repeat;
  background-color: #0a0b0e;
}

/* Time-of-day color overlay (updated by JS from Los Cabos clock) */
.hero__time {
  position: absolute; inset: 0; z-index: 2;
  pointer-events: none;
  transition: background 3s ease;
}
.hero__bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,11,14,.10) 0%,
    rgba(10,11,14,.04) 20%,
    rgba(10,11,14,.22) 55%,
    rgba(10,11,14,.82) 85%,
    rgba(10,11,14,.93) 100%
  );
}


/* ── Booking wrap ── */
.booking-wrap {
  position: relative; z-index: 10;
  width: 100%; max-width: 1100px;
  display: flex; flex-direction: column; align-items: center;
  gap: 14px;
}

/* Tabs pill */
.bc__tabs {
  display: inline-flex;
  background: rgba(8,7,6,.75);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(245,245,242,.1);
  border-radius: 100px;
  padding: 5px;
  gap: 3px;
}
.bc__tab {
  background: none; border: none;
  color: rgba(245,245,242,.5);
  font-family: var(--sans); font-size: 14px; font-weight: 400;
  letter-spacing: .4px;
  padding: 11px 26px; border-radius: 100px;
  cursor: pointer; transition: all .22s;
}
.bc__tab.on  { background: var(--sand); color: #120e07; font-weight: 600; }
.bc__tab:not(.on):hover { color: var(--white); }

.bc__tabs-row {
  display: inline-flex; align-items: center; gap: 10px;
}
.bc__tab-info {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(10,9,8,.72);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(245,245,242,.2);
  color: rgba(245,245,242,.55);
  cursor: pointer; flex-shrink: 0;
  transition: all .2s;
}
.bc__tab-info:hover {
  border-color: rgba(196,169,122,.5);
  color: var(--sand);
}

/* As-Directed info card */
.asdir-card {
  display: none;
  width: 100%; max-width: 540px;
  background: rgba(10,9,8,.88);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(196,169,122,.25);
  border-radius: 14px;
  padding: 20px 22px;
  position: relative;
}
.asdir-card.open { display: block; }
.asdir-card__headline {
  font-family: var(--serif); font-size: 13px; font-weight: 300;
  letter-spacing: 1px; color: var(--sand);
  text-align: center; margin-bottom: 16px;
  text-transform: uppercase;
}
.asdir-card__list {
  list-style: none; display: flex; flex-direction: column; gap: 13px;
}
.asdir-card__list li {
  display: flex; align-items: flex-start; gap: 11px;
  color: rgba(245,245,242,.55); font-size: 12px; line-height: 1.5;
}
.asdir-card__list li svg { flex-shrink: 0; margin-top: 1px; color: var(--sand); opacity: .7; }
.asdir-card__list strong {
  display: block; color: rgba(245,245,242,.85);
  font-size: 12px; font-weight: 500; letter-spacing: .3px;
  margin-bottom: 2px;
}

/* Direction row — airport mode only */
.bb__dir-row {
  display: none;
  gap: 6px;
  align-items: center;
}
body.svc-airport .bb__dir-row { display: flex; }

.bb__dir-btn {
  background: rgba(8,7,6,.75);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(245,245,242,.1);
  border-radius: 100px;
  color: rgba(245,245,242,.48);
  font-family: var(--sans); font-size: 13px; font-weight: 400;
  letter-spacing: .3px;
  padding: 9px 22px; cursor: pointer;
  display: flex; align-items: center; gap: 8px;
  transition: all .22s;
}
.bb__dir-btn.on {
  background: rgba(196,169,122,.1);
  border-color: rgba(196,169,122,.5);
  color: var(--sand);
}
.bb__dir-btn:not(.on):hover { color: var(--white); border-color: rgba(245,245,242,.2); }

/* Search bar row */
.booking-bar {
  width: 100%;
  background: rgba(10,9,8,.9);
  backdrop-filter: blur(30px) saturate(1.4);
  border: 1px solid rgba(245,245,242,.12);
  border-radius: 16px;
  display: flex; align-items: stretch;
  box-shadow: 0 24px 64px rgba(0,0,0,.6);
  overflow: hidden;
}

.bb__field {
  flex: 1; min-width: 0;
  padding: 22px 26px 20px;
  cursor: text;
  transition: background .18s;
  display: flex; flex-direction: column; justify-content: center;
}
.bb__field:hover       { background: rgba(255,255,255,.04); }
.bb__field--sm         { flex: 0 0 140px; }
.bb__field--md         { flex: 0 0 170px; }
.bb__field--xs         { flex: 0 0 78px; }

.bb__lbl {
  display: block;
  font-size: 10px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  color: rgba(245,245,242,.36);
  margin-bottom: 7px;
}

.bb__inp {
  width: 100%; background: none; border: none; outline: none;
  color: var(--white); font-family: var(--sans);
  font-size: 14px; font-weight: 300; letter-spacing: .1px;
  -webkit-appearance: none; appearance: none;
}
.bb__inp::placeholder          { color: rgba(245,245,242,.27); }
.bb__inp::-webkit-calendar-picker-indicator { display: none; }
.bb__inp::-webkit-outer-spin-button,
.bb__inp::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.bb__inp[type="number"] { -moz-appearance: textfield; }
.bb__inp.locked                { color: var(--sand); cursor: default; }
.bb__inp option                { background: #151410; }

/* Duration selector — solo visible en modo As-Directed */
#bb-duration               { display: none; cursor: pointer; }
body.svc-hour #bb-dest     { display: none; }
body.svc-hour #bb-duration { display: block; }
.bb__duration-sel option   { background: #151410; color: var(--white); letter-spacing: .5px; }

.bb__div {
  width: 1px; align-self: stretch;
  margin: 18px 0;
  background: rgba(245,245,242,.09);
  flex-shrink: 0;
}

.bb__cta {
  flex-shrink: 0;
  margin: 10px 12px 10px 8px;
  background: var(--sand); color: #120e07;
  border: none; padding: 0 34px; border-radius: 10px;
  font-family: var(--sans); font-size: 14px; font-weight: 600;
  letter-spacing: .4px;
  cursor: pointer; white-space: nowrap;
  transition: background .2s, transform .15s;
  box-shadow: 0 4px 22px rgba(196,169,122,.28);
}
.bb__cta:hover  { background: var(--sand-lt); transform: translateY(-1px); }
.bb__cta:active { transform: translateY(0); }

/* Extras row */
.bb__extras {
  display: flex; align-items: center; gap: 8px;
  width: 100%; flex-wrap: wrap;
}

.bb__extra-btn {
  background: rgba(10,9,8,.72);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(245,245,242,.1);
  border-radius: 100px;
  color: rgba(245,245,242,.5);
  font-family: var(--sans); font-size: 12px; font-weight: 400; letter-spacing: .5px;
  padding: 9px 18px; cursor: pointer;
  display: flex; align-items: center; gap: 7px;
  transition: all .22s;
}
.bb__extra-btn:hover  { border-color: rgba(196,169,122,.35); color: var(--sand); }
.bb__extra-btn.on     { background: rgba(196,169,122,.1); border-color: rgba(196,169,122,.45); color: var(--sand); }

.bb__luggage {
  display: flex; align-items: center; gap: 10px;
  background: rgba(10,9,8,.72);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(245,245,242,.1);
  border-radius: 100px;
  padding: 9px 18px;
  color: rgba(245,245,242,.5);
  font-size: 12px; font-weight: 400; letter-spacing: .5px;
}
.bb__counter { display: flex; align-items: center; gap: 10px; }
.bb__counter button {
  background: none; border: none; cursor: pointer;
  color: rgba(245,245,242,.4);
  font-size: 17px; line-height: 1;
  width: 20px; text-align: center;
  transition: color .18s;
}
.bb__counter button:hover { color: var(--sand); }
#luggage-count {
  font-family: var(--serif); font-size: 18px; font-weight: 300;
  color: var(--white); min-width: 14px; text-align: center;
}

/* Amenities strip */
.bb__amenities {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  align-items: start;
  justify-items: center;
  flex: 1; min-width: 0;
}
.bb__amenity {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  color: rgba(245,245,242,.35);
  cursor: default;
  transition: color .2s;
}
.bb__amenity svg {
  display: flex;
  padding: 11px;
  width: 30px; height: 30px; box-sizing: content-box;
  border-radius: 50%;
  border: 1px solid rgba(245,245,242,.1);
  background: rgba(10,9,8,.5);
  transition: border-color .2s, background .2s;
  flex-shrink: 0;
}
.bb__amenity:hover { color: var(--sand); }
.bb__amenity:hover svg {
  border-color: rgba(196,169,122,.4);
  background: rgba(196,169,122,.07);
}
.bb__amenity-lbl {
  font-family: var(--sans); font-size: 9px; font-weight: 400;
  letter-spacing: .4px; text-transform: uppercase;
  color: inherit; white-space: normal; text-align: center; line-height: 1.35;
}

/* Stop expansion panel */
.bb__stop-panel {
  width: 100%; overflow: hidden;
  max-height: 0; opacity: 0;
  transition: max-height .42s cubic-bezier(.22,1,.36,1), opacity .28s;
  pointer-events: none;
}
.bb__stop-panel.open { max-height: 110px; opacity: 1; pointer-events: all; }

.bb__stop-bar {
  display: flex; align-items: center; gap: 12px;
  background: rgba(10,9,8,.9);
  backdrop-filter: blur(30px) saturate(1.4);
  border: 1px solid rgba(245,245,242,.12);
  border-radius: 12px;
  padding: 16px 20px;
  margin-bottom: 10px;
}
.bb__stop-inp {
  flex: 1; background: none; border: none; outline: none;
  color: var(--white); font-family: var(--sans);
  font-size: 14px; font-weight: 300; letter-spacing: .1px;
}
.bb__stop-inp::placeholder { color: rgba(245,245,242,.27); }
.bb__stop-remove {
  background: rgba(255,255,255,.07); border: none;
  color: rgba(245,245,242,.45); width: 26px; height: 26px;
  border-radius: 50%; cursor: pointer; font-size: 12px;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, color .2s; flex-shrink: 0;
}
.bb__stop-remove:hover { background: rgba(255,255,255,.14); color: var(--white); }

.bb__stop-notice {
  display: flex; align-items: center; gap: 7px;
  font-size: 12px; font-weight: 300;
  color: rgba(196,169,122,.65); letter-spacing: .2px;
}

/* Time trigger (inside booking bar) */
.bb__time-trigger {
  width: 100%; background: none; border: none; padding: 0;
  cursor: pointer;
  display: flex; align-items: center; gap: 7px;
  font-family: var(--sans); font-size: 14px; font-weight: 300;
  color: var(--white); letter-spacing: .1px;
}
.bb__time-trigger .bb__veh-chev { margin-left: auto; }

/* Time picker dropdown */
.bb__tp {
  position: fixed; z-index: 600;
  background: rgba(13,12,10,.97);
  backdrop-filter: blur(28px) saturate(1.4);
  border: 1px solid rgba(245,245,242,.12);
  border-radius: 16px; padding: 14px;
  width: 230px;
  box-shadow: 0 28px 72px rgba(0,0,0,.72);
  opacity: 0; pointer-events: none;
  transform: translateY(-6px);
  transition: opacity .18s, transform .18s;
}
.bb__tp.open { opacity: 1; pointer-events: all; transform: translateY(0); }

/* AM / PM toggle */
.bb__tp-ampm {
  display: flex; gap: 4px; margin-bottom: 14px;
}
.bb__tp-ap {
  flex: 1; padding: 9px 0;
  background: none; border: 1px solid rgba(245,245,242,.1);
  border-radius: 8px;
  color: rgba(245,245,242,.35);
  font-family: var(--sans); font-size: 11px; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  cursor: pointer; transition: all .18s;
}
.bb__tp-ap.on {
  background: rgba(196,169,122,.12);
  border-color: rgba(196,169,122,.45);
  color: var(--sand);
}

/* Main row: hour spinner + colon + minute pills */
.bb__tp-main {
  display: flex; align-items: center; justify-content: center; gap: 12px;
}

/* Hour spinner */
.bb__tp-hour {
  display: flex; flex-direction: column; align-items: center; gap: 2px;
}
.bb__tp-arrow {
  background: none; border: none; cursor: pointer;
  color: rgba(245,245,242,.3); padding: 6px 10px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  transition: background .15s, color .15s;
}
.bb__tp-arrow:hover { background: rgba(255,255,255,.07); color: var(--white); }
.bb__tp-hnum {
  font-family: var(--serif);
  font-size: 48px; font-weight: 300; line-height: 1;
  color: var(--white); min-width: 56px; text-align: center;
  letter-spacing: -1px;
}

/* Colon */
.bb__tp-colon {
  font-family: var(--serif); font-size: 40px; font-weight: 300;
  color: rgba(245,245,242,.25); line-height: 1;
  margin-bottom: 4px;
}

/* Minute pills (2×2 grid) */
.bb__tp-mgrid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5px;
}
.bb__tp-mslot {
  padding: 10px 0; text-align: center; border-radius: 8px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(245,245,242,.08);
  font-family: var(--sans); font-size: 14px; font-weight: 300;
  color: rgba(245,245,242,.5);
  cursor: pointer; transition: all .15s; min-width: 44px;
}
.bb__tp-mslot:hover { background: rgba(255,255,255,.08); color: var(--white); }
.bb__tp-mslot.on {
  background: rgba(196,169,122,.12);
  border-color: rgba(196,169,122,.45);
  color: var(--sand); font-weight: 500;
}

/* Vehicle thumbnail picker */
.bb__field--veh { flex: 0 0 195px; }

.bb__veh-trigger {
  width: 100%; background: none; border: none; padding: 0;
  cursor: pointer;
  display: flex; align-items: center; gap: 9px;
}

.bb__veh-thumb {
  width: 66px; height: 33px;
  object-fit: contain; flex-shrink: 0;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,.45));
}

.bb__veh-name {
  font-family: var(--sans); font-size: 14px; font-weight: 300;
  color: var(--white); flex: 1;
  text-align: left; white-space: nowrap;
  overflow: hidden; text-overflow: ellipsis;
}

.bb__veh-chev {
  opacity: .38; flex-shrink: 0;
  transition: transform .2s;
}
.bb__veh-trigger.open .bb__veh-chev { transform: rotate(180deg); }

/* Floating dropdown */
.bb__veh-dropdown {
  position: fixed; z-index: 600;
  background: rgba(13,12,10,.97);
  backdrop-filter: blur(28px) saturate(1.4);
  border: 1px solid rgba(245,245,242,.12);
  border-radius: 16px; padding: 8px;
  width: 310px;
  box-shadow: 0 28px 72px rgba(0,0,0,.72);
  opacity: 0; pointer-events: none;
  transform: translateY(-6px);
  transition: opacity .18s, transform .18s;
}
.bb__veh-dropdown.open {
  opacity: 1; pointer-events: all;
  transform: translateY(0);
}

.bb__veh-opt {
  display: flex; align-items: center; gap: 12px;
  padding: 8px 10px; border-radius: 10px;
  cursor: pointer;
  transition: background .16s;
}
.bb__veh-opt:hover   { background: rgba(255,255,255,.06); }
.bb__veh-opt.active  { background: rgba(196,169,122,.1); }

.bb__veh-opt-img {
  width: 108px; height: 54px;
  object-fit: contain; flex-shrink: 0;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,.5));
}

.bb__veh-opt-name {
  display: block; font-size: 13px; font-weight: 400;
  color: var(--white); margin-bottom: 3px;
}
.bb__veh-opt.active .bb__veh-opt-name { color: var(--sand); }

.bb__veh-opt-cap {
  font-size: 11px; font-weight: 300;
  color: rgba(245,245,242,.4); letter-spacing: .2px;
}



/* ═══════════════════════════
   RESULTS PANEL
═══════════════════════════ */
.rp {
  background: #0d0c0a;
  border-top: 1px solid rgba(245,245,242,.07);
  max-height: 0; overflow: hidden;
  transition: max-height .65s cubic-bezier(.22,1,.36,1);
}
.rp.open { max-height: 1400px; }

.rp__inner { max-width: 1100px; margin: 0 auto; padding: 40px 52px 48px; }

.rp__header {
  display: flex; align-items: center; gap: 24px;
  margin-bottom: 28px; flex-wrap: wrap;
}
.rp__route-line {
  display: flex; align-items: center; gap: 12px;
  flex: 1; min-width: 0;
}
.rp__loc {
  font-family: var(--serif); font-size: 22px; font-weight: 300;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.rp__meta-line {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 300; color: var(--muted);
  flex-wrap: wrap;
}
.rp__sep { opacity: .4; }
.rp__new {
  background: none; border: 1px solid rgba(245,245,242,.15);
  color: rgba(245,245,242,.55); font-family: var(--sans);
  font-size: 12px; font-weight: 400; letter-spacing: .5px;
  padding: 9px 18px; border-radius: 100px; cursor: pointer;
  display: flex; align-items: center; gap: 7px;
  transition: all .2s; white-space: nowrap;
}
.rp__new:hover { border-color: rgba(245,245,242,.35); color: var(--white); }

.rp__body {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 24px;
  align-items: start;
}

.rp__map-wrap {
  position: relative;
  border-radius: 14px; overflow: hidden;
  border: 1px solid rgba(245,245,242,.09);
  height: 420px;
}
#rp-map { position: absolute; inset: 0; }

/* Map card — reemplaza el iframe, funciona en todos los dispositivos */
.rp__map-card {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 32px;
  background: linear-gradient(135deg, rgba(12,11,9,.97) 0%, rgba(20,16,10,.95) 100%);
}
.rp__map-route {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  text-align: center;
}
.rp__map-loc {
  display: flex; flex-direction: column; gap: 4px;
}
.rp__map-lbl {
  font-size: 9px; font-weight: 600; letter-spacing: 2.5px;
  text-transform: uppercase; color: rgba(245,245,242,.28);
}
.rp__map-place {
  font-family: var(--serif); font-size: 20px; font-weight: 300;
  color: rgba(245,245,242,.85); letter-spacing: .2px;
}
.rp__map-arrow {
  color: rgba(196,169,122,.45); line-height: 0;
  padding: 2px 0;
}
.rp__map-btn {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--sand); color: #120e07;
  font-family: var(--sans); font-size: 11px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase; text-decoration: none;
  padding: 13px 28px; border-radius: 100px;
  transition: background .2s, transform .15s;
  white-space: nowrap;
}
.rp__map-btn:hover { background: var(--sand-lt); transform: translateY(-1px); }

/* Booking summary */
.rp__summary {
  background: rgba(10,9,8,.82);
  border: 1px solid rgba(245,245,242,.1);
  border-radius: 14px; padding: 24px 24px 22px;
  display: flex; flex-direction: column;
}
.rp__sum-title {
  font-family: var(--serif); font-size: 22px; font-weight: 300;
  letter-spacing: .2px; margin-bottom: 18px;
  padding-bottom: 14px; border-bottom: 1px solid rgba(245,245,242,.08);
}
.rp__sum-row {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 12px; padding: 10px 0;
  border-bottom: 1px solid rgba(245,245,242,.06);
}
.rp__sum-row:last-of-type { border-bottom: none; }
.rp__sum-lbl {
  font-size: 10px; font-weight: 600; letter-spacing: 1.8px;
  text-transform: uppercase; color: rgba(245,245,242,.32);
  white-space: nowrap; flex-shrink: 0;
}
.rp__sum-val {
  font-size: 13px; font-weight: 300; color: var(--white);
  text-align: right; line-height: 1.5;
}
.rp__sum-val.gold { color: var(--sand); }

.rp__sum-cost {
  margin-top: 4px;
  padding-top: 14px !important;
  border-top: 1px solid rgba(196,169,122,.15) !important;
  border-bottom: none !important;
  flex-wrap: wrap; gap: 6px;
}
.rp__sum-stop-note {
  width: 100%; text-align: right;
  font-size: 10px; font-weight: 400; letter-spacing: .4px;
  color: rgba(196,169,122,.6);
  margin-top: 2px;
}

.rp__sum-client { display: flex; flex-direction: column; gap: 10px; margin-top: 18px; }
.rp__sum-inp {
  width: 100%; background: rgba(255,255,255,.05);
  border: 1px solid rgba(245,245,242,.14); border-radius: 10px;
  color: var(--white); font-family: var(--sans); font-size: 13px;
  padding: 12px 14px; outline: none; transition: border-color .2s;
  box-sizing: border-box;
}
.rp__sum-inp::placeholder { color: rgba(245,245,242,.35); }
.rp__sum-inp:focus { border-color: rgba(196,169,122,.6); }

.rp__sum-actions { margin-top: 14px; display: flex; flex-direction: column; gap: 10px; }
.rp__sum-book {
  width: 100%; background: var(--sand); color: #120e07;
  border: none; padding: 14px;
  border-radius: 10px; font-family: var(--sans);
  font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  cursor: pointer; transition: background .2s, transform .15s;
  display: flex; align-items: center; justify-content: center; gap: 9px;
}
.rp__sum-book:hover { background: var(--sand-lt); transform: translateY(-1px); }
.rp__sum-edit {
  width: 100%; background: none;
  border: 1px solid rgba(245,245,242,.14);
  color: rgba(245,245,242,.5); padding: 12px;
  border-radius: 10px; font-family: var(--sans);
  font-size: 12px; font-weight: 400; letter-spacing: .5px;
  cursor: pointer; transition: all .2s;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.rp__sum-edit:hover { border-color: rgba(245,245,242,.3); color: var(--white); }

/* Loading state */
.rp__loading {
  display: flex; align-items: center; justify-content: center;
  height: 420px; color: var(--muted); font-size: 14px; font-weight: 300;
  letter-spacing: .3px; gap: 12px;
}
.rp__spinner {
  width: 18px; height: 18px; border: 2px solid rgba(196,169,122,.2);
  border-top-color: var(--sand); border-radius: 50%;
  animation: spin .7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

@media (max-width:900px) {
  .rp__body { grid-template-columns: 1fr; }
  .rp__map-wrap { height: 300px; order: 2; }
  .rp__options  { order: 1; }
  .rp.open { max-height: 1400px; }
  .rp__inner { padding: 28px 20px 36px; }
}

/* ═══════════════════════════
   FLEET CAROUSEL
═══════════════════════════ */
.fleet-wrap {
  position: relative;
  background: #0d0c0b;
  padding: 56px 0 52px;
  overflow: hidden;
}

.fs__tag {
  text-align: center;
  font-size: 10px; font-weight: 600; letter-spacing: 4.5px; text-transform: uppercase;
  color: var(--sand); margin-bottom: 36px;
  display: flex; align-items: center; justify-content: center; gap: 16px;
}
.fs__tag::before,
.fs__tag::after { content: ''; width: 36px; height: 1px; background: var(--sand); opacity: .45; }

/* Carousel container */
.fs {
  position: relative;
  max-width: 1280px; margin: 0 auto;
  padding: 0 90px;
  height: 580px;
}

/* Slides */
.fs__slide {
  position: absolute; inset: 0;
  display: flex; align-items: center; gap: 20px;
  padding-left: 62px; padding-right: 62px;
  opacity: 0; pointer-events: none;
  transition: opacity .5s cubic-bezier(.22,1,.36,1);
}
.fs__slide.on { opacity: 1; pointer-events: all; }

/* Info block */
.fs__info { width: 260px; flex-shrink: 0; }
.fs__vtype {
  font-size: 11px; font-weight: 500; letter-spacing: 3px; text-transform: uppercase;
  color: rgba(245,245,242,.35); margin-bottom: 10px;
}
.fs__vname {
  font-family: var(--sans); font-size: clamp(48px, 5vw, 72px);
  font-weight: 700; line-height: 1; letter-spacing: -1px;
  color: var(--white); margin-bottom: 16px;
}
.fs__rule {
  width: 44px; height: 3px; border-radius: 2px;
  background: linear-gradient(90deg, var(--sand), rgba(196,169,122,.3));
  margin-bottom: 24px;
}
.fs__vmeta { display: flex; flex-direction: column; gap: 10px; }
.fs__vm {
  display: flex; align-items: center; gap: 9px;
  font-size: 13px; font-weight: 300; color: var(--muted); letter-spacing: .1px;
}
.fs__vm svg { color: var(--sand); flex-shrink: 0; }

/* Image */
.fs__img-wrap {
  flex: 1; position: relative;
  display: flex; align-items: center; justify-content: center;
  height: 100%;
}
.fs__img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  filter: drop-shadow(0 20px 48px rgba(0,0,0,.6));
  transition: opacity .55s ease, transform .6s cubic-bezier(.22,1,.36,1);
}
.fs__slide.on .fs__img { transform: scale(1); }

/* Interior overlay */
.fs__img-wrap--int { overflow: visible; }

/* Inner container — tamaño fijo igual para todas las fotos */
.fs__img-inner {
  position: relative;
  width: 580px;
  max-width: 100%;
  height: 380px;
  overflow: hidden;
  border-radius: 12px;
  line-height: 0;
}

.fs__img--ext {
  display: block;
  transition: opacity .5s ease;
}

.fs__img--int {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity .5s ease;
  -webkit-mask-image:
    linear-gradient(to bottom, transparent 0%, black 14%, black 86%, transparent 100%),
    linear-gradient(to right,  transparent 0%, black  8%, black 92%, transparent 100%);
          mask-image:
    linear-gradient(to bottom, transparent 0%, black 14%, black 86%, transparent 100%),
    linear-gradient(to right,  transparent 0%, black  8%, black 92%, transparent 100%);
  -webkit-mask-composite: destination-in;
          mask-composite: intersect;
}

.fs__img-wrap--int.open .fs__img--ext { opacity: 0; }
.fs__img-wrap--int.open .fs__img--int { opacity: 1; }

/* ── Interior carousel ── */
.fs__int-carousel {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity .5s ease;
  -webkit-mask-image:
    linear-gradient(to bottom, transparent 0%, black 14%, black 86%, transparent 100%),
    linear-gradient(to right,  transparent 0%, black  8%, black 92%, transparent 100%);
          mask-image:
    linear-gradient(to bottom, transparent 0%, black 14%, black 86%, transparent 100%),
    linear-gradient(to right,  transparent 0%, black  8%, black 92%, transparent 100%);
  -webkit-mask-composite: destination-in;
          mask-composite: intersect;
}
.fs__img-wrap--int.open .fs__int-carousel { opacity: 1; }

.fs__int-slide {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity .4s ease;
}
.fs__int-slide.on { opacity: 1; }


/* Exterior placeholder card when no real photo yet */
.fs__img--coming {
  width: 560px; max-width: 100%;
  height: 360px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 16px;
  background: linear-gradient(135deg, rgba(255,255,255,.025) 0%, rgba(255,255,255,.045) 100%);
  border: 1px dashed rgba(245,245,242,.1);
  border-radius: 12px;
  color: rgba(245,245,242,.18);
  font-family: var(--sans); font-size: 10px; font-weight: 600;
  letter-spacing: 3px; text-transform: uppercase;
}

/* Placeholder when interior photo not yet available */
.fs__img--ph {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 10px;
  background: rgba(10,9,8,.9);
  color: rgba(245,245,242,.25);
  font-family: var(--sans); font-size: 10px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
}

/* Tab button — inside the image via .fs__img-inner */
.fs__acc-btn {
  position: absolute; right: 0; bottom: 28px;
  z-index: 10;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  background: rgba(10,9,8,.80);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(245,245,242,.16);
  border-right: none;
  border-radius: 10px 0 0 10px;
  padding: 18px 10px;
  cursor: pointer;
  transition: background .2s, border-color .2s, color .2s;
  color: rgba(245,245,242,.65);
}
.fs__acc-btn:hover { background: rgba(196,169,122,.12); border-color: rgba(196,169,122,.4); color: var(--sand); }
.fs__img-wrap--int.open .fs__acc-btn { background: rgba(196,169,122,.12); border-color: rgba(196,169,122,.4); color: var(--sand); }

.fs__acc-lbl {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-family: var(--sans); font-size: 10px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
}

.fs__acc-chev {
  flex-shrink: 0;
  transition: transform .35s;
}
.fs__img-wrap--int.open .fs__acc-chev { transform: rotate(180deg); }

/* Arrows — fuera del área de contenido del carrusel, en las orillas */
/* max() garantiza que en pantallas chicas queden a ≥8px del borde,
   en pantallas grandes se alineen con el borde exterior de .fs (max-width 1280px) */
.fs__arr {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(10,9,8,.72);
  border: 1px solid rgba(245,245,242,.18);
  backdrop-filter: blur(12px);
  color: rgba(245,245,242,.8); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 24px rgba(0,0,0,.5);
  transition: background .2s, border-color .2s, color .2s, transform .2s;
  z-index: 20;
}
.fs__arr:hover {
  background: rgba(196,169,122,.15);
  border-color: rgba(196,169,122,.55);
  color: var(--sand);
  transform: translateY(-50%) scale(1.08);
}
.fs__arr--l { left:  max(8px, calc(50% - 618px)); }
.fs__arr--r { right: max(8px, calc(50% - 618px)); }

/* Dots */
.fs__dots {
  display: flex; justify-content: center; align-items: center; gap: 8px;
  margin-top: 36px;
}
.fs__dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(245,245,242,.18); border: none; cursor: pointer;
  transition: background .25s, width .25s, border-radius .25s;
}
.fs__dot.on { background: var(--sand); width: 24px; border-radius: 4px; }


/* ═══════════════════════════
   MODAL
═══════════════════════════ */
.modal-bg {
  position: fixed; inset: 0; z-index: 500;
  background: rgba(0,0,0,.9); backdrop-filter: blur(14px);
  display: flex; align-items: center; justify-content: center; padding: 20px;
  opacity: 0; pointer-events: none; transition: opacity .3s;
}
.modal-bg.open { opacity: 1; pointer-events: all; }
.modal {
  background: #0f0e0c; border-radius: 18px; width: 100%; max-width: 900px;
  border: 1px solid rgba(245,245,242,.1); overflow: hidden;
  transform: scale(.96) translateY(14px);
  transition: transform .35s cubic-bezier(.22,1,.36,1);
  box-shadow: 0 40px 100px rgba(0,0,0,.8);
}
.modal-bg.open .modal { transform: scale(1) translateY(0); }

.modal__head { padding: 28px 34px 22px; display: flex; justify-content: space-between; align-items: flex-start; border-bottom: 1px solid rgba(245,245,242,.08); }
.modal__kicker { font-size: 10px; font-weight: 500; letter-spacing: 3px; text-transform: uppercase; color: var(--muted); margin-bottom: 6px; }
.modal__vname  { font-family: var(--serif); font-size: 34px; font-weight: 300; }
.modal__close  { background: rgba(255,255,255,.07); border: none; color: var(--white); width: 34px; height: 34px; border-radius: 50%; cursor: pointer; font-size: 15px; display: flex; align-items: center; justify-content: center; transition: background .2s; }
.modal__close:hover { background: rgba(255,255,255,.14); }

.carousel { position: relative; height: 460px; background: #080807; overflow: hidden; }
.c-slide { position: absolute; inset: 0; opacity: 0; transition: opacity .5s; }
.c-slide.on { opacity: 1; }
.c-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.c-ph { width:100%;height:100%;display:flex;flex-direction:column;align-items:center;justify-content:center;gap:14px;background:linear-gradient(135deg,#0d0c0b,#111009);color:#22201e; }
.c-ph-ico { font-size:48px;opacity:.2; }
.c-ph-txt { font-size:12px;color:#28261f; }

.c-arrow { position:absolute;top:50%;transform:translateY(-50%);background:rgba(245,245,242,.9);border:none;color:#000;width:40px;height:40px;border-radius:50%;cursor:pointer;display:flex;align-items:center;justify-content:center;z-index:10;box-shadow:0 2px 14px rgba(0,0,0,.4);transition:background .2s,transform .2s; }
.c-arrow:hover { background:#fff;transform:translateY(-50%) scale(1.1); }
.c-arrow.l { left:20px; } .c-arrow.r { right:20px; }
.c-dots { position:absolute;bottom:20px;left:50%;transform:translateX(-50%);display:flex;gap:7px; }
.c-dot { width:7px;height:7px;border-radius:50%;background:rgba(245,245,242,.25);border:none;cursor:pointer;transition:background .25s,width .25s,border-radius .25s; }
.c-dot.on { background:var(--sand);width:20px;border-radius:4px; }

.modal__foot { padding:20px 34px;display:flex;align-items:center;justify-content:space-between;border-top:1px solid rgba(245,245,242,.08); }
.modal__cap  { font-size:13px;font-weight:300;color:var(--muted); }
.modal__book { background:var(--sand);color:#120e07;border:none;padding:12px 28px;border-radius:100px;font-family:var(--sans);font-size:11px;font-weight:700;letter-spacing:2px;text-transform:uppercase;cursor:pointer;transition:background .2s; }
.modal__book:hover { background:var(--sand-lt); }


/* ═══════════════════════════
   CONFIRMATION CARD
═══════════════════════════ */
.confirm-bg {
  position: fixed; inset: 0; z-index: 600;
  background: rgba(0,0,0,.88); backdrop-filter: blur(16px);
  display: flex; align-items: center; justify-content: center; padding: 24px;
  opacity: 0; pointer-events: none;
  transition: opacity .3s;
}
.confirm-bg.open { opacity: 1; pointer-events: all; }

.confirm-card {
  background: #0f0e0c;
  border: 1px solid rgba(245,245,242,.12);
  border-radius: 20px;
  padding: 42px 38px 36px;
  max-width: 480px; width: 100%;
  text-align: center;
  box-shadow: 0 40px 100px rgba(0,0,0,.8);
  transform: scale(.95) translateY(16px);
  transition: transform .38s cubic-bezier(.22,1,.36,1);
}
.confirm-bg.open .confirm-card { transform: scale(1) translateY(0); }

.confirm-icon {
  width: 60px; height: 60px; border-radius: 50%;
  background: rgba(196,165,100,.12);
  border: 1px solid rgba(196,165,100,.25);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 22px;
  color: var(--sand);
}

.confirm-kicker {
  font-family: var(--sans);
  font-size: 10px; font-weight: 600; letter-spacing: 3px;
  text-transform: uppercase; color: var(--sand);
  margin-bottom: 18px;
}

.confirm-body {
  font-family: var(--serif);
  font-size: 16px; font-weight: 300; line-height: 1.75;
  color: rgba(245,245,242,.78);
  margin-bottom: 32px;
}

.confirm-cta {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--sand); color: #120e07;
  border: none; border-radius: 100px;
  padding: 14px 30px;
  font-family: var(--sans); font-size: 11px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  cursor: pointer;
  transition: background .2s, transform .2s;
}
.confirm-cta:hover { background: var(--sand-lt); transform: translateY(-1px); }

/* ═══════════════════════════
   RESPONSIVE
═══════════════════════════ */
/* ─── iPad Pro portrait (1024px) ─── */
@media (max-width: 1024px) {
  .hero { min-height: 0; padding: 110px 32px 52px; }
  .brc__tiers { grid-template-columns: repeat(2, 1fr); }
  .brc { padding: 96px 28px; }
  .fs { height: 500px; }
  .bb__field--sm  { flex: 0 0 110px; }
  .bb__field--md  { flex: 0 0 150px; }
  .bb__field--veh { flex: 0 0 170px; }
}

@media (max-width:1100px) {
  .nav { padding:18px 28px; } .nav.scrolled { padding:14px 28px; }
  .nav__links { display:none; }
  .fleet-wrap { padding:80px 0; }
  .bb__field--sm { flex: 0 0 120px; }
}
@media (max-width:840px) {
  .hero { min-height: 0; padding: 88px 20px 48px; }
  .booking-bar {
    flex-direction: column; border-radius: 14px;
    background: rgba(10,9,8,.94);
  }
  .bb__field         { padding: 16px 20px 14px; border-bottom: 1px solid rgba(245,245,242,.08); }
  .bb__field--sm,
  .bb__field--md,
  .bb__field--veh,
  .bb__field--xs     { flex: 1; }
  .bb__div           { display: none; }
  .bb__cta           { margin: 10px 14px 14px; padding: 16px; text-align: center; border-radius: 10px; }
  /* Hero subtitle wrap */
  .hero__sub         { flex-wrap: wrap; justify-content: center; gap: 8px; }
  .hero__sub-line    { display: none; }
}
@media (max-width:680px) {
  .nav { padding:14px 18px; } .nav.scrolled { padding:12px 18px; }
  .hero { min-height: 0; padding: 80px 16px 40px; }
  .fleet-wrap { padding:48px 0 44px; }
  .fleet-grid { grid-template-columns:1fr; }
  .carousel { height:280px; }

  /* Service tabs — smaller on mobile */
  .bc__tabs { padding: 4px; gap: 2px; }
  .bc__tab { font-size: 11px; padding: 8px 14px; letter-spacing: .2px; }
  .bc__tab-info { width: 24px; height: 24px; }
  .bc__tab-info svg { width: 11px; height: 11px; }

  /* Fleet carousel — mobile */
  .fs {
    height: 520px;
    padding: 0;
  }
  .fs__slide {
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    padding-left: 44px; padding-right: 44px;
    padding-top: 4px;
  }
  .fs__info {
    width: 100%;
    text-align: center;
  }
  .fs__vtype { margin-bottom: 6px; }
  .fs__vname { font-size: 40px; margin-bottom: 10px; }
  .fs__rule  { margin: 0 auto 14px; }
  .fs__vmeta { flex-direction: row; justify-content: center; flex-wrap: wrap; gap: 12px 20px; }
  .fs__img-wrap { height: 220px; width: 100%; }
  .fs__img-inner { max-height: 220px; }
  .fs__img--coming { width: 100%; height: 200px; }

  /* Arrows — pequeños, en orillas, centrados verticalmente */
  .fs__arr {
    width: 34px; height: 34px;
    top: 50%; transform: translateY(-50%);
  }
  .fs__arr svg { width: 12px; height: 12px; }
  .fs__arr:hover { transform: translateY(-50%) scale(1.08); }
  .fs__arr--l { left: 6px; }
  .fs__arr--r { right: 6px; }

  .fs__dots { margin-top: 14px; }

  /* Amenities — forzar fila propia en móvil */
  .bb__amenities {
    flex-basis: 100%;
    grid-template-columns: repeat(7, 1fr);
  }
  .bb__amenity svg {
    width: 26px; height: 26px;
    padding: 6px;
  }
}


/* ═══════════════════════════
   BRUMEA CIRCLE
═══════════════════════════ */
.brc {
  position: relative;
  overflow: hidden;
  padding: 120px 24px;
}
.brc__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.brc__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease;
}
.brc__slide.on { opacity: 1; }
.brc__overlay {
  position: absolute;
  inset: 0;
  background: rgba(8, 6, 4, 0.80);
  z-index: 1;
}
.brc__inner {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.brc__tag {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--sand);
  margin: 0 0 22px;
  opacity: .85;
}
.brc__title {
  font-family: var(--serif);
  font-size: clamp(44px, 7vw, 74px);
  font-weight: 300;
  color: var(--white);
  margin: 0 0 22px;
  letter-spacing: 2px;
}
.brc__rule {
  width: 48px;
  height: 1px;
  background: var(--sand);
  margin: 0 auto 22px;
  opacity: .55;
}
.brc__sub {
  font-family: var(--sans);
  font-size: 13px;
  color: rgba(245,245,242,.45);
  letter-spacing: .5px;
  margin: 0 0 28px;
}
.brc__intro {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 300;
  font-style: italic;
  color: rgba(245,245,242,.55);
  line-height: 1.75;
  letter-spacing: .2px;
  max-width: 680px;
  margin: 0 auto 56px;
  text-align: center;
}
.brc__tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  text-align: left;
}
.brc__tier {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(196,169,122,.16);
  border-radius: 3px;
  padding: 42px 30px;
  position: relative;
  transition: background .25s, border-color .25s;
}
.brc__tier:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(196,169,122,.3);
}
.brc__tier--featured {
  background: rgba(196,169,122,.07);
  border-color: rgba(196,169,122,.42);
}
.brc__tier--featured:hover {
  background: rgba(196,169,122,.11);
}
.brc__tier-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--sand);
  color: #0f0b08;
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 100px;
  white-space: nowrap;
}
.brc__tier-icon {
  color: var(--sand);
  opacity: .75;
  margin-bottom: 20px;
}
.brc__tier-name {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  color: var(--white);
  margin: 0 0 14px;
  letter-spacing: .5px;
}
.brc__tier-rule {
  width: 28px;
  height: 1px;
  background: var(--sand);
  margin: 0 0 18px;
  opacity: .38;
}
.brc__tier-desc {
  font-family: var(--sans);
  font-size: 13px;
  line-height: 1.75;
  color: rgba(245,245,242,.55);
  margin: 0;
}

/* ─── Brumea Circle: Excellence in Logistics subsection ─── */
.brc__sep {
  display: flex;
  align-items: center;
  gap: 22px;
  margin: 72px 0 56px;
}
.brc__sep-line {
  flex: 1;
  height: 1px;
  background: rgba(196,169,122,.22);
}
.brc__sep-label {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 300;
  color: rgba(245,245,242,.55);
  letter-spacing: .5px;
  white-space: nowrap;
}
.brc__svcs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  text-align: center;
}
.brc__svc-icon {
  color: var(--sand);
  opacity: .7;
  margin-bottom: 18px;
}
.brc__svc-title {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  color: var(--white);
  margin: 0 0 14px;
  letter-spacing: .4px;
}
.brc__svc-rule {
  width: 30px;
  height: 1px;
  background: var(--sand);
  margin: 0 auto 16px;
  opacity: .36;
}
.brc__svc-desc {
  font-family: var(--sans);
  font-size: 13px;
  line-height: 1.8;
  color: rgba(245,245,242,.52);
  margin: 0;
  max-width: 340px;
  margin-inline: auto;
}

/* ═══════════════════════════
   CONCIERGE SERVICES
═══════════════════════════ */
.cncg {
  position: relative;
  overflow: hidden;
  padding: 130px 24px;
  text-align: center;
}
.cncg__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center 40%;
}
.cncg__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(4, 4, 6, 0.60) 0%,
    rgba(4, 4, 6, 0.42) 50%,
    rgba(4, 4, 6, 0.65) 100%
  );
  z-index: 1;
}
.cncg__inner {
  position: relative;
  z-index: 2;
  max-width: 680px;
  margin: 0 auto;
}
.cncg__tag {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--sand);
  margin: 0 0 22px;
  opacity: .9;
}
.cncg__title {
  font-family: var(--serif);
  font-size: clamp(52px, 9vw, 88px);
  font-weight: 300;
  color: var(--white);
  margin: 0 0 22px;
  letter-spacing: 2px;
}
.cncg__rule {
  width: 48px;
  height: 1px;
  background: var(--sand);
  margin: 0 auto 30px;
  opacity: .5;
}
.cncg__desc {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.75;
  color: rgba(245,245,242,.52);
  margin: 0 0 52px;
  letter-spacing: .3px;
}
.cncg__contacts {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}
.cncg__phone {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--serif);
  font-size: clamp(34px, 6vw, 52px);
  font-weight: 300;
  color: var(--sand);
  text-decoration: none;
  letter-spacing: 1px;
  transition: color .2s;
}
.cncg__phone:hover { color: var(--sand-lt); }
.cncg__emails {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cncg__email {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 400;
  color: rgba(245,245,242,.55);
  text-decoration: none;
  letter-spacing: .4px;
  transition: color .2s;
}
.cncg__email:hover { color: var(--sand); }

/* ─── WhatsApp floating button ─── */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(0,0,0,.35);
  transition: transform .2s, box-shadow .2s;
}
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(0,0,0,.45);
}
.cncg__wa {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
  padding: 14px 36px;
  border: 1px solid rgba(196,169,122,.45);
  color: var(--sand);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 100px;
  transition: background .25s, border-color .25s, color .25s;
}
.cncg__wa:hover {
  background: rgba(196,169,122,.12);
  border-color: var(--sand);
  color: var(--sand-lt);
}
.cncg__ig {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
  padding: 14px 36px;
  border: 1px solid rgba(245,245,242,.18);
  color: rgba(245,245,242,.65);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 100px;
  transition: background .25s, border-color .25s, color .25s;
}
.cncg__ig:hover {
  background: rgba(245,245,242,.06);
  border-color: rgba(245,245,242,.4);
  color: #fff;
}

@media (max-width: 820px) {
  /* Sections padding */
  .brc, .cncg { padding: 72px 20px; }
  .fleet-wrap  { padding: 60px 0; }

  /* Brumea Circle: single column */
  .brc__tiers { grid-template-columns: 1fr; gap: 16px; }
  .brc__svcs  { grid-template-columns: 1fr; gap: 44px; }

  /* Fleet: vertical layout (same as mobile) */
  .fs { height: 560px; }
  .fs__slide {
    flex-direction: column; justify-content: flex-start;
    align-items: center; gap: 10px;
    padding-left: 56px; padding-right: 56px; padding-top: 4px;
  }
  .fs__info { width: 100%; text-align: center; }
  .fs__vtype { margin-bottom: 6px; }
  .fs__vname { font-size: 44px; margin-bottom: 10px; }
  .fs__rule  { margin: 0 auto 14px; }
  .fs__vmeta { flex-direction: row; justify-content: center; flex-wrap: wrap; gap: 12px 20px; }
  .fs__img-wrap { height: 260px; width: 100%; }
  .fs__img-inner { max-height: 260px; }
  .fs__img--coming { width: 100%; height: 240px; }

  /* Service tabs: slightly smaller */
  .bc__tab { font-size: 12px; padding: 9px 18px; }

  /* Concierge: title & phone smaller */
  .cncg__title { font-size: clamp(38px, 7.5vw, 60px); }
  .cncg__phone { font-size: clamp(26px, 5vw, 40px); }
}

/* ── Footer ── */
.site-footer {
  background: #050302;
  border-top: 1px solid rgba(196,169,122,.12);
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.site-footer__copy {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 1px;
  color: rgba(245,245,242,.3);
  margin: 0;
}
.site-footer__links {
  display: flex;
  align-items: center;
  gap: 12px;
}
.site-footer__link {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 1px;
  color: rgba(245,245,242,.4);
  text-decoration: none;
  transition: color .2s;
}
.site-footer__link:hover { color: var(--sand); }
.site-footer__sep {
  color: rgba(245,245,242,.2);
  font-size: 11px;
}

/* ── Brumea Circle: exclusive benefits grid ── */
.brc__benefits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 64px 96px;
  margin-bottom: 52px;
}
@media (max-width: 640px) {
  .brc__benefits { grid-template-columns: 1fr; gap: 62px; }
}
.brc__benefit { display: flex; flex-direction: column; padding-bottom: 0; }
.brc__benefits > .brc__benefit:last-child { padding-bottom: 0; }
.brc__benefit--last {
  grid-column: 1 / -1;
  max-width: 480px;
  margin: 0 auto;
  text-align: center;
}
.brc__benefit--last .brc__benefit-rule { margin: 0 auto 14px; }
.brc__benefit-title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--white);
  letter-spacing: .3px;
  margin: 0 0 14px;
}
.brc__benefit-rule {
  width: 32px;
  height: 1px;
  background: var(--sand);
  opacity: .75;
  margin-bottom: 16px;
  flex-shrink: 0;
}
.brc__benefit-desc {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(245,245,242,.52);
  margin: 0;
}

/* ── Booking: secure payment note ── */
.bb__secure-note {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 300;
  letter-spacing: .6px;
  color: rgba(196,169,122,.55);
  text-align: center;
  justify-content: center;
}
.bb__secure-note svg { flex-shrink: 0; opacity: .7; }

/* ── Summary: legal block ── */
.rp__sum-legal {
  margin: 14px 0 4px;
  padding: 14px;
  border: 1px solid rgba(196,169,122,.12);
  border-radius: 6px;
  background: rgba(196,169,122,.04);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.rp__sum-privacy {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(245,245,242,.5);
  margin: 0;
}
.rp__sum-privacy svg { flex-shrink: 0; margin-top: 2px; opacity: .6; }
.rp__sum-privacy a { color: rgba(196,169,122,.7); text-decoration: none; border-bottom: 1px solid rgba(196,169,122,.25); }
.rp__sum-privacy a:hover { color: var(--sand); }
.rp__sum-consent {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(245,245,242,.6);
  cursor: pointer;
  transition: color .2s;
}
.rp__sum-consent input[type="checkbox"] {
  flex-shrink: 0;
  margin-top: 3px;
  width: 14px;
  height: 14px;
  accent-color: var(--sand);
  cursor: pointer;
}
.rp__sum-consent a { color: rgba(196,169,122,.8); text-decoration: none; border-bottom: 1px solid rgba(196,169,122,.3); }
.rp__sum-consent a:hover { color: var(--sand); }
