/* ── RESET & VARIABLES ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream: #F5F0E8;
  --cream-alt: #EDEAE2;
  --dark: #1C1917;
  --dark-deep: #0D0C0B;
  --gold: #9A7B2E;
  --gold-light: #C4A45A;
  --gold-glow: rgba(196,164,90,0.12);
  --text: #1C1917;
  --text-muted: #6b6561;
  --white: #ffffff;
  --easing: cubic-bezier(0.32, 0.72, 0, 1);
  --spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ── KEYFRAMES ─────────────────────────────────────────────────── */
@keyframes fadeInPage {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes shimmer {
  0%   { transform: translateX(-100%) skewX(-15deg); }
  100% { transform: translateX(250%) skewX(-15deg); }
}
@keyframes floatLogo {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-8px); }
}
@keyframes pulseGold {
  0%, 100% { box-shadow: 0 8px 32px rgba(196,164,90,0.35); }
  50%       { box-shadow: 0 8px 44px rgba(196,164,90,0.58); }
}
@keyframes dotPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.7); }
}
@keyframes spinSlow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes counterUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Outfit', sans-serif;
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
  animation: fadeInPage 0.6s var(--easing) both;
}

/* ── FLOATING NAV ────────────────────────────────────────────────── */
header {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  width: calc(100% - 48px);
  max-width: 1180px;
  transition: top 0.4s var(--easing);
}
header.scrolled { top: 10px; }
.nav-island {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 8px;
  height: 60px;
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-radius: 50px;
  border: 1px solid rgba(196,164,90,0.22);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.06);
  transition: height 0.4s var(--easing), box-shadow 0.4s;
}
header.scrolled .nav-island {
  height: 52px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.06);
}
nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
nav a {
  font-size: 10.5px; font-weight: 500; letter-spacing: 0.13em;
  text-transform: uppercase; text-decoration: none;
  color: rgba(255,255,255,0.62);
  transition: color 0.3s var(--easing);
  position: relative;
}
nav a::after {
  content: '';
  position: absolute; bottom: -3px; left: 0; right: 0;
  height: 1px; background: var(--gold-light);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s var(--easing);
}
nav a:hover::after, nav a.active::after { transform: scaleX(1); }
nav a:hover, nav a.active { color: var(--gold-light); }
.nav-cta {
  position: absolute;
  right: 8px;
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--gold-light); color: var(--white) !important;
  padding: 10px 18px 10px 22px;
  border-radius: 50px;
  overflow: hidden;
  transition: background 0.3s var(--easing), transform 0.2s var(--easing) !important;
}
.nav-cta::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 40%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
  animation: shimmer 3.5s ease-in-out infinite;
}
.nav-cta:hover { background: #B8963A !important; transform: scale(1.03) !important; }
.nav-cta .cta-arrow {
  width: 26px; height: 26px; border-radius: 50%;
  background: rgba(255,255,255,0.18);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 13px;
  transition: transform 0.3s var(--spring);
}
.nav-cta:hover .cta-arrow { transform: translate(3px,-1px); }

/* ── INNER PAGE HERO BANNER ─────────────────────────────────────── */
.page-hero {
  position: relative;
  height: 380px;
  display: flex; align-items: flex-end;
  overflow: hidden;
  background: var(--dark);
  padding-bottom: 64px;
}
.page-hero-img {
  position: absolute; inset: 0;
  background: url('https://static.wixstatic.com/media/92f5b6_c7c50d10922e46e98a904b0fac3763b1~mv2.avif/v1/fill/w_1920,h_600,al_c,q_85,usm_0.66_1.00_0.01,enc_avif,quality_auto/92f5b6_c7c50d10922e46e98a904b0fac3763b1~mv2.avif') center/cover no-repeat;
  opacity: 0.22;
  transform: scale(1.04);
  transition: transform 8s ease-out;
}
.page-hero-img.loaded { transform: scale(1); }
.page-hero-grad {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.98) 0%, rgba(10,10,10,0.5) 100%);
}
.page-hero-content {
  position: relative; z-index: 2;
  padding: 0 80px;
}
.page-hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--gold-light); margin-bottom: 14px; font-weight: 500;
}
.page-hero-eyebrow::before { content:''; width:24px; height:1px; background:var(--gold-light); display:block; }
.page-hero h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 300; color: var(--white);
  line-height: 1.05; letter-spacing: -0.02em;
}
.page-hero h1 em { font-style: italic; color: var(--gold-light); }

/* ── SECTION SHARED ─────────────────────────────────────────────── */
.section-label {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 9.5px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold-light); margin-bottom: 20px; font-weight: 600;
}
.section-label::before { content:''; width:24px; height:1px; background:var(--gold-light); display:block; }
.section-label.centered { justify-content: center; }
.section-label.centered::before { display: none; }
.section-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(36px, 4vw, 54px); font-weight: 300;
  line-height: 1.08; color: var(--dark);
  margin-bottom: 20px; letter-spacing: -0.02em;
}
.section-title em { font-style: italic; color: var(--gold-light); }
.section-title.light { color: var(--white); }
.section-sub {
  font-size: 15px; line-height: 1.8; color: var(--text-muted);
  max-width: 540px; font-weight: 300; letter-spacing: 0.01em;
}
.section-sub.light { color: rgba(255,255,255,0.55); }
.divider {
  width: 40px; height: 1px;
  background: linear-gradient(90deg, var(--gold-light), transparent);
  margin: 28px 0;
}

/* ── BUTTONS ─────────────────────────────────────────────────────── */
.btn-primary {
  position: relative;
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--gold-light); color: var(--white);
  padding: 15px 20px 15px 28px;
  font-size: 10.5px; letter-spacing: 0.15em;
  text-transform: uppercase; text-decoration: none; font-weight: 600;
  border-radius: 50px;
  overflow: hidden;
  transition: background 0.3s var(--easing), transform 0.2s var(--easing);
}
.btn-primary::after {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 40%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  animation: shimmer 3.5s ease-in-out infinite;
}
.btn-primary:hover { background: #B8963A; transform: scale(1.03); }
.btn-primary:active { transform: scale(0.98) translateY(1px); }
.btn-primary .btn-arrow {
  width: 30px; height: 30px; border-radius: 50%;
  background: rgba(255,255,255,0.18);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; position: relative; z-index: 1;
  transition: transform 0.3s var(--spring);
}
.btn-primary:hover .btn-arrow { transform: translate(3px,-1px); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent; color: var(--gold-light);
  padding: 14px 20px 14px 26px;
  font-size: 10.5px; letter-spacing: 0.15em;
  text-transform: uppercase; text-decoration: none; font-weight: 600;
  border-radius: 50px;
  border: 1px solid rgba(196,164,90,0.5);
  transition: background 0.3s var(--easing), color 0.3s var(--easing), transform 0.2s var(--easing), border-color 0.3s;
}
.btn-outline:hover { background: var(--gold-light); color: var(--white); transform: scale(1.03); border-color: var(--gold-light); }
.btn-outline:active { transform: scale(0.98); }
.btn-outline .btn-arrow {
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(196,164,90,0.15);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.3s var(--spring);
}
.btn-outline:hover .btn-arrow { transform: translate(3px,-1px); }

/* ── FLEET CARDS (shared) ───────────────────────────────────────── */
.fleet-card {
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform 0.5s var(--easing), box-shadow 0.5s var(--easing);
  outline: 1px solid rgba(196,164,90,0.12);
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}
.fleet-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.1), 0 0 0 1px rgba(196,164,90,0.2), 0 4px 20px rgba(196,164,90,0.08);
}
.fleet-card-img {
  overflow: hidden;
  background: linear-gradient(145deg, #0f0f0f 0%, #1c1a17 100%);
  display: flex; align-items: center; justify-content: center;
}
.fleet-card-img img {
  width: 100%; height: 100%; object-fit: contain;
  transition: transform 0.8s var(--easing);
  filter: drop-shadow(0 10px 28px rgba(0,0,0,0.55));
}
.fleet-card:hover .fleet-card-img img { transform: scale(1.07); }
.fleet-card-body { padding: 28px 32px 32px; }
.fleet-card-class {
  font-size: 9.5px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold-light); margin-bottom: 8px; font-weight: 600;
}
.fleet-card-name {
  font-family: 'Fraunces', serif;
  font-size: 26px; font-weight: 400; color: var(--dark);
  margin-bottom: 16px; letter-spacing: -0.01em;
}
.fleet-card-specs { display: flex; gap: 20px; margin-bottom: 20px; flex-wrap: wrap; }
.spec {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; color: var(--text-muted); letter-spacing: 0.03em;
}
.spec svg { color: var(--gold-light); flex-shrink: 0; }
.fleet-book {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--dark); text-decoration: none; font-weight: 600;
  border-bottom: 1px solid var(--gold-light); padding-bottom: 2px;
  transition: color 0.3s var(--easing), gap 0.3s var(--spring);
}
.fleet-book:hover { color: var(--gold-light); gap: 16px; }

/* ── FOOTER ─────────────────────────────────────────────────────── */
footer {
  background: var(--dark-deep);
  padding: 72px 80px 40px;
  border-top: 1px solid rgba(196,164,90,0.12);
  position: relative;
}
footer::before {
  content: '';
  position: absolute; top: 0; left: 80px; right: 80px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(196,164,90,0.3), transparent);
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 60px;
  align-items: start;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footer-brand img {
  width: 280px; height: auto;
  margin-bottom: 20px;
  display: block;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  transition: opacity 0.3s var(--easing), transform 0.4s var(--easing);
}
.footer-brand a:hover img { opacity: 0.85; transform: translateY(-3px); }
.footer-brand p {
  font-size: 13px; line-height: 1.85; color: rgba(255,255,255,0.32);
  font-weight: 300; width: 280px; text-align: center;
}
.footer-col h4 {
  font-size: 9.5px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold-light); margin-bottom: 22px; font-weight: 600;
}
.footer-col a {
  display: block; font-size: 13px; color: rgba(255,255,255,0.38);
  text-decoration: none; margin-bottom: 12px; font-weight: 300;
  transition: color 0.3s var(--easing), transform 0.3s var(--easing);
}
.footer-col a:hover { color: var(--gold-light); transform: translateX(4px); }
.footer-social { display: flex; gap: 10px; margin-top: 6px; }
.social-icon {
  width: 26px; height: 26px; border-radius: 50%;
  border: 1px solid rgba(196,164,90,0.22);
  display: grid; place-items: center;
  color: rgba(255,255,255,0.42); text-decoration: none;
  line-height: 0;
  transition: border-color 0.3s var(--easing), color 0.3s var(--easing), transform 0.3s var(--spring), background 0.3s;
}
.social-icon svg { display: block; width: 20px; height: 20px; }
a[aria-label="Instagram"] svg { width: 20px; height: 20px; transform: translateY(2px); }
a[aria-label="Facebook"] svg  { width: 20px; height: 20px; transform: translate(2px, 2px); }
a[aria-label="WhatsApp"] svg  { width: 20px; height: 20px; transform: translateY(2px); }
.social-icon:hover { border-color: var(--gold-light); color: var(--gold-light); transform: translateY(-3px); background: rgba(196,164,90,0.08); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center;
}
.footer-bottom p { font-size: 11px; color: rgba(255,255,255,0.18); letter-spacing: 0.06em; }

/* ── STICKY BOOK ─────────────────────────────────────────────────── */
.sticky-book {
  position: fixed; bottom: 28px; right: 28px; z-index: 200;
  background: var(--gold-light); color: var(--white);
  display: flex; align-items: center; gap: 10px;
  padding: 14px 18px 14px 24px;
  font-size: 10.5px; letter-spacing: 0.14em;
  text-transform: uppercase; text-decoration: none; font-weight: 600;
  border-radius: 50px;
  animation: pulseGold 3s ease-in-out infinite;
  transition: background 0.3s var(--easing), transform 0.3s var(--spring);
}
.sticky-book:hover { background: #B8963A; transform: translateY(-4px); animation: none; box-shadow: 0 12px 40px rgba(196,164,90,0.45); }
.sticky-book .btn-arrow {
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
}

/* ── SCROLL REVEAL ───────────────────────────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(32px);
  transition: opacity 0.9s var(--easing), transform 0.9s var(--easing);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1.visible { transition-delay: 0.12s; }
.reveal-delay-2.visible { transition-delay: 0.24s; }
.reveal-delay-3.visible { transition-delay: 0.36s; }
.reveal-delay-4.visible { transition-delay: 0.48s; }
.reveal:not(.visible) { transition-delay: 0s !important; }

/* ── RESPONSIVE ──────────────────────────────────────────────────── */
/* ── HAMBURGER BUTTON ────────────────────────────────────────────── */
.nav-hamburger {
  display: none !important;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
  z-index: 201;
  flex-shrink: 0;
}
.nav-hamburger span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: rgba(255,255,255,0.85);
  border-radius: 2px;
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), opacity 0.2s ease;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── MOBILE MENU OVERLAY ─────────────────────────────────────────── */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(10,10,10,0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}
.mobile-menu nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  width: 100%;
}
.mobile-menu nav a {
  font-size: 28px;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  letter-spacing: 0.04em;
  padding: 20px 0;
  width: 240px;
  text-align: center;
  border-bottom: 1px solid rgba(196,164,90,0.1);
  transition: color 0.2s ease, transform 0.2s ease;
  transform: translateY(0);
}
.mobile-menu nav a:last-child { border-bottom: none; }
.mobile-menu nav a:hover,
.mobile-menu nav a.active { color: var(--gold-light); transform: translateX(4px); }
.mobile-menu-book {
  margin-top: 36px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-light);
  color: var(--dark) !important;
  font-weight: 600 !important;
  font-size: 13px !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase;
  padding: 14px 28px !important;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease !important;
  border-bottom: none !important;
  width: auto !important;
  transform: none !important;
}
.mobile-menu-book:hover { background: #B8963A; transform: scale(1.03) !important; }
.mobile-menu-close {
  position: absolute;
  top: 24px;
  left: 24px;
  background: none;
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.7);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s ease, color 0.2s ease;
  z-index: 201;
}
.mobile-menu-close:hover { border-color: var(--gold-light); color: var(--gold-light); }

/* ── BOOKING MODAL ──────────────────────────────────────────────── */
.booking-modal {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.booking-modal.open {
  opacity: 1;
  pointer-events: all;
}
.booking-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,9,8,0.82);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  cursor: pointer;
}
.booking-modal-box {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1000px;
  height: min(88dvh, 720px);
  background: #1a1714;
  border: 1px solid rgba(196,164,90,0.22);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transform: translateY(20px) scale(0.98);
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
  box-shadow: 0 32px 80px rgba(0,0,0,0.6);
}
.booking-modal.open .booking-modal-box {
  transform: translateY(0) scale(1);
}
.booking-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(196,164,90,0.14);
  flex-shrink: 0;
}
.booking-modal-title {
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(196,164,90,0.75);
}
.booking-modal-close-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  background: none;
  color: rgba(255,255,255,0.55);
  font-size: 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s ease, color 0.2s ease;
  flex-shrink: 0;
}
.booking-modal-close-btn:hover {
  border-color: var(--gold-light);
  color: var(--gold-light);
}
.booking-modal-widget-wrap,
.booking-modal-iframe-wrap {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  background: #fff;
  border-radius: 0 0 20px 20px;
  width: 100%;
}
/* Let the MyLimoBiz widget sit at its natural height so the wrap can scroll */
.booking-modal-iframe-wrap > *,
.booking-modal-widget-wrap > * {
  width: 100% !important;
}
/* Homepage booking widget — let iFrameResizer control height */
.booking-widget-wrap > * {
  width: 100% !important;
}
@media (min-width: 601px) {
  .booking-widget-wrap > * {
    min-height: 700px !important;
  }
}
@media (max-width: 600px) {
  .booking-modal { padding: 0; align-items: flex-end; }
  .booking-modal-box {
    max-width: 100%;
    height: 92dvh;
    border-radius: 20px 20px 0 0;
    overflow: clip; /* clip visually without creating a scroll-blocking context */
  }
  .booking-modal-iframe-wrap {
    overflow-y: scroll; /* 'scroll' forces native scroll on iOS, not just 'auto' */
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
  }
}

@media (max-width: 900px) {
  header { width: calc(100% - 24px); top: 12px; }
  .nav-island { padding: 0 8px 0 4px; justify-content: space-between; }
  nav { display: none; }
  .nav-hamburger { display: flex !important; }
  .page-hero { height: 280px; padding-bottom: 40px; }
  .page-hero-content { padding: 0 24px; }
  footer { padding: 56px 24px 32px; }
  footer::before { left: 24px; right: 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .sticky-book { bottom: 16px; right: 16px; padding: 12px 16px 12px 20px; font-size: 10px; }
}

/* ── ACCESSIBILITY & PERFORMANCE ─────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn-primary::after, .nav-cta::after { animation: none; }
  .sticky-book { animation: none; }
}

/* Keyboard focus states */
a:focus-visible,
button:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Touch targets */
@media (max-width: 900px) {
  .btn-primary, .btn-outline, .nav-cta, .sticky-book, .fleet-book { min-height: 44px; }
}

/* Outfit adjustments */
.section-label, .page-hero-eyebrow { letter-spacing: 0.24em; }
.section-sub, .section-sub.light { font-weight: 300; letter-spacing: 0.01em; }
