:root {
  --dark-green-950: #061111;
  --dark-green-900: rgba(4, 12, 12, 0.68);
  --dark-green-700: #153b3c;
  --dark-green-500: rgba(21, 59, 60, 0.68);
  --dark-green-400: #446263;
  --olive-50: #f7f9f4;
  /* Quote wizard palette — repointed to the site's teal accent for a unified look */
  --luxury-gold: #446263;
  --luxury-gold-light: #5a8485;
  --luxury-dark: #153b3c;
  /* Light gold accent — used sparingly on eyebrow labels over dark sections */
  --gold-accent: #c5a880;
  --ivory: #fbfaf6;
  --line: rgba(13, 13, 13, 0.12);
  --text-black: #0d0d0d;
  --text-muted: #515856;
  --font-family-base: "Roboto", "Helvetica Neue", Arial, sans-serif;
  --font-display: "Jost", "Helvetica Neue", Arial, sans-serif;
  --type-h1-size: 56px;
  --type-h1-line: 72px;
  --type-h1-weight: 500;
  --type-h2-size: 40px;
  --type-h2-line: 52px;
  --type-h2-weight: 300;
  --type-h3-size: 24px;
  --type-h3-line: 36px;
  --type-h3-weight: 500;
  --type-body-large-size: 20px;
  --type-body-large-line: 28px;
  --type-body-large-weight: 400;
  --type-body-standard-size: 16px;
  --type-body-standard-line: 24px;
  --type-body-standard-weight: 400;
  --type-label-size: 14px;
  --type-label-line: 20px;
  --type-label-weight: 500;
  --type-label-tracking: 0.3px;
  --type-button-size: 16px;
  --type-button-line: 24px;
  --type-button-weight: 500;
  --type-button-tracking: 0.1px;
  --grid-columns: 12;
  --grid-max-width: 1200px;
  --grid-gutter: 24px;
  --grid-spotlight-gap: 48px;
  --grid-process-gap: 64px;
  --section-padding-block: 104px;
  --section-padding-inline: 32px;
  --section-heading-gap: 56px;
  --card-padding: 40px;
  --snazzy-land: #4d6059;
  --snazzy-road: #7f8d89;
  --snazzy-water: #24282b;
  --snazzy-water-edge: #2b3638;
  --snazzy-admin: #000000;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #ffffff;
  color: var(--text-black);
  font-family: var(--font-family-base);
}

/* ── Page loader — shows on initial load, then fades away ── */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--dark-green-950);
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

/* Splash exit — the mark zooms up and the panel fades to reveal the page */
.page-loader.is-done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.page-loader.is-done .page-loader__img {
  animation: none;
  transform: scale(3);
  opacity: 0;
  transition: transform 0.85s cubic-bezier(0.7, 0, 0.84, 0), opacity 0.7s ease;
}

.page-loader.is-done .page-loader__word,
.page-loader.is-done .page-loader__bar {
  opacity: 0;
  transition: opacity 0.4s ease;
}

.page-loader__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
}

.page-loader__img {
  width: clamp(130px, 24dvh, 190px);
  height: auto;
  animation: loaderPulse 1.6s ease-in-out infinite;
  will-change: transform, opacity;
}

.page-loader__word {
  font-size: 15px;
  letter-spacing: 14px;
  text-transform: uppercase;
  padding-left: 14px;
  color: rgba(255, 255, 255, 0.5);
  opacity: 0;
  animation: loaderFadeIn 0.9s ease forwards 0.25s;
}

.page-loader__bar {
  position: relative;
  width: 200px;
  height: 2px;
  margin-top: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.12);
}

.page-loader__fill {
  position: absolute;
  inset: 0;
  width: 45%;
  background: linear-gradient(90deg, transparent, var(--gold-accent), transparent);
  animation: loaderSweep 1.3s ease-in-out infinite;
}

@keyframes loaderPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.09); opacity: 0.82; }
}

@keyframes loaderFadeIn {
  to { opacity: 1; }
}

@keyframes loaderSweep {
  0% { transform: translateX(-160%); }
  100% { transform: translateX(360%); }
}

@media (prefers-reduced-motion: reduce) {
  .page-loader__img,
  .page-loader__fill { animation: none; }
  .page-loader.is-done .page-loader__img { transform: none; }
}

/* The booking wizard's global stylesheet applies `body { background: transparent }`,
   which exposes the browser's (OS-dependent) canvas behind the page and breaks the
   light trusted / FAQ / contact / footer sections on dark-mode systems. Re-assert the
   page's own white background with higher specificity so it renders consistently. */
html body {
  background-color: #ffffff;
  color: var(--text-black);
}

/* Freeze background page scroll while the quote popup is open. */
body.quote-modal-open {
  position: fixed;
  width: 100%;
  overflow: hidden;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 14px 32px;
  border-bottom: 0;
  /* Frosted glass */
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.54));
  backdrop-filter: blur(22px) saturate(180%);
  -webkit-backdrop-filter: blur(22px) saturate(180%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65),
              0 8px 28px rgba(13, 13, 13, 0.05);
  will-change: transform;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
              padding 0.3s ease,
              background 0.3s ease,
              box-shadow 0.3s ease;
}

/* Fancy gold gradient hairline along the bottom edge */
.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-accent), transparent);
  opacity: 0.4;
  transition: opacity 0.3s ease;
}

/* Condensed, lifted glass state once the page has scrolled past the hero edge */
.site-header.is-scrolled {
  padding-top: 9px;
  padding-bottom: 9px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.7));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75),
              0 10px 34px rgba(13, 13, 13, 0.12);
}

.site-header.is-scrolled::after {
  opacity: 0.7;
}

/* Slide the bar out of view when scrolling down, reveal it when scrolling up */
.site-header.is-hidden {
  transform: translateY(-100%);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}

.header-brand {
  display: flex;
  align-items: center;
  font-weight: 900;
}

.header-brand__img {
  display: block;
  height: 34px;
  width: auto;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.header-brand:hover .header-brand__img,
.header-brand:focus-visible .header-brand__img {
  transform: translateY(-1px) scale(1.04);
}

.site-header.is-scrolled .header-brand__img { height: 30px; }

.primary-nav {
  flex: 1;
  display: flex;
  justify-content: center;
  gap: 22px;
  color: var(--text-muted);
  font-size: var(--type-label-size);
  font-weight: var(--type-label-weight);
  line-height: var(--type-label-line);
  letter-spacing: var(--type-label-tracking);
}

.primary-nav a {
  position: relative;
  padding-bottom: 2px;
  transition: color 0.25s ease;
}

/* Animated gold underline that grows from the left on hover/focus */
.primary-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1.5px;
  background: var(--gold-accent);
  transition: width 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.primary-nav a:hover,
.primary-nav a:focus-visible {
  color: var(--dark-green-700);
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after {
  width: 100%;
}

/* Right-side cluster: phone-call icon, quote button, mobile menu toggle */
.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-left: auto;
}

/* Phone icon — a circular call button (tel: link) */
.header-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid var(--line);
  color: var(--dark-green-700);
  background: rgba(255, 255, 255, 0.4);
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.header-call:hover,
.header-call:focus-visible {
  background: var(--luxury-dark);
  border-color: var(--luxury-dark);
  color: #ffffff;
  transform: translateY(-1px);
}

/* Hamburger toggle — hidden on desktop, shown on small screens */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  padding: 0 11px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--text-black);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.2s ease;
}

/* Animate hamburger into an X when the menu is open */
.site-header.is-menu-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.site-header.is-menu-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}
.site-header.is-menu-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 0;
  padding: 12px 20px;
  cursor: pointer;
  font-size: var(--type-button-size);
  font-weight: var(--type-button-weight);
  line-height: var(--type-button-line);
  letter-spacing: var(--type-button-tracking);
  transition: background 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease, color 0.25s ease;
}

.button--primary,
.button--hero {
  background: var(--dark-green-700);
  color: #ffffff;
  font-weight: 600;
  box-shadow: 0 6px 18px rgba(21, 59, 60, 0.3);
}

.button--secondary {
  border: 1px solid currentColor;
  background: transparent;
  color: inherit;
}

.button:hover,
.button:focus-visible {
  background: #355253;
}

/* Primary/hero — solid green, lifts on hover (no gradient) */
.button--primary:hover,
.button--primary:focus-visible,
.button--hero:hover,
.button--hero:focus-visible {
  background: #1d5152;
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(21, 59, 60, 0.4);
  transform: translateY(-1px);
}

.button:disabled {
  cursor: default;
  opacity: 0.42;
}

.button:disabled:hover {
  background: var(--dark-green-400);
}

.button--secondary:hover,
.button--secondary:focus-visible {
  background: rgba(255, 255, 255, 0.12);
}

.home {
  min-height: 100vh;
  /* clip (not hidden) so .home doesn't become an internal scroll container */
  overflow-x: clip;
  /* Sits above the fixed reveal footer; the bottom margin opens the scroll
     space that progressively reveals the footer underneath. */
  position: relative;
  z-index: 1;
  background: var(--ivory);
  margin-bottom: var(--footer-h, 360px);
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 72vh;
  height: 72dvh;
  min-height: 560px;
  padding: clamp(16px, 2.5dvh, 40px) 20px;
  overflow: hidden;
  color: #ffffff;
  background: var(--dark-green-950);
}

.hero__bg {
  position: absolute;
  inset: -24px;
  z-index: 0;
  background-image: url("./assets/hero.webp");
  background-position: center 50%;
  background-size: cover;
  filter: blur(5px);
  transform: scale(1.06);
  will-change: transform;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(180deg, var(--dark-green-900), var(--dark-green-500));
}

#hero-canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hero__spotlight {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: radial-gradient(
    circle 420px at var(--spot-x, 50%) var(--spot-y, 150%),
    rgba(68, 98, 99, 0.22) 0%,
    rgba(111, 168, 170, 0.08) 40%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.5s ease;
}

.hero:hover .hero__spotlight {
  opacity: 1;
}

.hero__content {
  transition: transform 0.12s ease-out;
}

/* hero text stagger reveal — soft cinematic focus-pull */
.hero-anim {
  opacity: 0;
  transform: translateY(22px) scale(0.99);
  filter: blur(9px);
  animation: hero-in 1500ms cubic-bezier(0.2, 0.66, 0.2, 1) forwards;
  animation-delay: calc(1.4s + var(--ha, 0) * 0.22s);
  will-change: opacity, transform, filter;
}

@keyframes hero-in {
  to { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
}

/* the brand logo gets a slower, grander reveal */
.brand.hero-anim {
  transform: translateY(20px) scale(0.9);
  filter: blur(12px);
  animation-duration: 1850ms;
  animation-delay: 1.1s;
}

/* h1 word-mask reveal */
.hero-title-split {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0 0.28em;
  width: min(100%, 752px);
  margin: 0;
  font-size: var(--type-h1-size);
  font-weight: 200;
  line-height: var(--type-h1-line);
}

/* one-time gold light sweeping across the headline once it settles */
.hero-title-split::after {
  content: "";
  position: absolute;
  inset: -2px -8px;
  pointer-events: none;
  background: linear-gradient(100deg, transparent 38%, rgba(197, 168, 128, 0.22) 50%, transparent 62%);
  transform: translateX(-130%);
  animation: hero-shimmer 2.8s cubic-bezier(0.4, 0, 0.2, 1) 3.8s 1 forwards;
}

@keyframes hero-shimmer {
  to { transform: translateX(130%); }
}

.hero-word {
  display: inline-block;
  overflow: hidden;
  line-height: 1.15;
}

.hero-word span {
  display: inline-block;
  opacity: 0;
  transform: translateY(115%) skewY(5deg);
  filter: blur(5px);
  animation: word-rise 1.45s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: calc(1.65s + var(--wi, 0) * 0.3s);
}

@keyframes word-rise {
  0%   { opacity: 0; transform: translateY(115%) skewY(5deg); filter: blur(5px); }
  35%  { opacity: 1; }
  100% { opacity: 1; transform: translateY(0) skewY(0deg); filter: blur(0); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-anim,
  .brand.hero-anim,
  .hero-word span {
    animation: none;
    opacity: 1;
    transform: none;
    filter: none;
  }
  .hero-title-split::after { animation: none; display: none; }
}

.hero__content {
  position: relative;
  z-index: 3;
  display: flex;
  width: min(100%, 1118px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: clamp(10px, 1.8dvh, 22px);
}

.brand {
  display: flex;
  width: auto;
  flex-direction: column;
  align-items: center;
  line-height: 1;
  text-transform: uppercase;
}

.brand__img {
  display: block;
  width: clamp(104px, 15dvh, 150px);
  height: auto;
}

.brand__tagline {
  margin-top: clamp(5px, 0.7dvh, 9px);
  font-size: clamp(7px, 0.75dvh, 10px);
  font-weight: 300;
  letter-spacing: clamp(4px, 1.2dvh, 10px);
  color: rgba(255, 255, 255, 0.74);
}

.hero__eyebrow,
.section__eyebrow {
  margin: 0 0 14px;
  color: var(--dark-green-400);
  font-size: 12px;
  font-weight: 500;
  line-height: var(--type-label-line);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hero__eyebrow {
  margin-top: clamp(14px, 2.4dvh, 28px);
  padding-top: clamp(12px, 1.8dvh, 22px);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--gold-accent);
  font-size: 12px;
  letter-spacing: 2.5px;
}

.hero h1 {
  width: min(100%, 700px);
  margin: clamp(6px, 1dvh, 12px) 0 0;
  font-size: clamp(22px, 3.2dvh, 42px);
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: 0;
  color: rgba(255, 255, 255, 0.95);
}

.hero__subhead {
  margin: clamp(4px, 0.7dvh, 10px) 0 0;
  font-size: clamp(12px, 1.4dvh, 16px);
  font-weight: 300;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.72);
}

.hero__cta {
  margin-top: clamp(14px, 2dvh, 28px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: min(100%, 320px);
}

/* stacked CTAs share one width so they line up cleanly */
.hero__cta .button {
  width: 100%;
}

/* "Book with chat" — gold-outlined ghost that ties to the concierge accent */
.button--hero-ghost {
  gap: 9px;
  background: rgba(255, 255, 255, 0.04);
  color: #ffffff;
  border: 1px solid rgba(197, 168, 128, 0.55);
  backdrop-filter: blur(4px);
}

.button--hero-ghost svg {
  width: 18px;
  height: 18px;
  color: var(--gold, #c5a880);
}

.button--hero-ghost:hover,
.button--hero-ghost:focus-visible {
  background: rgba(197, 168, 128, 0.16);
  border-color: #c5a880;
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(6, 17, 17, 0.35);
  transform: translateY(-1px);
}

/* "AI" cue: a slow gold shimmer sweeps across the button to signal it's live */
.button--hero-ghost {
  position: relative;
  overflow: hidden;
}

.button--hero-ghost::after {
  content: "";
  position: absolute;
  top: 0;
  left: -70%;
  width: 55%;
  height: 100%;
  pointer-events: none;
  background: linear-gradient(100deg, transparent, rgba(197, 168, 128, 0.32), transparent);
  transform: skewX(-18deg);
  animation: ai-shimmer 4.5s ease-in-out infinite;
}

@keyframes ai-shimmer {
  0% { left: -70%; }
  30%, 100% { left: 140%; }
}

/* multi-sparkle AI glyph (replaces the chat icon) — staggered twinkle +
   a breathing gold glow so the effect reads clearly on tablet & desktop too */
.button--hero-ghost .ai-cluster {
  width: 32px;
  height: 32px;
  color: var(--gold, #c5a880);
  animation: ai-cluster-glow 3s ease-in-out infinite;
}

.button--hero-ghost .ai-cluster .spk-1 { animation: ai-twinkle 2.4s ease-in-out infinite; }
.button--hero-ghost .ai-cluster .spk-2 { opacity: 0.6; animation: ai-twinkle 2.4s ease-in-out 0.55s infinite; }
.button--hero-ghost .ai-cluster .spk-3 { opacity: 0.45; animation: ai-twinkle 2.4s ease-in-out 1.1s infinite; }

@keyframes ai-twinkle {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

@keyframes ai-cluster-glow {
  0%, 100% { filter: drop-shadow(0 0 0 rgba(197, 168, 128, 0)); }
  50% { filter: drop-shadow(0 0 5px rgba(197, 168, 128, 0.7)); }
}

@media (prefers-reduced-motion: reduce) {
  .button--hero-ghost::after,
  .button--hero-ghost .ai-cluster,
  .button--hero-ghost .ai-cluster .spk-1,
  .button--hero-ghost .ai-cluster .spk-2,
  .button--hero-ghost .ai-cluster .spk-3 {
    animation: none;
  }
}

.section,
.quote-section {
  padding: var(--section-padding-block) var(--section-padding-inline);
}

.section--tint {
  background: var(--olive-50);
}

.section--dark {
  background: var(--dark-green-950);
  color: #ffffff;
}

.section--dark .section__eyebrow,
.section--dark p {
  color: rgba(255, 255, 255, 0.72);
}

.section__heading {
  width: min(100%, var(--grid-max-width));
  margin: 0 auto var(--section-heading-gap);
  text-align: center;
}

/* ── Services Showcase ── */
.services-section {
  background: var(--dark-green-950);
  color: #ffffff;
  padding: var(--section-padding-block) var(--section-padding-inline);
}

.services-section .section__eyebrow {
  color: var(--dark-green-400);
}

.services-section__inner {
  width: min(100%, var(--grid-max-width));
  margin: 0 auto;
}

.services-section__head {
  text-align: center;
  margin-bottom: 40px;
}

.services-section__head h2 {
  color: #ffffff;
  font-weight: 300;
}

.services-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.9fr);
  gap: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.services-tabs {
  display: flex;
  flex-direction: column;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.service-tab {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 32px 28px;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: transparent;
  color: rgba(255, 255, 255, 0.45);
  text-align: left;
  cursor: pointer;
  transition: background 300ms ease, color 300ms ease;
}

.service-tab:last-child {
  border-bottom: none;
}

.service-tab:hover {
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.7);
}

.service-tab.is-active {
  background: rgba(68, 98, 99, 0.15);
  color: #ffffff;
}

.service-tab__num {
  font-size: 28px;
  font-weight: 200;
  line-height: 1;
  letter-spacing: -1px;
  flex-shrink: 0;
  color: inherit;
  transition: color 300ms ease;
}

.service-tab.is-active .service-tab__num {
  color: var(--dark-green-400);
}

.service-tab__body {
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex: 1;
}

.service-tab__name {
  font-size: 17px;
  font-weight: 500;
  line-height: 1.2;
  color: inherit;
}

.service-tab__sub {
  font-size: 12px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.38);
  letter-spacing: 0.2px;
}

.service-tab.is-active .service-tab__sub {
  color: rgba(255, 255, 255, 0.55);
}

.service-tab__arrow {
  font-size: 16px;
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 250ms ease, transform 250ms ease;
  flex-shrink: 0;
}

.service-tab.is-active .service-tab__arrow,
.service-tab:hover .service-tab__arrow {
  opacity: 1;
  transform: translateX(0);
}

.services-panel {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  background: var(--dark-green-700);
}

.services-panel__item {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 500ms ease;
  pointer-events: none;
}

.services-panel__item.is-active {
  opacity: 1;
  pointer-events: auto;
}

.services-panel__item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 600ms ease;
}

.services-panel__item.is-active img {
  transform: scale(1.0);
}

.services-panel__item img {
  transform: scale(1.04);
}

.services-panel__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 14px;
  padding: 40px;
  background: linear-gradient(180deg, transparent 30%, rgba(4, 12, 12, 0.92) 100%);
}

.services-panel__overlay .section__eyebrow {
  color: var(--dark-green-400);
}

.services-panel__overlay p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  line-height: 25px;
  max-width: 480px;
}

.services-panel__overlay .button {
  align-self: flex-start;
  margin-top: 4px;
}

h2,
.section__heading h2,
.why-section h2,
.trusted-section h2,
.proof-section h2,
.contact-section h2,
.services-section__head h2,
.group-size-section__heading h2,
.fleet-section__header h2 {
  margin: 0;
  font-size: var(--type-h2-size);
  font-weight: var(--type-h2-weight);
  line-height: var(--type-h2-line);
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: var(--type-h3-size);
  font-weight: var(--type-h3-weight);
  line-height: var(--type-h3-line);
  letter-spacing: 0;
}

p {
  font-size: var(--type-body-standard-size);
  font-weight: var(--type-body-standard-weight);
  line-height: var(--type-body-standard-line);
}

.card-grid {
  display: grid;
  gap: var(--grid-gutter);
  width: min(100%, var(--grid-max-width));
  margin: 0 auto;
}

.card-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card-grid--four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.media-card,
.text-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  background: var(--olive-50);
}

.media-card img {
  display: block;
  width: 100%;
  aspect-ratio: 533 / 252;
  object-fit: cover;
  object-position: center;
}

.media-card__body,
.text-card {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: var(--card-padding);
}

.media-card p,
.text-card p {
  margin: 0;
  color: var(--text-muted);
}

.media-card a,
.text-card a {
  margin-top: auto;
  font-size: var(--type-label-size);
  font-weight: var(--type-label-weight);
  line-height: var(--type-label-line);
  letter-spacing: var(--type-label-tracking);
}

.media-card a:hover,
.text-card a:hover,
.media-card a:focus-visible,
.text-card a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* 4-column horizontal row */
.occasions-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(100%, var(--grid-max-width));
  margin: 0 auto;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(6, 17, 17, 0.14);
}

.occasion-spotlight {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  background: var(--dark-green-950);
  color: #ffffff;
}

.occasion-spotlight img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 700ms ease;
}

.occasion-spotlight::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 17, 17, 0.12) 0%, rgba(6, 17, 17, 0.86) 100%),
    linear-gradient(120deg, rgba(21, 59, 60, 0.82) 0%, rgba(21, 59, 60, 0.12) 56%, rgba(6, 17, 17, 0.72) 100%);
  content: "";
}

.occasion-spotlight:hover img {
  transform: scale(1);
}

.occasion-spotlight__content {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 720px;
  flex-direction: column;
  justify-content: flex-end;
  gap: 20px;
  padding: 48px;
}

.occasion-spotlight__label,
.occasion-card__tag,
.occasion-card__index,
.occasion-card__details dt {
  font-size: var(--type-label-size);
  font-weight: var(--type-label-weight);
  line-height: var(--type-label-line);
  letter-spacing: var(--type-label-tracking);
}

.occasion-spotlight__label {
  color: rgba(255, 255, 255, 0.72);
  text-transform: uppercase;
}

.occasion-spotlight__content h3 {
  max-width: 520px;
  color: #ffffff;
  font-size: 32px;
  line-height: 44px;
}

.occasion-spotlight__content p {
  max-width: 460px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.occasion-spotlight__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 6px;
}

.occasion-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

/* 4-column row layout for stacked variant */
.occasion-list--row {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

/* image-backed occasion cards with hover reveal */
/* ── Occasion Cards — photo-forward, 4-column row ── */
.occasion-card {
  position: relative;
  min-height: 540px;
  min-width: 0;
  overflow: hidden;
  color: #ffffff;
  cursor: pointer;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.occasion-card:last-child { border-right: none; }

.occasion-card__image-bg {
  position: absolute;
  inset: 0;
  background-image: var(--occ-img);
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  filter: brightness(0.88);
  transition: transform 900ms cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 500ms ease;
}

.occasion-card:hover .occasion-card__image-bg {
  transform: scale(1.0);
  filter: brightness(0.48);
}

.occasion-card__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 540px;
  padding: 24px 24px 28px;
  background: linear-gradient(180deg, transparent 42%, rgba(6,17,17,0.78) 72%, rgba(6,17,17,0.96) 100%);
  transition: background 500ms ease;
}

.occasion-card:hover .occasion-card__inner {
  background: linear-gradient(180deg, transparent 0%, rgba(6,17,17,0.52) 40%, rgba(6,17,17,0.97) 100%);
}

/* index + tag pinned to top */
.occasion-card__top {
  position: absolute;
  top: 20px; left: 20px; right: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.occasion-card__index {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.65);
}

.occasion-card__tag {
  padding: 3px 9px;
  border: 1px solid rgba(255,255,255,0.3);
  background: rgba(6,17,17,0.5);
  backdrop-filter: blur(6px);
  color: rgba(255,255,255,0.85);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

/* title always visible at bottom */
.occasion-card h3 {
  font-size: 22px;
  font-weight: 300;
  line-height: 1.25;
  letter-spacing: -0.1px;
  color: #ffffff;
  margin: 0 0 6px;
}

/* reveal block: slides up on hover */
.occasion-card__reveal {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(6px);
  transition:
    max-height 460ms cubic-bezier(0.16, 1, 0.3, 1),
    opacity 360ms ease 80ms,
    transform 360ms ease 80ms;
}

.occasion-card:hover .occasion-card__reveal {
  max-height: 380px;
  opacity: 1;
  transform: translateY(0);
}

.occasion-card p {
  margin: 0;
  color: rgba(255,255,255,0.74);
  font-size: 16px;
  line-height: 23px;
}

.occasion-card__details {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.occasion-card__details div {
  display: flex;
  gap: 10px;
  padding: 7px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 13.5px;
}

.occasion-card__details dt {
  color: rgba(255,255,255,0.38);
  font-weight: 400;
  font-size: 16px;
  min-width: 56px;
  flex-shrink: 0;
}

.occasion-card__details dd {
  margin: 0;
  color: rgba(255,255,255,0.82);
}

.occasion-card__cta {
  align-self: flex-start;
  padding: 8px 16px;
  border: 1px solid rgba(255,255,255,0.3);
  background: transparent;
  color: rgba(255,255,255,0.75);
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.8px;
  transition: border-color 250ms ease, color 250ms ease, background 250ms ease;
}

.occasion-card:hover .occasion-card__cta,
.occasion-card__cta:hover {
  border-color: rgba(255,255,255,0.65);
  color: #ffffff;
  background: rgba(255,255,255,0.08);
}

/* ── Group Size Section ── */
.group-size-section {
  background: var(--ivory);
  color: var(--text-black);
  padding: var(--section-padding-block) var(--section-padding-inline);
}

.group-size-section__heading {
  width: min(100%, var(--grid-max-width));
  margin: 0 auto 48px;
  text-align: center;
}

.group-size-section__heading .section__eyebrow {
  color: var(--dark-green-400);
}

.group-size-section__heading h2 {
  color: var(--dark-green-700);
  font-weight: 300;
}

.group-tier-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(100%, var(--grid-max-width));
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.group-tier {
  display: flex;
  flex-direction: column;
  padding: 40px 32px 36px;
  border-right: 1px solid var(--line);
  position: relative;
  transition: background 350ms ease;
  overflow: hidden;
}

.group-tier:last-child {
  border-right: none;
}

.group-tier::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--dark-green-400), transparent);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 600ms ease var(--delay, 0ms);
}

.group-tier.is-visible::before {
  transform: scaleX(1);
}

.group-tier:hover {
  background: rgba(68, 98, 99, 0.08);
}

/* Vehicle "icon" per tier — black render on the light section, grounded by a
   soft drop-shadow on the image itself. */
.group-tier__iconwrap {
  height: 116px;
  margin-bottom: 24px;
}
.group-tier__iconwrap {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.group-tier__icon {
  display: block;
  width: auto;
  height: 100%;
  max-width: 100%;
  /* black render now sits on the light section — soft shadow grounds it */
  filter: drop-shadow(0 12px 18px rgba(0, 0, 0, 0.18));
}

.group-tier__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 32px;
}

.group-tier__category {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.group-tier__badge {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.5px;
  padding: 3px 8px;
  border: 1px solid rgba(68, 98, 99, 0.5);
  color: var(--dark-green-400);
  background: rgba(68, 98, 99, 0.12);
  white-space: nowrap;
}

.group-tier__range {
  display: block;
  font-size: clamp(56px, 6vw, 88px);
  font-weight: 200;
  line-height: 1;
  letter-spacing: -3px;
  color: var(--text-black);
}

.group-tier__unit {
  display: block;
  margin-top: 6px;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.group-tier__desc {
  margin: 28px 0 0;
  font-size: 16px;
  line-height: 24px;
  color: var(--text-muted);
  flex: 1;
}

.group-tier__cta {
  align-self: flex-start;
  margin-top: 28px;
  padding: 10px 20px;
  border: 1px solid rgba(68, 98, 99, 0.5);
  background: transparent;
  color: var(--dark-green-700);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.8px;
  cursor: pointer;
  transition: border-color 250ms ease, color 250ms ease, background 250ms ease;
}

.group-tier:hover .group-tier__cta,
.group-tier__cta:hover {
  border-color: var(--dark-green-700);
  color: var(--dark-green-700);
  background: rgba(68, 98, 99, 0.12);
}

.text-card__label {
  color: var(--dark-green-400) !important;
  font-size: var(--type-label-size);
  font-weight: var(--type-label-weight);
  line-height: var(--type-label-line);
  letter-spacing: var(--type-label-tracking);
}

.text-card--dark {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
}

.text-card--dark p {
  color: rgba(255, 255, 255, 0.72);
}

.fleet-section {
  background: var(--dark-green-950);
  color: #ffffff;
}

.fleet-section__header {
  width: min(100%, var(--grid-max-width));
  margin: 0 auto;
  padding: var(--section-padding-block) var(--section-padding-inline) 64px;
  text-align: center;
}

.fleet-section__header .section__eyebrow {
  color: rgba(255, 255, 255, 0.6);
}

.fleet-strip {
  display: grid;
  grid-template-columns: 55fr 45fr;
  min-height: 420px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.fleet-strip--reverse {
  grid-template-columns: 45fr 55fr;
  direction: rtl;
}

.fleet-strip--reverse > * {
  direction: ltr;
}

.fleet-strip__image {
  overflow: hidden;
}

.fleet-strip__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 600ms ease;
}

.fleet-strip:hover .fleet-strip__image img {
  transform: scale(1.04);
}

.fleet-strip__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  padding: 56px clamp(32px, 5vw, 72px);
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.fleet-strip--reverse .fleet-strip__content {
  border-left: none;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.fleet-strip__index {
  display: block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  color: var(--dark-green-400);
  text-transform: uppercase;
}

.fleet-strip__content h3 {
  font-size: 32px;
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: -0.2px;
}

.fleet-strip__content p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: var(--type-body-standard-size);
  line-height: 26px;
  max-width: 400px;
}

.fleet-strip__specs {
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.fleet-strip__specs li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: var(--type-label-size);
  color: rgba(255, 255, 255, 0.86);
}

.fleet-strip__specs li span {
  color: rgba(255, 255, 255, 0.4);
  font-weight: 400;
}

.fleet-section__footer {
  display: flex;
  justify-content: center;
  padding: 56px var(--section-padding-inline);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.why-section {
  position: relative;
  isolation: isolate;
  width: 100%;
  margin: 0;
  padding: 120px var(--section-padding-inline);
  overflow: hidden;
  color: #ffffff;
  background-image: url("./assets/service-card.webp");
  background-position: center 42%;
  background-size: cover;
}

.why-section::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: inherit;
  content: "";
  transform: scale(1.04);
}

.why-section::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(105deg, rgba(4, 12, 12, 0.96) 0%, rgba(4, 12, 12, 0.82) 45%, rgba(4, 12, 12, 0.55) 100%);
  content: "";
}

.why-section__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.6fr);
  gap: 80px;
  align-items: start;
  width: min(100%, var(--grid-max-width));
  margin: 0 auto;
}

.why-section__heading {
  position: sticky;
  top: 100px;
  padding-top: 8px;
}

.why-section__heading h2 {
  font-size: 40px;
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: -0.3px;
  margin-top: 14px;
}

.why-section__sub {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 16px;
  line-height: 26px;
  max-width: 320px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  padding: 0;
  margin: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.why-item {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 36px 32px 32px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  transition: background 400ms ease;
  overflow: hidden;
}

.why-item::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--dark-green-400), transparent);
  content: "";
  transition: width 500ms ease var(--delay, 0ms);
}

.why-item.is-visible::before {
  width: 100%;
}

.why-item:hover {
  background: rgba(68, 98, 99, 0.08);
}

.why-item__index {
  display: block;
  font-size: 36px;
  font-weight: 200;
  line-height: 1;
  letter-spacing: -1px;
  color: rgba(68, 98, 99, 0.55);
  transition: color 300ms ease;
}

.why-item:hover .why-item__index {
  color: rgba(111, 168, 170, 0.8);
}

.why-item__label {
  display: block;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.1px;
}

.why-item__line {
  display: none;
}

.trusted-section {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--grid-spotlight-gap);
  align-items: center;
  padding: 112px var(--section-padding-inline);
  width: min(100%, var(--grid-max-width));
  margin: 0 auto;
}

.why-section .section__eyebrow {
  color: rgba(255, 255, 255, 0.76);
}

.trusted-section p {
  color: var(--text-muted);
}

.trusted-section__content p {
  margin: 28px 0 0;
  max-width: 560px;
  font-size: var(--type-body-large-size);
  line-height: var(--type-body-large-line);
}

.trusted-section__media {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  background: var(--dark-green-950);
}

.trusted-slider__slide {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 700ms ease, transform 1100ms ease;
}

.trusted-slider__slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.trusted-slider::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(4, 12, 12, 0.02), rgba(4, 12, 12, 0.28)),
    linear-gradient(90deg, rgba(21, 59, 60, 0.3), rgba(21, 59, 60, 0));
  content: "";
}

.trusted-slider__wash {
  position: absolute;
  inset: -20%;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 50%, rgba(247, 249, 244, 0.26), transparent 12%),
    linear-gradient(105deg, transparent 0 36%, rgba(247, 249, 244, 0.28) 43%, rgba(68, 98, 99, 0.32) 52%, transparent 64%);
  opacity: 0;
  transform: translateX(-45%) rotate(8deg);
}

.trusted-slider.is-splashing .trusted-slider__wash {
  animation: trusted-splash 850ms ease;
}

@keyframes trusted-splash {
  0% {
    opacity: 0;
    transform: translateX(-45%) rotate(8deg);
  }
  30% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateX(45%) rotate(8deg);
  }
}

.trusted-slider__dots {
  position: absolute;
  right: 24px;
  bottom: 24px;
  z-index: 2;
  display: flex;
  gap: 10px;
}

.trusted-slider__dots button {
  position: relative;
  width: 32px;
  height: 26px;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
}

.trusted-slider__dots button::after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  left: 0;
  height: 4px;
  background: rgba(255, 255, 255, 0.38);
  content: "";
}

.trusted-slider__dots button.is-active::after,
.trusted-slider__dots button:hover::after,
.trusted-slider__dots button:focus-visible::after {
  background: #ffffff;
}

.trust-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 40px;
}

.trust-points span {
  border-top: 1px solid var(--line);
  padding-top: 12px;
  color: var(--dark-green-700);
  font-size: var(--type-label-size);
  font-weight: var(--type-label-weight);
  line-height: var(--type-label-line);
  letter-spacing: var(--type-label-tracking);
}

/* scroll-reveal */
.reveal-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 600ms ease var(--delay, 0ms), transform 600ms ease var(--delay, 0ms);
}

.reveal-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.quote-section {
  background: var(--ivory);
  padding: var(--section-padding-block) var(--section-padding-inline);
}

.quote-layout {
  display: grid;
  grid-template-columns: minmax(0, 4fr) minmax(0, 7fr);
  gap: 0;
  width: min(100%, var(--grid-max-width));
  margin: 0 auto;
  align-items: stretch;
  box-shadow: 0 24px 64px rgba(6, 17, 17, 0.1);
}

.quote-slider {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  background: var(--dark-green-950);
  color: #ffffff;
}

.quote-slider__track,
.quote-slider__slide {
  position: absolute;
  inset: 0;
}

.quote-slider__slide {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 240ms ease;
}

.quote-slider__slide.is-active {
  opacity: 1;
}

.quote-slider::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(4, 12, 12, 0.24), rgba(4, 12, 12, 0.78)),
    linear-gradient(90deg, rgba(21, 59, 60, 0.5), rgba(21, 59, 60, 0.08));
  content: "";
}

.quote-slider__content {
  position: absolute;
  right: 32px;
  bottom: 72px;
  left: 32px;
  z-index: 1;
}

.quote-slider__content .section__eyebrow {
  color: rgba(255, 255, 255, 0.74);
}

.quote-slider__content h3 {
  max-width: 420px;
}

.quote-slider__dots {
  position: absolute;
  right: 32px;
  bottom: 32px;
  left: 32px;
  z-index: 1;
  display: flex;
  gap: 10px;
}

.quote-slider__dots button {
  position: relative;
  z-index: 2;
  width: 34px;
  height: 26px;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
}

.quote-slider__dots button::after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  left: 0;
  height: 4px;
  background: rgba(255, 255, 255, 0.36);
  content: "";
}

.quote-slider__dots button.is-active,
.quote-slider__dots button:hover,
.quote-slider__dots button:focus-visible {
  background: transparent;
}

.quote-slider__dots button.is-active::after,
.quote-slider__dots button:hover::after,
.quote-slider__dots button:focus-visible::after {
  background: #ffffff;
}

/* ── Rate Toggle ── */
.qf__rate-toggle {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--line);
}

.qf__rate-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  padding: 16px 20px;
  border: none;
  border-right: 1px solid var(--line);
  background: var(--ivory);
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.2px;
  cursor: pointer;
  transition: background 200ms ease, color 200ms ease;
  justify-content: center;
}

.qf__rate-btn:last-of-type {
  border-right: none;
}

.qf__rate-btn svg {
  flex-shrink: 0;
  opacity: 0.5;
  transition: opacity 200ms ease;
}

.qf__rate-btn:hover {
  background: #ffffff;
  color: var(--text-black);
}

.qf__rate-btn.is-active {
  background: var(--luxury-dark);
  color: #ffffff;
}

.qf__rate-btn.is-active svg {
  opacity: 1;
}

/* Hidden field utility */
.qf__field--hidden {
  display: none !important;
}

/* ── Quote Form Component (qf) ── */
.qf {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: #ffffff;
  padding: 0;
}

.qf__header {
  padding: 40px 44px 32px;
  border-bottom: 1px solid var(--line);
}

.qf__header .section__eyebrow {
  color: var(--luxury-gold);
}

.qf__header h2 {
  font-size: 28px;
  font-weight: 300;
  letter-spacing: -0.3px;
  margin: 8px 0 10px;
}

.qf__subtitle {
  margin: 0;
  font-size: 15px;
  line-height: 23px;
  color: var(--text-muted);
}

.qf__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  padding: 0 44px;
}

.qf__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  padding-right: 24px;
}

.qf__field:nth-child(even) {
  padding-right: 0;
  padding-left: 24px;
  border-left: 1px solid var(--line);
}

.qf__field--wide {
  grid-column: 1 / -1;
  padding-right: 0;
  border-left: none;
}

.qf__label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
  user-select: none;
}

.qf__req {
  color: var(--luxury-gold);
  font-size: 14px;
  line-height: 1;
}

.qf__optional {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.3px;
  text-transform: none;
  color: rgba(81, 88, 86, 0.55);
  border: 1px solid var(--line);
  padding: 1px 6px;
  border-radius: 3px;
}

/* Input wrap */
.qf__input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.qf__input-wrap--icon .qf__input {
  padding-left: 40px;
}

.qf__field-icon {
  position: absolute;
  left: 12px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  pointer-events: none;
  transition: color 200ms ease;
}

.qf__field:focus-within .qf__field-icon {
  color: var(--luxury-gold);
}

/* Base input */
.qf__input {
  width: 100%;
  border: 1.5px solid var(--line);
  border-radius: 0;
  padding: 13px 40px 13px 16px;
  background: var(--ivory);
  color: var(--text-black);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.4;
  outline: none;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
  -webkit-appearance: none;
  appearance: none;
}

.qf__input-wrap--icon .qf__input { padding-left: 40px; }

.qf__input::placeholder {
  color: rgba(81, 88, 86, 0.45);
}

.qf__input:hover {
  border-color: rgba(21, 59, 60, 0.35);
  background: #ffffff;
}

.qf__input:focus {
  border-color: var(--luxury-gold);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(197, 168, 128, 0.18);
}

/* Select */
.qf__select {
  cursor: pointer;
  padding-right: 44px;
}

/* placeholder option — match text input placeholder color */
.qf__select option[value=""] {
  color: rgba(81, 88, 86, 0.55);
}

/* when no value selected, style the select itself like a placeholder */
.qf__select:invalid,
.qf__select:has(option[value=""]:checked) {
  color: rgba(81, 88, 86, 0.45);
}

/* restore color when an actual value is selected */
.qf__select option:not([value=""]) {
  color: var(--text-black);
  background: #ffffff;
}

.qf__input-wrap--select .qf__chevron {
  position: absolute;
  right: 14px;
  color: var(--text-muted);
  pointer-events: none;
  transition: color 180ms ease, transform 180ms ease;
}

.qf__field:focus-within .qf__chevron {
  color: var(--luxury-gold);
}

.qf__address-control {
  position: relative;
  display: grid;
  gap: 8px;
}

.qf__input-wrap--address .qf__input {
  padding-right: 102px;
}

.qf__input-wrap--address .qf__status-icon {
  right: 82px;
}

.qf__lookup-status {
  position: absolute;
  right: 12px;
  display: inline-flex;
  min-width: 58px;
  min-height: 26px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(21, 59, 60, 0.14);
  background: #ffffff;
  color: rgba(81, 88, 86, 0.62);
  font-size: 11px;
  font-weight: 600;
  line-height: 14px;
  letter-spacing: 0.2px;
  text-transform: uppercase;
}

.qf__address-control.is-searching .qf__lookup-status {
  color: var(--dark-green-700);
}

.qf__address-control.is-confirmed .qf__lookup-status {
  border-color: rgba(68, 98, 99, 0.28);
  background: rgba(68, 98, 99, 0.1);
  color: var(--dark-green-700);
}

.qf__address-suggestions {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  left: 0;
  z-index: 20;
  display: grid;
  max-height: 190px;
  overflow: auto;
  margin: 0;
  padding: 0;
  border: 1px solid rgba(21, 59, 60, 0.16);
  background: #ffffff;
  box-shadow: 0 18px 42px rgba(6, 17, 17, 0.16);
  list-style: none;
}

.qf__address-suggestions[hidden] {
  display: none;
}

.qf__address-suggestions button {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: #ffffff;
  color: var(--text-black);
  cursor: pointer;
  padding: 10px 12px;
  text-align: left;
  font-size: 13px;
  line-height: 18px;
}

.qf__address-suggestions button:hover,
.qf__address-suggestions button:focus-visible {
  background: var(--ivory);
}

.qf__lookup-note {
  margin: 0;
  color: rgba(81, 88, 86, 0.68);
  font-size: 12px;
  line-height: 18px;
}

.qf__stop-list {
  display: grid;
  gap: 8px;
}

.qf__stop-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 34px;
  gap: 8px;
}

.qf__remove-stop,
.qf__add-stop {
  border: 1px solid rgba(21, 59, 60, 0.16);
  background: #ffffff;
  color: var(--dark-green-700);
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
  line-height: 18px;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, opacity 180ms ease;
}

.qf__add-stop {
  justify-self: start;
  min-height: 34px;
  padding: 7px 12px;
}

.qf__remove-stop {
  min-height: 42px;
}

.qf__remove-stop:hover,
.qf__remove-stop:focus-visible,
.qf__add-stop:hover,
.qf__add-stop:focus-visible {
  border-color: rgba(68, 98, 99, 0.38);
  background: var(--ivory);
  color: var(--text-black);
}

/* ── Custom Date Picker ── */
.qf__picker-wrap {
  position: relative;
  z-index: 10;
}

.qf__picker-wrap:focus-within,
.qf__picker-wrap:has(.is-open) {
  z-index: 9998;
}

.qf__picker-btn {
  text-align: left;
  cursor: pointer;
  background: var(--ivory);
  border: 1.5px solid var(--line);
  width: 100%;
  padding: 13px 40px 13px 40px;
  font-size: 15px;
  font-weight: 400;
  color: var(--text-black);
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.qf__picker-btn:hover {
  border-color: rgba(21, 59, 60, 0.35);
  background: #ffffff;
}

.qf__picker-btn:focus,
.qf__picker-btn[aria-expanded="true"] {
  border-color: var(--luxury-gold);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(197, 168, 128, 0.18);
  outline: none;
}

.qf__picker-placeholder {
  color: rgba(81, 88, 86, 0.45);
}

/* ── Calendar — light theme, matches booking wizard ── */
.dp {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  z-index: 9999;
  width: 292px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(13, 13, 13, 0.12);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18), 0 4px 14px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transform: translateY(-4px);
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

/* Gradient decoration */
.dp::before {
  content: "";
  display: block;
  height: 4px;
  background: linear-gradient(to right, var(--luxury-gold), var(--luxury-gold-light), var(--luxury-dark));
}

.dp.is-open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.dp__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px 12px;
  border-bottom: 1px solid rgba(13, 13, 13, 0.08);
}

.dp__nav-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(13, 13, 13, 0.12);
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  transition: border-color 150ms ease, color 150ms ease, background 150ms ease;
}

.dp__nav-btn:hover {
  border-color: var(--luxury-gold);
  color: var(--luxury-dark);
  background: rgba(197, 168, 128, 0.12);
}

.dp__month-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--luxury-dark);
}

.dp__weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  padding: 10px 12px 4px;
  gap: 2px;
}

.dp__weekdays span {
  text-align: center;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(13, 13, 13, 0.35);
}

.dp__days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  padding: 4px 12px 14px;
}

.dp__day {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 1;
  border: 1px solid transparent;
  background: transparent;
  font-size: 13px;
  font-weight: 400;
  color: rgba(13, 13, 13, 0.78);
  cursor: pointer;
  transition: background 120ms ease, color 120ms ease, border-color 120ms ease;
}

.dp__day:hover:not(:disabled) {
  background: rgba(13, 13, 13, 0.06);
  color: var(--text-black);
}

.dp__day.is-today {
  font-weight: 600;
  color: var(--luxury-dark);
  border-color: var(--luxury-gold);
}

.dp__day.is-selected {
  background: var(--luxury-dark);
  color: #ffffff;
  font-weight: 600;
  border-color: var(--luxury-dark);
}

.dp__day.is-selected:hover {
  background: var(--luxury-dark);
  color: #ffffff;
}

.dp__day:disabled {
  color: rgba(13, 13, 13, 0.22);
  cursor: not-allowed;
}

.dp__day--empty { pointer-events: none; }

/* ── Time Picker — light theme, matches booking wizard ── */
.tp {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  z-index: 9999;
  width: 210px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(13, 13, 13, 0.12);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18), 0 4px 14px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transform: translateY(-4px);
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

/* Gradient decoration */
.tp::before {
  content: "";
  display: block;
  height: 4px;
  background: linear-gradient(to right, var(--luxury-gold), var(--luxury-gold-light), var(--luxury-dark));
}

.tp.is-open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.tp__cols {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  position: relative;
  overflow: hidden;
}

/* fade hints */
.tp__cols::before,
.tp__cols::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  height: 28px;
  pointer-events: none;
  z-index: 2;
}
.tp__cols::before { top: 34px;  right: 33.34%; background: linear-gradient(to bottom, #ffffff, transparent); }
.tp__cols::after  { bottom: 0;  right: 33.34%; background: linear-gradient(to top,    #ffffff, transparent); }

.tp__col {
  display: flex;
  flex-direction: column;
  overflow-y: scroll;
  max-height: 228px;
  border-right: 1px solid rgba(13, 13, 13, 0.08);
  scrollbar-width: none;
  scroll-snap-type: y mandatory;
}

.tp__col:last-child { border-right: none; }
.tp__col::-webkit-scrollbar { display: none; }

.tp__col-label {
  position: sticky;
  top: 0;
  padding: 8px 0 7px;
  text-align: center;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(13, 13, 13, 0.4);
  background: #ffffff;
  border-bottom: 1px solid rgba(13, 13, 13, 0.08);
  z-index: 3;
  flex-shrink: 0;
}

.tp__slot {
  padding: 9px 6px;
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  color: rgba(13, 13, 13, 0.72);
  cursor: pointer;
  border: none;
  background: transparent;
  transition: background 120ms ease, color 120ms ease;
  flex-shrink: 0;
  scroll-snap-align: start;
}

.tp__slot:hover {
  background: rgba(13, 13, 13, 0.06);
  color: var(--text-black);
}

.tp__slot.is-selected {
  background: var(--luxury-dark);
  color: #ffffff;
  font-weight: 600;
}

/* ── Date & Time — normalize to match text inputs ── */
.qf__input[type="date"],
.qf__input[type="time"],
.qf__input[type="datetime-local"] {
  color-scheme: light;
  cursor: pointer;
}

/* empty/unset state — match placeholder color */
.qf__input[type="date"]:not(:valid),
.qf__input[type="time"]:not(:valid),
.qf__input[type="datetime-local"]:not(:valid) {
  color: rgba(81, 88, 86, 0.45);
}

/* individual date/time sub-fields */
.qf__input[type="date"]::-webkit-datetime-edit,
.qf__input[type="time"]::-webkit-datetime-edit,
.qf__input[type="datetime-local"]::-webkit-datetime-edit {
  padding: 0;
}

.qf__input[type="date"]::-webkit-datetime-edit-fields-wrapper,
.qf__input[type="time"]::-webkit-datetime-edit-fields-wrapper,
.qf__input[type="datetime-local"]::-webkit-datetime-edit-fields-wrapper {
  padding: 0;
}

.qf__input[type="date"]::-webkit-datetime-edit-text,
.qf__input[type="time"]::-webkit-datetime-edit-text,
.qf__input[type="datetime-local"]::-webkit-datetime-edit-text {
  color: rgba(81, 88, 86, 0.45);
  padding: 0 1px;
}

.qf__input[type="date"]::-webkit-datetime-edit-month-field,
.qf__input[type="date"]::-webkit-datetime-edit-day-field,
.qf__input[type="date"]::-webkit-datetime-edit-year-field,
.qf__input[type="time"]::-webkit-datetime-edit-hour-field,
.qf__input[type="time"]::-webkit-datetime-edit-minute-field,
.qf__input[type="time"]::-webkit-datetime-edit-ampm-field,
.qf__input[type="datetime-local"]::-webkit-datetime-edit-month-field,
.qf__input[type="datetime-local"]::-webkit-datetime-edit-day-field,
.qf__input[type="datetime-local"]::-webkit-datetime-edit-year-field,
.qf__input[type="datetime-local"]::-webkit-datetime-edit-hour-field,
.qf__input[type="datetime-local"]::-webkit-datetime-edit-minute-field,
.qf__input[type="datetime-local"]::-webkit-datetime-edit-ampm-field {
  color: rgba(81, 88, 86, 0.45);
  border-radius: 2px;
  padding: 0 1px;
  transition: background 150ms ease;
}

/* when a value is set, show in normal text color */
.qf__input[type="date"]::-webkit-datetime-edit-month-field:not([aria-valuenow]),
.qf__input[type="date"]::-webkit-datetime-edit-day-field:not([aria-valuenow]),
.qf__input[type="date"]::-webkit-datetime-edit-year-field:not([aria-valuenow]),
.qf__input[type="time"]::-webkit-datetime-edit-hour-field:not([aria-valuenow]),
.qf__input[type="time"]::-webkit-datetime-edit-minute-field:not([aria-valuenow]),
.qf__input[type="datetime-local"]::-webkit-datetime-edit-month-field:not([aria-valuenow]),
.qf__input[type="datetime-local"]::-webkit-datetime-edit-day-field:not([aria-valuenow]),
.qf__input[type="datetime-local"]::-webkit-datetime-edit-year-field:not([aria-valuenow]),
.qf__input[type="datetime-local"]::-webkit-datetime-edit-hour-field:not([aria-valuenow]),
.qf__input[type="datetime-local"]::-webkit-datetime-edit-minute-field:not([aria-valuenow]) {
  color: var(--text-black);
}

/* hide browser calendar/clock button completely */
.qf__input[type="date"]::-webkit-calendar-picker-indicator,
.qf__input[type="time"]::-webkit-calendar-picker-indicator,
.qf__input[type="datetime-local"]::-webkit-calendar-picker-indicator {
  opacity: 0;
  position: absolute;
  right: 0;
  width: 44px;
  height: 100%;
  cursor: pointer;
  z-index: 1;
}

/* selected segment highlight — teal tint */
.qf__input[type="date"]::-webkit-datetime-edit-month-field:focus,
.qf__input[type="date"]::-webkit-datetime-edit-day-field:focus,
.qf__input[type="date"]::-webkit-datetime-edit-year-field:focus,
.qf__input[type="time"]::-webkit-datetime-edit-hour-field:focus,
.qf__input[type="time"]::-webkit-datetime-edit-minute-field:focus,
.qf__input[type="time"]::-webkit-datetime-edit-ampm-field:focus,
.qf__input[type="datetime-local"]::-webkit-datetime-edit-month-field:focus,
.qf__input[type="datetime-local"]::-webkit-datetime-edit-day-field:focus,
.qf__input[type="datetime-local"]::-webkit-datetime-edit-year-field:focus,
.qf__input[type="datetime-local"]::-webkit-datetime-edit-hour-field:focus,
.qf__input[type="datetime-local"]::-webkit-datetime-edit-minute-field:focus,
.qf__input[type="datetime-local"]::-webkit-datetime-edit-ampm-field:focus {
  background: rgba(68, 98, 99, 0.12);
  color: var(--dark-green-700);
  outline: none;
}

/* Textarea */
.qf__textarea {
  resize: none;
  min-height: 88px;
  padding-right: 16px;
}

/* Status icon (valid / error) */
.qf__status-icon {
  position: absolute;
  right: 14px;
  width: 18px;
  height: 18px;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}

/* Error state */
.qf__field.is-error .qf__input {
  border-color: #c0392b;
  background: #fff8f7;
  box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.08);
}

.qf__field.is-error .qf__status-icon {
  display: flex;
  color: #c0392b;
}

.qf__field.is-error .qf__status-icon::after {
  content: "✕";
}

.qf__field.is-error .qf__label {
  color: #c0392b;
}

/* Valid state */
.qf__field.is-valid .qf__input {
  border-color: var(--dark-green-400);
}

.qf__field.is-valid .qf__status-icon {
  display: flex;
  color: var(--dark-green-400);
}

.qf__field.is-valid .qf__status-icon::after {
  content: "✓";
  font-size: 14px;
}

/* Error message */
.qf__error {
  display: none;
  margin: 0;
  font-size: 12px;
  font-weight: 500;
  color: #c0392b;
  letter-spacing: 0.1px;
}

.qf__field.is-error .qf__error {
  display: flex;
  align-items: center;
  gap: 4px;
}

.qf__field.is-error .qf__error::before {
  content: "!";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #c0392b;
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  flex-shrink: 0;
}

/* Footer */
.qf__footer {
  padding: 28px 44px 40px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.qf__submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  min-height: 54px;
  padding: 14px 24px;
  background: var(--luxury-dark);
  color: #ffffff;
  border: none;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.3px;
  cursor: pointer;
  transition: background 200ms ease;
}

.qf__submit:hover {
  background: var(--dark-green-950);
}

.qf__submit svg {
  transition: transform 200ms ease;
}

.qf__submit:hover svg {
  transform: translateX(3px);
}

.qf__note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 0;
  font-size: 12px;
  color: var(--text-muted);
}

.qf__note svg {
  flex-shrink: 0;
  color: var(--dark-green-400);
}

.info-box {
  margin: 0;
  border-left: 3px solid var(--dark-green-400);
  padding: 18px 20px;
  background: #ffffff;
  color: var(--text-muted);
}

/* Modal fields still use old styles */
.modal-fields input,
.modal-fields select,
.modal-fields textarea {
  width: 100%;
  border: 1px solid rgba(13, 13, 13, 0.1);
  border-radius: 0;
  padding: 14px 16px;
  background: var(--ivory);
  color: var(--text-black);
  font-size: var(--type-body-standard-size);
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.modal-fields input:focus,
.modal-fields select:focus,
.modal-fields textarea:focus {
  border-color: var(--dark-green-400);
  box-shadow: 0 0 0 3px rgba(68, 98, 99, 0.1);
}

.modal-fields input::placeholder,
.modal-fields textarea::placeholder {
  color: rgba(81, 88, 86, 0.55);
}

.modal-fields select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--dark-green-400) 50%), linear-gradient(135deg, var(--dark-green-400) 50%, transparent 50%);
  background-position: calc(100% - 22px) 50%, calc(100% - 16px) 50%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 44px;
}

.modal-fields textarea {
  resize: vertical;
}

.proof-section {
  background: var(--dark-green-950);
  color: #ffffff;
  padding: var(--section-padding-block) var(--section-padding-inline);
  display: flex;
  flex-direction: column;
  gap: 72px;
  align-items: center;
}

/* stats row */
.proof-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  width: min(100%, var(--grid-max-width));
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.proof-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 40px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.proof-stat:last-child {
  border-right: none;
}

.proof-stat__number {
  font-size: clamp(48px, 5vw, 72px);
  font-weight: 200;
  line-height: 1;
  letter-spacing: -2px;
  color: #ffffff;
}

.proof-stat__sup {
  font-size: 0.45em;
  font-weight: 400;
  letter-spacing: 0;
  vertical-align: super;
  color: var(--dark-green-400);
}

.proof-stat__label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

/* heading */
.proof-heading {
  text-align: center;
  max-width: 640px;
}

.proof-heading .section__eyebrow {
  color: var(--dark-green-400);
}

.proof-heading h2 {
  color: #ffffff;
  font-weight: 300;
  margin-bottom: 16px;
}

.proof-heading p {
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: var(--type-body-standard-size);
}

/* testimonials — span the full content width */
.proof-quotes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--grid-gutter);
  width: 100%;
}

.proof-quote {
  margin: 0;
  padding: 36px 32px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: background 300ms ease;
}

.proof-quote:hover {
  background: rgba(68, 98, 99, 0.1);
}

.proof-quote p {
  margin: 0;
  font-size: 16px;
  line-height: 26px;
  color: rgba(255, 255, 255, 0.72);
  font-style: italic;
  flex: 1;
}

.proof-quote cite {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--dark-green-400);
  font-style: normal;
}

/* Tablet & mobile: each testimonial is a full-width card (one per row). */
@media (max-width: 1024px) {
  .proof-quotes {
    grid-template-columns: 1fr;
  }
}

.contact-section {
  display: grid;
  gap: 28px;
  justify-items: center;
  padding: var(--section-padding-block) var(--section-padding-inline);
  text-align: center;
}

.contact-section p {
  margin: 0;
  color: var(--text-muted);
}

.service-area {
  position: relative;
  height: 600px;
  overflow: hidden;
}

#dfw-map {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  isolation: isolate;
}

.service-area__glass {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
  width: clamp(300px, 36%, 440px);
  padding: 44px 40px;
  background: rgba(6, 17, 17, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-right: 1px solid rgba(68, 98, 99, 0.25);
  color: #ffffff;
}

.service-area__glass::after {
  position: absolute;
  top: 0;
  bottom: 0;
  right: -60px;
  left: 100%;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(6, 17, 17, 0.45) 0%, transparent 100%);
  content: "";
}

.service-area__glass .section__eyebrow {
  color: var(--dark-green-400);
  margin-bottom: 12px;
}

.service-area__glass h2 {
  font-size: 26px;
  font-weight: 300;
  line-height: 1.3;
  letter-spacing: -0.2px;
  margin: 0 0 14px;
}

.service-area__sub {
  margin: 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 13px;
  line-height: 20px;
}

.service-area__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 0;
  margin: 20px 0 28px;
  list-style: none;
}

.service-area__tags li {
  padding: 4px 10px;
  border: 1px solid rgba(68, 98, 99, 0.35);
  background: rgba(68, 98, 99, 0.1);
  color: rgba(255, 255, 255, 0.65);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.3px;
  transition: background 200ms ease, color 200ms ease;
}

.service-area__tags li:hover {
  background: rgba(68, 98, 99, 0.28);
  color: #ffffff;
}

.service-area__glass .button {
  align-self: flex-start;
  margin-top: 0;
}

/* Leaflet custom pins */
.lpin {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 0;
  height: 0;
}

.lpin__dot {
  position: relative;
  z-index: 2;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #446263;
  box-shadow: 0 0 0 2px rgba(68, 98, 99, 0.45), 0 0 10px rgba(68, 98, 99, 0.55);
  flex-shrink: 0;
  transition: transform 200ms ease;
}

.lpin--major .lpin__dot {
  width: 12px;
  height: 12px;
  background: #6fa8aa;
  box-shadow: 0 0 0 2px rgba(111, 168, 170, 0.5), 0 0 16px rgba(111, 168, 170, 0.7);
}

.lpin--airport .lpin__dot {
  width: 10px;
  height: 10px;
  background: #c9b97a;
  box-shadow: 0 0 0 2px rgba(201, 185, 122, 0.5), 0 0 14px rgba(201, 185, 122, 0.7);
}

.lpin__pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1.5px solid #446263;
  transform: translate(-50%, -50%) scale(1);
  opacity: 0;
  animation: lpin-pulse 2.8s ease-out infinite;
  animation-delay: var(--pin-delay, 0ms);
}

.lpin__pulse--2 {
  animation-delay: calc(var(--pin-delay, 0ms) + 1.4s);
}

.lpin--major .lpin__pulse {
  width: 12px;
  height: 12px;
  border-color: #6fa8aa;
}

.lpin--airport .lpin__pulse {
  width: 10px;
  height: 10px;
  border-color: #c9b97a;
}

@keyframes lpin-pulse {
  0%   { transform: translate(-50%, -50%) scale(1); opacity: 0.85; }
  100% { transform: translate(-50%, -50%) scale(5);  opacity: 0;    }
}

.lpin__label {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  padding: 3px 7px;
  background: rgba(6, 17, 17, 0.88);
  backdrop-filter: blur(4px);
  color: #dedad0;
  font-size: 9.5px;
  font-weight: 600;
  font-family: var(--font-family-base);
  letter-spacing: 0.5px;
  white-space: nowrap;
  pointer-events: none;
  border: 1px solid rgba(68, 98, 99, 0.35);
}

.lpin--major .lpin__label {
  font-size: 11px;
  color: #ffffff;
  border-color: rgba(111, 168, 170, 0.45);
}

.lpin--airport .lpin__label {
  color: #c9b97a;
  border-color: rgba(201, 185, 122, 0.45);
}

.lpin:hover .lpin__dot {
  transform: scale(1.5);
}

/* hide default Leaflet marker shadow */
.leaflet-marker-shadow { display: none; }

.map-pin--dallas      { left: 63.2%; top: 67.0%; }
.map-pin--fort-worth  { left: 17.8%; top: 64.5%; }
.map-pin--arlington   { left: 34.2%; top: 76.5%; }
.map-pin--irving      { left: 52.0%; top: 65.5%; }
.map-pin--plano       { left: 66.0%; top: 37.8%; }
.map-pin--frisco      { left: 65.2%; top: 19.5%; }
.map-pin--mckinney    { left: 79.2%; top: 11.8%; }
.map-pin--garland     { left: 74.4%; top: 55.0%; }
.map-pin--lewisville  { left: 52.8%; top: 34.8%; }
.map-pin--carrollton  { left: 59.0%; top: 44.8%; }
.map-pin--denton      { left: 40.5%; top: 9.6%;  }
.map-pin--richardson  { left: 68.2%; top: 47.5%; }
.map-pin--southlake   { left: 37.8%; top: 53.8%; }
.map-pin--grapevine   { left: 44.2%; top: 56.2%; }
.map-pin--coppell     { left: 55.2%; top: 49.2%; }
.map-pin--dfw         { left: 46.8%; top: 62.0%; }


.faq-list {
  width: min(100%, var(--grid-max-width));
  margin: 0 auto;
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
}

.faq-list summary {
  cursor: pointer;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: -0.1px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  list-style: none;
  transition: color 0.25s ease;
}

.faq-list summary::-webkit-details-marker { display: none; }

/* Custom chevron that rotates smoothly on open */
.faq-list summary::after {
  content: "";
  flex-shrink: 0;
  width: 9px;
  height: 9px;
  margin-right: 4px;
  border-right: 1.6px solid currentColor;
  border-bottom: 1.6px solid currentColor;
  transform: rotate(45deg);
  opacity: 0.45;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s ease;
}

.faq-list summary:hover {
  color: var(--dark-green-700);
}

.faq-list summary:hover::after {
  opacity: 0.85;
}

.faq-list details.is-open summary::after {
  transform: rotate(-135deg);
  opacity: 0.85;
}

/* Smoothly animated answer container — collapsed by default, height driven by JS.
   The <details> is kept natively open so its content is always rendered; the
   visible collapse/expand is faked here for a smooth transition. */
.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-list p {
  margin: 16px 0 0;
  color: var(--text-muted);
}

@media (prefers-reduced-motion: reduce) {
  .faq-answer { transition: none; }
}

.contact-intro {
  max-width: 600px;
}

.contact-intro p {
  margin-top: 12px;
  font-size: 16px;
  line-height: 25px;
}

/* Three contact methods: call button + number, email, animated 24/7 clock */
.contact-methods {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  width: min(100%, 940px);
}

.contact-card {
  flex: 1 1 240px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 22px;
  text-align: left;
  background: #ffffff;
  border: 1px solid var(--line);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.contact-card:hover {
  border-color: rgba(21, 59, 60, 0.3);
  box-shadow: 0 10px 28px rgba(13, 13, 13, 0.07);
  transform: translateY(-2px);
}

.contact-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid var(--line);
  color: var(--luxury-dark);
  background: var(--olive-50);
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

a.contact-card__icon:hover,
a.contact-card__icon:focus-visible {
  background: var(--luxury-dark);
  border-color: var(--luxury-dark);
  color: #ffffff;
  transform: scale(1.06);
}

.contact-card__icon--static {
  color: var(--gold-accent);
  border-color: rgba(197, 168, 128, 0.4);
  background: rgba(197, 168, 128, 0.08);
}

.contact-card__text {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.contact-card__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--gold-accent);
}

.contact-card__value {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-black);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.2s ease;
}

a.contact-card__value:hover {
  color: var(--luxury-dark);
}

.contact-card__value--badge {
  font-weight: 600;
  letter-spacing: 0.3px;
}

.contact-card__slash {
  color: var(--gold-accent);
  font-weight: 700;
  margin: 0 1px;
}

/* Animated 24/7 clock hands */
.clock-icon .clock-hand {
  transform-origin: 12px 12px;
}

.clock-hand--minute {
  animation: clockSpin 2.4s linear infinite;
}

.clock-hand--hour {
  animation: clockSpin 28.8s linear infinite;
}

@keyframes clockSpin {
  to { transform: rotate(360deg); }
}

@media (prefers-reduced-motion: reduce) {
  .clock-hand--minute,
  .clock-hand--hour { animation: none; }
}

/* Reveal footer — fixed behind the page; revealed as content lifts off it */
.site-footer {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  min-height: min(360px, 70vh);
  padding: 64px 32px 48px;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
  background:
    radial-gradient(120% 100% at 50% 0%, rgba(21, 59, 60, 0.55) 0%, transparent 60%),
    var(--dark-green-950);
}

/* gold hairline along the top edge of the revealed footer */
.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-accent), transparent);
  opacity: 0.6;
}

.site-footer p {
  margin: 0;
}

/* Footer disclaimer — zero-tolerance drug & alcohol policy */
.site-footer__policy {
  max-width: 660px;
  margin: 18px auto 6px;
}
.site-footer__policy-title {
  color: var(--gold-accent);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px !important;
}
.site-footer__policy p {
  font-size: 12px;
  line-height: 1.6;
}
.site-footer__policy p + p {
  margin-top: 10px !important;
}
.site-footer__policy a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.site-footer__policy a:hover {
  color: var(--gold-accent);
}

.site-footer__logo {
  display: block;
  height: 40px;
  width: auto;
  margin: 0 auto 22px;
  opacity: 0.95;
}

.site-footer__top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  width: 100%;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 22px;
}

.site-footer__links a {
  color: rgba(255, 255, 255, 0.66);
  font-size: 14px;
  letter-spacing: 0.3px;
  transition: color 0.2s ease;
}

.site-footer__links a:hover,
.site-footer__links a:focus-visible {
  color: #ffffff;
}

.site-footer__contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
}

.site-footer__contact a {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 500;
}

.site-footer__contact a:hover,
.site-footer__contact a:focus-visible {
  color: var(--gold-accent);
}

.site-footer__dot { color: var(--gold-accent); }

.site-footer__credit {
  font-size: 12px;
  letter-spacing: 0.3px;
  color: rgba(255, 255, 255, 0.42);
}

.site-footer__credit a {
  color: var(--gold-accent);
  font-weight: 600;
  transition: color 0.2s ease;
}

.site-footer__credit a:hover,
.site-footer__credit a:focus-visible {
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.quote-modal {
  width: min(100% - 32px, 820px);
  max-height: none;
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--text-black);
  overflow: visible;
}

.quote-modal::backdrop {
  background: rgba(4, 12, 12, 0.72);
  backdrop-filter: blur(2px);
}

.quote-modal__shell {
  position: relative;
  overflow: hidden;
  max-height: calc(100dvh - 32px);
  overflow-y: auto;
  padding: 0;
  background: #ffffff;
  box-shadow: 0 32px 90px rgba(6, 17, 17, 0.24);
}

.quote-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
}

.quote-modal__progress {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 14px;
  padding: 30px 36px 22px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, #ffffff 0%, var(--ivory) 100%);
}

.quote-modal__progress-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-right: 48px;
}

.quote-modal__progress-actions {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.quote-modal__back {
  min-height: 32px;
  border: 1px solid rgba(21, 59, 60, 0.18);
  background: transparent;
  color: var(--dark-green-700);
  cursor: pointer;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 600;
  line-height: 18px;
  letter-spacing: 0.1px;
  transition: background 180ms ease, color 180ms ease, opacity 180ms ease;
}

.quote-modal__back:hover,
.quote-modal__back:focus-visible {
  background: rgba(68, 98, 99, 0.1);
}

.quote-modal__back:disabled {
  cursor: default;
  opacity: 0.36;
}

.quote-modal__back:disabled:hover {
  background: transparent;
}

.quote-modal__progress-label,
.quote-modal__progress-count,
.quote-modal__status {
  font-size: var(--type-label-size);
  font-weight: var(--type-label-weight);
  line-height: var(--type-label-line);
  letter-spacing: var(--type-label-tracking);
}

.quote-modal__progress-label {
  color: var(--dark-green-700);
  text-transform: uppercase;
}

.quote-modal__progress-count {
  color: var(--text-muted);
}

.quote-modal__progress-bar {
  height: 4px;
  overflow: hidden;
  background: rgba(21, 59, 60, 0.12);
}

.quote-modal__progress-bar span {
  display: block;
  width: var(--quote-progress, 20%);
  height: 100%;
  background: var(--dark-green-400);
  transition: width 360ms ease;
}

.quote-modal__status {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--text-muted);
}

.quote-modal__status li {
  position: relative;
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.quote-modal__status li::before {
  width: 8px;
  height: 8px;
  border: 1px solid rgba(21, 59, 60, 0.28);
  background: #ffffff;
  content: "";
}

.quote-modal__status li.is-complete,
.quote-modal__status li.is-active {
  color: var(--text-black);
}

.quote-modal__status li.is-complete::before,
.quote-modal__status li.is-active::before {
  border-color: var(--dark-green-400);
  background: var(--dark-green-400);
}

.quote-modal__prefill {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
  border-top: 1px solid rgba(21, 59, 60, 0.1);
  padding-top: 12px;
  color: var(--text-muted);
  font-size: 13px;
  line-height: 20px;
}

.quote-modal__prefill[hidden] {
  display: none;
}

.quote-modal__prefill span {
  color: var(--dark-green-400);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.quote-modal__prefill strong {
  color: var(--text-black);
  font-weight: 600;
}

.quote-modal__prefill em {
  font-style: normal;
}

.quote-modal__viewport {
  overflow: hidden;
}

.quote-modal__track {
  --quote-step-offset: 0;
  display: flex;
  align-items: stretch;
  transform: translateX(calc(var(--quote-step-offset) * -100%));
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.quote-modal__step {
  display: grid;
  flex: 0 0 100%;
  gap: 14px;
  padding: 28px 36px 34px;
  opacity: 0.28;
  pointer-events: none;
  transition: opacity 260ms ease;
}

.quote-modal__step.is-active {
  opacity: 1;
  pointer-events: auto;
}

.quote-modal__fields {
  padding: 2px 0 0;
}

.quote-modal .qf__grid {
  padding-right: 0;
  padding-left: 0;
}

.quote-modal .qf__field {
  gap: 5px;
  padding-top: 12px;
  padding-bottom: 12px;
}

.quote-modal .qf__input {
  min-height: 42px;
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 14px;
  line-height: 20px;
}

.quote-modal .qf__input-wrap--icon .qf__input {
  padding-left: 38px;
}

.quote-modal .qf__select {
  padding-right: 40px;
}

.quote-modal__location-group {
  display: grid;
  grid-template-columns: minmax(168px, 0.32fr) minmax(0, 1fr);
  align-items: start;
}

.quote-modal__location-group .quote-modal__method-toggle {
  border-right: 0;
}

.quote-modal .qf__address-suggestions {
  position: static;
  max-height: 150px;
  box-shadow: none;
}

.quote-modal__trip-toggle {
  border: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.quote-modal__trip-toggle .qf__rate-btn {
  min-height: 42px;
  padding: 11px 14px;
}

.quote-modal__method-toggle,
.quote-modal__counter {
  display: grid;
  border: 1.5px solid var(--line);
  background: var(--ivory);
}

.quote-modal__method-toggle {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.quote-modal__method-toggle button,
.quote-modal__counter button {
  min-height: 42px;
  border: 0;
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  transition: background 180ms ease, color 180ms ease;
}

.quote-modal__method-toggle button + button {
  border-left: 1px solid var(--line);
}

.quote-modal__method-toggle button:hover,
.quote-modal__method-toggle button:focus-visible,
.quote-modal__counter button:hover,
.quote-modal__counter button:focus-visible {
  background: #ffffff;
  color: var(--text-black);
}

.quote-modal__method-toggle button.is-active {
  background: var(--dark-green-950);
  color: #ffffff;
}

.quote-modal__counter {
  grid-template-columns: 56px minmax(0, 1fr) 56px;
  align-items: center;
}

.quote-modal__counter output {
  display: flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border-right: 1px solid var(--line);
  border-left: 1px solid var(--line);
  background: #ffffff;
  color: var(--text-black);
  font-size: 18px;
  font-weight: 600;
}

.quote-modal__fields .qf__field:nth-child(even) {
  padding-left: 18px;
}

.quote-modal__fields .qf__field:nth-child(odd) {
  padding-right: 18px;
}

.quote-modal__fields .qf__field--wide {
  padding-right: 0;
  padding-left: 0;
}

.quote-modal__fields .qf__textarea {
  min-height: 90px;
}

.quote-modal__confirm {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: grid;
  place-items: center;
  padding: 28px;
  background: rgba(6, 17, 17, 0.58);
  opacity: 0;
  pointer-events: none;
  transition: opacity 200ms ease;
}

.quote-modal.is-confirming .quote-modal__confirm {
  opacity: 1;
  pointer-events: auto;
}

.quote-modal__confirm-card {
  display: grid;
  width: min(100%, 420px);
  gap: 14px;
  padding: 32px;
  background: #ffffff;
  box-shadow: 0 24px 60px rgba(6, 17, 17, 0.24);
}

.quote-modal__confirm-card h2,
.quote-modal__confirm-card p {
  margin: 0;
}

.quote-modal__confirm-card > p:not(.section__eyebrow) {
  color: var(--text-muted);
}

.quote-modal__confirm-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.quote-modal__confirm-actions .button {
  flex: 1 1 150px;
}

.modal-options,
.modal-fields {
  display: grid;
  gap: 12px;
}

.modal-options button {
  border: 1px solid var(--line);
  padding: 18px;
  background: var(--olive-50);
  cursor: pointer;
  text-align: left;
  font-size: var(--type-body-standard-size);
  font-weight: 700;
}

.modal-options span {
  display: block;
  margin-top: 4px;
  color: var(--text-muted);
  font-weight: 400;
}

.reference-code {
  margin: 0;
  font-size: var(--type-h3-size);
  font-weight: var(--type-h3-weight);
  line-height: var(--type-h3-line);
}

@media (max-width: 900px) {
  .nav-toggle {
    display: flex;
  }

  /* Collapse the nav into a glass dropdown panel toggled by the hamburger */
  .primary-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex: none;
    flex-direction: column;
    justify-content: flex-start;
    gap: 4px;
    padding: 12px 20px 18px;
    background: #ffffff;
    backdrop-filter: blur(22px) saturate(180%);
    -webkit-backdrop-filter: blur(22px) saturate(180%);
    box-shadow: 0 18px 40px rgba(13, 13, 13, 0.18);
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    font-size: 14px;
    letter-spacing: 0.4px;
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

  .primary-nav a {
    padding: 14px 4px;
    border-bottom: 1px solid var(--line);
  }

  .site-header.is-menu-open .primary-nav {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  /* Reveal the full-viewport dimming scrim when the menu is open */
  .site-header.is-menu-open ~ .nav-scrim {
    opacity: 1;
    pointer-events: auto;
  }

  .card-grid--four {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .occasions-showcase {
    grid-template-columns: 1fr;
  }

  .occasion-spotlight,
  .occasion-spotlight__content {
    min-height: 520px;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding-block: 64px;
    --section-padding-inline: 18px;
    --section-heading-gap: 36px;
    --card-padding: 28px;
  }

  .site-header {
    padding: 12px 18px;
  }

  .header-inner {
    gap: 12px;
  }

  .header-actions {
    gap: 10px;
  }

  .hero {
    height: auto;
    min-height: 100vh;
    min-height: 100dvh;
    padding: 72px 22px;
  }

  .brand__img {
    width: 118px;
  }

  .hero h1 {
    font-size: 40px;
    line-height: 56px;
  }

  .section,
  .quote-section,
  .why-section,
  .trusted-section,
  .contact-section {
    padding: var(--section-padding-block) var(--section-padding-inline);
  }

  .proof-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .proof-stat:nth-child(2),
  .proof-stat:nth-child(4) {
    border-right: none;
  }

  .proof-stat:nth-child(3),
  .proof-stat:nth-child(4) {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .why-section__inner {
    grid-template-columns: 1fr;
  }

  .why-section__heading {
    position: static;
  }

  .why-section__sub {
    max-width: 100%;
  }

  .services-showcase {
    grid-template-columns: 1fr;
  }

  .occasions-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .occasions-grid .occasion-card:first-child {
    grid-row: auto;
  }

  .services-tabs {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .services-panel {
    min-height: 320px;
  }

  .group-tier-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .group-tier:nth-child(2) {
    border-right: none;
  }

  .group-tier:nth-child(3) {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .card-grid--three,
  .card-grid--four,
  .occasion-list,
  .trusted-section,
  .quote-layout,
  .quote-form,
  .contact-list {
    grid-template-columns: 1fr;
  }

  .occasions-showcase {
    border: 0;
    box-shadow: none;
  }

  .occasion-spotlight,
  .occasion-spotlight__content {
    min-height: 520px;
  }

  .occasion-spotlight__content {
    padding: 32px 24px;
  }

  .occasion-spotlight__content h3 {
    font-size: 26px;
    line-height: 38px;
  }

  .occasion-card {
    min-height: auto;
    padding: 28px 24px;
    border-left: 0;
  }

  .occasion-card__details div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .service-area {
    height: auto;
    min-height: 560px;
  }

  .service-area__glass {
    position: relative;
    width: 100%;
    border-right: none;
    border-bottom: 1px solid rgba(68, 98, 99, 0.28);
    padding: 40px var(--section-padding-inline);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: var(--dark-green-950);
  }

  .service-area__glass::after {
    display: none;
  }

  #dfw-map {
    position: relative;
    height: 340px;
  }

  .trust-points {
    grid-template-columns: 1fr;
  }

  .fleet-strip,
  .fleet-strip--reverse {
    grid-template-columns: 1fr;
    direction: ltr;
    min-height: auto;
  }

  .fleet-strip__image img {
    aspect-ratio: 16 / 9;
    height: auto;
  }

  .fleet-strip__content {
    padding: 36px var(--section-padding-inline);
    border-left: none !important;
    border-right: none !important;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .trusted-section__media,
  .trusted-slider__slide {
    min-height: 280px;
  }

  .lpin__label {
    display: none;
  }

  .lpin--major .lpin__label,
  .lpin--airport .lpin__label {
    display: block;
    font-size: 8.5px;
  }

  .quote-form__wide {
    grid-column: auto;
  }

  .quote-slider {
    min-height: 420px;
  }

  .quote-form {
    padding: 28px;
  }

  .quote-modal__shell {
    padding: 0;
  }

  .quote-modal__progress {
    padding: 26px 20px 18px;
  }

  .quote-modal__progress-top {
    padding-right: 42px;
  }

  .quote-modal__status {
    gap: 6px;
    font-size: 11px;
    line-height: 16px;
  }

  .quote-modal__status li {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
    white-space: normal;
  }

  .quote-modal__step {
    padding: 28px 20px 30px;
  }

  .quote-modal__fields {
    grid-template-columns: 1fr;
  }

  .quote-modal__fields .qf__field,
  .quote-modal__fields .qf__field:nth-child(even),
  .quote-modal__fields .qf__field:nth-child(odd) {
    padding-right: 0;
    padding-left: 0;
    border-left: 0;
  }

  .quote-modal__location-group {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .quote-modal__location-group .quote-modal__method-toggle {
    border-right: 1.5px solid var(--line);
  }

  .qf__input-wrap--address .qf__input {
    padding-right: 94px;
  }
}

/* Light gold accent on eyebrow labels over dark sections, where gold reads
   richly. Placed last so it wins over the section-specific eyebrow rules.
   Light-section eyebrows stay teal for contrast. */
.services-section .section__eyebrow,
.group-size-section__heading .section__eyebrow,
.fleet-section__header .section__eyebrow,
.why-section .section__eyebrow,
.quote-slider__content .section__eyebrow,
.proof-heading .section__eyebrow,
.service-area__glass .section__eyebrow,
.section--dark .section__eyebrow {
  color: var(--gold-accent);
}

/* ── By Occasion cards — tablet & mobile ──────────────────────────
   Touch devices have no hover, so disable the hover interaction and
   reveal every card's full content (description, details, CTA) by
   default instead of hiding it behind a hover. */
@media (max-width: 1024px) {
  .occasion-card {
    cursor: default;
    min-height: 440px;
  }

  /* Keep the readable "expanded" gradient at all times */
  .occasion-card__inner {
    background: linear-gradient(180deg, transparent 0%, rgba(6, 17, 17, 0.55) 42%, rgba(6, 17, 17, 0.97) 100%);
  }

  /* Show the reveal block (no max-height/opacity gating) */
  .occasion-card__reveal {
    max-height: none;
    opacity: 1;
    transform: none;
  }

  /* CTA already in its active state */
  .occasion-card__cta {
    border-color: rgba(255, 255, 255, 0.6);
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
  }

  /* No hover zoom on the background image */
  .occasion-card:hover .occasion-card__image-bg {
    transform: none;
  }
}

/* Tablet: single column (matches mobile) so each card spans full width */
@media (min-width: 769px) and (max-width: 1024px) {
  .occasions-grid {
    grid-template-columns: 1fr;
  }
}

/* By Group Size — single column (full-width tiers) on tablet & mobile */
@media (max-width: 1024px) {
  .group-tier-grid {
    grid-template-columns: 1fr;
  }

  .group-tier {
    border-right: none;
    border-bottom: 1px solid var(--line);
  }

  .group-tier:last-child {
    border-bottom: none;
  }

  .group-tier:nth-child(3) {
    border-top: none;
  }
}

/* ── Cookie consent banner ──────────────────────────────────────── */
.cookie-consent {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 9998;
  margin: 0 auto;
  max-width: 760px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 16px 20px;
  background: linear-gradient(180deg, rgba(6, 17, 17, 0.96), rgba(6, 17, 17, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transform: translateY(140%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.45s ease;
}

.cookie-consent.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.cookie-consent__text {
  margin: 0;
  flex: 1;
  font-size: 12.5px;
  line-height: 19px;
  color: rgba(255, 255, 255, 0.72);
}

.cookie-consent__text a {
  color: var(--gold-accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-consent__text strong { color: #ffffff; font-weight: 600; }

.cookie-consent__actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-consent__btn {
  padding: 9px 18px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.3px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.cookie-consent__btn--ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.8);
}

.cookie-consent__btn--ghost:hover { border-color: rgba(255, 255, 255, 0.6); color: #ffffff; }

.cookie-consent__btn--primary {
  background: var(--gold-accent);
  color: var(--dark-green-950);
}

.cookie-consent__btn--primary:hover { background: #d6be9a; }

@media (max-width: 640px) {
  .cookie-consent {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .cookie-consent__actions { justify-content: flex-end; }
}

/* ── Service Area — modern refresh + subtle motion ───────────────── */
.service-area__glass {
  background: linear-gradient(165deg, rgba(13, 40, 41, 0.9) 0%, rgba(6, 17, 17, 0.94) 55%);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  border-right: 0;
}

/* Gold gradient divider where the panel meets the map */
.service-area__glass::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 1.5px;
  background: linear-gradient(180deg, transparent, var(--gold-accent) 38%, var(--gold-accent) 62%, transparent);
  opacity: 0.55;
  pointer-events: none;
  z-index: 2;
}

/* "Live service" pulsing dot on the eyebrow */
.service-area__glass .section__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.service-area__glass .section__eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold-accent);
  box-shadow: 0 0 0 0 rgba(197, 168, 128, 0.55);
  animation: saLivePulse 2.4s ease-out infinite;
}

@keyframes saLivePulse {
  0% { box-shadow: 0 0 0 0 rgba(197, 168, 128, 0.5); }
  70% { box-shadow: 0 0 0 9px rgba(197, 168, 128, 0); }
  100% { box-shadow: 0 0 0 0 rgba(197, 168, 128, 0); }
}

.service-area__sub {
  font-size: 14px;
  line-height: 21px;
}

/* City chips — refined hover + staggered reveal */
.service-area__tags li {
  border-radius: 2px;
  transition: background 220ms ease, color 220ms ease, border-color 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}

.service-area__tags li:hover {
  border-color: var(--gold-accent);
  background: rgba(197, 168, 128, 0.14);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

.service-area__glass.is-visible .service-area__tags li {
  animation: saTagReveal 0.5s cubic-bezier(0.22, 1, 0.36, 1) backwards;
  animation-delay: calc(var(--i, 0) * 35ms + 180ms);
}

@keyframes saTagReveal {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  .service-area__glass .section__eyebrow::before { animation: none; }
  .service-area__glass.is-visible .service-area__tags li { animation: none; }
}

/* ── Nav refresh — tighter layout, uniform right cluster, animated call ── */
.header-inner { gap: 20px; }
.primary-nav { gap: 18px; }

/* Uniform 44px controls on the right */
.header-call,
.nav-toggle { width: 44px; height: 44px; }

.header-actions .button--primary {
  min-height: 44px;
  padding: 10px 20px;
}

/* Hamburger rendered as a circle to match the call button */
.nav-toggle {
  border-radius: 50%;
  align-items: center;
  padding: 0;
}
.nav-toggle span { width: 18px; }

/* Animated "call us" button — pulsing gold ring + a ringing-phone shake */
.header-call { position: relative; overflow: visible; }

.header-call::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 50%;
  border: 1.5px solid var(--gold-accent);
  opacity: 0;
  animation: navCallRing 2.8s ease-out infinite;
  pointer-events: none;
}

.header-call svg {
  transform-origin: center;
  animation: navCallShake 2.8s ease-in-out infinite;
}

.header-call:hover::before,
.header-call:focus-visible::before,
.header-call:hover svg,
.header-call:focus-visible svg { animation-play-state: paused; }

@keyframes navCallRing {
  0%   { transform: scale(1);   opacity: 0.6; }
  60%  { transform: scale(1.5); opacity: 0; }
  100% { transform: scale(1.5); opacity: 0; }
}

@keyframes navCallShake {
  0%, 58%, 100% { transform: rotate(0); }
  62% { transform: rotate(-13deg); }
  66% { transform: rotate(12deg); }
  70% { transform: rotate(-9deg); }
  74% { transform: rotate(8deg); }
  78% { transform: rotate(-4deg); }
  82% { transform: rotate(0); }
}

@media (prefers-reduced-motion: reduce) {
  .header-call::before,
  .header-call svg { animation: none; }
}

/* ── Service area city list (plain list, not buttons) + airport icons ── */
.service-area__tags {
  gap: 0;
  align-items: baseline;
}

.service-area__tags li {
  display: inline-flex;
  align-items: center;
  border: 0;
  background: transparent;
  padding: 3px 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.2px;
  border-radius: 0;
  transition: color 200ms ease;
}

.service-area__tags li:hover {
  color: #ffffff;
  background: transparent;
  transform: none;
  box-shadow: none;
}

/* Gold middot separator between cities */
.service-area__tags li:not(:last-child)::after {
  content: "·";
  color: var(--gold-accent);
  margin: 0 8px;
  opacity: 0.55;
}

/* Subtle plane icon for airport entries */
.service-area__tags li.is-airport::before {
  content: "";
  width: 11px;
  height: 11px;
  margin-right: 5px;
  flex-shrink: 0;
  opacity: 0.7;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23c5a880'%3E%3Cpath d='M21 16v-2l-8-5V3.5c0-.83-.67-1.5-1.5-1.5S10 2.67 10 3.5V9l-8 5v2l8-2.5V19l-2 1.5V22l3.5-1 3.5 1v-1.5L13 19v-5.5l8 2.5z'/%3E%3C/svg%3E") center / contain no-repeat;
}

/* Map airport pins — gold plane icon instead of a dot */
.lpin--airport .lpin__dot {
  width: auto;
  height: auto;
  background: transparent;
  box-shadow: none;
}

.lpin__plane {
  display: block;
  width: 17px;
  height: 17px;
  fill: #c9b97a;
  filter: drop-shadow(0 0 6px rgba(201, 185, 122, 0.75));
}

/* ── Hanging "Quote Request" ribbon (drops from under the nav, sways) ── */
.quote-ribbon {
  position: fixed;
  top: 0;
  right: 48px;
  z-index: 150;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
  transform: translateY(-160%);
  animation: ribbonDrop 1s cubic-bezier(0.22, 1, 0.36, 1) 1.3s both;
}

/* Cord the tag hangs from, with a small gold pin under the nav */
.quote-ribbon__cord {
  position: relative;
  width: 2px;
  height: 52px;
  background: linear-gradient(var(--gold-accent), rgba(197, 168, 128, 0.25));
}

.quote-ribbon__cord::before {
  content: "";
  position: absolute;
  top: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold-accent);
  box-shadow: 0 0 8px rgba(197, 168, 128, 0.7);
}

/* The swaying tag */
.quote-ribbon__flag {
  position: relative;
  transform-origin: top center;
  animation: ribbonSway 4.5s ease-in-out 2.4s infinite,
             ribbonGlow 3.6s ease-in-out 2.4s infinite;
  padding: 12px 20px 18px;
  background: linear-gradient(180deg, var(--luxury-dark), var(--dark-green-950));
  border-top: 2px solid var(--gold-accent);
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.3));
}

.quote-ribbon__text {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ffffff;
  white-space: nowrap;
  transition: color 0.25s ease;
}

.quote-ribbon:hover .quote-ribbon__flag,
.quote-ribbon:focus-visible .quote-ribbon__flag {
  animation-play-state: paused;
  background: linear-gradient(180deg, var(--dark-green-700), var(--luxury-dark));
}

.quote-ribbon:hover .quote-ribbon__text,
.quote-ribbon:focus-visible .quote-ribbon__text { color: var(--gold-accent); }

@keyframes ribbonDrop {
  0%   { transform: translateY(-160%); }
  72%  { transform: translateY(6%); }
  100% { transform: translateY(0); }
}

@keyframes ribbonSway {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(1.8deg); }
  75% { transform: rotate(-1.8deg); }
}

@media (max-width: 560px) {
  .quote-ribbon { right: 16px; }
  .quote-ribbon__cord { height: 70px; }
  .quote-ribbon__flag { padding: 10px 15px 15px; }
  .quote-ribbon__text { font-size: 11px; letter-spacing: 1.5px; }
}

@media (prefers-reduced-motion: reduce) {
  .quote-ribbon { transform: none; animation: none; }
  .quote-ribbon__flag { animation: none; }
}

/* Soft, light gold glow that gently breathes around the Quote ribbon */
@keyframes ribbonGlow {
  0%, 100% {
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.3))
            drop-shadow(0 0 0 rgba(214, 192, 156, 0));
  }
  50% {
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.3))
            drop-shadow(0 0 6px rgba(214, 192, 156, 0.45));
  }
}

/* ── Map zoom control — a rotary knob (darker gray) ── */
.map-knob {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding: 9px 9px 7px;
  background: rgba(34, 38, 38, 0.55);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  border: 0;
  border-radius: 16px;
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
  outline: none;
}

.map-knob:focus-visible {
  box-shadow: 0 0 0 2px rgba(214, 192, 156, 0.6);
}

.map-knob__dial {
  position: relative;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 36%, #595f5e 0%, #383e3d 52%, #262b2a 100%);
  box-shadow:
    inset 0 2px 4px rgba(255, 255, 255, 0.12),
    inset 0 -4px 7px rgba(0, 0, 0, 0.55),
    0 3px 7px rgba(0, 0, 0, 0.5);
  transition: transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
  touch-action: none;
}

.map-knob.is-active .map-knob__dial {
  transition: none;
  cursor: grabbing;
}

/* Position indicator (points up at the mid zoom level) */
.map-knob__indicator {
  position: absolute;
  top: 5px;
  left: 50%;
  width: 3px;
  height: 12px;
  transform: translateX(-50%);
  border-radius: 2px;
  background: #eef1f1;
  box-shadow: 0 0 4px rgba(238, 241, 241, 0.65);
}

.map-knob__label {
  font-size: 8px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(232, 235, 235, 0.6);
}

/* #7 — Occasion cards: subtle "expand" cue on desktop (fades on hover) */
@media (hover: hover) and (min-width: 1025px) {
  .occasion-card h3 {
    position: relative;
  }
  .occasion-card h3::after {
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    margin-top: 12px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E") no-repeat center / contain;
    opacity: 0.55;
    transition: opacity 0.35s ease, transform 0.35s ease;
  }
  .occasion-card:hover h3::after {
    opacity: 0;
    transform: translateY(8px);
  }
}

/* #11 — Sticky mobile quote bar */
.mobile-cta {
  display: none;
}

@media (max-width: 768px) {
  .mobile-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 130;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px calc(10px + env(safe-area-inset-bottom, 0px));
    background: rgba(255, 255, 255, 0.92);
    -webkit-backdrop-filter: blur(14px) saturate(180%);
    backdrop-filter: blur(14px) saturate(180%);
    box-shadow: 0 -6px 22px rgba(13, 13, 13, 0.12);
    border-top: 1px solid rgba(197, 168, 128, 0.4);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.35s ease;
  }

  /* Tuck the quote bar away while the reveal footer is showing */
  .mobile-cta.is-hidden {
    transform: translateY(130%);
    opacity: 0;
    pointer-events: none;
  }

  .mobile-cta__call {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid rgba(21, 59, 60, 0.25);
    color: var(--dark-green-700);
    background: #fff;
  }

  .mobile-cta__call svg { width: 20px; height: 20px; }

  .mobile-cta__quote {
    flex: 1;
    min-height: 46px;
  }

  /* keep the footer clear of the fixed bar */
  .site-footer { padding-bottom: 84px; }
}

/* Full-viewport scrim behind the mobile menu (real element — not clipped by the
   header's transform containing block) */
.nav-scrim {
  position: fixed;
  inset: 0;
  z-index: 190;
  background: rgba(6, 17, 17, 0.5);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

/* Snappier taps on mobile — remove the 300ms double-tap-zoom delay (a11y audit) */
a, button, [role="button"], input, select, textarea, label, summary { touch-action: manipulation; }


/* ── Jost display — light, airy luxury headings ───────────────────────── */
#hero-title,
#services-title, #occasions-title, #group-title, #fleet-title,
#why-title, #trusted-title, #cities-title, #faqs-title, #contact-title,
.proof-heading h2 {
  font-family: var(--font-display);
  font-weight: 300;
  letter-spacing: 0;
}
#hero-title {
  font-weight: 200;
  font-size: clamp(30px, 4.4dvh, 58px);
  line-height: 1.14;
}
