/* =========================================================================
   MARIN STAR LIMOUSINE  -  styles.css
   Vanilla CSS design system. Hand-rolled. No frameworks.
   Built 2026-05-24 PKT.
   Spec: /00-strategy/04-design-system.md
   ========================================================================= */

/* -----------------------------------
   1. Design tokens (CSS custom properties)
   ----------------------------------- */
:root {
  /* Colors */
  --color-obsidian: #0A0A0A;
  --color-bone: #F4EFE7;
  --color-champagne: #C9A961;
  --color-champagne-deep: #9E843E;
  --color-charcoal: #2A2A2A;
  --color-soft-white: #FAFAF8;
  --color-stone: #8B847A;
  --color-mist: #E0DAD0;
  --color-error: #A14040;
  --color-success: #6B7F4F;

  /* Type stacks */
  --font-display: 'Cormorant Garamond', 'Garamond', 'Times New Roman', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

  /* Type scale (mobile defaults; desktop overrides at @media query) */
  --text-display: 48px;
  --text-h1: 36px;
  --text-h2: 28px;
  --text-h3: 22px;
  --text-h4: 18px;
  --text-eyebrow: 12px;
  --text-body-lg: 18px;
  --text-body: 16px;
  --text-small: 14px;
  --text-fineprint: 12px;

  /* Spacing scale (8px modular) */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
  --space-9: 96px;
  --space-10: 128px;
  --space-11: 160px;

  /* Layout */
  --container-max: 1280px;
  --container-pad-mobile: 24px;
  --container-pad-desktop: 96px;

  /* Effects */
  --transition-fast: 200ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 600ms cubic-bezier(0.4, 0, 0.2, 1);

  /* Header heights */
  --header-h-mobile: 80px;
  --header-h-desktop: 96px;
  --header-h-scrolled: 64px;
}

@media (min-width: 1024px) {
  :root {
    --text-display: 80px;
    --text-h1: 56px;
    --text-h2: 40px;
    --text-h3: 28px;
    --text-h4: 20px;
    --text-eyebrow: 13px;
    --text-body-lg: 19px;
    --text-body: 17px;
    --text-small: 15px;
    --text-fineprint: 13px;
  }
}

/* -----------------------------------
   2. Web fonts (self-hosted for perf + privacy)
   Loaded via @font-face declarations below.
   Files expected at /assets/fonts/.
   In v1 we use the Google Fonts CDN as a fallback; production self-hosts.
   ----------------------------------- */

/* Cormorant Garamond - 400, 500 */
@font-face {
  font-family: 'Cormorant Garamond';
  src: url('/assets/fonts/cormorant-garamond-400.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Cormorant Garamond';
  src: url('/assets/fonts/cormorant-garamond-500.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

/* Inter - 400, 500, 600 */
@font-face {
  font-family: 'Inter';
  src: url('/assets/fonts/inter-400.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('/assets/fonts/inter-500.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('/assets/fonts/inter-600.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

/* -----------------------------------
   3. Reset + base
   ----------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  font-family: var(--font-body);
  font-size: var(--text-body);
  line-height: 1.6;
  color: var(--color-charcoal);
  background-color: var(--color-bone);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, picture, svg, video {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

ul, ol {
  list-style: none;
}

/* -----------------------------------
   4. Typography
   ----------------------------------- */
.display, h1.display, .hero h1 {
  font-family: var(--font-display);
  font-size: var(--text-display);
  font-weight: 400;
  line-height: 1.0;
  letter-spacing: -0.01em;
  text-wrap: balance;
}

h1 {
  font-family: var(--font-display);
  font-size: var(--text-h1);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.01em;
  text-wrap: balance;
}

h2 {
  font-family: var(--font-display);
  font-size: var(--text-h2);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
  text-wrap: balance;
}

h3 {
  font-family: var(--font-display);
  font-size: var(--text-h3);
  font-weight: 500;
  line-height: 1.2;
}

h4 {
  font-family: var(--font-body);
  font-size: var(--text-h4);
  font-weight: 600;
  line-height: 1.3;
}

p {
  font-size: var(--text-body);
  line-height: 1.6;
  max-width: 720px;
}

.lead {
  font-size: var(--text-body-lg);
  line-height: 1.6;
  color: var(--color-charcoal);
}

.eyebrow {
  font-family: var(--font-body);
  font-size: var(--text-eyebrow);
  font-weight: 500;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-champagne);
  display: inline-block;
  margin-bottom: var(--space-3);
}

.eyebrow-light { color: var(--color-stone); }

.small { font-size: var(--text-small); color: var(--color-stone); }
.fineprint { font-size: var(--text-fineprint); color: var(--color-stone); }

/* Text colors */
.text-obsidian { color: var(--color-obsidian); }
.text-soft-white { color: var(--color-soft-white); }
.text-champagne { color: var(--color-champagne); }
.text-stone { color: var(--color-stone); }

/* -----------------------------------
   5. Layout primitives
   ----------------------------------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: var(--container-pad-mobile);
  padding-right: var(--container-pad-mobile);
}

@media (min-width: 1024px) {
  .container {
    padding-left: var(--container-pad-desktop);
    padding-right: var(--container-pad-desktop);
  }
}

.section {
  padding-top: var(--space-8);
  padding-bottom: var(--space-8);
}

@media (min-width: 1024px) {
  .section {
    padding-top: var(--space-10);
    padding-bottom: var(--space-10);
  }
}

.section-dark {
  background-color: var(--color-obsidian);
  color: var(--color-soft-white);
}

.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 {
  color: var(--color-soft-white);
}

.section-dark p {
  color: var(--color-soft-white);
}

.section-dark .lead {
  color: var(--color-soft-white);
}

.section-dark .small,
.section-dark .fineprint {
  color: rgba(255, 255, 255, 0.65);
}

.section-dark .text-stone {
  color: rgba(255, 255, 255, 0.65);
}

.section-dark a:not(.btn):not(.header-nav-item):not(.brand-wordmark) {
  color: var(--color-champagne);
}

.section-dark address,
.section-dark address a {
  color: var(--color-soft-white);
}

.divider {
  width: 64px;
  height: 1px;
  background-color: var(--color-champagne);
  margin: var(--space-5) 0;
  border: none;
}

.divider-center { margin-left: auto; margin-right: auto; }

/* Grid utilities */
.grid {
  display: grid;
  gap: var(--space-5);
}

.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: 1fr 1fr; }

@media (min-width: 640px) {
  .grid-2 { grid-template-columns: 1fr 1fr; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr 1fr 1fr; }
}

@media (min-width: 1024px) {
  .grid { gap: var(--space-6); }
  .grid-3 { grid-template-columns: 1fr 1fr 1fr; }
}

/* -----------------------------------
   6. Header (sticky)
   ----------------------------------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h-mobile);
  background-color: var(--color-obsidian);
  color: var(--color-soft-white);
  transition: height var(--transition-base), background-color var(--transition-base);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

@media (min-width: 1024px) {
  .site-header { height: var(--header-h-desktop); }
}

.site-header.is-scrolled { height: var(--header-h-scrolled); }

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad-mobile);
}

@media (min-width: 1024px) {
  .header-inner { padding: 0 var(--container-pad-desktop); }
}

.header-logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.header-logo img {
  height: 40px;
  width: auto;
}

@media (min-width: 1024px) {
  .header-logo img { height: 44px; }
}

.header-logo-text {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--color-soft-white);
  text-transform: uppercase;
}

@media (max-width: 639px) {
  .header-logo-text { display: none; }
}

.header-nav {
  display: none;
  align-items: center;
  gap: var(--space-6);
}

@media (min-width: 1024px) {
  .header-nav { display: flex; }
}

.header-nav-item {
  position: relative;
  font-size: var(--text-small);
  font-weight: 500;
  color: var(--color-soft-white);
  letter-spacing: 0.02em;
  padding: var(--space-2) 0;
}

.header-nav-item:hover { color: var(--color-champagne); }

.header-nav-item.has-dropdown::after {
  content: '';
  display: inline-block;
  margin-left: 6px;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid currentColor;
  vertical-align: middle;
}

.header-dropdown {
  position: absolute;
  top: 100%;
  left: -16px;
  min-width: 240px;
  padding: var(--space-3) 0;
  background-color: var(--color-obsidian);
  border: 1px solid rgba(255, 255, 255, 0.08);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity var(--transition-fast), transform var(--transition-fast), visibility var(--transition-fast);
}

.header-nav-item:hover > .header-dropdown,
.header-nav-item:focus-within > .header-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.header-dropdown a {
  display: block;
  padding: var(--space-2) var(--space-4);
  font-size: var(--text-small);
  color: var(--color-soft-white);
}

.header-dropdown a:hover {
  color: var(--color-champagne);
  background-color: rgba(255, 255, 255, 0.04);
}

.header-right {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.header-phone {
  display: none;
  font-size: var(--text-small);
  font-weight: 500;
  color: var(--color-soft-white);
  letter-spacing: 0.02em;
}

.header-phone:hover { color: var(--color-champagne); }

@media (min-width: 1024px) { .header-phone { display: inline; } }

.header-phone-mobile {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  color: var(--color-soft-white);
}

@media (min-width: 1024px) { .header-phone-mobile { display: none; } }

.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
}

@media (min-width: 1024px) { .menu-toggle { display: none; } }

.menu-toggle span {
  display: block;
  width: 100%;
  height: 1.5px;
  background-color: var(--color-soft-white);
  transition: transform var(--transition-fast), opacity var(--transition-fast);
}

.menu-toggle.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile menu drawer */
.mobile-nav {
  position: fixed;
  top: var(--header-h-mobile);
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--color-obsidian);
  color: var(--color-soft-white);
  padding: var(--space-6) var(--container-pad-mobile);
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform var(--transition-base);
  z-index: 99;
}

.mobile-nav.is-open { transform: translateX(0); }

.mobile-nav-group { margin-bottom: var(--space-6); }

.mobile-nav-group-title {
  font-size: var(--text-eyebrow);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-champagne);
  margin-bottom: var(--space-3);
}

.mobile-nav-link {
  display: block;
  padding: var(--space-3) 0;
  font-size: var(--text-body-lg);
  color: var(--color-soft-white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mobile-nav-link:hover { color: var(--color-champagne); }

/* -----------------------------------
   7. Buttons
   ----------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-3) var(--space-5);
  font-family: var(--font-body);
  font-size: var(--text-small);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 0;
  border: 1px solid transparent;
  transition: background-color var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast);
  cursor: pointer;
}

.btn-primary {
  background-color: var(--color-champagne);
  color: var(--color-obsidian);
}

.btn-primary:hover {
  background-color: var(--color-champagne-deep);
  color: var(--color-soft-white);
}

.btn-ghost {
  background-color: transparent;
  color: var(--color-soft-white);
  border-color: rgba(255, 255, 255, 0.32);
}

.btn-ghost:hover {
  border-color: var(--color-champagne);
  color: var(--color-champagne);
}

.btn-ghost-dark {
  background-color: transparent;
  color: var(--color-charcoal);
  border-color: var(--color-charcoal);
}

.btn-ghost-dark:hover {
  background-color: var(--color-charcoal);
  color: var(--color-soft-white);
}

.btn-lg {
  padding: var(--space-4) var(--space-6);
  font-size: var(--text-body);
}

.btn-block { display: flex; width: 100%; }

/* -----------------------------------
   8. Hero
   ----------------------------------- */
.hero {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: flex-end;
  padding-top: calc(var(--header-h-mobile) + var(--space-7));
  padding-bottom: var(--space-8);
  background-color: var(--color-obsidian);
  color: var(--color-soft-white);
  overflow: hidden;
}

@media (min-width: 1024px) {
  .hero {
    min-height: 760px;
    padding-top: calc(var(--header-h-desktop) + var(--space-9));
    padding-bottom: var(--space-10);
  }
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.50) 0%, rgba(10, 10, 10, 0.70) 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: var(--container-pad-mobile);
  padding-right: var(--container-pad-mobile);
}

@media (min-width: 1024px) {
  .hero-inner {
    padding-left: var(--container-pad-desktop);
    padding-right: var(--container-pad-desktop);
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(420px, 1fr);
    gap: var(--space-8);
    align-items: center;
  }
}

@media (min-width: 1280px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1.25fr) minmax(440px, 1fr);
    gap: var(--space-9);
  }
}

.hero-content { max-width: 680px; }

.hero h1 {
  color: var(--color-soft-white);
  margin-bottom: var(--space-4);
  letter-spacing: -0.01em;
}

@media (min-width: 1024px) {
  .hero h1 {
    font-size: clamp(48px, 5.4vw, 72px);
    line-height: 1.04;
  }
}

.hero p {
  font-size: var(--text-body-lg);
  color: var(--color-soft-white);
  opacity: 0.9;
  margin-bottom: var(--space-6);
  max-width: 560px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-5);
}

/* Hero side-panel backdrop: makes the form column read as part of the hero, not floating */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 60% 60% at 80% 50%, rgba(10, 10, 10, 0.45) 0%, rgba(10, 10, 10, 0) 70%),
    linear-gradient(90deg, rgba(10, 10, 10, 0.20) 0%, rgba(10, 10, 10, 0) 50%);
  pointer-events: none;
}

/* -----------------------------------
   9. Booking widget
   ----------------------------------- */
.booking-widget {
  background-color: var(--color-bone);
  color: var(--color-charcoal);
  padding: var(--space-5);
  border: 1px solid var(--color-mist);
  position: relative;
  box-shadow:
    0 20px 50px -20px rgba(0, 0, 0, 0.55),
    0 4px 12px -4px rgba(0, 0, 0, 0.3);
  width: 100%;
}

/* Gold accent line on top of booking widget = luxury booking platform cue */
.booking-widget::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-champagne-deep), var(--color-champagne), var(--color-champagne-deep));
}

@media (min-width: 1024px) {
  .booking-widget {
    padding: var(--space-6) var(--space-6);
    align-self: center;
  }
}

.booking-widget-title {
  font-family: var(--font-display);
  font-size: var(--text-h3);
  font-weight: 500;
  color: var(--color-obsidian);
  margin-bottom: var(--space-1);
  letter-spacing: -0.005em;
}

.booking-widget-sub {
  font-size: var(--text-small);
  color: var(--color-stone);
  margin-bottom: var(--space-4);
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.booking-widget-sub::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--color-success, #2d8c5a);
  box-shadow: 0 0 0 4px rgba(45, 140, 90, 0.18);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 4px rgba(45, 140, 90, 0.18); }
  50% { box-shadow: 0 0 0 6px rgba(45, 140, 90, 0.05); }
}

.booking-form {
  display: grid;
  gap: var(--space-3);
  grid-template-columns: minmax(0, 1fr);
}

@media (min-width: 768px) {
  .booking-form {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: var(--space-3) var(--space-4);
  }
}

.field { display: flex; flex-direction: column; gap: var(--space-1); min-width: 0; }
.field-full { grid-column: 1 / -1; }

.field-label {
  font-size: var(--text-fineprint);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-stone);
}

.field-input,
.field-select {
  width: 100%;
  box-sizing: border-box;
  min-width: 0;
  max-width: 100%;
  height: 48px;
  padding: 0 var(--space-3);
  background-color: var(--color-soft-white);
  color: var(--color-charcoal);
  font-size: var(--text-body);
  border: 1px solid var(--color-mist);
  border-radius: 0;
  outline: none;
  transition: border-color var(--transition-fast);
}

/* Buttons inside the booking form should also be width-capped */
.booking-form .btn,
.booking-form button {
  box-sizing: border-box;
  max-width: 100%;
}

.field-input:focus,
.field-select:focus {
  border-color: var(--color-champagne);
  outline: 2px solid var(--color-champagne);
  outline-offset: 2px;
}

.field-input::placeholder { color: var(--color-stone); }

/* Form confirm message */
.form-confirm {
  display: none;
  padding: var(--space-4);
  background-color: var(--color-success);
  color: var(--color-soft-white);
  margin-bottom: var(--space-4);
}

.form-confirm.is-visible { display: block; }

.form-error {
  display: none;
  padding: var(--space-3);
  background-color: var(--color-error);
  color: var(--color-soft-white);
  margin-bottom: var(--space-3);
  font-size: var(--text-small);
}

.form-error.is-visible { display: block; }

/* -----------------------------------
   10. Trust strip
   ----------------------------------- */
.trust-strip {
  background-color: var(--color-obsidian);
  color: var(--color-soft-white);
  padding: var(--space-6) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-5);
}

@media (min-width: 1024px) {
  .trust-grid { grid-template-columns: repeat(4, 1fr); }
}

.trust-metric { text-align: left; }

.trust-metric-number {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 400;
  color: var(--color-soft-white);
  line-height: 1.0;
  margin-bottom: var(--space-2);
}

@media (min-width: 1024px) {
  .trust-metric-number { font-size: 44px; }
}

.trust-metric-label {
  font-size: var(--text-eyebrow);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-stone);
}

/* -----------------------------------
   11. Feature blocks (3-up)
   ----------------------------------- */
.feature-block {
  padding: var(--space-5) 0;
}

.feature-icon {
  width: 32px;
  height: 32px;
  color: var(--color-champagne);
  margin-bottom: var(--space-4);
}

.feature-block h3 {
  font-family: var(--font-display);
  font-size: var(--text-h3);
  font-weight: 500;
  color: var(--color-obsidian);
  margin-bottom: var(--space-3);
}

.section-dark .feature-block h3 { color: var(--color-soft-white); }

.feature-block p {
  font-size: var(--text-body);
  color: var(--color-charcoal);
}

.section-dark .feature-block p { color: var(--color-soft-white); opacity: 0.85; }

/* -----------------------------------
   12. Route cards
   ----------------------------------- */
.route-card {
  position: relative;
  display: block;
  min-height: 240px;
  padding: var(--space-5);
  background-color: var(--color-obsidian);
  color: var(--color-soft-white);
  overflow: hidden;
  transition: transform var(--transition-fast);
}

.route-card:hover { transform: translateY(-2px); }

.route-card-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.route-card-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
  transition: opacity var(--transition-fast);
}

.route-card:hover .route-card-bg img { opacity: 0.65; }

.route-card-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  min-height: 200px;
}

.route-card-name {
  font-family: var(--font-display);
  font-size: var(--text-h3);
  font-weight: 500;
  color: var(--color-soft-white);
  margin-bottom: var(--space-2);
}

.route-card-meta {
  font-size: var(--text-small);
  color: var(--color-soft-white);
  opacity: 0.9;
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.route-card-arrow {
  display: inline-block;
  width: 24px;
  height: 1px;
  background-color: var(--color-champagne);
  position: relative;
  transition: width var(--transition-fast);
}

.route-card-arrow::after {
  content: '';
  position: absolute;
  right: 0;
  top: -3px;
  width: 7px;
  height: 7px;
  border-top: 1px solid var(--color-champagne);
  border-right: 1px solid var(--color-champagne);
  transform: rotate(45deg);
}

.route-card:hover .route-card-arrow { width: 32px; }

/* -----------------------------------
   13. Fleet cards
   ----------------------------------- */
.fleet-card {
  background-color: var(--color-bone);
  color: var(--color-charcoal);
  border: 1px solid var(--color-mist);
}

.fleet-card-image {
  aspect-ratio: 16 / 10;
  background-color: var(--color-mist);
  overflow: hidden;
}

.fleet-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fleet-card-body { padding: var(--space-5); }

.fleet-card-eyebrow {
  font-size: var(--text-eyebrow);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-champagne);
  margin-bottom: var(--space-2);
}

.fleet-card h3 {
  font-family: var(--font-display);
  font-size: var(--text-h3);
  font-weight: 500;
  color: var(--color-obsidian);
  margin-bottom: var(--space-3);
}

.fleet-card p {
  color: var(--color-charcoal);
}

.fleet-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  font-size: var(--text-small);
  color: var(--color-stone);
  margin-bottom: var(--space-4);
}

.fleet-card-meta-item { display: flex; align-items: center; gap: var(--space-2); }

.fleet-card-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-bottom: var(--space-4);
}

.fleet-card-chip {
  padding: 4px 10px;
  font-size: var(--text-fineprint);
  background-color: rgba(0,0,0,0.04);
  color: var(--color-charcoal);
  border: 1px solid var(--color-mist);
}

.fleet-card-rate {
  font-family: var(--font-display);
  font-size: var(--text-h3);
  font-weight: 500;
  color: var(--color-champagne-deep);
  margin-bottom: var(--space-3);
}

/* -----------------------------------
   14. Testimonial
   ----------------------------------- */
.testimonial {
  text-align: left;
  max-width: 840px;
  margin: 0 auto;
}

.testimonial-mark {
  font-family: var(--font-display);
  font-size: 96px;
  line-height: 0.6;
  color: var(--color-champagne);
  display: block;
  margin-bottom: var(--space-4);
}

.testimonial-quote {
  font-family: var(--font-display);
  font-size: var(--text-h3);
  font-style: italic;
  font-weight: 400;
  line-height: 1.4;
  color: inherit;
  margin-bottom: var(--space-5);
}

@media (min-width: 1024px) {
  .testimonial-quote { font-size: 28px; }
}

.testimonial-attribution {
  font-size: var(--text-small);
  color: var(--color-stone);
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.section-dark .testimonial-attribution { color: rgba(255, 255, 255, 0.7); }

.verified-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-champagne);
  padding: 2px 6px;
  border: 1px solid var(--color-champagne);
}

/* -----------------------------------
   15. FAQ accordion
   ----------------------------------- */
.faq {
  max-width: 880px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--color-mist);
}

.section-dark .faq-item { border-bottom-color: rgba(255, 255, 255, 0.1); }

.faq-question {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-5) 0;
  text-align: left;
  font-family: var(--font-body);
  font-size: var(--text-body-lg);
  font-weight: 600;
  color: inherit;
  background: none;
  cursor: pointer;
}

.faq-question-toggle {
  position: relative;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform var(--transition-fast);
}

.faq-question-toggle::before,
.faq-question-toggle::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  background-color: var(--color-champagne);
  transform: translate(-50%, -50%);
}

.faq-question-toggle::before { width: 14px; height: 1.5px; }
.faq-question-toggle::after { width: 1.5px; height: 14px; transition: transform var(--transition-fast); }

.faq-item.is-open .faq-question-toggle::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-base);
}

.faq-item.is-open .faq-answer { max-height: 800px; }

.faq-answer-inner {
  padding: 0 0 var(--space-5);
  font-size: var(--text-body);
  line-height: 1.6;
  max-width: 720px;
  color: inherit;
}

.section-dark .faq-answer-inner { color: var(--color-soft-white); opacity: 0.85; }

/* -----------------------------------
   16. CTA banner
   ----------------------------------- */
.cta-banner {
  background-color: var(--color-obsidian);
  color: var(--color-soft-white);
  padding: var(--space-8) 0;
}

@media (min-width: 1024px) { .cta-banner { padding: var(--space-9) 0; } }

.cta-banner-content {
  max-width: 720px;
  text-align: left;
}

.cta-banner h2 {
  color: var(--color-soft-white);
  margin-bottom: var(--space-4);
}

.cta-banner p {
  color: var(--color-soft-white);
  opacity: 0.85;
  margin-bottom: var(--space-5);
  max-width: 540px;
}

/* -----------------------------------
   17. Breadcrumb
   ----------------------------------- */
.breadcrumb {
  padding: var(--space-4) 0;
  font-size: var(--text-fineprint);
  color: var(--color-stone);
  letter-spacing: 0.02em;
}

.breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-2);
}

.breadcrumb-list li::after {
  content: '/';
  margin-left: var(--space-2);
  color: var(--color-mist);
}

.breadcrumb-list li:last-child::after { content: none; }

.breadcrumb-list a { color: var(--color-stone); }
.breadcrumb-list a:hover { color: var(--color-champagne); }
.breadcrumb-list li:last-child { color: var(--color-charcoal); }

/* -----------------------------------
   18. Footer
   ----------------------------------- */
.site-footer {
  background-color: var(--color-obsidian);
  color: var(--color-soft-white);
  padding: var(--space-8) 0 var(--space-6);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  margin-bottom: var(--space-7);
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
    gap: var(--space-7);
  }
}

.footer-brand img { height: 56px; margin-bottom: var(--space-4); }

.footer-brand p {
  font-size: var(--text-small);
  color: rgba(255, 255, 255, 0.7);
  max-width: 320px;
  margin-bottom: var(--space-4);
}

.footer-nap {
  font-size: var(--text-small);
  font-style: normal;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
}

.footer-nap strong {
  display: block;
  color: var(--color-soft-white);
  font-weight: 600;
  margin-bottom: var(--space-2);
}

.footer-nap a {
  color: rgba(255, 255, 255, 0.7);
  display: block;
}

.footer-nap a:hover { color: var(--color-champagne); }

.footer-col h4 {
  font-family: var(--font-body);
  font-size: var(--text-eyebrow);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-champagne);
  margin-bottom: var(--space-4);
}

.footer-col ul li { margin-bottom: var(--space-2); }

.footer-col a {
  font-size: var(--text-small);
  color: rgba(255, 255, 255, 0.7);
}

.footer-col a:hover { color: var(--color-champagne); }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: var(--space-5);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--space-3);
  font-size: var(--text-fineprint);
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom-links { display: flex; gap: var(--space-4); flex-wrap: wrap; }
.footer-bottom-links a { color: rgba(255, 255, 255, 0.5); }
.footer-bottom-links a:hover { color: var(--color-champagne); }

/* -----------------------------------
   19. Utility classes
   ----------------------------------- */
.text-center { text-align: center; }
.text-left { text-align: left; }
.mb-2 { margin-bottom: var(--space-2); }
.mb-3 { margin-bottom: var(--space-3); }
.mb-4 { margin-bottom: var(--space-4); }
.mb-5 { margin-bottom: var(--space-5); }
.mb-6 { margin-bottom: var(--space-6); }
.mb-7 { margin-bottom: var(--space-7); }
.mt-5 { margin-top: var(--space-5); }
.mt-6 { margin-top: var(--space-6); }
.mt-7 { margin-top: var(--space-7); }
.mt-8 { margin-top: var(--space-8); }

.max-720 { max-width: 720px; }
.max-540 { max-width: 540px; }
.max-840 { max-width: 840px; }

.flow > * + * { margin-top: var(--space-4); }
.flow-lg > * + * { margin-top: var(--space-5); }

/* Skip link (accessibility) */
.skip-link {
  position: absolute;
  top: -100px;
  left: var(--space-3);
  background-color: var(--color-champagne);
  color: var(--color-obsidian);
  padding: var(--space-3) var(--space-4);
  font-size: var(--text-small);
  font-weight: 600;
  z-index: 200;
}

.skip-link:focus { top: var(--space-3); }

/* Page content offset (compensates for fixed header) */
.has-fixed-header { padding-top: var(--header-h-mobile); }

@media (min-width: 1024px) {
  .has-fixed-header { padding-top: var(--header-h-desktop); }
}

/* Page that uses hero already accounts for header via hero padding-top */
.page-no-hero { padding-top: calc(var(--header-h-mobile) + var(--space-5)); }

@media (min-width: 1024px) {
  .page-no-hero { padding-top: calc(var(--header-h-desktop) + var(--space-7)); }
}

/* -----------------------------------
   20. Differentiator section (2-column)
   ----------------------------------- */
.diff-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  align-items: center;
}

@media (min-width: 1024px) {
  .diff-section { grid-template-columns: 1.1fr 1fr; gap: var(--space-9); }
}

.diff-image img { width: 100%; height: auto; }

.diff-copy h2 { margin-bottom: var(--space-4); }
.diff-copy p { margin-bottom: var(--space-4); }

/* -----------------------------------
   21. Page intro section
   ----------------------------------- */
.page-intro {
  max-width: 760px;
  margin: 0 auto;
}

.page-intro .eyebrow { margin-bottom: var(--space-3); }
.page-intro h2 { margin-bottom: var(--space-5); }
.page-intro p { margin-bottom: var(--space-4); font-size: var(--text-body-lg); }

/* -----------------------------------
   22. Vehicle showcase (used on /fleet)
   ----------------------------------- */
.vehicle {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
  padding: var(--space-7) 0;
  border-bottom: 1px solid var(--color-mist);
}

.vehicle:last-child { border-bottom: none; }

@media (min-width: 1024px) {
  .vehicle { grid-template-columns: 1.2fr 1fr; gap: var(--space-7); }
}

.vehicle-image img { width: 100%; height: auto; }

.vehicle-body .eyebrow { margin-bottom: var(--space-2); }

.vehicle-body h3 { font-size: var(--text-h2); margin-bottom: var(--space-3); }

/* -----------------------------------
   23. Map embed
   ----------------------------------- */
.map-embed {
  width: 100%;
  aspect-ratio: 16 / 10;
  background-color: var(--color-mist);
  border: 1px solid var(--color-mist);
}

.map-embed iframe { width: 100%; height: 100%; border: none; }

/* -----------------------------------
   24. Print styles
   ----------------------------------- */
@media print {
  .site-header, .site-footer, .booking-widget, .menu-toggle, .mobile-nav { display: none; }
  body { color: #000; background: #fff; }
  a { color: #000; text-decoration: underline; }
}

/* =========================================================================
   25. Fixes pass (2026-05-25 PKT)
   Adds brand wordmark, locks down contrast on light cards inside dark
   sections, tightens mobile responsiveness, improves tablet layout.
   ========================================================================= */

/* -----------------------------------
   25.1 Brand wordmark (replaces img logo)
   ----------------------------------- */
.brand-wordmark {
  display: inline-flex;
  align-items: baseline;
  gap: 0.32em;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.06em;
  color: var(--color-soft-white);
  text-transform: uppercase;
  white-space: nowrap;
  text-decoration: none;
}

.brand-wordmark .wm-mark {
  font-weight: 500;
  color: var(--color-soft-white);
}

.brand-wordmark .wm-tail {
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: var(--color-champagne);
  text-transform: uppercase;
}

@media (min-width: 1024px) {
  .brand-wordmark { font-size: 24px; }
}

/* Header brand sizing on mobile */
@media (max-width: 519px) {
  .brand-wordmark {
    font-size: 18px;
    letter-spacing: 0.04em;
    gap: 0.28em;
  }
  .brand-wordmark .wm-tail { letter-spacing: 0.08em; }
}

/* Hide the legacy header-logo-text since wordmark already includes the name */
.header-logo-text { display: none !important; }

/* Footer brand block: bigger wordmark, with mini tagline below */
.footer-brand .brand-wordmark {
  font-size: 26px;
  margin-bottom: var(--space-3);
}

.footer-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 14px;
  letter-spacing: 0.08em;
  color: var(--color-champagne);
  margin: 0 0 var(--space-3) 0;
  text-transform: none;
}

/* -----------------------------------
   25.2 Lock-down: light cards inside dark sections
   Force dark text on bone backgrounds so nothing inherits white.
   ----------------------------------- */
.section-dark .fleet-card {
  color: var(--color-charcoal);
}

.section-dark .fleet-card h1,
.section-dark .fleet-card h2,
.section-dark .fleet-card h3,
.section-dark .fleet-card h4 {
  color: var(--color-obsidian);
}

.section-dark .fleet-card p {
  color: var(--color-charcoal);
  opacity: 1;
}

.section-dark .fleet-card .fleet-card-meta { color: var(--color-stone); }
.section-dark .fleet-card .fleet-card-eyebrow { color: var(--color-champagne-deep); }
.section-dark .fleet-card .fleet-card-rate { color: var(--color-champagne-deep); }
.section-dark .fleet-card a { color: var(--color-champagne-deep); }
.section-dark .fleet-card a:hover { color: var(--color-obsidian); }
.section-dark .fleet-card .fleet-card-chip {
  background-color: rgba(0,0,0,0.04);
  color: var(--color-charcoal);
  border-color: var(--color-mist);
}

/* Same lock-down for booking widget when sitting in dark sections */
.section-dark .booking-widget,
.section-dark .booking-widget p,
.section-dark .booking-widget .booking-widget-sub {
  color: var(--color-charcoal);
}

.section-dark .booking-widget .booking-widget-title {
  color: var(--color-obsidian);
}

.section-dark .booking-widget .field-label {
  color: var(--color-stone);
}

/* Vehicle blocks on /fleet.html: keep eyebrow and body legible regardless of section bg */
.section-dark .vehicle .fleet-card-meta { color: rgba(255, 255, 255, 0.65); }
.section-dark .vehicle .fleet-card-eyebrow { color: var(--color-champagne); }
.section-dark .vehicle .fleet-card-chip {
  background-color: rgba(255, 255, 255, 0.06);
  color: var(--color-soft-white);
  border-color: rgba(255, 255, 255, 0.12);
}

/* -----------------------------------
   25.3 Route cards: ensure readable on every bg
   ----------------------------------- */
.route-card .eyebrow {
  color: var(--color-champagne);
}
.section-dark .route-card .eyebrow {
  color: var(--color-champagne);
}

/* -----------------------------------
   25.4 Diff section: balance the image and copy on mobile
   ----------------------------------- */
.diff-image img {
  width: 100%;
  height: auto;
  display: block;
}

.section-dark .diff-copy p {
  color: var(--color-soft-white);
  opacity: 0.92;
}

/* -----------------------------------
   25.5 Trust strip: better number sizing on small phones
   ----------------------------------- */
@media (max-width: 419px) {
  .trust-metric-number { font-size: 28px; }
  .trust-metric-label { font-size: 11px; }
}

/* -----------------------------------
   25.6 Header: tighten right cluster on narrow viewports
   ----------------------------------- */
.header-right {
  gap: 10px;
}

@media (max-width: 519px) {
  .header-right .btn-primary {
    padding: 10px 12px;
    font-size: 11px;
    letter-spacing: 0.05em;
  }
  .header-inner {
    padding: 0 16px;
  }
  .menu-toggle {
    width: 36px;
    height: 36px;
  }
  .header-phone-mobile {
    width: 36px;
    height: 36px;
  }
}

@media (min-width: 1024px) {
  .header-right { gap: var(--space-4); }
}

/* -----------------------------------
   25.7 Hero: tighten padding on mobile, scale display type at small widths
   ----------------------------------- */
.hero {
  padding-top: calc(var(--header-h-mobile) + var(--space-5));
  padding-bottom: var(--space-7);
  min-height: 560px;
}

@media (min-width: 1024px) {
  .hero {
    padding-top: calc(var(--header-h-desktop) + var(--space-7));
    padding-bottom: var(--space-9);
    min-height: 720px;
  }
}

@media (max-width: 519px) {
  :root {
    --text-display: 36px;
    --text-h1: 28px;
    --text-h2: 22px;
    --text-h3: 20px;
  }
  .hero { min-height: 480px; }
  .hero p { font-size: 16px; }
}

@media (min-width: 1440px) {
  :root {
    --text-display: 88px;
  }
}

/* -----------------------------------
   25.8 Section padding tightening on mobile
   ----------------------------------- */
@media (max-width: 519px) {
  .section { padding-top: 48px; padding-bottom: 48px; }
  .cta-banner { padding: 48px 0; }
  .container { padding-left: 20px; padding-right: 20px; }
}

/* -----------------------------------
   25.9 Grid spacing tighter on mobile, expand grid-3 at tablet
   ----------------------------------- */
.grid {
  gap: 20px;
}

@media (min-width: 768px) {
  .grid-3 { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 1024px) {
  .grid {
    gap: var(--space-6);
  }
  .grid-3 { grid-template-columns: 1fr 1fr 1fr; }
}

/* -----------------------------------
   25.10 Footer: tablet 2-col, full brand row, better mobile spacing
   ----------------------------------- */
.footer-grid {
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 640px) and (max-width: 1023px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px 32px;
  }
  .footer-brand {
    grid-column: 1 / -1;
    max-width: 480px;
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
    gap: var(--space-7);
  }
  .footer-brand { grid-column: auto; max-width: none; }
}

.footer-brand img { display: none !important; }

/* -----------------------------------
   25.11 Vehicle block (on fleet page): better image proportions on mobile
   ----------------------------------- */
.vehicle-image img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.vehicle {
  padding: 40px 0;
  border-bottom: 1px solid var(--color-mist);
}

.section-dark .vehicle {
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

@media (min-width: 1024px) {
  .vehicle { padding: 64px 0; gap: var(--space-7); }
}

/* -----------------------------------
   25.12 Booking widget: better mobile field layout
   ----------------------------------- */
.booking-widget {
  padding: 24px;
  border: 1px solid var(--color-mist);
}

@media (max-width: 519px) {
  .booking-widget {
    padding: 20px 18px;
  }
  .booking-widget-title {
    font-size: 22px;
  }
  .field-input,
  .field-select {
    height: 44px;
    font-size: 16px;
  }
}

/* -----------------------------------
   25.13 Mobile nav: better spacing, prevent edge clipping
   ----------------------------------- */
.mobile-nav {
  padding: 32px 24px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.mobile-nav-link {
  padding: 14px 0;
  font-size: 17px;
}

.mobile-nav-group + .mobile-nav-group {
  margin-top: 24px;
}

/* -----------------------------------
   25.14 FAQ accordion: better touch target on mobile
   ----------------------------------- */
.faq-question {
  padding: 20px 0;
  font-size: 17px;
  align-items: flex-start;
  gap: 16px;
}

@media (min-width: 768px) {
  .faq-question {
    padding: 24px 0;
    font-size: 18px;
  }
}

.faq-question span:first-child {
  flex: 1 1 auto;
  line-height: 1.4;
}

.faq-question-toggle {
  flex-shrink: 0;
  margin-top: 4px;
}

/* -----------------------------------
   25.15 Page intro: tighter mobile widths, balanced text
   ----------------------------------- */
.page-intro {
  max-width: 760px;
  margin: 0 auto;
}

.page-intro h1 {
  text-wrap: balance;
  margin-bottom: var(--space-4);
}

.page-intro h2 {
  text-wrap: balance;
  margin-bottom: var(--space-4);
}

.page-intro p {
  margin-bottom: var(--space-4);
}

/* -----------------------------------
   25.16 Hero inner: tighten on desktop so booking widget does not crowd headline
   ----------------------------------- */
@media (min-width: 1024px) {
  .hero-inner {
    gap: 64px;
    align-items: end;
  }
}

@media (min-width: 1280px) {
  .hero-inner {
    gap: 96px;
  }
}

/* -----------------------------------
   25.17 General contrast safety nets
   ----------------------------------- */

/* Make sure inline strong/b/em are visible in either context */
.section-dark strong { color: var(--color-soft-white); }
.section-dark em { color: var(--color-soft-white); }

/* Bone bg sections (default): ensure paragraph and inline strong stay readable */
.section:not(.section-dark) strong { color: var(--color-obsidian); }
.section:not(.section-dark) p { color: var(--color-charcoal); }

/* Lists: explicit color in both contexts */
.section-dark ul li, .section-dark ol li { color: var(--color-soft-white); }
.section:not(.section-dark) ul li,
.section:not(.section-dark) ol li { color: var(--color-charcoal); }

/* Eyebrow stays champagne in both contexts (already set, just guarantee) */
.eyebrow { color: var(--color-champagne) !important; }

/* -----------------------------------
   25.18 Form labels and small text inside light-bg sections
   ----------------------------------- */
.field-label {
  color: var(--color-stone);
}

/* -----------------------------------
   25.19 Image safety: never overflow, never break layout
   ----------------------------------- */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* -----------------------------------
   25.20 Long text inputs on iOS: prevent zoom on focus
   ----------------------------------- */
@media (max-width: 767px) {
  .field-input, .field-select, input, select, textarea {
    font-size: 16px;
  }
}

/* -----------------------------------
   END section 25
   ----------------------------------- */

/* -----------------------------------
   26. Animation system
   - Respects prefers-reduced-motion
   - Reveal-on-scroll via [data-reveal] + IntersectionObserver in main.js
   - Hero entry animations fire on load
   ----------------------------------- */

@media (prefers-reduced-motion: no-preference) {

  /* --- Reveal-on-scroll: applied via Intersection Observer --- */
  [data-reveal] {
    opacity: 0;
    transform: translateY(28px);
    transition:
      opacity 700ms cubic-bezier(0.16, 1, 0.3, 1),
      transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
  }

  [data-reveal="fade"] { transform: none; }
  [data-reveal="left"] { transform: translateX(-28px); }
  [data-reveal="right"] { transform: translateX(28px); }
  [data-reveal="scale"] { transform: scale(0.96); }

  [data-reveal].is-revealed {
    opacity: 1;
    transform: none;
  }

  /* Stagger children when parent has data-reveal-stagger */
  [data-reveal-stagger] > * {
    opacity: 0;
    transform: translateY(20px);
    transition:
      opacity 600ms cubic-bezier(0.16, 1, 0.3, 1),
      transform 600ms cubic-bezier(0.16, 1, 0.3, 1);
  }
  [data-reveal-stagger].is-revealed > * { opacity: 1; transform: none; }
  [data-reveal-stagger].is-revealed > *:nth-child(1) { transition-delay: 0ms; }
  [data-reveal-stagger].is-revealed > *:nth-child(2) { transition-delay: 80ms; }
  [data-reveal-stagger].is-revealed > *:nth-child(3) { transition-delay: 160ms; }
  [data-reveal-stagger].is-revealed > *:nth-child(4) { transition-delay: 240ms; }
  [data-reveal-stagger].is-revealed > *:nth-child(5) { transition-delay: 320ms; }
  [data-reveal-stagger].is-revealed > *:nth-child(6) { transition-delay: 400ms; }
  [data-reveal-stagger].is-revealed > *:nth-child(7) { transition-delay: 480ms; }
  [data-reveal-stagger].is-revealed > *:nth-child(8) { transition-delay: 560ms; }

  /* --- Hero entry: fires on page load, no scroll trigger --- */
  @keyframes hero-rise {
    0% { opacity: 0; transform: translateY(24px); }
    100% { opacity: 1; transform: none; }
  }

  @keyframes hero-form-slide {
    0% { opacity: 0; transform: translateY(40px) scale(0.98); }
    100% { opacity: 1; transform: none; }
  }

  .hero-content .eyebrow,
  .hero-content h1,
  .hero-content > p,
  .hero-content .hero-actions {
    opacity: 0;
    animation: hero-rise 800ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
  }
  .hero-content .eyebrow { animation-delay: 100ms; }
  .hero-content h1 { animation-delay: 220ms; }
  .hero-content > p { animation-delay: 360ms; }
  .hero-content .hero-actions { animation-delay: 500ms; }

  .hero .booking-widget {
    opacity: 0;
    animation: hero-form-slide 900ms cubic-bezier(0.16, 1, 0.3, 1) 640ms forwards;
  }

  /* --- Hero background subtle zoom (Ken Burns effect) --- */
  @keyframes hero-bg-pan {
    0% { transform: scale(1.06) translateX(0); }
    100% { transform: scale(1.0) translateX(-1.5%); }
  }
  .hero-bg img {
    animation: hero-bg-pan 22s ease-out forwards;
  }

  /* --- Micro-interactions --- */

  /* Card lift on hover */
  .feature-block,
  .fleet-card,
  .service-card,
  .tier-card,
  .case-card {
    transition:
      transform 380ms cubic-bezier(0.16, 1, 0.3, 1),
      box-shadow 380ms cubic-bezier(0.16, 1, 0.3, 1),
      border-color 380ms cubic-bezier(0.16, 1, 0.3, 1);
  }

  .feature-block:hover,
  .fleet-card:hover,
  .service-card:hover,
  .tier-card:hover,
  .case-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px -18px rgba(0, 0, 0, 0.45);
  }

  /* Buttons: subtle press + brighten */
  .btn { transition: transform 180ms cubic-bezier(0.16, 1, 0.3, 1), background-color 180ms ease, color 180ms ease, border-color 180ms ease, box-shadow 220ms ease; }
  .btn:hover { transform: translateY(-1px); }
  .btn:active { transform: translateY(0); }
  .btn-primary:hover { box-shadow: 0 8px 20px -8px rgba(193, 154, 91, 0.55); }

  /* Underline grow on text links */
  a.text-champagne {
    position: relative;
    display: inline-block;
    transition: color 200ms ease;
  }
  a.text-champagne::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -2px;
    height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 360ms cubic-bezier(0.16, 1, 0.3, 1);
  }
  a.text-champagne:hover::after { transform: scaleX(1); }

  /* Image zoom inside card hover */
  .feature-block:hover img,
  .fleet-card:hover img,
  .service-card:hover img {
    transform: scale(1.03);
  }
  .feature-block img,
  .fleet-card img,
  .service-card img {
    transition: transform 800ms cubic-bezier(0.16, 1, 0.3, 1);
  }

  /* Eyebrow shimmer on reveal */
  .section .eyebrow,
  .page-intro .eyebrow {
    position: relative;
  }

  /* FAQ accordion smooth expand */
  .faq-answer {
    overflow: hidden;
    max-height: 0;
    transition: max-height 460ms cubic-bezier(0.16, 1, 0.3, 1), padding 360ms ease;
  }
  .faq-item[aria-expanded="true"] .faq-answer,
  .faq-item .faq-answer[aria-hidden="false"] {
    max-height: 800px;
  }
  .faq-question-toggle {
    transition: transform 380ms cubic-bezier(0.16, 1, 0.3, 1);
  }
  .faq-item[aria-expanded="true"] .faq-question-toggle,
  .faq-question[aria-expanded="true"] .faq-question-toggle {
    transform: rotate(180deg);
  }

  /* Trust strip number counter (counter animation handled in JS, this just sets up the visual) */
  .trust-metric-number {
    display: inline-block;
    transition: color 300ms ease;
  }

  /* Header scroll shadow */
  .site-header {
    transition: background-color 280ms ease, box-shadow 280ms ease, backdrop-filter 280ms ease;
  }
  .site-header.is-scrolled {
    box-shadow: 0 8px 28px -16px rgba(0, 0, 0, 0.45);
  }

  /* Smooth scroll for anchor links */
  html { scroll-behavior: smooth; }

  /* Form field focus animation */
  .field-input,
  .field-select {
    transition: border-color 240ms ease, outline 240ms ease, background-color 240ms ease, transform 200ms ease;
  }
  .field-input:focus,
  .field-select:focus {
    transform: translateY(-1px);
  }

  /* CTA banner subtle pull */
  .cta-banner {
    transition: background-color 360ms ease;
  }

  /* Dropdown menu in header: smooth open */
  .header-dropdown {
    opacity: 0;
    transform: translateY(-6px);
    pointer-events: none;
    transition: opacity 220ms ease, transform 220ms ease;
  }
  .header-nav-item.has-dropdown:hover .header-dropdown,
  .header-nav-item.has-dropdown:focus-within .header-dropdown {
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }
}

/* Reduced-motion users: skip animations entirely but keep final visual state */
@media (prefers-reduced-motion: reduce) {
  [data-reveal],
  [data-reveal-stagger] > *,
  .hero-content .eyebrow,
  .hero-content h1,
  .hero-content > p,
  .hero-content .hero-actions,
  .hero .booking-widget {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }
  .hero-bg img { animation: none !important; }
}

/* -----------------------------------
   END styles.css
   ----------------------------------- */
