/* ================================================================
   SLS Theme — Main Stylesheet v4.12.0
   Converted from swiss-limousine-v4-mobile.html (design reference)
   Mobile-first · WCAG AA compliant
   ================================================================ */

:root {
  --ink:       #1A1814;
  --ink-mid:   #3D3A35;
  --ink-soft:  #7A756E;
  --ink-faint: #B8B3AB;
  --gold:      #A67C52;
  --gold-l:    #C9A87C;
  --gold-d:    #8A6238;
  --gold-text: #8A6238;
  --gold-wash: #F5EFE5;
  --cream:     #FDFCFA;
  --paper:     #F5F3F0;
  --rule:      #E8E4DF;
  --white:     #FFFFFF;
  --serif:     'Libre Baskerville', Georgia, serif;
  --sans:      'Figtree', system-ui, sans-serif;
  /* Rationalised type scale */
  --text-xs:   0.65rem;
  --text-sm:   0.78rem;
  --text-base: 0.9rem;
  --text-md:   1.1rem;
  --text-lg:   clamp(1.8rem, 3vw, 2.8rem);
  /* Rationalised line-heights */
  --lh-tight:  1.1;
  --lh-normal: 1.65;
  --lh-loose:  1.85;
  /* Night backgrounds (3 tokens) */
  --night-warm: #12110E;
  --night-cool: #0E1214;
  --night-base: #0F0E0C;
  /* Aliases for legacy references */
  --bg-dark:    #0F0E0C;
  --bg-cream:   #FDFCFA;
  --border:     #E8E4DF;
  --text-dark:  #1A1814;
  --ff-serif:   'Libre Baskerville', Georgia, serif;
  --ff-sans:    'Figtree', system-ui, sans-serif;
  --v: '4.13.0';
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--sans); background: var(--white); color: var(--ink); line-height: var(--lh-normal); -webkit-font-smoothing: antialiased; overflow-x: hidden; }

/* ── GLOBAL WRAPPER ── */
.wrap { max-width: 1280px; margin: 0 auto; padding-left: 5%; padding-right: 5%; }

/* ── FOCUS VISIBLE ── */
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 2px; }

/* ── REDUCED MOTION ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ── SKIP LINK ── */
.skip-link { position: absolute; top: -100%; left: 1rem; padding: 8px 16px; background: var(--gold); color: var(--white); font-size: var(--text-sm); font-weight: 600; border-radius: 0 0 4px 4px; text-decoration: none; z-index: 999; }
.skip-link:focus { top: 0; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: 60px; display: flex; align-items: center; justify-content: space-between;
  padding: 0 2rem;
  background: rgba(253,252,250,0.94);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s;
}
nav.scrolled { border-color: var(--rule); box-shadow: 0 1px 20px rgba(26,24,20,.05); }
.nav-brand { text-decoration: none; display: flex; flex-direction: column; gap: 1px; }
.nav-brand-name { font-family: var(--serif); font-size: .9rem; font-weight: 400; letter-spacing: .05em; color: var(--ink); }
.nav-brand-sub  { font-size: var(--text-xs); font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-text); }
.nav-menu { display: none; align-items: center; gap: 2rem; list-style: none; }
.nav-menu a { font-size: var(--text-sm); color: var(--ink-soft); text-decoration: none; transition: color .2s; }
.nav-menu a:hover { color: var(--ink); }
.nav-book { padding: 9px 20px; background: var(--gold); color: var(--white) !important; border-radius: 40px; font-weight: 500 !important; transition: background .2s !important; }
.nav-book:hover { background: var(--gold-d) !important; }

/* Mobile hamburger */
.nav-hamburger { display: flex; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; border: none; background: none; }
.nav-hamburger span { display: block; width: 22px; height: 1.5px; background: var(--ink); transition: all .3s; }
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); }

/* Mobile menu drawer */
.mobile-menu {
  display: none;
  position: fixed; top: 60px; left: 0; right: 0; z-index: 199;
  background: var(--white); border-bottom: 1px solid var(--rule);
  padding: 1.25rem 2rem 1.75rem;
  box-shadow: 0 8px 32px rgba(26,24,20,.08);
  transform: translateY(-8px); opacity: 0;
  transition: transform .25s ease, opacity .25s ease;
}
.mobile-menu.open { display: block; transform: translateY(0); opacity: 1; }
.mobile-menu ul { list-style: none; display: flex; flex-direction: column; gap: .15rem; margin-bottom: 1.25rem; }
.mobile-menu a { display: block; padding: .75rem 0; font-size: 1rem; color: var(--ink-soft); text-decoration: none; border-bottom: 1px solid var(--rule); transition: color .2s; }
.mobile-menu a:hover { color: var(--ink); }
.mobile-menu a:last-child { border-bottom: none; }

/* WP Admin bar adjustments */
.admin-bar nav { top: 32px; }
.admin-bar .mobile-menu { top: 92px; }
@media screen and (max-width: 782px) {
  .admin-bar nav { top: 46px; }
  .admin-bar .mobile-menu { top: 106px; }
}

/* ── HERO — MOBILE FIRST ── */
.hero { padding-top: 60px; }

/* Mobile: single column, photo on top */
.hero-photo {
  position: relative; overflow: hidden;
  height: 280px;
}
.hero-photo-bg {
  position: absolute; inset: 0;
  background-color: var(--night-base);
  background-size: cover;
  background-position: center 20%;
  background-repeat: no-repeat;
}
/* Seasonal hero images */
.hero-season-winter .hero-photo-bg { background-image: url('../img/hero-geneva-night-chauffeur.webp'); }
.hero-season-summer .hero-photo-bg { background-image: url('../img/hero-geneva-night-chauffeur.webp'); }
.hero-photo-bg::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(ellipse 3px 3px at 15% 25%, rgba(255,220,120,.5) 0%, transparent 100%),
    radial-gradient(ellipse 2px 2px at 30% 15%, rgba(255,200,80,.35) 0%, transparent 100%),
    radial-gradient(ellipse 4px 4px at 8% 60%, rgba(255,240,180,.3) 0%, transparent 100%),
    radial-gradient(ellipse 3px 3px at 60% 20%, rgba(255,230,150,.3) 0%, transparent 100%),
    radial-gradient(ellipse 2px 2px at 80% 65%, rgba(200,200,255,.3) 0%, transparent 100%),
    radial-gradient(ellipse 3px 3px at 88% 35%, rgba(255,220,120,.25) 0%, transparent 100%),
    radial-gradient(ellipse 150px 80px at 30% 70%, rgba(184,149,90,.07) 0%, transparent 60%);
}
.hero-photo-bg::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 55%;
  background: linear-gradient(to top, rgba(8,8,10,.9) 0%, transparent 100%);
}
.hero-accent-line {
  position: absolute; top: 0; left: 0; width: 3px; height: 100%;
  background: linear-gradient(to bottom, transparent 0%, var(--gold) 25%, var(--gold-l) 65%, transparent 100%);
  opacity: .6;
}
.hero-car-svg {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  width: 85%; max-width: 400px; opacity: 0; z-index: 1;
}
.hero-car-badge {
  position: absolute; bottom: 1.25rem; left: 1.25rem; right: 1.25rem;
  display: flex; align-items: center; gap: 10px;
  background: rgba(15,15,12,.7); border: 1px solid rgba(184,149,90,.3);
  backdrop-filter: blur(12px); padding: 10px 14px; border-radius: 4px; z-index: 2;
}
.hero-car-badge-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }
.hero-car-badge-text { font-size: var(--text-xs); font-weight: 500; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.75); }

/* Hero content */
.hero-content {
  background: var(--cream);
  padding: 2.25rem 1.5rem 2rem;
  border-bottom: 1px solid var(--rule);
}
.eyebrow {
  font-size: var(--text-xs); font-weight: 600; letter-spacing: .2em;
  text-transform: uppercase; color: var(--gold-text);
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 1.25rem;
}
.eyebrow::before { content: ''; width: 18px; height: 1px; background: var(--gold); flex-shrink: 0; }
.hero-title {
  font-family: var(--serif); font-size: clamp(2rem, 8vw, 2.8rem);
  font-weight: 400; line-height: var(--lh-tight); letter-spacing: -.02em;
  color: var(--ink); margin-bottom: 1rem;
}
.hero-title em { font-style: italic; color: var(--gold); }
.hero-body { font-size: var(--text-base); color: var(--ink-mid); line-height: var(--lh-loose); margin-bottom: 1.75rem; font-weight: 300; }
.hero-actions { display: flex; gap: .75rem; margin-bottom: 1.75rem; flex-wrap: wrap; }
.hero-trust { display: flex; gap: 1.25rem; flex-wrap: wrap; padding-top: 1.5rem; border-top: 1px solid var(--rule); }
.trust-item { display: flex; align-items: center; gap: 6px; font-size: var(--text-xs); color: var(--ink-mid); }
.trust-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }

/* ── BOOKING — MOBILE OPTIMISED ── */
.booking-panel { background: var(--white); padding: 1.75rem 1.5rem 2rem; overflow: hidden; }
.booking-title { font-family: var(--serif); font-size: var(--text-md); font-weight: 400; color: var(--ink); margin-bottom: .25rem; }
.booking-sub { font-size: var(--text-xs); color: var(--ink-mid); margin-bottom: 1.25rem; }

/* Vehicle cards — touch optimised 44px min height */
.v-selector { display: grid; grid-template-columns: repeat(3,1fr); gap: 6px; margin-bottom: 1.25rem; }
.v-card {
  border: 1.5px solid var(--rule); border-radius: 10px;
  padding: 12px 8px 10px; cursor: pointer; text-align: center;
  background: var(--cream); transition: all .2s;
  min-height: 72px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  -webkit-tap-highlight-color: transparent;
}
.v-card.on { border-color: var(--gold); background: var(--gold-wash); }
.v-card:active { transform: scale(.97); }
.v-car-icon { margin-bottom: 5px; }
.v-car-icon svg { width: 44px; height: 18px; display: block; }
.v-name { font-size: var(--text-xs); font-weight: 600; color: var(--ink); letter-spacing: .04em; }
.v-sub  { font-size: .52rem; color: var(--ink-mid); margin-top: 2px; font-weight: 300; }
.v-pax  { font-size: .58rem; color: var(--ink-mid); margin-top: 1px; }

/* Fields — larger touch targets */
.fields { display: flex; flex-direction: column; gap: 1px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; }
.field {
  background: var(--white); border: 1px solid var(--rule);
  padding: 14px 14px 10px; display: flex; flex-direction: column; gap: 4px;
  transition: border-color .2s; position: relative;
}
.fields > .field:first-child { border-radius: 10px 10px 0 0; }
.field-row { border-radius: 0 0 10px 10px; overflow: hidden; }
.field-row .field:last-child { border-left: none; }
.field:focus-within { border-color: var(--gold); z-index: 1; }
.field label { font-size: .58rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-mid); }
.field input, .field select {
  border: none; outline: none; background: transparent;
  font-family: var(--sans); font-size: 1rem;
  color: var(--ink); width: 100%; appearance: none;
  min-height: 28px;
}
/* Override for dark sections */
.rental-cta .field input,
.rental-cta .field select { background: rgba(255,255,255,.08) !important; border: 1px solid rgba(255,255,255,.2) !important; border-radius: 10px !important; color: #fff !important; padding: .8rem 1rem !important; font-size: .9rem !important; min-height: auto !important; }
.rental-cta .field input::placeholder { color: rgba(255,255,255,.3) !important; }
.rental-cta .field input:focus,
.rental-cta .field select:focus { border-color: var(--gold) !important; background: rgba(255,255,255,.12) !important; }
.rental-cta .field label { color: rgba(255,255,255,.5) !important; }
.rental-cta .field { border: none !important; padding: 0 !important; margin-bottom: 1rem; }
.field input::placeholder { color: var(--ink-faint); font-weight: 300; }

/* Passengers row */
.pax-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; margin-top: 1px; }
.pax-row .field:last-child { border-left: none; }
.field select option { font-size: 1rem; }

.btn-book {
  width: 100%; margin-top: 1rem; padding: 17px;
  background: var(--gold-d); color: var(--white);
  font-family: var(--sans); font-size: var(--text-sm); font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  border: none; border-radius: 10px; cursor: pointer; transition: background .2s;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 54px;
  -webkit-tap-highlight-color: transparent;
}
.btn-book:hover { background: var(--gold-d); }
.btn-book:active { transform: scale(.99); }
.form-assurance { display: flex; justify-content: center; gap: 1rem; margin-top: .85rem; font-size: .65rem; color: var(--ink-mid); flex-wrap: wrap; }

/* ── Premium CTA block (hero) ── */
.sls-cta-block {
  background: var(--white) !important;
  border-top: 3px solid var(--gold);
}
.cta-block-label {
  font-size: .58rem; font-weight: 700; letter-spacing: .25em; text-transform: uppercase;
  color: var(--gold-text); margin-bottom: 1.5rem;
  display: flex; align-items: center; gap: .65rem;
}
.cta-block-label::before { display: none; }
.cta-services {
  display: flex; flex-direction: column; gap: 0;
  margin-bottom: 1.75rem;
  padding: 1rem 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.cta-service-item {
  display: flex; align-items: center; gap: .75rem;
  padding: .6rem 0;
  font-size: .8rem; font-weight: 400; color: var(--ink-mid);
  letter-spacing: .02em;
  border-bottom: 1px solid var(--rule);
}
.cta-service-item:last-child { border-bottom: none; }
.cta-service-item svg { color: var(--gold); flex-shrink: 0; }
.cta-or {
  display: flex; align-items: center; gap: .75rem; margin: 1.25rem 0;
  font-size: .58rem; font-weight: 500; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink-faint);
}
.cta-or::before, .cta-or::after { content: ''; flex: 1; height: 1px; background: var(--rule); }
.cta-phone-link {
  display: flex; align-items: center; justify-content: center; gap: .6rem;
  width: 100%; padding: 12px 14px; border: 1px solid var(--rule); border-radius: 4px;
  text-decoration: none; color: var(--ink); font-size: .8rem; font-weight: 500; letter-spacing: .03em;
  background: var(--cream); transition: border-color .2s ease, color .2s ease; margin-bottom: 1.5rem;
}
.cta-phone-link:hover { border-color: var(--gold); color: var(--gold-d); }
.sls-cta-block .form-assurance { color: var(--ink-soft); }

/* ── Availability badge ── */
.availability-badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: #f0faf3; border: 1px solid #bbf7d0;
  color: #166534;
  font-size: .68rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 100px; margin-bottom: 0.85rem;
  align-self: flex-start;
}
.availability-dot {
  width: 7px; height: 7px; border-radius: 50%; background: #22c55e;
  flex-shrink: 0; animation: pulse-green 2.2s ease-in-out infinite;
}
@keyframes pulse-green {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34,197,94,.5); }
  50%       { box-shadow: 0 0 0 4px rgba(34,197,94,0); }
}

/* ── BUTTONS ── */
.btn-dark {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 26px; background: var(--gold-d); color: var(--white);
  font-family: var(--sans); font-size: var(--text-sm); font-weight: 500;
  letter-spacing: .07em; text-transform: uppercase; text-decoration: none;
  border: none; border-radius: 40px; cursor: pointer; transition: background .2s;
  min-height: 48px; -webkit-tap-highlight-color: transparent;
}
.btn-dark:hover { background: var(--gold-text); color: #fff; }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: var(--text-sm); font-weight: 500;
  color: var(--ink-mid); text-decoration: none;
  background: none; border: none; cursor: pointer; transition: color .2s;
  padding: 14px 0; min-height: 48px;
}
.btn-ghost:hover { color: var(--gold); }
.btn-ghost--gold {
  color: var(--gold-text); border: 1px solid var(--gold-l); border-radius: 40px;
  padding: 13px 22px; font-size: var(--text-sm); letter-spacing: .06em; text-transform: uppercase;
  transition: background .2s, color .2s;
}
.btn-ghost--gold:hover { background: var(--gold); color: var(--white); border-color: var(--gold); }
.btn-sm { padding: 10px 18px; background: var(--gold-d); color: var(--white); font-size: var(--text-xs); font-weight: 500; letter-spacing: .06em; text-transform: uppercase; text-decoration: none; border-radius: 40px; transition: background .2s; min-height: 40px; display: inline-flex; align-items: center; }
.btn-sm:hover { background: var(--gold-d); }
.btn-gold { display: inline-flex; align-items: center; gap: 8px; padding: 15px 36px; background: var(--gold-d); color: var(--white); font-family: var(--sans); font-size: var(--text-sm); font-weight: 600; letter-spacing: .08em; text-transform: uppercase; text-decoration: none; border-radius: 40px; border: none; cursor: pointer; transition: background .2s; min-height: 50px; }
.btn-gold:hover { background: var(--gold-d); }
.cta-btn-main { display:inline-flex;align-items:center;gap:.5rem;padding:1rem 2.5rem;background:var(--gold-d);color:#fff !important;text-decoration:none;border-radius:40px;font-size:.8rem;font-weight:600;letter-spacing:.06em;text-transform:uppercase;transition:background .2s; }
.cta-btn-main:hover { background:#8a6a3a;color:#fff !important; }
.cta-btn-ghost { display:inline-flex;align-items:center;gap:.5rem;padding:1rem 2.5rem;background:transparent;color:rgba(255,255,255,.7) !important;text-decoration:none;border-radius:40px;font-size:.8rem;font-weight:500;border:1px solid rgba(255,255,255,.2);transition:all .2s; }
.cta-btn-ghost:hover { border-color:rgba(255,255,255,.5);color:#fff !important; }
.btn-ghost-white { display: inline-flex; align-items: center; gap: 8px; padding: 15px 26px; background: transparent; color: rgba(255,255,255,.6); font-family: var(--sans); font-size: var(--text-sm); font-weight: 500; letter-spacing: .07em; text-transform: uppercase; text-decoration: none; border: 1px solid rgba(255,255,255,.15); border-radius: 40px; cursor: pointer; transition: all .2s; min-height: 50px; }
.btn-ghost-white:hover { border-color: var(--gold); color: var(--gold-l); }

/* ── MARQUEE ── */
.marquee-strip { overflow: hidden; border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); background: var(--gold-wash); padding: 11px 0; }
.marquee-track { display: flex; gap: 2rem; white-space: nowrap; }
@media (prefers-reduced-motion: no-preference) {
  .marquee-track { animation: scroll-l 30s linear infinite; }
}
.marquee-track span { font-size: var(--text-xs); font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); flex-shrink: 0; display: flex; align-items: center; gap: .5rem; }
.marquee-track span::after { content: '\00B7'; color: var(--gold-l); }
@keyframes scroll-l { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── STATS ── */
.stats-row { display: grid; grid-template-columns: 1fr 1fr; border-bottom: 1px solid var(--rule); }
.stat-cell { padding: 2.5rem 1.5rem; border-right: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
.stat-cell:nth-child(2n) { border-right: none; }
.stat-cell:nth-last-child(-n+2) { border-bottom: 1px solid var(--rule); }
.stat-n { font-family: var(--serif); font-size: 2.5rem; font-weight: 400; color: var(--ink); line-height: 1; margin-bottom: .4rem; }
.stat-n sup { font-size: 1rem; color: var(--gold); vertical-align: super; }
.stat-l { font-size: var(--text-xs); color: var(--ink-soft); font-weight: 300; }

/* ── SECTIONS ── */
.section { padding: 60px 0; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }
.s-label { font-size: var(--text-xs); font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-text); display: flex; align-items: center; gap: 10px; margin-bottom: 1rem; }
.s-label::before { content: ''; width: 18px; height: 1px; background: var(--gold); flex-shrink: 0; }
.s-title { font-family: var(--serif); font-size: var(--text-lg); font-weight: 400; line-height: var(--lh-tight); color: var(--ink); margin-bottom: 2.5rem; }
.s-title em { font-style: italic; color: var(--gold); }

/* ── SERVICES ── */
.svc-grid { display: flex; flex-direction: column; gap: 0; border: 1px solid var(--rule); }
.svc-card { padding: 1.75rem 1.5rem; border-bottom: 1px solid var(--rule); background: var(--white); position: relative; }
.svc-card:last-child { border-bottom: none; }
.svc-num { font-family: var(--serif); font-size: 2.5rem; font-weight: 400; color: var(--rule); line-height: 1; margin-bottom: .9rem; }
.svc-card h3 { font-family: var(--serif); font-size: var(--text-md); font-weight: 400; color: var(--ink); margin-bottom: .5rem; }
.svc-card p { font-size: var(--text-base); color: var(--ink-soft); line-height: var(--lh-loose); font-weight: 300; }
.svc-link { display: inline-flex; align-items: center; gap: 5px; font-size: var(--text-xs); font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--gold); text-decoration: none; margin-top: .9rem; min-height: 40px; }

/* ── FLEET ── */
.fleet-bg { background: var(--paper); border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
.fleet-grid { display: flex; flex-direction: column; gap: 1rem; }
.fleet-card { background: var(--white); border: 1px solid var(--rule); border-radius: 12px; overflow: hidden; }
.fleet-photo { height: 200px; position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center; background: var(--paper); }
.fleet-photo-s, .fleet-photo-v, .fleet-photo-e { background: var(--paper); }
.fleet-photo::before { content: none; }
.fleet-photo::after { content: none; }
.fleet-car-svg { display: none; }
.fleet-tag { position: absolute; top: 12px; left: 12px; z-index: 2; padding: 4px 10px; background: rgba(10,10,8,.75); color: rgba(255,255,255,.9); border: 1px solid rgba(184,149,90,.4); font-size: var(--text-xs); font-weight: 600; letter-spacing: .12em; text-transform: uppercase; border-radius: 40px; }
.fleet-body { padding: 1.25rem; border-top: 1px solid var(--rule); }
.fleet-cat { font-size: var(--text-xs); font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); margin-bottom: .3rem; }
.fleet-name { font-family: var(--serif); font-size: var(--text-md); font-weight: 400; color: var(--ink); margin-bottom: .85rem; }
.fleet-specs { display: flex; gap: 1.25rem; }
.spec-val { font-size: var(--text-base); font-weight: 500; color: var(--ink); }
.spec-key { font-size: var(--text-xs); color: var(--ink-faint); text-transform: uppercase; letter-spacing: .05em; }
.fleet-price-row { display: flex; justify-content: space-between; align-items: center; margin-top: 1rem; padding-top: 1rem; border-top: 1px solid var(--rule); }
.price-from-label { font-size: var(--text-xs); color: var(--ink-faint); text-transform: uppercase; letter-spacing: .05em; }
.price-val { font-family: var(--serif); font-size: var(--text-md); color: var(--ink); }

/* ── FLEET PAGE ── */
.fp-cards { padding: 4rem 0; background: var(--cream); }
.fp-card { display: flex; flex-direction: column; margin-bottom: 2rem; background: var(--white); border-radius: 16px; overflow: hidden; border: 1px solid var(--rule); }
.fp-card-img { min-height: 260px; background: var(--paper); position: relative; display:flex; align-items:center; justify-content:center; overflow:hidden; }
.fp-card-photo { width:100%; height:100%; object-fit:contain; object-position:center center; display:block; }
.fp-card-badge { position: absolute; top: 1.25rem; left: 1.25rem; background: var(--gold-d); color: #fff; padding: .35rem .9rem; border-radius: 6px; font-size: .68rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.fp-card-body { padding: 2rem; }
.fp-card-title { font-family: var(--serif); font-size: 1.5rem; font-weight: 400; color: var(--ink); margin-bottom: .5rem; }
.fp-card-specs { display: flex; gap: 1.25rem; margin-bottom: 1.25rem; font-size: var(--text-xs); color: var(--ink-mid); flex-wrap: wrap; }
.fp-spec { display: flex; align-items: center; gap: .35rem; }
.fp-card-desc { font-size: var(--text-sm); color: var(--ink-mid); line-height: 1.75; margin-bottom: 1.5rem; }
.fp-card-features { display: grid; grid-template-columns: 1fr 1fr; gap: .5rem .75rem; margin-bottom: 2rem; }
.fp-feat { display: flex; align-items: flex-start; gap: .45rem; font-size: var(--text-xs); color: var(--ink); }

/* ── DESTINATIONS ── */
.dest-sub { font-size: var(--text-base); color: var(--ink-soft); margin-bottom: 2rem; font-weight: 300; }
.dest-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.dest-card { text-decoration: none; color: var(--ink); border-radius: 14px; overflow: hidden; background: var(--white); border: 1px solid var(--rule); transition: transform .3s, box-shadow .3s; display: flex; flex-direction: column; }
.dest-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(26,24,20,.1); }
.dest-card-img { height: 180px; background-size: cover; background-position: center; position: relative; }
.dest-card-img::after { content:''; position: absolute; inset:0; background: linear-gradient(to top, rgba(0,0,0,.4) 0%, transparent 50%); }
.dest-card-tag { position: absolute; top: .75rem; left: .75rem; z-index: 2; padding: 4px 10px; background: rgba(10,10,8,.7); color: rgba(255,255,255,.9); border: 1px solid rgba(184,149,90,.4); font-size: var(--text-xs); font-weight: 600; letter-spacing: .1em; text-transform: uppercase; border-radius: 40px; backdrop-filter: blur(8px); }
.dest-card-body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; }
.dest-card-name { font-family: var(--serif); font-size: var(--text-md); font-weight: 400; color: var(--ink); margin-bottom: .4rem; }
.dest-card-meta { display: flex; align-items: center; gap: .5rem; font-size: var(--text-xs); color: var(--ink-faint); margin-bottom: .6rem; }
.dest-card-dot { width: 3px; height: 3px; border-radius: 50%; background: var(--gold); }
.dest-card-price { font-family: var(--serif); font-size: 1.15rem; color: var(--ink); margin-bottom: .75rem; }
.dest-card-cta { font-size: var(--text-xs); font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--gold); margin-top: auto; transition: gap .2s; display: inline-flex; align-items: center; gap: 4px; }
.dest-card:hover .dest-card-cta { gap: 8px; }
.dest-custom { display: flex; justify-content: space-between; align-items: center; margin-top: 1.5rem; padding: 1.25rem 1.5rem; background: var(--gold-wash); border: 1px solid var(--rule); border-radius: 12px; gap: 1rem; flex-wrap: wrap; }
.dest-custom span { font-size: var(--text-sm); color: var(--ink-soft); font-weight: 300; }
.dest-custom-link { font-size: var(--text-xs); font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--gold); text-decoration: none; white-space: nowrap; }

/* ── ROUTES ── */
.routes-bg { background: var(--paper); border-top: 1px solid var(--rule); }
.routes-table { border: 1px solid var(--rule); border-radius: 12px; overflow: hidden; margin-top: 2rem; }
.route-row {
  display: flex; flex-direction: column; padding: 1.1rem 1.25rem;
  border-bottom: 1px solid var(--rule); text-decoration: none; color: var(--ink);
  transition: background .18s; cursor: pointer; gap: 5px;
  min-height: 60px;
}
.route-row:last-child { border-bottom: none; }
.route-row:active { background: var(--gold-wash); }
.route-cities { display: flex; align-items: center; gap: .6rem; }
.r-from { font-size: var(--text-base); color: var(--ink-soft); font-weight: 300; }
.r-arrow { color: var(--gold); }
.r-to { font-family: var(--serif); font-size: var(--text-base); color: var(--ink); }
.route-meta { display: flex; justify-content: space-between; align-items: center; }
.r-detail { font-size: var(--text-xs); color: var(--ink-faint); }
.r-price { font-family: var(--serif); font-size: var(--text-md); color: var(--ink); }
.route-custom { background: var(--gold-wash) !important; }
.route-custom .r-from { font-family: var(--serif); font-style: italic; color: var(--gold); }
.route-custom .r-price { font-size: var(--text-xs); font-family: var(--sans); color: var(--gold); }

/* ── TESTIMONIALS ── */
.testi-bg { background: var(--paper); border-top: 1px solid var(--rule); }
.testi-grid { display: flex; flex-direction: column; gap: 1rem; margin-top: 2rem; }
.testi-card { background: var(--white); border: 1px solid var(--rule); border-radius: 12px; padding: 1.5rem; position: relative; }
.testi-card::before { content: '\201C'; font-family: var(--serif); font-size: 4rem; line-height: .55; color: var(--rule); position: absolute; top: 1.25rem; right: 1.5rem; pointer-events: none; }
.t-stars { display: flex; gap: 2px; margin-bottom: .85rem; }
.t-star { color: var(--gold); font-size: .85rem; }
.t-text { font-family: var(--serif); font-style: italic; font-size: var(--text-base); color: var(--ink-mid); line-height: var(--lh-loose); margin-bottom: 1.25rem; }
.t-author { display: flex; align-items: center; gap: 10px; }
.t-av { width: 32px; height: 32px; border-radius: 50%; background: var(--gold-wash); border: 1px solid var(--rule); display: flex; align-items: center; justify-content: center; font-size: var(--text-xs); font-weight: 600; color: var(--gold); flex-shrink: 0; }
.t-av-photo { width: 40px; height: 40px; object-fit: cover; object-position: center top; background: var(--rule); }
.t-name { font-size: var(--text-sm); font-weight: 500; color: var(--ink); }
.t-role { font-size: var(--text-xs); color: var(--ink-faint); font-weight: 300; }

/* ── WHY US ── */
.why-bg { background: var(--ink); }
.why-bg .s-label { color: rgba(184,149,90,.75); }
.why-bg .s-label::before { background: rgba(184,149,90,.5); }
.why-bg .s-title { color: var(--white); }
.why-bg .s-title em { color: var(--gold-l); }
.why-intro { font-size: var(--text-base); color: rgba(255,255,255,.65); line-height: var(--lh-loose); font-weight: 300; margin-bottom: 2.5rem; }
.why-grid { display: flex; flex-direction: column; border: 1px solid rgba(255,255,255,.07); border-radius: 4px; overflow: hidden; }
.why-item { padding: 1.75rem 1.5rem; border-bottom: 1px solid rgba(255,255,255,.07); }
.why-item:last-child { border-bottom: none; }
.why-n { font-family: var(--serif); font-size: var(--text-xs); color: var(--gold); margin-bottom: .5rem; }
.why-item h3 { font-family: var(--serif); font-size: var(--text-md); font-weight: 400; color: var(--white); margin-bottom: .45rem; }
.why-item p { font-size: var(--text-base); color: rgba(255,255,255,.65); line-height: var(--lh-loose); font-weight: 300; }

/* ── CTA ── */
.cta-section { padding: 64px 0; background: var(--ink); border-top: 1px solid rgba(255,255,255,.06); text-align: center; }
.cta-section .s-label { justify-content: center; color: rgba(184,149,90,.7); }
.cta-section .s-label::before { background: rgba(184,149,90,.5); }
.cta-section .s-title { color: var(--white); }
.cta-section .s-title em { color: var(--gold-l); }
.cta-sub { font-size: var(--text-base); color: rgba(255,255,255,.4); margin-bottom: 2rem; font-weight: 300; max-width: 360px; margin-left: auto; margin-right: auto; line-height: var(--lh-loose); }
.cta-btns { display: flex; justify-content: center; gap: .75rem; flex-wrap: wrap; }
.cta-contacts { display: flex; flex-direction: column; align-items: center; gap: .9rem; margin-top: 2rem; }
.cta-link { display: flex; align-items: center; gap: 8px; font-size: var(--text-sm); color: rgba(255,255,255,.35); text-decoration: none; transition: color .2s; min-height: 44px; }
.cta-link:hover { color: var(--gold-l); }
.cta-link-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--gold); opacity: .6; flex-shrink: 0; }

/* ── FOOTER ── */
footer { background: #111009; padding: 3rem 0 6rem; }
.footer-grid { display: flex; flex-direction: column; gap: 2.5rem; margin-bottom: 2.5rem; }
.footer-brand { font-family: var(--serif); font-size: .9rem; color: var(--white); margin-bottom: .6rem; }
.footer-desc { font-size: var(--text-xs); color: rgba(255,255,255,.5); line-height: var(--lh-loose); margin-bottom: 1rem; }
.footer-addr { font-size: var(--text-xs); color: rgba(255,255,255,.45); }
.footer-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.footer-col h3 { font-size: var(--text-xs); font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-l); margin-bottom: .85rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .5rem; }
.footer-col a { font-size: var(--text-xs); color: rgba(255,255,255,.55); text-decoration: none; transition: color .2s; min-height: 32px; display: flex; align-items: center; }
.footer-col a:hover { color: rgba(255,255,255,.75); }
.footer-bar { border-top: 1px solid rgba(255,255,255,.06); padding-top: 1.25rem; display: flex; flex-direction: column; gap: .5rem; font-size: var(--text-xs); color: rgba(255,255,255,.2); }

/* ── STICKY BOTTOM BAR ── */
/* WhatsApp / Callbell floating button — removed */
.whatsapp-float,
.callbell-widget,
div[id*="callbell"],
div[class*="callbell"],
iframe[src*="callbell"] { display: none !important; visibility: hidden !important; height: 0 !important; width: 0 !important; overflow: hidden !important; }

.has-form-page .sticky-bar { display: none; }
.page-id-13738 .sticky-bar { display: none !important; }
.sticky-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 300;
  display: flex; gap: 8px; padding: 10px 1.25rem;
  padding-bottom: max(10px, env(safe-area-inset-bottom));
  background: var(--white); border-top: 1px solid var(--rule);
  box-shadow: 0 -4px 20px rgba(26,24,20,.08);
}
.sticky-bar a {
  flex: 1; display: flex; align-items: center; justify-content: center;
  text-decoration: none; font-family: var(--sans); font-size: var(--text-sm);
  font-weight: 500; letter-spacing: .05em; text-transform: uppercase;
  border-radius: 10px; min-height: 48px; transition: all .2s;
  -webkit-tap-highlight-color: transparent;
}
.sticky-call { background: var(--paper); color: var(--ink); border: 1px solid var(--rule); }
.sticky-call:hover { background: var(--rule); }
.sticky-book { background: var(--gold-d); color: var(--white); flex: 2; }
.sticky-book:hover { background: var(--gold-d); }
.sticky-book:active { transform: scale(.98); }

/* ── V3 DESKTOP-ONLY CLASSES (hidden on mobile) ── */
.routes-head { display: none; }
.r-dur, .r-veh { display: none; }
.fleet-header { display: none; }
.why-head { display: none; }

/* ── V4 MOBILE-ONLY CLASSES (shown on mobile, hidden on desktop) ── */
.fleet-header-mobile { display: block; }
.why-head-mobile { display: block; }
.route-meta { display: flex; justify-content: space-between; align-items: center; }

/* ── SCROLL REVEAL ── */
.rv { opacity: 0; transform: translateY(14px); transition: opacity .6s ease, transform .6s ease; }
@media (max-width: 768px) { .rv { opacity: 1 !important; transform: none !important; } }
.rv.in { opacity: 1; transform: none; }
.rv.d1 { transition-delay: .08s; }
.rv.d2 { transition-delay: .16s; }
.rv.d3 { transition-delay: .24s; }
.rv.d4 { transition-delay: .32s; }

/* ── PAGE TEMPLATES ── */
.page-header {
  padding: 100px 0 48px; background: var(--night-base); text-align: center; position: relative; overflow: hidden;
}
.page-header::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(184,149,90,.08) 0%, transparent 50%);
}
.page-header--hero {
  background: url('../img/header-blog.jpg') center/cover no-repeat var(--night-base);
  padding: 120px 0 56px;
}
.page-header--hero::before {
  background: linear-gradient(160deg, rgba(8,8,10,.75) 0%, rgba(8,8,10,.6) 50%, rgba(8,8,10,.8) 100%);
}
.page-header .eyebrow { justify-content: center; color: var(--gold-l); margin-bottom: 1.25rem; }
.page-header .eyebrow::before { background: var(--gold-l); }
.page-header .s-title { color: var(--white); margin-bottom: .5rem; position: relative; }
.page-header .s-title em { color: var(--gold-l); }
.page-header .page-subtitle { font-size: var(--text-base); color: rgba(255,255,255,.5); font-weight: 300; line-height: var(--lh-loose); max-width: 480px; margin: 0 auto; position: relative; }
.page-content { padding: 60px 0; }
.page-content p { font-size: var(--text-base); color: var(--ink-soft); line-height: var(--lh-loose); margin-bottom: 1.25rem; }
.page-content h2 { font-family: var(--serif); font-size: var(--text-md); margin: 2rem 0 1rem; color: var(--ink); }
.page-content ul, .page-content ol { margin: 1rem 0; padding-left: 1.5rem; color: var(--ink-soft); }
.page-content li { margin-bottom: .5rem; font-size: var(--text-base); line-height: var(--lh-loose); }
.page-content a { color: var(--gold); text-decoration: underline; }
.page-content img { max-width: 100%; height: auto; border-radius: 8px; }

/* Blog styles */
.blog-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.blog-card {
  background: var(--white); border: 1px solid var(--rule); border-radius: 12px; overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,.08); }
.blog-card-img { height: 220px; background: var(--night-base); overflow: hidden; display: block; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.blog-card-img--placeholder svg { width: 100%; height: 100%; display: block; }
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-body { padding: 1.5rem 1.5rem 1.75rem; }
.blog-card-body h2 { font-family: var(--serif); font-size: 1.1rem; font-weight: 400; margin-bottom: .5rem; line-height: 1.35; }
.blog-card-body h2 a { color: var(--ink); text-decoration: none; transition: color .2s; }
.blog-card-body h2 a:hover { color: var(--gold); }
.blog-card-meta { font-size: var(--text-xs); color: var(--ink-faint); margin-bottom: .75rem; letter-spacing: .04em; text-transform: uppercase; }
.blog-card-excerpt { font-size: .85rem; color: var(--ink-soft); line-height: 1.7; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.blog-card-read { display: inline-flex; align-items: center; gap: 5px; font-size: var(--text-xs); font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--gold); text-decoration: none; margin-top: 1rem; }
.blog-card-read:hover { gap: 9px; }

/* Pagination */
.navigation.pagination { display: none !important; }
.sls-pagination { display: flex; gap: 6px; justify-content: center; padding: 3rem 0 1rem; }
.sls-pagination a, .sls-pagination span { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 8px; font-size: .85rem; font-weight: 500; text-decoration: none; transition: all .2s; }
.sls-pagination a { color: var(--ink-soft); border: 1px solid var(--rule); background: var(--white); }
.sls-pagination a:hover { border-color: var(--gold); color: var(--gold); }
.sls-pagination .current { background: var(--night-base); color: var(--white); border: 1px solid var(--night-base); }
.sls-pagination .dots { border: none; background: none; color: var(--ink-faint); }

/* Single post */
.single-header { padding: 100px 0 48px; background: var(--night-base); text-align: center; }
.single-header .eyebrow { justify-content: center; color: var(--gold-l); margin-bottom: 1.25rem; }
.single-header .eyebrow::before { background: var(--gold-l); }
.single-header h1 { font-family: var(--serif); font-size: clamp(1.6rem,4vw,2.4rem); font-weight: 400; color: var(--white); line-height: 1.2; max-width: 680px; margin: 0 auto 1rem; }
.single-header .post-meta { font-size: var(--text-xs); color: rgba(255,255,255,.4); letter-spacing: .04em; text-transform: uppercase; }
.single-content { max-width: 900px; margin: 0 auto; padding: 3rem 1.5rem 4rem; }
.single-content > div:empty { display: none; }
.single-content > p:first-child::first-letter {
  font-family: var(--serif); font-size: 3.2rem; float: left; line-height: 1;
  margin: .05em .12em 0 0; color: var(--gold); font-weight: 400;
}
.single-content p { font-size: 1.05rem; color: var(--ink-soft); line-height: 1.85; margin-bottom: 1.5rem; }
/* Treat H1 inside content same as H2 (Elementor import artifacts) */
.single-content h1,
.single-content h2 {
  font-family: var(--serif); font-size: 1.5rem; font-weight: 400; color: var(--ink);
  margin: 3rem 0 1.25rem; padding-top: 2rem; border-top: 1px solid var(--rule);
  line-height: 1.3;
}
.single-content h1:first-child,
.single-content h2:first-child { border-top: none; padding-top: 0; margin-top: 0; }
.single-content h3 {
  font-family: var(--serif); font-size: 1.2rem; font-weight: 400; color: var(--ink);
  margin: 2.5rem 0 .75rem; position: relative; padding-left: 1rem;
}
.single-content h3::before { content: ''; position: absolute; left: 0; top: .15em; width: 3px; height: 1em; background: var(--gold); border-radius: 2px; }
.single-content img {
  max-width: 100%; height: auto; border-radius: 10px; margin: 2rem 0;
  display: block; float: none !important;
}
.single-content .wp-caption,
.single-content figure { max-width: 100% !important; width: 100% !important; margin: 2rem 0 !important; float: none !important; clear: both; }
.single-content .wp-caption img,
.single-content figure img { width: 100% !important; height: auto !important; border-radius: 10px; }
.single-content .wp-caption-text,
.single-content figcaption { font-size: .8rem; color: var(--ink-faint); margin-top: .5rem; text-align: center; font-style: italic; }
.single-content blockquote {
  border-left: 3px solid var(--gold); padding: 1.25rem 1.75rem; margin: 2.5rem 0;
  background: var(--cream); border-radius: 0 10px 10px 0;
}
.single-content blockquote p { font-family: var(--serif); font-style: italic; color: var(--ink); margin-bottom: 0; font-size: 1.1rem; line-height: 1.7; }
.single-content a { color: var(--gold); text-decoration-color: rgba(184,149,90,.3); text-underline-offset: 3px; transition: text-decoration-color .2s; }
.single-content a:hover { text-decoration-color: var(--gold); }
.single-content ul, .single-content ol { margin: 1.5rem 0; padding-left: 1.5rem; }
.single-content li { margin-bottom: .65rem; font-size: 1.05rem; color: var(--ink-soft); line-height: 1.85; }
.single-content li::marker { color: var(--gold); }
/* Elementor cleanup — force full width on imported floated images */
.single-content .alignleft,
.single-content .alignright { float: none !important; margin-left: 0 !important; margin-right: 0 !important; display: block; width: 100% !important; }
.single-content .wp-block-image { margin: 2rem 0; }
.single-content .wp-block-image img { width: 100%; border-radius: 10px; }
/* Elementor imported divs — fix figure/image containers */
.single-content .elementor-widget-image,
.single-content [class*="elementor"] img { width: 100% !important; height: auto !important; max-width: 100% !important; border-radius: 10px; }
.single-content [class*="elementor"] { max-width: 100% !important; float: none !important; clear: both; }
/* Article CTA */
.single-cta {
  text-align: center; padding: 3rem 2rem; margin: 3rem -1.5rem 0;
  background: var(--night-base); border-radius: 14px;
  position: relative; overflow: hidden;
}
.single-cta::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(184,149,90,.1) 0%, transparent 60%);
}
.single-cta .eyebrow { justify-content: center; color: var(--gold-l); margin-bottom: 1rem; position: relative; }
.single-cta .eyebrow::before { background: var(--gold-l); }
.single-cta-title { font-family: var(--serif); font-size: 1.5rem; color: var(--white); margin-bottom: 1.5rem; position: relative; }
.single-cta .hero-actions { position: relative; }
.post-nav { display: flex; justify-content: space-between; padding: 2rem 0; border-top: 1px solid var(--rule); margin-top: 2rem; }
.post-nav a { font-size: var(--text-xs); font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--gold); text-decoration: none; }

/* Contact form */
.contact-form { max-width: 600px; }
.contact-form .field { margin-bottom: 1px; border-radius: 0; }
.contact-form .field:first-child { border-radius: 10px 10px 0 0; }
.contact-form .field:last-of-type { border-radius: 0 0 10px 10px; }
.contact-form textarea {
  border: none; outline: none; background: transparent;
  font-family: var(--sans); font-size: 1rem; color: var(--ink);
  width: 100%; resize: vertical; min-height: 120px;
}

/* 404 page */
.error-404 { text-align: center; padding: 120px 0 80px; }
.error-404 .s-title { font-size: clamp(4rem, 10vw, 8rem); color: var(--rule); margin-bottom: 1rem; }

/* Language switcher */
.nav-lang { display:none; align-items:center; gap:.75rem; margin-left:1.25rem; padding-left:1.25rem; border-left:1px solid rgba(201,168,76,.4); }
.nav-lang a { font-size:.7rem; font-weight:600; text-transform:uppercase; letter-spacing:.12em; color:var(--gold); text-decoration:none; transition:opacity .2s; line-height:1; opacity:.85; }
.nav-lang a:hover { opacity:1; }

/* ══════════════════════════════════════════════════
   DESKTOP OVERRIDES — from v3-improved.html
   ══════════════════════════════════════════════════ */
@media (min-width: 960px) {

  /* ── NAV (v3) ── */
  nav { height: 64px; padding: 0 3rem; background: rgba(253,252,250,0.92); }
  .mobile-menu, .nav-hamburger, .sticky-bar { display: none !important; }
  .whatsapp-float { display: none !important; }
  .nav-menu { display: flex; gap: 2.25rem; }
  .nav-lang { display: flex; }
  .nav-brand-name { font-size: .95rem; letter-spacing: .06em; }
  .nav-menu a { font-size: .78rem; letter-spacing: .03em; }
  .nav-book { padding: 9px 22px; }

  /* ── HERO (v3) ── */
  .hero { display: grid; grid-template-columns: 50% 50%; min-height: min(740px, 92vh); padding-top: 64px; }
  .hero-photo { min-height: 600px; height: auto; order: 2; }
  .hero-right { order: 1; }
  .hero-photo-bg {
    background-color: #08090B;
    background-size: cover;
    background-position: center 20%;
    background-repeat: no-repeat;
  }
  .hero-photo-bg::before {
    background: rgba(0,0,0,.25);
  }
  .hero-photo-bg::after { height: 50%; background: linear-gradient(to top, rgba(8,8,10,.8) 0%, rgba(8,8,10,.3) 40%, transparent 100%); }
  .hero-car-svg { display: none; }
  .hero-car-badge { left: 2.5rem; right: auto; bottom: 2.5rem; gap: 12px; padding: 12px 18px; }
  .hero-car-badge-dot { width: 6px; height: 6px; }
  .hero-car-badge-text { font-size: .7rem; letter-spacing: .12em; }

  /* Hero content (v3) */
  .hero-right { border-right: 1px solid var(--rule); border-left: none; display: flex; flex-direction: column; justify-content: center; }
  .hero-content { padding: 0.75rem 3.5rem 2.5rem; border-bottom: none; background: var(--cream); }
  .eyebrow { font-size: .62rem; letter-spacing: .22em; margin-bottom: 1.75rem; }
  .eyebrow::before { width: 22px; }
  .hero-title { font-size: clamp(2.4rem, 3.8vw, 4rem); line-height: 1.08; margin-bottom: 1.5rem; }
  .hero-body { font-size: .9rem; line-height: 1.85; max-width: 360px; margin-bottom: 2.5rem; }
  .hero-actions { gap: 1rem; margin-bottom: 2.5rem; }
  .hero-trust { gap: 1.75rem; padding-top: 2rem; }
  .trust-item { gap: 7px; font-size: .72rem; }
  .trust-dot { width: 5px; height: 5px; }

  /* Booking panel (v3) */
  .booking-panel { border-top: 1px solid var(--rule); padding: 2rem 3.5rem 2.5rem; }
  .booking-title { font-size: 1.05rem; }
  .booking-sub { font-size: .75rem; margin-bottom: 1.5rem; }
  .btn-book { padding: 15px; font-size: .78rem; border-radius: 8px; }
  .form-assurance { gap: 1.25rem; font-size: .68rem; }
  .cta-block-label { font-size: .62rem; margin-bottom: 1.25rem; }
  .cta-dest-line { font-size: 1.1rem; }
  .cta-phone-link { font-size: .82rem; padding: 12px 16px; }

  /* ── BUTTONS (v3) ── */
  .btn-dark { padding: 13px 28px; font-size: .75rem; }
  .btn-ghost { font-size: .75rem; letter-spacing: .05em; }
  .btn-gold { padding: 14px 36px; font-size: .75rem; }
  .btn-ghost-white { padding: 14px 28px; font-size: .75rem; }
  .btn-sm { padding: 8px 16px; font-size: .68rem; }

  /* ── MARQUEE (v3) ── */
  .marquee-strip { padding: 13px 0; }
  .marquee-track { gap: 2.5rem; }
  .marquee-track span { font-size: .67rem; letter-spacing: .16em; }

  /* ── STATS (v3) ── */
  .stats-row { grid-template-columns: repeat(4,1fr); }
  .stat-cell { padding: 3.5rem 2.5rem; }
  .stat-cell:last-child { border-right: none; }
  .stat-cell:nth-child(2n) { border-right: 1px solid var(--rule); }
  .stat-cell:nth-child(4n) { border-right: none; }
  .stat-n { font-size: 3rem; }
  .stat-n sup { font-size: 1.2rem; }
  .stat-l { font-size: .73rem; }

  /* ── SECTIONS (v3) ── */
  .section { padding: 96px 0; }
  .container { padding: 0 4.5rem; }
  .s-label { font-size: .62rem; letter-spacing: .22em; margin-bottom: 1.25rem; }
  .s-label::before { width: 20px; }
  .s-title { font-size: clamp(2rem, 3.2vw, 3rem); }

  /* ── SERVICES (v3) ── */
  .svc-grid { display: grid; grid-template-columns: repeat(4,1fr); border: 1px solid var(--rule); margin-top: 4rem; }
  .svc-card { padding: 2.5rem 2rem; border-bottom: none; border-right: 1px solid var(--rule); }
  .svc-card:last-child { border-right: none; }
  .svc-card::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--gold); transition: width .35s ease; }
  .svc-card:hover::after { width: 100%; }
  .svc-card:hover { background: var(--cream); }
  .svc-num { font-size: 3.5rem; margin-bottom: 1.25rem; transition: color .3s; }
  .svc-card:hover .svc-num { color: var(--gold-wash); }
  .svc-card h3 { font-size: 1.05rem; margin-bottom: .65rem; line-height: 1.3; }
  .svc-card p { font-size: .82rem; line-height: 1.78; }
  .svc-link { font-size: .7rem; margin-top: 1rem; transition: gap .2s; }
  .svc-card:hover .svc-link { gap: 9px; }

  /* ── FLEET PAGE (v3) ── */
  .fp-card { flex-direction: row; }
  .fp-card.fp-reverse { flex-direction: row-reverse; }
  .fp-card-img { flex: 0 0 50%; min-height: 400px; }
  .fp-card-body { flex: 1; padding: 3rem; display: flex; flex-direction: column; justify-content: center; }
  .fp-card-title { font-size: 1.75rem; }

  /* ── FLEET (v3) ── */
  .fleet-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 3rem; }
  .fleet-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; }
  .fleet-card { cursor: pointer; transition: transform .3s, box-shadow .3s; }
  .fleet-card:hover { transform: translateY(-5px); box-shadow: 0 20px 50px rgba(26,24,20,.09); }
  .fleet-photo { height: 220px; }
  .fleet-car-svg { display: none; }
  .fleet-tag { font-size: .58rem; letter-spacing: .14em; top: 14px; left: 14px; backdrop-filter: blur(8px); }
  .fleet-body { padding: 1.5rem; }
  .fleet-cat { font-size: .6rem; letter-spacing: .14em; margin-bottom: .35rem; }
  .fleet-name { font-size: 1.2rem; margin-bottom: .9rem; }
  .fleet-specs { gap: 1.25rem; }
  .spec-val { font-size: .88rem; }
  .spec-key { font-size: .6rem; }
  .fleet-price-row { margin-top: 1.1rem; padding-top: 1.1rem; }
  .price-from-label { font-size: .6rem; letter-spacing: .06em; }
  .price-val { font-size: 1.15rem; }

  /* ── DESTINATIONS (v3) ── */
  .dest-sub { font-size: .88rem; max-width: 400px; margin-bottom: 3rem; }
  .dest-grid { grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
  .dest-card-img { height: 200px; }
  .dest-card-body { padding: 1.5rem; }
  .dest-card-name { font-size: 1.15rem; }
  .dest-card-price { font-size: 1.25rem; }
  .dest-custom { padding: 1.5rem 2rem; margin-top: 2rem; }

  /* ── ROUTES (v3) — 4-column grid with header ── */
  .routes-head {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
    padding: .9rem 2rem; background: var(--paper);
    border-bottom: 1px solid var(--rule);
    font-size: .6rem; font-weight: 600; letter-spacing: .12em;
    text-transform: uppercase; color: var(--ink-faint);
  }
  .route-row {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
    flex-direction: unset; padding: 1.4rem 2rem; gap: 0; align-items: center;
  }
  .route-row:hover { background: var(--gold-wash); }
  .r-from { font-size: .88rem; }
  .r-arrow { font-size: .8rem; }
  .r-to { font-size: .98rem; }
  .r-dur { display: block; font-size: .82rem; color: var(--ink-soft); }
  .r-veh { display: block; font-size: .76rem; color: var(--ink-faint); font-weight: 300; }
  .r-price { font-size: 1.08rem; text-align: right; }
  .route-custom .r-price { font-size: .75rem; text-align: right; }

  /* ── TESTIMONIALS (v3) ── */
  .testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; margin-top: 3rem; }
  .testi-card { padding: 2rem; }
  .testi-card::before { font-size: 4.5rem; top: 1.5rem; right: 1.75rem; }
  .t-text { font-size: .93rem; line-height: 1.78; margin-bottom: 1.4rem; }
  .t-name { font-size: .78rem; }
  .t-role { font-size: .68rem; }

  /* ── WHY US (v3) ── */
  .why-head {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 4rem; align-items: end; margin-bottom: 4rem;
  }
  .why-intro { max-width: 360px; margin-bottom: 0; }
  .why-grid { display: grid; grid-template-columns: 1fr 1fr; }
  .why-item { padding: 2.25rem; border-right: 1px solid rgba(255,255,255,.07); border-bottom: 1px solid rgba(255,255,255,.07); }
  .why-item:nth-child(even) { border-right: none; }
  .why-item:nth-last-child(-n+2) { border-bottom: none; }
  .why-n { font-size: .82rem; margin-bottom: .65rem; }
  .why-item h3 { font-size: 1.05rem; margin-bottom: .55rem; }
  .why-item p { font-size: .8rem; line-height: 1.8; }

  /* ── CTA (v3) ── */
  .cta-section { padding: 96px 0; }
  .cta-sub { font-size: .88rem; max-width: 400px; line-height: 1.75; margin-bottom: 2.5rem; }
  .cta-btns { gap: .85rem; }
  .cta-contacts { flex-direction: row; justify-content: center; gap: 2.5rem; margin-top: 2.5rem; }
  .cta-link { font-size: .78rem; }

  /* ── FOOTER (v3) ── */
  footer { padding: 4rem 0 2rem; }
  .footer-grid { display: grid; grid-template-columns: 1.2fr 2fr; gap: 4rem; margin-bottom: 3.5rem; }
  .footer-cols { grid-template-columns: 1fr 1fr 1fr; }
  .footer-brand { font-size: .95rem; letter-spacing: .04em; }
  .footer-desc { font-size: .76rem; line-height: 1.85; max-width: 250px; margin-bottom: 1.25rem; }
  .footer-addr { font-size: .73rem; }
  .footer-col h3 { font-size: .58rem; letter-spacing: .18em; }
  .footer-col a { font-size: .76rem; }
  .footer-bar { flex-direction: row; justify-content: space-between; padding-top: 1.5rem; font-size: .7rem; }

  /* ── SCROLL REVEAL (v3) ── */
  .rv { transform: translateY(18px); transition: opacity .65s ease, transform .65s ease; }
  .rv.d1 { transition-delay: .1s; }
  .rv.d2 { transition-delay: .2s; }
  .rv.d3 { transition-delay: .3s; }
  .rv.d4 { transition-delay: .4s; }

  /* ── MOBILE-ONLY elements hidden on desktop ── */
  .fleet-header-mobile { display: none; }
  .why-head-mobile { display: none; }
  .route-meta { display: none; }

  /* ── PAGES (desktop) ── */
  .page-header { padding: 140px 0 64px; }
  .page-header--hero { padding: 160px 0 80px; }
  .page-header .s-title { font-size: clamp(2.4rem, 3.8vw, 3.5rem); }
  .blog-grid { grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
  .blog-card-img { height: 240px; }
  .single-content { padding: 4rem 0 5rem; }
  .single-header { padding: 140px 0 64px; }
  .single-header h1 { font-size: 2.4rem; }
}

@media (min-width: 960px) and (max-width: 1280px) {
  .container { padding: 0 2.5rem; }
}

/* ===== ROUTES PAGE ===== */
.page-header-sub { color: rgba(255,255,255,.6); font-size: .95rem; margin-top: .5rem; }

/* Calculator */
.calc-box { background: #faf9f7; border: 1px solid #e8e4df; border-radius: 12px; padding: 2.5rem; max-width: 800px; margin: 0 auto; }
.calc-title { font-family: var(--ff-serif); font-size: 1.5rem; margin-bottom: .25rem; }
.calc-sub { color: #666; font-size: .9rem; margin-bottom: 1.5rem; }
.calc-input-wrap { max-width: 250px; }
.calc-input-wrap label { display: block; font-size: .8rem; text-transform: uppercase; letter-spacing: .08em; color: #888; margin-bottom: .4rem; }
.calc-input-wrap input { width: 100%; padding: .75rem 1rem; border: 1px solid #ccc; border-radius: 8px; font-size: 1.1rem; font-family: var(--ff-sans); }
.calc-input-wrap input:focus { outline: none; border-color: var(--gold); }
.calc-results { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 1.5rem; }
.calc-card { background: #fff; border: 1px solid #e0ddd8; border-radius: 10px; padding: 1.2rem; text-align: center; }
.calc-card-premium { background: var(--bg-dark); border-color: var(--gold); }
.calc-card-premium .calc-vehicle,
.calc-card-premium .calc-pax { color: #fff; }
.calc-card-premium .calc-est { color: var(--gold); }
.calc-vehicle { font-family: var(--ff-serif); font-size: 1rem; font-weight: 600; }
.calc-pax { font-size: .75rem; color: #999; margin: .25rem 0 .5rem; }
.calc-est { font-size: 1.4rem; font-weight: 700; font-family: var(--ff-serif); color: var(--bg-dark); }
.calc-note { color: #999; font-size: .8rem; margin-top: 1rem; text-align: center; font-style: italic; }

/* Route filters */
.routes-controls { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.5rem; flex-wrap: wrap; gap: 1rem; }
.routes-filters { display: flex; gap: .5rem; flex-wrap: wrap; }
.filter-btn { padding: .5rem 1rem; border: 1px solid #ddd; border-radius: 6px; background: #fff; cursor: pointer; font-size: .85rem; transition: all .2s; }
.filter-btn:hover { border-color: var(--gold); }
.filter-btn.active { background: var(--bg-dark); color: #fff; border-color: var(--bg-dark); }
.filter-count { font-size: .75rem; opacity: .6; }
.routes-search input { padding: .55rem 1rem; border: 1px solid #ddd; border-radius: 6px; font-size: .9rem; width: 220px; font-family: var(--ff-sans); }
.routes-search input:focus { outline: none; border-color: var(--gold); }

/* Route table */
.routes-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.routes-table { width: 100%; border-collapse: collapse; font-size: .9rem; }
.routes-table thead th { text-align: left; padding: .75rem 1rem; border-bottom: 2px solid var(--bg-dark); font-size: .75rem; text-transform: uppercase; letter-spacing: .08em; color: #888; font-weight: 600; white-space: nowrap; }
.routes-table thead .th-premium { color: var(--gold); }
.routes-table .region-header td { padding: .75rem 1rem; font-weight: 700; font-size: .85rem; text-transform: uppercase; letter-spacing: .06em; background: #faf9f7; border-top: 1px solid #e8e4df; color: var(--bg-dark); }
.region-count { font-weight: 400; color: #999; font-size: .75rem; }
.routes-table .route-row { transition: background .15s; cursor: pointer; }
.routes-table .route-row:hover { background: #faf9f7; }
.routes-table .route-row td { padding: .65rem 1rem; border-bottom: 1px solid #f0eeeb; }
.route-dest strong { font-weight: 600; }
.route-km { color: #888; white-space: nowrap; }
.route-price { font-weight: 600; white-space: nowrap; }
.route-price-premium { color: var(--gold); font-weight: 700; }
.routes-cta { text-align: center; padding: 2rem 0; color: #666; font-size: .95rem; }
.routes-cta-link { color: var(--gold); font-weight: 600; text-decoration: none; }
.routes-cta-link:hover { text-decoration: underline; }

/* Degressive grid */
.degressive-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.deg-card { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: 10px; padding: 1.2rem; }
.deg-range { font-family: var(--ff-serif); font-size: 1.1rem; color: var(--gold); margin-bottom: .75rem; font-weight: 600; }
.deg-rates { display: flex; flex-direction: column; gap: .3rem; }
.deg-rates span { font-size: .85rem; color: rgba(255,255,255,.7); }

/* Mobile routes */
@media (max-width: 768px) {
  .calc-results { grid-template-columns: 1fr; }
  .routes-controls { flex-direction: column; align-items: stretch; }
  .routes-search input { width: 100%; }
  .routes-table { font-size: .8rem; }
  .routes-table thead th,
  .routes-table .route-row td,
  .routes-table .region-header td { padding: .5rem .6rem; }
  .degressive-grid { grid-template-columns: repeat(2, 1fr); }
}

/* WhatsApp floating button — removed */

/* ===== BOOKING PRICE RESULT ===== */
.bpr { margin: 1.25rem 0; animation: bprSlide .3s ease; }
@keyframes bprSlide { from { opacity:0; transform:translateY(8px); } to { opacity:1; transform:translateY(0); } }
.bpr-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: .75rem; }
.bpr-label { font-size: .75rem; text-transform: uppercase; letter-spacing: .08em; color: var(--gold); font-weight: 600; }
.bpr-distance { font-size: .8rem; color: #888; }
.bpr-cards { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: .4rem; align-items: stretch; }
.bpr-card { background: #A67C52; border: 2px solid #C9A87C; border-radius: 8px; padding: .6rem .3rem; text-align: center; cursor: pointer; transition: all .2s; min-width: 0; box-sizing: border-box; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.bpr-card:hover { border-color: #8A6238; background: #8A6238; }
.bpr-card.bpr-active { border-color: #8A6238; background: #8A6238; box-shadow: 0 0 0 1px #8A6238; }
.bpr-premium { background: #A67C52 !important; border-color: #C9A87C !important; }
.bpr-premium .bpr-name, .bpr-premium .bpr-pax { color: #fff !important; }
.bpr-premium .bpr-amount { color: #fff !important; }
.bpr-premium.bpr-active { background: #8A6238 !important; border-color: #8A6238 !important; box-shadow: 0 0 0 1px #8A6238; }
.bpr-name { font-family: var(--ff-serif); font-size: .8rem; font-weight: 600; color: #fff; }
.bpr-pax { font-size: .65rem; color: rgba(255,255,255,.7); margin: .1rem 0 .3rem; }
.bpr-amount { font-size: 1.05rem; font-weight: 700; font-family: var(--ff-serif); color: #fff; }
.bpr-note { font-size: .72rem; color: #999; text-align: center; margin-top: .6rem; font-style: italic; }
.booking-success { padding: 1rem; background: #f0f9f0; border: 1px solid #4caf50; border-radius: 10px; margin-top: 1rem; font-size: .85rem; color: #2e7d32; text-align: center; }

/* Contact step (step 2) */
.contact-step { margin-top: 1.2rem; padding-top: 1.2rem; border-top: 1px solid var(--border); animation: fadeSlideUp .4s ease; }
.contact-step-title { font-size: .8rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--gold); margin-bottom: .8rem; }
.contact-step .fields { display: flex; flex-direction: column; gap: .6rem; }
.contact-step .field label { font-size: .65rem; text-transform: uppercase; letter-spacing: .08em; color: #999; font-weight: 500; margin-bottom: .2rem; display: block; }
.contact-step .field input,
.contact-step .field textarea { width: 100%; padding: .7rem .8rem; border: 1px solid var(--border); border-radius: 8px; font-size: .85rem; font-family: inherit; background: var(--bg-cream); transition: border-color .2s; }
.contact-step .field input:focus,
.contact-step .field textarea:focus { border-color: var(--gold); outline: none; }
.contact-step .field textarea { resize: vertical; min-height: 50px; }
@keyframes fadeSlideUp { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }

/* ===== As-Directed Page ===== */
.ad-hero { display: flex; flex-direction: column; padding-top: 60px; }
.ad-hero-left { background: var(--night-base); padding: 3.5rem 1.5rem; }
.ad-hero-inner { max-width: 560px; margin: 0 auto; }
.ad-hero-title { font-family: var(--serif); font-size: clamp(2rem,5vw,3.2rem); color: #fff; font-weight: 400; line-height: 1.1; margin: 1.25rem 0 1rem; }
.ad-hero-title em { color: var(--gold); font-style: italic; }
.ad-hero-sub { color: var(--ink-soft); font-size: .95rem; line-height: 1.7; margin-bottom: 2rem; }
.ad-trust { list-style: none; padding: 0; margin: 0 0 2rem; display: flex; flex-direction: column; gap: .75rem; }
.ad-trust li { display: flex; align-items: center; gap: .75rem; color: rgba(255,255,255,.8); font-size: .85rem; }
.ad-trust-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }
.ad-phone-cta { display: inline-flex; align-items: center; gap: .5rem; color: var(--gold); font-size: .9rem; font-weight: 600; letter-spacing: .04em; text-decoration: none; border: 1px solid var(--gold-d); padding: 10px 18px; border-radius: 40px; transition: background .2s; }
.ad-phone-cta:hover { background: var(--gold-d); color: #fff; }
.ad-hero-right { background: var(--paper); padding: 2.5rem 1.5rem 3rem; }
.ad-form-wrap { max-width: 560px; margin: 0 auto; }
.ad-form-header { margin-bottom: 1.75rem; }
.ad-form-title { font-family: var(--serif); font-size: 1.4rem; font-weight: 400; color: var(--ink); margin-bottom: .3rem; }
.ad-form-sub { font-size: .75rem; color: var(--ink-soft); letter-spacing: .04em; }
.ad-form { display: flex; flex-direction: column; gap: .85rem; }
.ad-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: .85rem; }
.ad-field { display: flex; flex-direction: column; gap: .35rem; }
.ad-field label { font-size: .72rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-mid); }
.ad-field input, .ad-field select, .ad-field textarea { width: 100%; padding: 11px 14px; border: 1px solid var(--rule); border-radius: 8px; font-size: .9rem; font-family: var(--sans); background: #fff; color: var(--ink); transition: border-color .2s; }
.ad-field input:focus, .ad-field select:focus, .ad-field textarea:focus { outline: none; border-color: var(--gold); }
.ad-field textarea { resize: vertical; }
.ad-submit { width: 100%; padding: 15px; background: var(--gold-d); color: #fff; border: none; border-radius: 8px; font-size: .8rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; cursor: pointer; margin-top: .25rem; transition: background .2s; }
.ad-submit:hover { background: var(--gold); }
.ad-reassure { text-align: center; font-size: .7rem; color: var(--ink-soft); margin-top: .5rem; }
@media (min-width: 900px) {
  .ad-hero { flex-direction: row; min-height: calc(100vh - 64px); }
  .ad-hero-left { flex: 1; display: flex; align-items: center; padding: 5rem 4rem; }
  .ad-hero-right { flex: 1; display: flex; align-items: center; padding: 4rem 4rem; overflow-y: auto; }
}

/* ===== Luxury Rental Page ===== */
.page-hero--rental { background: url('../img/hero-rental.jpg') center/cover no-repeat; min-height: 55vh; position: relative; display: flex; align-items: flex-end; }
.page-hero--rental::before { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,10,8,.9) 0%, rgba(10,10,8,.5) 40%, rgba(10,10,8,.2) 100%); }
.page-hero--rental .page-hero-content { position: relative; z-index: 2; color: #fff; padding: 0 5% 4rem; max-width: 1280px; margin: 0 auto; width: 100%; }
.page-hero--rental .page-hero-title { color: #fff; font-size: 3rem; margin-bottom: .5rem; }
.page-hero--rental .page-hero-title em { color: var(--gold); }
.page-hero--rental .page-hero-sub { color: rgba(255,255,255,.7); font-size: 1.05rem; max-width: 500px; line-height: 1.7; }
.page-hero--rental .eyebrow { color: var(--gold); margin-bottom: .5rem; }

.rental-intro { padding: 5rem 5%; max-width: 1280px; margin: 0 auto; }
.rental-intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.rental-intro-text h2 { font-family: var(--ff-serif); font-size: 2.2rem; margin: .5rem 0 1.2rem; }
.rental-intro-text p { color: #666; line-height: 1.7; margin-bottom: 1rem; }
.rental-intro-features { display: flex; flex-direction: column; gap: 1rem; }
.rental-feature { display: flex; gap: 1.2rem; align-items: center; padding: 1.2rem 1.5rem; border: 1px solid var(--rule); border-radius: 12px; transition: border-color .3s, box-shadow .3s; background: #fff; }
.rental-feature:hover { border-color: var(--gold); box-shadow: 0 2px 12px rgba(166,124,82,.08); }
.rental-feature-icon { min-width: 44px; width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; background: var(--paper); border-radius: 10px; color: var(--gold); flex-shrink: 0; }
.rental-feature-icon svg { width: 22px; height: 22px; }
.rental-feature strong { display: block; font-size: .88rem; color: var(--ink); margin-bottom: .15rem; }
.rental-feature span { display: block; font-size: .78rem; color: var(--ink-soft); line-height: 1.4; }

.rental-fleet { background: #f5f4f1; padding: 5rem 0; overflow: visible; }
.rental-fleet .wrap { overflow: visible; max-width: 1280px; margin: 0 auto; padding: 0 5%; }
.rental-fleet .section-header { text-align: center; margin-bottom: 4rem; }
.rental-fleet .section-header h2 { font-family: var(--ff-serif); font-size: 2.2rem; margin-top: .5rem; }

.rental-card { display: grid; grid-template-columns: 1fr 1fr; gap: 0; margin-bottom: 4rem; background: #fff; border-radius: 16px; overflow: hidden; box-shadow: 0 4px 30px rgba(0,0,0,.06); min-height: 500px; border: 1px solid rgba(0,0,0,.06); }
.rental-card--reverse { direction: rtl; }
.rental-card--reverse > * { direction: ltr; }
.rental-card-media { position: relative; min-height: 500px; overflow: hidden; }
.rental-card-img { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform .6s ease; width: 100%; height: 100%; }
.rental-card:hover .rental-card-img { transform: scale(1.03); }
.rental-card-badge { position: absolute; top: 1.5rem; left: 1.5rem; background: rgba(0,0,0,.7); color: var(--gold); padding: .3rem .8rem; border-radius: 6px; font-size: .7rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; backdrop-filter: blur(10px); }
.rental-card--reverse .rental-card-badge { left: auto; right: 1.5rem; }

.rental-card-info { padding: 3rem; display: flex; flex-direction: column; justify-content: center; }
.rental-card-name { font-family: var(--ff-serif); font-size: 1.8rem; line-height: 1.2; margin: 0 0 .8rem; }
.rental-card-tagline { color: #777; font-size: .88rem; line-height: 1.7; margin-bottom: 1.8rem; }

.rental-specs { display: grid; grid-template-columns: 1fr 1fr; gap: .8rem; margin-bottom: 1.8rem; }
.rental-spec { padding: .75rem 1rem; background: var(--bg-cream); border-radius: 10px; border: 1px solid var(--border); }
.rental-spec-label { display: block; font-size: .62rem; text-transform: uppercase; letter-spacing: .08em; color: #999; font-weight: 500; margin-bottom: .15rem; }
.rental-spec-value { font-size: .88rem; font-weight: 600; color: var(--text-dark); }

.rental-amenities { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1.8rem; }
.rental-amenities span { font-size: .72rem; padding: .35rem .7rem; border: 1px solid var(--border); border-radius: 20px; color: #666; transition: border-color .3s, color .3s; }
.rental-amenities span:hover { border-color: var(--gold); color: var(--text-dark); }

.rental-pricing { display: flex; gap: 1.2rem; margin-bottom: 2rem; padding: 1.2rem 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.rental-price { flex: 1; text-align: center; }
.rental-price:not(:last-child) { border-right: 1px solid var(--border); }
.rental-price-label { display: block; font-size: .62rem; text-transform: uppercase; letter-spacing: .08em; color: #999; margin-bottom: .3rem; }
.rental-price-amount { font-family: var(--ff-serif); font-size: 1.15rem; font-weight: 700; color: var(--text-dark); }

.rental-card-info .btn-dark { align-self: flex-start; }

/* Rental Grid — compact cards */
.rental-category { margin-bottom: 4rem; }
.rental-category-title { font-family: var(--serif); font-size: 1.6rem; color: var(--ink); margin-bottom: 2rem; padding-bottom: .8rem; border-bottom: 1px solid var(--rule); }
.rental-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.rental-grid-card { background: #fff; border-radius: 14px; overflow: hidden; border: 1px solid rgba(0,0,0,.06); box-shadow: 0 2px 16px rgba(0,0,0,.04); transition: transform .3s, box-shadow .3s; }
.rental-grid-card:hover { transform: translateY(-4px); box-shadow: 0 8px 30px rgba(0,0,0,.1); }
.rental-grid-img { position: relative; height: 220px; background-size: cover; background-position: center; background-color: var(--paper); }
.rental-grid-badge { position: absolute; top: 1rem; left: 1rem; background: rgba(0,0,0,.7); color: var(--gold); padding: .25rem .7rem; border-radius: 6px; font-size: .65rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; backdrop-filter: blur(8px); }
.rental-grid-info { padding: 1.5rem; }
.rental-grid-info h4 { font-family: var(--serif); font-size: 1.1rem; margin-bottom: .8rem; color: var(--ink); line-height: 1.3; }
.rental-grid-specs { display: flex; flex-wrap: wrap; gap: .4rem; margin-bottom: 1.2rem; }
.rental-grid-specs span { font-size: .68rem; padding: .25rem .55rem; background: var(--paper); border: 1px solid var(--rule); border-radius: 6px; color: var(--ink-mid); }
/* Rental grid link style — uses .rental-grid-link instead of overriding .btn-sm */
.rental-grid-link { display: inline-block; font-size: .78rem; font-weight: 600; color: var(--gold); text-decoration: none; letter-spacing: .02em; transition: color .3s; }
.rental-grid-link:hover { color: var(--gold-d); }

/* Rental CTA */
.rental-cta { background: #1A1814 !important; color: #fff !important; padding: 5rem 0; }
.rental-cta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.rental-cta-text h2 { font-family: var(--ff-serif); font-size: 2rem; margin: .5rem 0 1rem; color: #fff; }
.rental-cta-text p { color: rgba(255,255,255,.6); line-height: 1.7; margin-bottom: 1.5rem; }
.rental-cta-contact { display: flex; gap: 1rem; margin-bottom: 1.5rem; flex-wrap: wrap; }
.rental-cta-trust { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.rental-cta-trust span { font-size: .75rem; color: rgba(255,255,255,.4); }

.rental-inquiry-form { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: 16px; padding: 2.5rem; }
.rental-inquiry-form .field { margin-bottom: 1rem; }
.rental-inquiry-form .field label { display: block; font-size: .65rem; text-transform: uppercase; letter-spacing: .08em; color: rgba(255,255,255,.5) !important; margin-bottom: .4rem; font-weight: 500; }
.rental-cta .rental-inquiry-form input,
.rental-cta .rental-inquiry-form input[type="text"],
.rental-cta .rental-inquiry-form input[type="email"],
.rental-cta .rental-inquiry-form input[type="tel"],
.rental-cta .rental-inquiry-form input[type="date"],
.rental-cta .rental-inquiry-form select { width: 100% !important; padding: .8rem 1rem !important; border: 1px solid rgba(255,255,255,.2) !important; border-radius: 10px !important; background: rgba(255,255,255,.08) !important; color: #fff !important; font-size: .9rem !important; font-family: inherit !important; -webkit-appearance: none; }
.rental-cta .rental-inquiry-form input::placeholder { color: rgba(255,255,255,.3) !important; }
.rental-cta .rental-inquiry-form input:focus,
.rental-cta .rental-inquiry-form select:focus { border-color: var(--gold) !important; outline: none !important; background: rgba(255,255,255,.12) !important; }
.rental-inquiry-form .field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.rental-inquiry-form .btn-book { width: 100%; margin-top: 1rem; padding: 1rem; font-size: .9rem; }
.rental-inquiry-form .form-assurance { margin-top: 1rem; text-align: center; }
.rental-inquiry-form .form-assurance span { color: rgba(255,255,255,.35); font-size: .72rem; margin: 0 .6rem; }

@media (max-width: 768px) {
  .rental-intro-grid, .rental-card, .rental-card--reverse, .rental-cta-grid { grid-template-columns: 1fr; }
  .rental-card-media { min-height: 250px; }
  .rental-card--reverse { direction: ltr; }
  .rental-pricing { flex-direction: column; gap: .5rem; }
  .rental-specs { grid-template-columns: 1fr 1fr; }
  .rental-grid { grid-template-columns: 1fr; }
  .rental-grid-img { height: 200px; }
}

/* Google Places autocomplete dropdown z-index fix */
.pac-container { z-index: 10000 !important; font-family: var(--ff-sans); }
.pac-item { padding: .5rem .75rem; font-size: .85rem; }

@media (max-width: 768px) {
  .bpr-cards { grid-template-columns: 1fr 1fr 1fr; gap: .5rem; }
  .bpr-card { padding: .6rem .4rem; }
  .bpr-card-name { font-size: .72rem; }
  .bpr-card-sub { font-size: .55rem; }
  .bpr-card-price { font-size: 1rem; }
}

/* ── MOBILE FIXES ── */
@media (max-width: 600px) {
  /* Routes table: hide distance column on small screens */
  .routes-table .route-km { display: none; }
  .routes-table thead th:nth-child(2) { display: none; }
  .routes-table .route-price { font-size: .72rem; padding: .4rem .3rem; }
  .routes-table .route-dest { font-size: .78rem; }

  /* Page heroes smaller */
  .page-hero-title { font-size: 2rem !important; }
  .page-hero-sub { font-size: .88rem !important; }
  .page-hero-content { padding: 0 1.25rem 2.5rem !important; }

  /* Blog header */
  .blog-hero h1 { font-size: 2rem; }

  /* Rental grid: 2 columns on mobile */
  .rental-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .rental-grid-img { height: 160px; }
  .rental-grid-info { padding: 1rem; }
  .rental-grid-info h4 { font-size: .9rem; }
  .rental-grid-specs span { font-size: .6rem; padding: .2rem .4rem; }

  /* Booking form price cards stay 3 col */
  .bpr-cards { grid-template-columns: 1fr 1fr 1fr; }

  /* Footer 1 column */
  .footer-grid { grid-template-columns: 1fr !important; gap: 2rem; }

  /* Stats 2x2 grid */
  .stats-row { grid-template-columns: 1fr 1fr; }

  /* Sticky bar spacing */
  .sticky-bar { padding: 8px 1rem; }
  body { padding-bottom: 70px; }
}

/* ===== INNER PAGES MOBILE RESPONSIVE ===== */
@media (max-width: 768px) {
  /* Force all inline grid layouts to single column */
  .wrap > div[style*="grid-template-columns"],
  section > div > div[style*="grid-template-columns: 1fr 1fr"],
  section > div > div[style*="grid-template-columns:1fr 1fr"],
  section > div > div[style*="grid-template-columns: 1fr 420px"],
  section > div > div[style*="grid-template-columns:1fr 420px"] {
    grid-template-columns: 1fr !important;
  }

  /* Contact cards: 2x2 grid instead of 4 columns */
  .wrap > div[style*="grid-template-columns:repeat(4"] {
    grid-template-columns: 1fr 1fr !important;
    gap: 1rem !important;
  }

  /* Services: stack icon + features vertically */
  .wrap > div[style*="display:flex"][style*="gap:4rem"] {
    flex-direction: column !important;
    gap: 2rem !important;
  }
  .wrap > div[style*="display:flex"][style*="gap:4rem"] > div[style*="flex:0 0 45%"] {
    flex: 1 1 100% !important;
  }

  /* Fleet cards: stack image + content */
  .wrap > div[style*="display:flex"][style*="gap:0"] {
    flex-direction: column !important;
  }
  .wrap > div[style*="display:flex"][style*="gap:0"] > div[style*="flex:0 0 50%"] {
    flex: none !important;
    min-height: 250px !important;
    width: 100%;
  }
  .wrap > div[style*="display:flex"][style*="gap:0"] > div[style*="flex:1"] {
    padding: 1.5rem !important;
  }

  /* Fleet features: 1 column on mobile */
  div[style*="grid-template-columns:1fr 1fr"][style*="gap:.6rem"] {
    grid-template-columns: 1fr !important;
  }

  /* About stats: 2x2 */
  div[style*="grid-template-columns:1fr 1fr"][style*="gap:1.25rem"] {
    grid-template-columns: 1fr 1fr !important;
  }

  /* Values: 1 column */
  div[style*="grid-template-columns:repeat(3"] {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }

  /* Page headers */
  .page-header { padding: 80px 0 40px; }
  .page-header .s-title { font-size: clamp(1.8rem, 6vw, 2.5rem); }
  .page-subtitle { font-size: .88rem !important; }

  /* Wrap padding */
  .wrap { padding: 0 1.25rem; }

  /* CTA sections */
  section[style*="padding:5rem"] { padding: 3rem 0 !important; }

  /* Booking sidebar: full width below */
  div[style*="grid-template-columns: 1fr 420px"] {
    grid-template-columns: 1fr !important;
  }

  /* Contact form: full width fields */
  div[style*="grid-template-columns:1fr 1fr"][style*="gap:1rem"] {
    grid-template-columns: 1fr !important;
  }
}


/* ── TRUST STRIP (homepage authority signals) ── */
.trust-strip {
	background: var(--ink);
	color: #f6efe2;
	border-top: 1px solid rgba(255,255,255,0.06);
	border-bottom: 1px solid rgba(255,255,255,0.06);
	padding: 1.6rem 0;
	text-align: center;
}
.trust-strip-inner {
	display: flex;
	flex-direction: column;
	gap: .55rem;
	align-items: center;
}
.trust-line { font-size: .82rem; line-height: 1.4; letter-spacing: .02em; }
.trust-line--rating { display: inline-flex; align-items: center; gap: .55rem; font-size: .95rem; }
.trust-stars { color: var(--gold); font-size: 1.05rem; letter-spacing: .15em; }
.trust-rating-text { color: #fff; font-weight: 500; }
.trust-line--heritage { color: rgba(246,239,226,0.78); font-size: .8rem; }
.trust-line--events { display: flex; flex-wrap: wrap; justify-content: center; gap: 0; font-size: .78rem; color: var(--gold); font-family: var(--serif); letter-spacing: .04em; }
.trust-line--events span { padding: 0 .85rem; border-right: 1px solid rgba(212,175,55,0.32); }
.trust-line--events span:last-child { border-right: none; }
.trust-line--tagline { color: rgba(246,239,226,0.6); font-size: .72rem; font-style: italic; letter-spacing: .04em; text-transform: uppercase; }

@media (min-width: 769px) {
	.trust-strip { padding: 2rem 0; }
	.trust-line { font-size: .88rem; }
	.trust-line--rating { font-size: 1rem; }
	.trust-line--events { font-size: .85rem; }
	.trust-line--events span { padding: 0 1.1rem; }
	.trust-line--tagline { font-size: .75rem; }
}

@media (max-width: 480px) {
	.trust-line--events span { padding: 0 .55rem; font-size: .72rem; }
	.trust-line--events { letter-spacing: 0; }
}

@media (max-width:767px){.hero-photo-bg,.hero-season-summer .hero-photo-bg,.hero-season-winter .hero-photo-bg{background-image:url(../img/hero-mobile.webp)!important}}

.sls-internal-links{color:var(--ink-soft)}.sls-internal-links h3{font-family:var(--serif);font-weight:400;color:var(--ink);margin:0 0 1.25rem}.sls-internal-links .sls-il-list li{line-height:1.6;padding:2px 0;border-bottom:1px dotted transparent;transition:border-color .2s}.sls-internal-links .sls-il-list li:hover{border-bottom-color:var(--rule)}.sls-internal-links .sls-il-list a{color:var(--ink);text-decoration:none;font-weight:500;transition:color .2s}.sls-internal-links .sls-il-list a:hover{color:var(--gold)}
