/* ============================================
   Island Wide Travel — Luxury Theme
   ============================================ */

:root {
  --ink: #0a0a0a;
  --ink-soft: #1a1a1a;
  --white: #ffffff;
  --ocean: #0c3b5e;
  --ocean-light: #1a5f8a;
  --ocean-dark: #082a42;
  --muted: #6b7280;
  --muted-light: #9ca3af;
  --glass: rgba(255, 255, 255, 0.08);
  --glass-border: rgba(255, 255, 255, 0.15);
  --header-height: 80px;
  --ease-luxury: cubic-bezier(0.22, 1, 0.36, 1);
  --social-bar-width: 52px;
  --container-max: 1280px;
  --section-py: clamp(3rem, 8vw, 7rem);
  --section-px: clamp(1rem, 4vw, 2.5rem);
  --mobile-bar-height: 48px;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Outfit", system-ui, sans-serif;
  /* Local image assets — downloaded to /images */
  --img-hero: url("images/hero.webp");
  --img-about: url("images/about-colombo.webp");
  --img-about-accent: url("images/about-accent.webp");
  --img-sigiriya: url("images/destinations/sigiriya.webp");
  --img-ella: url("images/destinations/ella.webp");
  --img-kandy: url("images/destinations/kandy.webp");
  --img-nuwara: url("images/destinations/nuwara-eliya.webp");
  --img-galle: url("images/destinations/galle.webp");
  --img-yala: url("images/destinations/yala.webp");
  --img-mirissa: url("images/destinations/mirissa.webp");
  --img-bentota: url("images/destinations/bentota.webp");
  --img-arugam: url("images/destinations/arugam-bay.webp");
  --img-colombo: url("images/destinations/colombo.webp");
  --img-hotel: url("images/gallery/luxury-suite.webp");
  --img-elephant: url("images/gallery/elephant-safari.webp");
  --img-contact: url("images/cta.webp");
  --img-vehicle-1: url("images/vehicles/sedan.webp");
  --img-vehicle-2: url("images/vehicles/suv.webp");
  --img-vehicle-3: url("images/vehicles/van.webp");
  --img-vehicle-4: url("images/vehicles/luxury.webp");
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  background: var(--white);
  color: var(--ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.7;
  letter-spacing: 0.01em;
}

body.is-loading {
  overflow: hidden;
  height: 100vh;
  height: 100dvh;
}

/* ============================================
   Loading Screen
   ============================================ */
.loader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ink);
  transition: opacity 0.6s var(--ease-luxury), visibility 0.6s;
}

.loader.is-done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-inner {
  text-align: center;
  padding: 2rem;
  width: min(100%, 20rem);
}

.loader-logo {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 6vw, 2.25rem);
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.02em;
  margin-bottom: 0.5rem;
  animation: loaderFadeIn 0.8s var(--ease-luxury) both;
}

.loader-logo span {
  color: var(--ocean-light);
}

.loader-tagline {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 2rem;
  animation: loaderFadeIn 0.8s 0.15s var(--ease-luxury) both;
}

.loader-track {
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 0.75rem;
  animation: loaderFadeIn 0.8s 0.3s var(--ease-luxury) both;
}

.loader-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--ocean), var(--ocean-light));
  border-radius: 2px;
  transition: width 0.25s var(--ease-luxury);
}

.loader-percent {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.45);
  animation: loaderFadeIn 0.8s 0.4s var(--ease-luxury) both;
}

@keyframes loaderFadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.loader-status {
  display: block;
  margin-top: 0.75rem;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
}

/* Page skeleton */
.page-skeleton {
  position: fixed;
  inset: 0;
  z-index: 9998;
  background: var(--ink);
  padding: calc(var(--header-height) + 1.5rem) var(--section-px) 2rem;
  padding-left: calc(var(--social-bar-width) + var(--section-px));
  pointer-events: none;
  transition: opacity 0.5s var(--ease-luxury), visibility 0.5s;
}

body.is-ready .page-skeleton {
  opacity: 0;
  visibility: hidden;
}

body.is-loading main {
  opacity: 0;
}

body.is-ready main {
  opacity: 1;
  transition: opacity 0.6s var(--ease-luxury);
}

.skeleton-hero {
  height: min(55vh, 28rem);
  border-radius: 2px;
  margin-bottom: 2.5rem;
  background: linear-gradient(110deg, #1a1a1a 8%, #252525 18%, #1a1a1a 33%);
  background-size: 200% 100%;
  animation: skeletonShimmer 1.4s ease-in-out infinite;
}

.skeleton-section {
  max-width: var(--container-max);
  margin: 0 auto;
}

.skeleton-line {
  height: 0.75rem;
  border-radius: 2px;
  margin-bottom: 0.75rem;
  background: linear-gradient(110deg, #1a1a1a 8%, #252525 18%, #1a1a1a 33%);
  background-size: 200% 100%;
  animation: skeletonShimmer 1.4s ease-in-out infinite;
}

.skeleton-line-sm { width: 30%; }
.skeleton-line-lg { width: 55%; height: 1.25rem; margin-bottom: 2rem; }

.skeleton-grid {
  display: grid;
  gap: 1rem;
}

.skeleton-grid-3 {
  grid-template-columns: repeat(auto-fill, minmax(10rem, 1fr));
}

.skeleton-card {
  aspect-ratio: 16 / 10;
  border-radius: 2px;
  background: linear-gradient(110deg, #1a1a1a 8%, #252525 18%, #1a1a1a 33%);
  background-size: 200% 100%;
  animation: skeletonShimmer 1.4s ease-in-out infinite;
}

@keyframes skeletonShimmer {
  0% { background-position: 100% 0; }
  100% { background-position: -100% 0; }
}

/* Lazy images & backgrounds */
.lazy-img {
  opacity: 0;
  transition: opacity 0.5s var(--ease-luxury);
}

.lazy-img.is-loaded {
  opacity: 1;
}

.media-skeleton {
  position: relative;
  overflow: hidden;
  background-color: #1a1a1a;
}

.media-skeleton::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(110deg, #1a1a1a 8%, #2a2a2a 18%, #1a1a1a 33%);
  background-size: 200% 100%;
  animation: skeletonShimmer 1.4s ease-in-out infinite;
  transition: opacity 0.4s;
  pointer-events: none;
}

.media-skeleton.is-loaded::before {
  opacity: 0;
}

.lazy-bg.skeleton-media {
  position: relative;
  overflow: hidden;
  background-color: #1a1a1a;
}

.lazy-bg.skeleton-media:not(.is-loaded) {
  background-image: none;
}

.lazy-bg.skeleton-media.is-loaded {
  background-image: var(--lazy-bg-image);
}

.lazy-bg.skeleton-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(110deg, #1a1a1a 8%, #2a2a2a 18%, #1a1a1a 33%);
  background-size: 200% 100%;
  animation: skeletonShimmer 1.4s ease-in-out infinite;
  transition: opacity 0.4s;
  pointer-events: none;
}

.lazy-bg.skeleton-media.is-loaded::before {
  opacity: 0;
}

.lazy-bg.is-loaded {
  background-size: cover;
  background-position: center;
}

.about-mosaic-primary .lazy-img,
.about-mosaic-secondary .lazy-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.about-mosaic-primary,
.about-mosaic-secondary {
  min-height: 100%;
}

.bento-item .lazy-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.bento-item {
  background: #1a1a1a;
}

.cta-section.lazy-bg.is-loaded {
  background-size: cover;
  background-position: center;
}

img,
video {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

ul {
  list-style: none;
}

::selection {
  background: var(--ocean);
  color: var(--white);
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--ink);
}
::-webkit-scrollbar-thumb {
  background: var(--ocean);
  border-radius: 3px;
}

/* Typography */
.font-display {
  font-family: var(--font-display);
  font-weight: 300;
  letter-spacing: -0.02em;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ocean);
  margin-bottom: 0.75rem;
}

.section-dark .eyebrow {
  color: var(--ocean-light);
}

.section-heading {
  margin-bottom: 3rem;
}

.section-heading h2 {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4.5vw, 3.25rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}

.section-heading h2 em {
  font-style: italic;
  font-weight: 400;
  opacity: 0.9;
}

.section-heading p {
  color: var(--muted);
  max-width: 36rem;
  font-size: 1.05rem;
}

.section-dark .section-heading p {
  color: rgba(255, 255, 255, 0.65);
}

/* Layout */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--section-px);
}

.section-padding {
  padding: var(--section-py) 0;
}

.section-dark {
  background: var(--ink);
  color: var(--white);
}

.section-light {
  background: var(--white);
  color: var(--ink);
}

.section-alt {
  background: #f8fafc;
  color: var(--ink);
}

/* Glassmorphism */
.glass {
  background: var(--glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: 2px;
}

.glass-card {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 2px;
  padding: clamp(1.5rem, 3vw, 2rem);
}

/* Image backgrounds with luxury overlay */
.img-bg {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.grad-sigiriya { background-image: linear-gradient(135deg, rgba(0,0,0,0.25), rgba(0,0,0,0.55)), var(--img-sigiriya); }
.grad-ella { background-image: linear-gradient(135deg, rgba(0,0,0,0.25), rgba(0,0,0,0.55)), var(--img-ella); }
.grad-kandy { background-image: linear-gradient(135deg, rgba(0,0,0,0.25), rgba(0,0,0,0.55)), var(--img-kandy); }
.grad-nuwara { background-image: linear-gradient(135deg, rgba(0,0,0,0.25), rgba(0,0,0,0.55)), var(--img-nuwara); }
.grad-galle { background-image: linear-gradient(135deg, rgba(0,0,0,0.25), rgba(0,0,0,0.55)), var(--img-galle); }
.grad-yala { background-image: linear-gradient(135deg, rgba(0,0,0,0.25), rgba(0,0,0,0.55)), var(--img-yala); }
.grad-mirissa { background-image: linear-gradient(135deg, rgba(0,0,0,0.25), rgba(0,0,0,0.55)), var(--img-mirissa); }
.grad-bentota { background-image: linear-gradient(135deg, rgba(0,0,0,0.25), rgba(0,0,0,0.55)), var(--img-bentota); }
.grad-arugam { background-image: linear-gradient(135deg, rgba(0,0,0,0.25), rgba(0,0,0,0.55)), var(--img-arugam); }
.grad-colombo { background-image: linear-gradient(135deg, rgba(0,0,0,0.25), rgba(0,0,0,0.55)), var(--img-colombo); }

.grad-pkg-cultural { background-image: linear-gradient(135deg, rgba(0,0,0,0.3), rgba(0,0,0,0.6)), var(--img-sigiriya); }
.grad-pkg-hill { background-image: linear-gradient(135deg, rgba(0,0,0,0.3), rgba(0,0,0,0.6)), var(--img-ella); }
.grad-pkg-south { background-image: linear-gradient(135deg, rgba(0,0,0,0.3), rgba(0,0,0,0.6)), var(--img-galle); }
.grad-pkg-wildlife { background-image: linear-gradient(135deg, rgba(0,0,0,0.3), rgba(0,0,0,0.6)), var(--img-yala); }
.grad-pkg-honeymoon { background-image: linear-gradient(135deg, rgba(0,0,0,0.3), rgba(0,0,0,0.6)), var(--img-bentota); }
.grad-pkg-family { background-image: linear-gradient(135deg, rgba(0,0,0,0.3), rgba(0,0,0,0.6)), var(--img-mirissa); }
.grad-pkg-custom { background-image: linear-gradient(135deg, rgba(0,0,0,0.35), rgba(0,0,0,0.65)), var(--img-hero); }

.grad-g1 { background-image: linear-gradient(135deg, rgba(0,0,0,0.2), rgba(0,0,0,0.5)), url("images/gallery/mirissa-coast.webp"); }
.grad-g2 { background-image: linear-gradient(135deg, rgba(0,0,0,0.2), rgba(0,0,0,0.5)), url("images/gallery/yala-leopard.webp"); }
.grad-g3 { background-image: linear-gradient(135deg, rgba(0,0,0,0.2), rgba(0,0,0,0.5)), url("images/gallery/sigiriya-rock.webp"); }
.grad-g4 { background-image: linear-gradient(135deg, rgba(0,0,0,0.2), rgba(0,0,0,0.5)), url("images/gallery/luxury-suite.webp"); }
.grad-g5 { background-image: linear-gradient(135deg, rgba(0,0,0,0.2), rgba(0,0,0,0.5)), url("images/gallery/tea-plantation.webp"); }
.grad-g6 { background-image: linear-gradient(135deg, rgba(0,0,0,0.2), rgba(0,0,0,0.5)), url("images/gallery/arugam-surf.webp"); }
.grad-g7 { background-image: linear-gradient(135deg, rgba(0,0,0,0.2), rgba(0,0,0,0.5)), url("images/gallery/bentota-sunset.webp"); }
.grad-g8 { background-image: linear-gradient(135deg, rgba(0,0,0,0.2), rgba(0,0,0,0.5)), url("images/gallery/elephant-safari.webp"); }
.grad-g9 { background-image: linear-gradient(135deg, rgba(0,0,0,0.2), rgba(0,0,0,0.5)), url("images/gallery/temple-tooth.webp"); }
.grad-g10 { background-image: linear-gradient(135deg, rgba(0,0,0,0.2), rgba(0,0,0,0.5)), url("images/gallery/colonial-villa.webp"); }
.grad-g11 { background-image: linear-gradient(135deg, rgba(0,0,0,0.2), rgba(0,0,0,0.5)), url("images/gallery/galle-fort.webp"); }
.grad-g12 { background-image: linear-gradient(135deg, rgba(0,0,0,0.2), rgba(0,0,0,0.5)), url("images/gallery/ella-hike.webp"); }

.grad-founder { background-image: linear-gradient(to top, rgba(10,10,10,0.75), rgba(10,10,10,0.15)), var(--img-about); }
.grad-about-accent { background-image: linear-gradient(135deg, rgba(12,59,94,0.2), rgba(10,10,10,0.4)), var(--img-about-accent); }
.grad-cta { background-image: linear-gradient(135deg, rgba(8,42,66,0.88), rgba(10,10,10,0.92)), var(--img-contact); }

.grad-vehicle-1 { background-image: linear-gradient(135deg, rgba(0,0,0,0.15), rgba(0,0,0,0.45)), var(--img-vehicle-1); }
.grad-vehicle-2 { background-image: linear-gradient(135deg, rgba(0,0,0,0.15), rgba(0,0,0,0.45)), var(--img-vehicle-2); }
.grad-vehicle-3 { background-image: linear-gradient(135deg, rgba(0,0,0,0.15), rgba(0,0,0,0.45)), var(--img-vehicle-3); }
.grad-vehicle-4 { background-image: linear-gradient(135deg, rgba(0,0,0,0.15), rgba(0,0,0,0.45)), var(--img-vehicle-4); }

.luxury-card-image,
.gallery-item-inner,
.about-mosaic-primary,
.about-mosaic-secondary,
.vehicle-card-image,
[class^="grad-"],
[class*=" grad-"] {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.luxury-card:hover .luxury-card-image {
  transform: scale(1.05);
}

.luxury-card-image {
  overflow: hidden;
  transition: transform 0.6s var(--ease-luxury);
}

/* ============================================
   Social Bar
   ============================================ */
.social-bar {
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  width: var(--social-bar-width);
  background: var(--ink);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.social-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.3s var(--ease-luxury), background 0.3s var(--ease-luxury);
}

.social-bar a:hover,
.social-bar a:focus-visible {
  color: var(--white);
  background: var(--ocean);
}

.social-bar svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* ============================================
   Header
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  height: var(--header-height);
  transition: background 0.4s var(--ease-luxury), box-shadow 0.4s var(--ease-luxury);
}

.header.scrolled {
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding-left: calc(var(--social-bar-width) + var(--section-px));
  padding-right: var(--section-px);
  max-width: 100%;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.02em;
}

.logo span {
  color: var(--ocean-light);
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 1.75rem;
}

.nav-desktop a {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.3s;
  position: relative;
}

.nav-desktop a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--ocean-light);
  transition: width 0.3s var(--ease-luxury);
}

.nav-desktop a:hover,
.nav-desktop a.active {
  color: var(--white);
}

.nav-desktop a:hover::after,
.nav-desktop a.active::after {
  width: 100%;
}

.header-cta {
  display: none;
  padding: 0.65rem 1.25rem;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: var(--ocean);
  color: var(--white);
  border: none;
  cursor: pointer;
  transition: background 0.3s;
}

.header-cta:hover {
  background: var(--ocean-light);
}

.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.hamburger span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--white);
  transition: transform 0.3s var(--ease-luxury), opacity 0.3s;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile drawer */
.mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 850;
  pointer-events: none;
  visibility: hidden;
}

.mobile-drawer.open {
  pointer-events: auto;
  visibility: visible;
}

.mobile-drawer-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  transition: opacity 0.4s var(--ease-luxury);
}

.mobile-drawer.open .mobile-drawer-overlay {
  opacity: 1;
}

.mobile-drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(320px, 85vw);
  height: 100%;
  background: var(--ink-soft);
  padding: calc(var(--header-height) + 1.5rem) 2rem 2rem;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease-luxury);
  overflow-y: auto;
}

.mobile-drawer.open .mobile-drawer-panel {
  transform: translateX(0);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.mobile-nav a {
  padding: 0.85rem 0;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: color 0.3s, padding-left 0.3s;
}

.mobile-nav a:hover {
  color: var(--white);
  padding-left: 0.5rem;
}

/* ============================================
   Hero
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--ocean-dark), var(--ink), #000);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: var(--ink);
}

.hero-bg.has-fallback {
  background-image: var(--img-hero);
  background-size: cover;
  background-position: center;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 1;
  z-index: 1;
  pointer-events: none;
  display: block;
}

.hero-bg.has-fallback .hero-video {
  display: none;
}

.hero-content {
  position: relative;
  z-index: 10;
  width: 100%;
  padding: calc(var(--header-height) + 2rem) var(--section-px) 4rem;
  padding-left: calc(var(--social-bar-width) + var(--section-px));
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: var(--container-max);
  margin: 0 auto;
  align-items: start;
  width: 100%;
}

#booking {
  width: 100%;
  max-width: 100%;
}

.hero-text .location-tag {
  font-family: var(--font-body);
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 1rem;
  display: block;
}

.hero-text h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.75rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.45);
}

.hero-text h1 em {
  font-style: italic;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
}

.hero-text > p {
  color: rgba(255, 255, 255, 0.65);
  font-size: clamp(0.9375rem, 2vw, 1.0625rem);
  font-weight: 400;
  max-width: 32rem;
  margin-bottom: 2rem;
  line-height: 1.75;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
}

.hero-stat span:first-child {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  color: var(--white);
  letter-spacing: -0.02em;
}

.hero-stat span:last-child {
  font-family: var(--font-body);
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: color 0.3s;
}

.hero-scroll:hover {
  color: var(--white);
}

.hero-scroll svg {
  animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* Booking Form */
.booking-form-header {
  margin-bottom: 1.5rem;
}

.booking-form-header .label {
  font-family: var(--font-body);
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.booking-form-header h3 {
  font-family: var(--font-display);
  font-size: 1.625rem;
  font-weight: 400;
  color: var(--white);
  margin-top: 0.25rem;
  letter-spacing: -0.02em;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.form-group label {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 2px;
  color: var(--white);
  transition: border-color 0.3s, background 0.3s;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--ocean-light);
  background: rgba(255, 255, 255, 0.1);
}

.form-group select option {
  background: var(--ink);
  color: var(--white);
}

.form-group.has-error input,
.form-group.has-error select,
.form-group.has-error textarea {
  border-color: #ef4444;
}

.form-error {
  font-size: 0.75rem;
  color: #fca5a5;
}

.form-full {
  grid-column: 1 / -1;
}

.btn-submit {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: var(--ocean);
  color: var(--white);
  border: none;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s var(--ease-luxury);
}

.btn-submit:hover {
  background: var(--ocean-light);
}

.btn-submit:active {
  transform: scale(0.98);
}

.form-success {
  text-align: center;
  padding: 2rem;
}

.form-success svg {
  width: 3rem;
  height: 3rem;
  color: var(--ocean-light);
  margin: 0 auto 1rem;
}

.form-success h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.form-success p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
}

.btn-reset {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ocean-light);
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.3s;
}

.btn-reset:hover {
  color: var(--white);
}

/* Toast */
.toast {
  position: fixed;
  bottom: 5rem;
  right: 1rem;
  left: 1rem;
  max-width: 24rem;
  margin-left: auto;
  z-index: 1100;
  padding: 1rem 1.25rem;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 2px;
  color: var(--white);
  font-size: 0.875rem;
  transform: translateY(120%);
  opacity: 0;
  transition: transform 0.4s var(--ease-luxury), opacity 0.4s;
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

/* ============================================
   About — Editorial Layout
   ============================================ */
.about-section {
  background: var(--ink);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 45%;
  height: 100%;
  background: radial-gradient(ellipse at 80% 20%, rgba(12, 59, 94, 0.35), transparent 65%);
  pointer-events: none;
}

.about-section .eyebrow {
  color: var(--ocean-light);
}

.about-header {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 3.5rem;
  position: relative;
  z-index: 1;
}

.about-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 300;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.about-header h2 em {
  font-style: italic;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
}

.about-tagline {
  color: rgba(255, 255, 255, 0.55);
  font-size: 1.05rem;
  line-height: 1.7;
}

.about-editorial {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 1;
}

.about-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 0.75rem;
  position: relative;
}

.about-mosaic-primary {
  grid-column: 1 / -1;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 2px;
}

.about-mosaic-secondary {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 2px;
}

.about-mosaic-primary img,
.about-mosaic-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-luxury);
}

.about-mosaic:hover .about-mosaic-primary img {
  transform: scale(1.04);
}

.about-founder-badge {
  grid-column: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.25rem 1.5rem;
  background: rgba(12, 59, 94, 0.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 2px;
}

.about-founder-label {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0.35rem;
}

.about-founder-badge strong {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--white);
  line-height: 1.2;
}

.about-founder-loc {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 0.25rem;
}

.about-quote {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.9);
  border-left: 2px solid var(--ocean-light);
  padding-left: 1.5rem;
  margin-bottom: 2rem;
}

.about-copy p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 1rem;
}

.about-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.about-metric {
  text-align: center;
}

.about-metric-value {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  color: var(--white);
  line-height: 1;
}

.about-metric-label {
  display: block;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 0.35rem;
}

.about-values {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.about-value {
  padding: 1.75rem 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  transition: background 0.4s;
}

.about-value:hover {
  background: rgba(12, 59, 94, 0.2);
}

.about-value-icon {
  color: var(--ocean-light);
  margin-bottom: 1rem;
}

.about-value h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.about-value p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.6;
}

.btn-text {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ocean);
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.3s;
}

.btn-text:hover {
  color: var(--ocean-light);
}

.btn-text svg {
  transition: transform 0.3s;
}

.btn-text.expanded svg {
  transform: rotate(90deg);
}

/* ============================================
   Cards Grid
   ============================================ */
.cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.luxury-card {
  position: relative;
  border-radius: 2px;
  overflow: hidden;
  cursor: default;
  transition: transform 0.5s var(--ease-luxury), box-shadow 0.5s var(--ease-luxury);
}

.luxury-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.25);
}

.luxury-card-image {
  aspect-ratio: 16 / 10;
  position: relative;
}

.luxury-card-body {
  padding: 1.5rem;
}

.section-dark .luxury-card {
  background: var(--ink-soft);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.section-light .luxury-card,
.section-alt .luxury-card {
  background: var(--white);
  border: 1px solid #e5e7eb;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.section-light .luxury-card:hover,
.section-alt .luxury-card:hover {
  box-shadow: 0 20px 40px rgba(12, 59, 94, 0.12);
}

.luxury-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  margin-bottom: 0.5rem;
}

.luxury-card p {
  font-size: 0.9rem;
  line-height: 1.65;
}

.section-dark .luxury-card p {
  color: rgba(255, 255, 255, 0.65);
}

.section-light .luxury-card p,
.section-alt .luxury-card p {
  color: var(--muted);
}

.luxury-card-extended {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.5s var(--ease-luxury), opacity 0.4s, margin 0.4s;
}

.luxury-card:hover .luxury-card-extended {
  max-height: 120px;
  opacity: 1;
  margin-top: 0.75rem;
}

.luxury-card-extended p {
  font-size: 0.8rem;
}

/* Package cards */
.package-card .luxury-card-image {
  aspect-ratio: 16 / 9;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
}

.package-card .luxury-card-image > * {
  position: relative;
  z-index: 3;
}

.package-duration {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.25rem;
}

.package-card h3 {
  color: var(--white);
  font-size: 1.5rem;
}

.package-meta {
  padding: 1.25rem 1.5rem 0;
  font-size: 0.8rem;
  color: var(--muted);
}

.section-dark .package-meta {
  color: rgba(255, 255, 255, 0.5);
}

.package-highlights {
  padding: 1rem 1.5rem 1.5rem;
}

.package-highlights li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.85rem;
  padding: 0.35rem 0;
  color: var(--muted);
}

.section-dark .package-highlights li {
  color: rgba(255, 255, 255, 0.65);
}

.package-highlights li::before {
  content: "✦";
  color: var(--ocean-light);
  font-size: 0.6rem;
  margin-top: 0.2rem;
}

.package-price {
  display: block;
  margin-top: 0.5rem;
}

.package-price-value {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--white);
}

.package-price-label {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.65);
  margin-left: 0.25rem;
}

.package-cta {
  display: block;
  margin: 0 1.5rem 1.5rem;
  padding: 0.75rem 1rem;
  text-align: center;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ocean);
  border: 1px solid rgba(12, 59, 94, 0.2);
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}

.package-cta:hover {
  background: var(--ocean);
  color: var(--white);
  border-color: var(--ocean);
}

/* ============================================
   Pricing Tiers
   ============================================ */
.pricing-heading {
  text-align: center;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

.pricing-toggle {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
  padding: 0.35rem;
  background: #f3f4f6;
  border-radius: 999px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.pricing-toggle-btn {
  padding: 0.65rem 1.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--muted);
  background: transparent;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.3s, color 0.3s, box-shadow 0.3s;
}

.pricing-toggle-btn.active {
  background: var(--white);
  color: var(--ocean);
  box-shadow: 0 2px 8px rgba(12, 59, 94, 0.12);
}

.pricing-save {
  font-size: 0.7rem;
  color: var(--ocean-light);
  margin-left: 0.25rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-bottom: 4rem;
  align-items: center;
}

.pricing-card {
  position: relative;
  border: 1px solid #e5e7eb;
  border-radius: 4px;
  padding: 2rem 1.75rem;
  background: var(--white);
  text-align: center;
  transition: transform 0.5s var(--ease-luxury), box-shadow 0.5s;
}

.pricing-card:hover {
  box-shadow: 0 20px 40px rgba(12, 59, 94, 0.1);
}

.pricing-card-popular {
  border: 2px solid var(--ocean);
  z-index: 1;
}

.pricing-badge {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  background: var(--ocean);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.35rem 0.75rem;
  border-bottom-left-radius: 4px;
  border-top-right-radius: 2px;
}

.pricing-tier {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.pricing-amount {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.15rem;
  margin: 1rem 0 0.25rem;
}

.pricing-currency {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--ink);
}

.pricing-value {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 400;
  color: var(--ink);
  line-height: 1;
  transition: opacity 0.25s;
}

.pricing-value.updating {
  opacity: 0.4;
}

.pricing-period {
  font-size: 0.8rem;
  color: var(--muted);
  margin-left: 0.25rem;
}

.pricing-billing {
  font-size: 0.75rem;
  color: var(--muted);
  margin-bottom: 1.25rem;
}

.pricing-features {
  text-align: left;
  margin-bottom: 1rem;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--muted);
  padding: 0.35rem 0;
}

.pricing-features li::before {
  content: "✓";
  color: var(--ocean);
  font-weight: 700;
  flex-shrink: 0;
}

.pricing-divider {
  border: none;
  border-top: 1px solid #e5e7eb;
  margin: 1rem 0;
}

.pricing-cta {
  display: block;
  width: 100%;
  padding: 0.85rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  color: var(--ink);
  border: 1px solid #d1d5db;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}

.pricing-cta:hover {
  border-color: var(--ocean);
  background: var(--ocean);
  color: var(--white);
}

.pricing-cta-primary {
  background: var(--ocean);
  color: var(--white);
  border-color: var(--ocean);
}

.pricing-cta-primary:hover {
  background: var(--ocean-light);
  border-color: var(--ocean-light);
}

.pricing-note {
  font-size: 0.7rem;
  color: var(--muted);
  margin-top: 1rem;
}

.packages-subheading {
  text-align: center;
  margin-bottom: 2.5rem;
}

.packages-subheading h3 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 400;
  margin-bottom: 0.5rem;
}

.packages-subheading p {
  color: var(--muted);
  max-width: 32rem;
  margin: 0 auto;
}

.packages-grid {
  margin-top: 0;
}
}

/* Service cards */
.service-card {
  padding: 2rem;
  border-radius: 2px;
  transition: transform 0.5s var(--ease-luxury), border-color 0.3s, background 0.3s;
}

.section-dark .service-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.section-light .service-card {
  background: var(--white);
  border: 1px solid #e5e7eb;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--ocean-light);
}

.section-dark .service-card:hover {
  background: rgba(255, 255, 255, 0.06);
}

.service-icon {
  width: 2.5rem;
  height: 2.5rem;
  color: var(--ocean-light);
  margin-bottom: 1.25rem;
}

.section-light .service-icon {
  color: var(--ocean);
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  margin-bottom: 0.75rem;
}

.service-card > p {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 0;
}

.section-dark .service-card > p {
  color: rgba(255, 255, 255, 0.65);
}

.service-extended {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.5s var(--ease-luxury), opacity 0.4s, margin 0.4s;
}

.service-card:hover .service-extended {
  max-height: 100px;
  opacity: 1;
  margin-top: 0.75rem;
}

.service-extended p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}

.section-light .service-extended p {
  color: var(--muted-light);
}

/* Why Choose Us */
.why-card {
  text-align: center;
  padding: 2rem 1.5rem;
  border-radius: 2px;
  transition: transform 0.5s var(--ease-luxury), background 0.3s;
}

.section-alt .why-card {
  background: var(--white);
  border: 1px solid #e5e7eb;
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(12, 59, 94, 0.1);
}

.why-icon {
  width: 2.5rem;
  height: 2.5rem;
  color: var(--ocean);
  margin: 0 auto 1rem;
}

.why-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  margin-bottom: 0.75rem;
}

.why-card p {
  font-size: 0.85rem;
  color: var(--muted);
}

/* ============================================
   Airport Transfers
   ============================================ */
.transfers-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.transfer-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.transfer-feature {
  display: flex;
  gap: 1rem;
  padding: 1.25rem;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: border-color 0.3s, background 0.3s;
}

.transfer-feature:hover {
  border-color: rgba(26, 95, 138, 0.4);
  background: rgba(255, 255, 255, 0.05);
}

.transfer-feature-icon {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  color: var(--ocean-light);
}

.transfer-feature h4 {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.transfer-feature p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
}

.vehicle-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.vehicle-card {
  padding: 0;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.4s var(--ease-luxury), border-color 0.3s;
  overflow: hidden;
}

.vehicle-card-image {
  aspect-ratio: 16 / 9;
  width: 100%;
}

.vehicle-card-body {
  padding: 1.5rem;
}

.vehicle-card:hover {
  transform: translateY(-4px);
  border-color: var(--ocean-light);
}

.vehicle-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}

.vehicle-card h4 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: -0.01em;
}

.vehicle-price {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ocean-light);
}

.vehicle-card p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0.5rem;
}

.vehicle-capacity {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

/* ============================================
   Testimonials
   ============================================ */
.testimonials-wrapper {
  position: relative;
  max-width: 48rem;
  margin: 0 auto;
}

.testimonial-slide {
  display: none;
  text-align: center;
  padding: 2rem 1rem;
}

.testimonial-slide.active {
  display: block;
  animation: fadeIn 0.5s var(--ease-luxury);
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.testimonial-stars {
  display: flex;
  justify-content: center;
  gap: 0.25rem;
  margin-bottom: 1.5rem;
  color: #fbbf24;
}

.testimonial-stars svg {
  width: 1rem;
  height: 1rem;
  fill: currentColor;
}

.testimonial-quote {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.625rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.55;
  letter-spacing: -0.01em;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--ocean);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--white);
}

.testimonial-name {
  font-weight: 600;
  font-size: 0.9rem;
}

.testimonial-location {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
}

.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.testimonial-btn {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  color: var(--white);
  cursor: pointer;
  transition: background 0.3s, border-color 0.3s;
}

.testimonial-btn:hover {
  background: var(--ocean);
  border-color: var(--ocean);
}

.testimonial-dots {
  display: flex;
  gap: 0.5rem;
}

.testimonial-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
  padding: 0;
}

.testimonial-dot.active {
  background: var(--ocean-light);
  transform: scale(1.25);
}

/* ============================================
   Bento Gallery
   ============================================ */
.bento-gallery-wrap {
  max-width: 56rem;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 60px;
  gap: 0.75rem;
}

.bento-item {
  position: relative;
  border: none;
  padding: 0;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  background: var(--ink-soft);
  transition: transform 0.4s var(--ease-luxury), box-shadow 0.4s;
}

.bento-item:hover {
  transform: scale(1.02);
  box-shadow: 0 16px 40px rgba(12, 59, 94, 0.18);
  z-index: 1;
}

.bento-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease-luxury);
}

.bento-item:hover img {
  transform: scale(1.06);
}

.bento-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1rem;
  background: linear-gradient(to top, rgba(10, 10, 10, 0.75) 0%, rgba(10, 10, 10, 0.2) 50%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s;
}

.bento-item:hover .bento-overlay,
.bento-item:focus-visible .bento-overlay {
  opacity: 1;
}

.bento-overlay h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.15rem;
}

.bento-overlay p {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.4;
}

.bento-span-tall {
  grid-row: span 3;
}

.bento-span-wide {
  grid-column: span 2;
  grid-row: span 2;
}

.bento-span-sm {
  grid-row: span 2;
}

.bento-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s, visibility 0.35s;
}

.bento-modal.open {
  opacity: 1;
  visibility: visible;
}

.bento-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.bento-modal-content {
  position: relative;
  z-index: 1;
  width: min(92vw, 48rem);
  max-height: 85vh;
  animation: bentoModalIn 0.4s var(--ease-luxury);
}

@keyframes bentoModalIn {
  from { opacity: 0; transform: scale(0.97) translateY(12px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.bento-modal-close {
  position: absolute;
  top: -2.75rem;
  right: 0;
  width: 2.25rem;
  height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: var(--white);
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}

.bento-modal-close:hover {
  background: rgba(255, 255, 255, 0.22);
  transform: scale(1.08);
}

.bento-modal-figure {
  margin: 0;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4);
}

.bento-modal-figure img {
  width: 100%;
  max-height: 70vh;
  object-fit: contain;
  background: rgba(0, 0, 0, 0.3);
  display: block;
}

.bento-modal-caption {
  padding: 1.25rem 1.5rem;
  background: linear-gradient(to top, rgba(10, 10, 10, 0.9), rgba(10, 10, 10, 0.7));
}

.bento-modal-caption h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.bento-modal-caption p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
}

.bento-dock {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 201;
  display: flex;
  align-items: center;
  padding: 0.5rem 0.75rem;
  background: rgba(12, 59, 94, 0.35);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s, visibility 0.35s;
}

.bento-modal.open .bento-dock {
  opacity: 1;
  visibility: visible;
}

.bento-dock-thumb {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 6px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  margin-left: -0.35rem;
  transition: transform 0.3s, border-color 0.3s;
  flex-shrink: 0;
  background: none;
  padding: 0;
}

.bento-dock-thumb:first-child {
  margin-left: 0;
}

.bento-dock-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.bento-dock-thumb:hover {
  transform: scale(1.15) translateY(-4px);
  z-index: 10;
}

.bento-dock-thumb.active {
  border-color: rgba(255, 255, 255, 0.8);
  transform: scale(1.2) translateY(-6px);
  z-index: 20;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

/* ============================================
   CTA
   ============================================ */
.cta-section {
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(26, 95, 138, 0.25), transparent 60%);
  pointer-events: none;
}

.cta-panel {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
  position: relative;
  z-index: 1;
  padding: clamp(3rem, 8vw, 5rem) 0;
}

.cta-content {
  text-align: center;
}

.cta-eyebrow {
  color: rgba(255, 255, 255, 0.5);
  display: block;
  margin-bottom: 1rem;
}

.cta-content h2 {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4.5vw, 3.25rem);
  font-weight: 300;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 1.15;
}

.cta-content h2 em {
  font-style: italic;
  color: rgba(255, 255, 255, 0.85);
}

.cta-content > p {
  color: rgba(255, 255, 255, 0.65);
  font-weight: 400;
  max-width: 36rem;
  margin: 0 auto 2rem;
  font-size: 1.05rem;
  line-height: 1.7;
}

.cta-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
}

.cta-trust-item {
  text-align: center;
}

.cta-trust-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--white);
  line-height: 1;
}

.cta-trust-label {
  display: block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 0.35rem;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.cta-card {
  display: flex;
  justify-content: center;
}

.cta-card-inner {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 2rem;
  max-width: 22rem;
  width: 100%;
  text-align: center;
}

.cta-card-label {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 0.75rem;
}

.cta-card-inner h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.cta-card-list {
  text-align: left;
  margin-bottom: 1.5rem;
}

.cta-card-list li {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
  padding: 0.35rem 0;
  padding-left: 1.25rem;
  position: relative;
}

.cta-card-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--ocean-light);
  font-weight: 700;
}

.cta-card-btn {
  display: block;
  width: 100%;
  padding: 0.9rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--white);
  color: var(--ocean);
  transition: background 0.3s, transform 0.3s;
}

.cta-card-btn:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
}

.cta-card-foot {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 1rem;
}

.cta-card-foot a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cta-card-foot a:hover {
  color: var(--white);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: var(--ocean);
  color: var(--white);
  border: none;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}

.btn-primary:hover {
  background: var(--ocean-light);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: border-color 0.3s, background 0.3s;
}

.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

/* ============================================
   Contact
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.contact-info-item {
  display: flex;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid #e5e7eb;
}

.contact-info-item:last-child {
  border-bottom: none;
}

.contact-icon {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(12, 59, 94, 0.08);
  color: var(--ocean);
  border-radius: 2px;
}

.contact-info-item h4 {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.25rem;
}

.contact-info-item a,
.contact-info-item p {
  font-size: 1rem;
  color: var(--ink);
  transition: color 0.3s;
}

.contact-info-item a:hover {
  color: var(--ocean);
}

.contact-map {
  aspect-ratio: 16 / 10;
  min-height: 280px;
  border-radius: 2px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 8px 32px rgba(12, 59, 94, 0.08);
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 280px;
  border: 0;
  display: block;
  filter: grayscale(15%) contrast(1.05);
}

/* ============================================
   Footer
   ============================================ */
.footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.7);
  padding: 4rem 0 2rem;
  padding-left: var(--social-bar-width);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer-brand .logo {
  margin-bottom: 1rem;
  display: inline-block;
}

.footer-brand p {
  font-size: 0.875rem;
  line-height: 1.7;
  max-width: 20rem;
}

.footer-col h4 {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.footer-col ul li {
  margin-bottom: 0.6rem;
}

.footer-col a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.3s;
}

.footer-col a:hover {
  color: var(--ocean-light);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  text-align: center;
  font-size: 0.8rem;
}

.footer-bottom .disclaimer {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.75rem;
}

.footer-credit {
  color: rgba(255, 255, 255, 0.5);
}

.footer-credit a {
  color: var(--ocean-light);
  transition: color 0.3s;
}

.footer-credit a:hover {
  color: var(--white);
}

/* ============================================
   Back to Top
   ============================================ */
.back-to-top {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 800;
  width: 2.75rem;
  height: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ocean);
  color: var(--white);
  border: none;
  border-radius: 2px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.3s, visibility 0.3s, transform 0.3s, background 0.3s;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--ocean-light);
}

/* ============================================
   Scroll Reveal
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease-luxury), transform 0.7s var(--ease-luxury);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  transform: translateX(-24px);
}

.reveal-left.revealed {
  transform: translateX(0);
}

.reveal-right {
  transform: translateX(24px);
}

.reveal-right.revealed {
  transform: translateX(0);
}

/* ============================================
   Responsive
   ============================================ */
@media (min-width: 640px) {
  .form-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cards-grid.cols-2 {
    grid-template-columns: repeat(2, 1fr);
  }

  .packages-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-values {
    grid-template-columns: repeat(2, 1fr);
  }

  .transfer-features {
    grid-template-columns: repeat(2, 1fr);
  }

  .vehicle-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
  }

  .header-cta {
    display: inline-flex;
  }

  .hamburger {
    display: none;
  }

  .hero-scroll {
    display: flex;
  }

  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }

  .about-editorial {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }

  .about-values {
    grid-template-columns: repeat(4, 1fr);
  }

  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }

  .pricing-card-popular {
    transform: translateY(-1rem);
  }

  .cta-panel {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    text-align: left;
  }

  .cta-content {
    text-align: left;
  }

  .cta-content > p {
    margin-left: 0;
  }

  .cta-trust {
    justify-content: flex-start;
  }

  .cta-buttons {
    justify-content: flex-start;
  }

  .cta-card {
    justify-content: flex-end;
  }

  .cards-grid.cols-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .packages-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .bento-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }

  .bento-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
  }

  .bento-span-wide {
    grid-column: span 2;
    grid-row: span 2;
  }

  .toast {
    left: auto;
    bottom: 2rem;
  }
}

@media (min-width: 1024px) {
  .cards-grid.cols-3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .cards-grid.cols-2 {
    grid-template-columns: repeat(2, 1fr);
  }

  .packages-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .bento-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .why-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .transfers-grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

@media (min-width: 1280px) {
  .why-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 767px) {
  .page-skeleton {
    padding-left: var(--section-px);
  }

  :root {
    --header-height: 64px;
    --section-py: clamp(2.5rem, 7vw, 4rem);
    --section-px: clamp(1rem, 4vw, 1.5rem);
  }

  .social-bar {
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    transform: none;
    flex-direction: row;
    width: 100%;
    height: var(--mobile-bar-height);
    padding-bottom: env(safe-area-inset-bottom, 0);
    border-right: none;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .social-bar a {
    flex: 1;
    height: 100%;
    min-height: 44px;
  }

  .header-inner {
    padding-left: var(--section-px);
    padding-right: var(--section-px);
    gap: 0.75rem;
  }

  .logo {
    font-size: 1.15rem;
    line-height: 1.2;
  }

  .hamburger {
    flex-shrink: 0;
    min-width: 44px;
    min-height: 44px;
  }

  .hero {
    min-height: 100svh;
    min-height: 100dvh;
    align-items: flex-start;
  }

  .hero-video {
    object-position: center center;
  }

  .hero-content {
    padding-top: calc(var(--header-height) + 1.25rem);
    padding-left: var(--section-px);
    padding-right: var(--section-px);
    padding-bottom: calc(var(--mobile-bar-height) + 2rem + env(safe-area-inset-bottom, 0));
  }

  .hero-grid {
    gap: 1.5rem;
  }

  .hero-text > p {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }

  .hero-text h1 {
    font-size: clamp(2rem, 9vw, 2.75rem);
  }

  .hero-stats {
    gap: 1rem;
  }

  .hero-stat span:first-child {
    font-size: 1.5rem;
  }

  .hero-stat-divider {
    display: none;
  }

  .hero-stat {
    flex: 1 1 calc(33% - 0.75rem);
    min-width: 5rem;
    text-align: center;
  }

  .glass-card {
    padding: 1.25rem;
  }

  .booking-form-header h3 {
    font-size: 1.35rem;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    font-size: 16px;
    min-height: 44px;
  }

  .btn-submit {
    width: 100%;
    min-height: 48px;
  }

  .section-heading {
    margin-bottom: 2rem;
  }

  .section-heading h2 {
    font-size: clamp(1.85rem, 7vw, 2.5rem);
  }

  .section-heading p {
    font-size: 0.95rem;
  }

  .about-header {
    margin-bottom: 2.5rem;
  }

  .about-header h2 {
    font-size: clamp(2rem, 8vw, 2.75rem);
  }

  .about-mosaic {
    grid-template-columns: 1fr;
  }

  .about-mosaic-primary {
    grid-column: 1;
    aspect-ratio: 16 / 10;
  }

  .about-mosaic-secondary {
    aspect-ratio: 16 / 9;
  }

  .about-founder-badge {
    grid-column: 1;
  }

  .about-quote {
    font-size: 1.2rem;
    padding-left: 1rem;
    margin-bottom: 1.5rem;
  }

  .about-metrics {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
  }

  .about-metric-value {
    font-size: 1.5rem;
  }

  .about-metric-label {
    font-size: 0.55rem;
    letter-spacing: 0.08em;
  }

  .about-values {
    grid-template-columns: 1fr;
  }

  .pricing-toggle {
    width: 100%;
    max-width: 20rem;
    flex-direction: column;
    border-radius: 4px;
    gap: 0.25rem;
    padding: 0.25rem;
  }

  .pricing-toggle-btn {
    width: 100%;
    padding: 0.75rem 1rem;
    min-height: 44px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 3rem;
  }

  .pricing-card-popular {
    transform: none;
  }

  .pricing-value {
    font-size: 2.5rem;
  }

  .packages-grid {
    grid-template-columns: 1fr;
  }

  .package-card .luxury-card-image {
    padding: 1.25rem;
  }

  .package-card h3 {
    font-size: 1.25rem;
  }

  .package-cta {
    margin: 0 1.25rem 1.25rem;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .pricing-cta {
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .cta-panel {
    padding: 2rem 0;
  }

  .cta-content h2 {
    font-size: clamp(1.85rem, 7vw, 2.5rem);
  }

  .cta-trust {
    gap: 1.25rem;
  }

  .cta-trust-item {
    flex: 1 1 calc(33% - 1rem);
    min-width: 5rem;
  }

  .cta-trust-num {
    font-size: 1.5rem;
  }

  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }

  .cta-buttons .btn-primary,
  .cta-buttons .btn-outline {
    width: 100%;
    justify-content: center;
    min-height: 48px;
  }

  .cta-card-inner {
    max-width: 100%;
    padding: 1.5rem;
  }

  .cta-card-btn {
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .bento-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 50px;
    gap: 0.5rem;
  }

  .bento-span-wide {
    grid-column: span 2;
    grid-row: span 2;
  }

  .bento-span-tall {
    grid-row: span 3;
  }

  .bento-span-sm {
    grid-row: span 2;
  }

  .bento-overlay {
    opacity: 1;
    padding: 0.75rem;
  }

  .bento-overlay h3 {
    font-size: 0.8rem;
  }

  .bento-overlay p {
    display: none;
  }

  .bento-modal-content {
    width: 95vw;
  }

  .bento-modal-close {
    top: -3rem;
    right: 0.5rem;
    min-width: 44px;
    min-height: 44px;
  }

  .bento-dock {
    bottom: calc(var(--mobile-bar-height) + 0.75rem + env(safe-area-inset-bottom, 0));
    max-width: calc(100vw - 2rem);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    justify-content: flex-start;
    padding: 0.4rem 0.6rem;
  }

  .bento-dock-thumb {
    width: 2.25rem;
    height: 2.25rem;
    min-width: 36px;
    min-height: 36px;
  }

  .testimonial-card {
    padding: 1.5rem;
  }

  .contact-map iframe {
    min-height: 220px;
  }

  .footer {
    padding-left: 0;
    padding-right: 0;
    padding-bottom: calc(var(--mobile-bar-height) + 1.5rem + env(safe-area-inset-bottom, 0));
  }

  .footer-bottom {
    padding-left: var(--section-px);
    padding-right: var(--section-px);
  }

  .back-to-top {
    bottom: calc(var(--mobile-bar-height) + 1rem + env(safe-area-inset-bottom, 0));
    right: 1rem;
    width: 2.5rem;
    height: 2.5rem;
  }

  .toast {
    left: var(--section-px);
    right: var(--section-px);
    bottom: calc(var(--mobile-bar-height) + 1rem + env(safe-area-inset-bottom, 0));
    text-align: center;
  }

  .mobile-drawer-panel {
    width: min(300px, 88vw);
    padding-bottom: calc(1.5rem + env(safe-area-inset-bottom, 0));
  }

  .mobile-nav a {
    min-height: 48px;
    display: flex;
    align-items: center;
  }

  .filter-btn,
  .btn-text,
  .btn-primary,
  .btn-outline {
    min-height: 44px;
  }

  .luxury-card h3 {
    font-size: 1.25rem;
  }

  .vehicle-card-image {
    aspect-ratio: 16 / 10;
  }
}

@media (max-width: 380px) {
  .hero-stat {
    flex: 1 1 100%;
  }

  .cta-trust-item {
    flex: 1 1 100%;
  }

  .about-metrics {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .bento-grid {
    grid-template-columns: 1fr;
  }

  .bento-span-wide,
  .bento-span-tall,
  .bento-span-sm {
    grid-column: span 1;
    grid-row: span 3;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .loader,
  .loader-logo,
  .loader-tagline,
  .loader-track,
  .loader-percent {
    animation: none !important;
  }

  .loader-bar {
    transition: none !important;
  }

  .hero-video {
    display: none;
  }

  .hero-bg.has-fallback {
    background-image: var(--img-hero);
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .hero-scroll svg {
    animation: none;
  }
}
