/* ==========================================================================
   Muskoka Limousine Services — Main Stylesheet
   WordPress-ready: keep section IDs and BEM-style classes when converting.
   ========================================================================== */

:root {
  /* Brand palette */
  --color-black: #000000;
  --color-near-black: #080808;
  --color-charcoal-deep: #0a0a0a;
  --color-charcoal: #111111;
  --color-charcoal-mid: #161616;
  --color-charcoal-light: #1c1c1c;
  --color-surface: #222222;
  --color-border: rgba(255, 255, 255, 0.08);
  --color-border-strong: rgba(255, 255, 255, 0.14);
  --color-white: #ffffff;
  --color-off-white: #f5f5f3;
  --color-gray-light: #d4d4d0;
  --color-gray: #9a9a96;
  --color-gray-muted: #6e6e6a;
  --color-gold: #b89b5e;
  --color-gold-soft: rgba(184, 155, 94, 0.18);
  --color-gold-hover: #c9ad70;
  --color-overlay: rgba(0, 0, 0, 0.58);
  --color-overlay-strong: rgba(0, 0, 0, 0.72);

  /* Typography */
  --font-display: "Cormorant Garamond", "Times New Roman", Georgia, serif;
  --font-heading: "Manrope", "Segoe UI", sans-serif;
  --font-body: "Outfit", "Segoe UI", sans-serif;

  /* Layout */
  --container: 1180px;
  --container-narrow: 860px;
  --header-height: 80px;
  --radius-sm: 4px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --shadow-soft: 0 18px 50px rgba(0, 0, 0, 0.35);
  --shadow-card: 0 12px 40px rgba(0, 0, 0, 0.22);
  --transition: 0.28s ease;
  --section-space: clamp(4.5rem, 8vw, 7.5rem);
}

/* --------------------------------------------------------------------------
   Reset / Base
   -------------------------------------------------------------------------- */

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.65;
  color: var(--color-gray-light);
  background: var(--color-near-black);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition), opacity var(--transition),
    border-color var(--transition), background-color var(--transition);
}

ul {
  list-style: none;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

iframe {
  border: 0;
  max-width: 100%;
}

:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  z-index: 10000;
  padding: 0.75rem 1.25rem;
  background: var(--color-gold);
  color: var(--color-black);
  font-weight: 500;
}

.skip-link:focus {
  top: 1rem;
}

/* --------------------------------------------------------------------------
   Layout helpers
   -------------------------------------------------------------------------- */

.container {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
}

.container--narrow {
  width: min(100% - 2.5rem, var(--container-narrow));
}

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

.section__header {
  max-width: 38rem;
  margin-bottom: clamp(2.5rem, 5vw, 3.75rem);
}

.section__header--center {
  margin-inline: auto;
  text-align: center;
}

.section__eyebrow {
  display: inline-block;
  margin-bottom: 0.85rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-gold);
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4vw, 3.15rem);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: 0.01em;
  color: var(--color-white);
}

.section__lead {
  margin-top: 1rem;
  color: var(--color-gray);
  font-size: 1.02rem;
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0.85rem 1.65rem;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-size: 0.84rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background-color var(--transition), color var(--transition),
    border-color var(--transition), transform 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn--primary {
  background: var(--color-gold);
  color: var(--color-black);
}

.btn--primary:hover,
.btn--primary:focus-visible {
  background: var(--color-gold-hover);
  color: var(--color-black);
}

.btn--ghost {
  border-color: var(--color-border-strong);
  color: var(--color-white);
  background: transparent;
}

.btn--ghost:hover,
.btn--ghost:focus-visible {
  border-color: var(--color-gold);
  color: var(--color-gold);
}

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

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

.btn--hero {
  min-height: 50px;
  padding: 0.9rem 1.7rem;
  border-radius: 3px;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
}

.btn--dark {
  background: var(--color-black);
  color: var(--color-white);
  border-color: var(--color-white);
}

.btn--dark:hover,
.btn--dark:focus-visible {
  background: var(--color-white);
  color: var(--color-black);
}

.btn--block {
  width: 100%;
}

/* --------------------------------------------------------------------------
   Site Header
   -------------------------------------------------------------------------- */

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  transition: background-color var(--transition), box-shadow var(--transition);
}

.site-header.is-scrolled {
  position: fixed;
  background: rgba(8, 8, 8, 0.94);
  box-shadow: 0 1px 0 var(--color-border);
  backdrop-filter: blur(10px);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  gap: 1.5rem;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  z-index: 1002;
}

.site-logo__image {
  display: block;
  width: auto;
  height: auto;
  max-width: 180px;
  object-fit: contain;
}

.site-header .site-logo__image {
  max-width: 210px;
  max-height: 64px;
}

@media (max-width: 767px) {
  .site-logo__image {
    max-width: 175px;
  }

  .site-header .site-logo__image {
    max-width: 180px;
    max-height: 54px;
  }
}

.site-logo__name {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: 0.02em;
  color: var(--color-white);
}

.site-logo__tag {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.site-nav__list {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.site-nav__link {
  position: relative;
  font-size: 0.86rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--color-gray-light);
}

.site-nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 1px;
  background: var(--color-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.site-nav__link:hover,
.site-nav__link:focus-visible,
.site-nav__link.is-active {
  color: var(--color-white);
}

.site-nav__link:hover::after,
.site-nav__link:focus-visible::after,
.site-nav__link.is-active::after {
  transform: scaleX(1);
}

.site-nav__item--has-dropdown {
  position: relative;
}

.site-nav__item--has-dropdown::before {
  content: "";
  position: absolute;
  left: -0.75rem;
  right: -0.75rem;
  top: 100%;
  height: 0.9rem;
  z-index: 1004;
}

.site-nav__caret {
  display: inline-block;
  width: 0.42rem;
  height: 0.42rem;
  margin-left: 0.45rem;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  vertical-align: middle;
  opacity: 0.85;
  transition: transform 0.2s ease;
}

.site-nav__item--has-dropdown:hover .site-nav__caret,
.site-nav__item--has-dropdown:focus-within .site-nav__caret,
.site-header:has(.site-nav__item--has-mega:hover) .site-nav__item--has-mega .site-nav__caret,
.site-header:has(.site-mega--areas:hover) .site-nav__item--has-mega .site-nav__caret,
.site-header.is-mega-areas-open .site-nav__item--has-mega .site-nav__caret {
  transform: rotate(-135deg) translateY(1px);
}

.site-nav__dropdown {
  position: absolute;
  top: calc(100% + 0.75rem);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  min-width: 16rem;
  padding: 0.45rem 0;
  margin: 0;
  list-style: none;
  background: rgba(12, 12, 12, 0.98);
  border: 1px solid var(--color-border);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
  z-index: 1005;
}

.site-nav__item--has-dropdown:hover .site-nav__dropdown,
.site-nav__item--has-dropdown:focus-within .site-nav__dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.site-nav__dropdown-link {
  display: block;
  padding: 0.55rem 1.15rem;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  color: var(--color-gray-light);
  white-space: nowrap;
  transition: color var(--transition), background-color var(--transition);
}

.site-nav__dropdown-link:hover,
.site-nav__dropdown-link:focus-visible,
.site-nav__dropdown-link.is-active {
  color: var(--color-white);
  background: rgba(197, 160, 89, 0.08);
}

/* Areas We Serve — desktop mega menu */
.site-nav__item--has-mega {
  position: relative;
}

.site-nav__item--has-mega::before {
  content: "";
  position: absolute;
  left: -1.25rem;
  right: -1.25rem;
  top: 0;
  height: calc(100% + 1.5rem);
  z-index: 1004;
}

@media (min-width: 768px) {
  .site-nav__list {
    align-items: stretch;
  }

  .site-nav__item--has-mega {
    display: flex;
    align-items: center;
  }

  .site-nav__item--has-mega::before {
    height: calc(100% + 2rem);
  }
}

.site-nav__mega-row,
.site-nav__dropdown-row {
  display: inline-flex;
  align-items: center;
}

.site-nav__mega-toggle,
.site-nav__dropdown-toggle {
  display: none;
}

.site-nav__mega-mobile {
  display: none;
}

.site-mega--areas {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  margin-top: -1px;
  padding: calc(1.35rem + 18px) 0 1.5rem;
  background: rgba(10, 10, 10, 0.98);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid rgba(184, 155, 94, 0.12);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.42);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-8px);
  transition:
    opacity 0.28s ease,
    visibility 0.28s ease,
    transform 0.28s ease;
  z-index: 1003;
}

.site-mega--areas::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -18px;
  height: 18px;
}

.site-header:has(.site-nav__item--has-mega:hover) .site-mega--areas,
.site-header:has(.site-nav__item--has-mega:focus-within) .site-mega--areas,
.site-header:has(.site-mega--areas:hover) .site-mega--areas,
.site-header:has(.site-mega--areas:focus-within) .site-mega--areas,
.site-header.is-mega-areas-open .site-mega--areas {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.site-mega__inner {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.site-mega__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.35rem 2rem;
}

.site-mega__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-mega__link {
  display: block;
  padding: 0.42rem 0;
  font-size: 0.84rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--color-gray-light);
  border-bottom: 1px solid transparent;
  transition: color 0.22s ease, border-color 0.22s ease, padding-left 0.22s ease;
}

.site-mega__link:hover,
.site-mega__link:focus-visible {
  color: var(--color-gold);
  padding-left: 0.35rem;
  border-bottom-color: rgba(184, 155, 94, 0.25);
}

.site-mega__footer {
  padding-top: 0.85rem;
  border-top: 1px solid var(--color-border);
}

.site-mega__all {
  display: inline-flex;
  align-items: center;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-gold);
  transition: color 0.22s ease;
}

.site-mega__all:hover,
.site-mega__all:focus-visible {
  color: var(--color-white);
}

@media (prefers-reduced-motion: reduce) {
  .site-mega--areas {
    transition: none;
  }
}

.site-header__cta {
  flex-shrink: 0;
}

.site-header__cta .btn--primary {
  background: transparent;
  border-color: rgba(184, 155, 94, 0.55);
  color: var(--color-white);
}

.site-header__cta .btn--primary:hover,
.site-header__cta .btn--primary:focus-visible {
  background: rgba(184, 155, 94, 0.12);
  border-color: var(--color-gold);
  color: var(--color-white);
}

.nav-toggle {
  display: none;
  position: relative;
  z-index: 1002;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
}

.nav-toggle__bar {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--color-white);
  position: relative;
  transition: background-color 0.2s ease;
}

.nav-toggle__bar::before,
.nav-toggle__bar::after {
  content: "";
  position: absolute;
  left: 0;
  width: 22px;
  height: 1.5px;
  background: var(--color-white);
  transition: transform 0.28s ease, top 0.28s ease;
}

.nav-toggle__bar::before {
  top: -7px;
}

.nav-toggle__bar::after {
  top: 7px;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar::after {
  top: 0;
  transform: rotate(-45deg);
}

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-height) + 2.5rem) 0 3.5rem;
  overflow: hidden;
  background: var(--color-black);
}

.hero__slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__slide {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 0.65s ease-in-out;
  will-change: opacity;
}

.hero__slide.is-active {
  opacity: 1;
}

.hero__slide--1 {
  background-image: url("../assets/images/muskoka-limousine-services.webp");
}

.hero__slide--2 {
  background-image: url("../assets/images/muskoka-luxury-limousine.webp");
}

/* Services pages — single-slide hero backgrounds (reuse homepage hero layout) */
.hero__slide--services-index {
  background-image: url("../assets/images/muskoka-limousine-services.webp");
}

.hero__slide--airport {
  background-image: url("../assets/images/muskoka-airport-transfer.webp");
}

.hero__slide--chauffeur {
  background-image: url("../assets/images/muskoka-limousine-services.webp");
}

.hero__slide--corporate {
  background-image: url("../assets/images/muskoka-corporate-transfers.webp");
}

.hero__slide--wedding {
  background-image: url("../assets/images/muskoka-luxury-limousine.webp");
}

.hero__slide--cross-border {
  background-image: url("../assets/images/muskoka-cross-border-services.webp");
}

.hero__slide--events {
  background-image: url("../assets/images/muskoka-event-transportation.webp");
}

.hero__slide--fleet {
  background-image: url("../assets/images/muskoka-luxury-limousine.webp");
}

.hero__slide--reservation {
  background-image: url("../assets/images/reservation-hero.webp");
}

.hero__slide--about {
  background-image: url("../assets/images/muskoka-limousine-services.webp");
}

.hero__slide--contact {
  background-image: url("../assets/images/muskoka-airport-transfer.webp");
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    105deg,
    rgba(0, 0, 0, 0.78) 0%,
    rgba(0, 0, 0, 0.55) 45%,
    rgba(0, 0, 0, 0.42) 100%
  );
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(1.75rem, 3.5vw, 3rem);
  align-items: center;
  padding-top: 1.25rem;
  width: min(100% - 1.5rem, 1360px);
}

.hero__content {
  position: relative;
  display: grid;
  width: 100%;
  max-width: 600px;
  align-self: center;
  margin-top: 1.5rem;
}

.hero-copy {
  grid-area: 1 / 1;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease,
    visibility 0.6s ease;
  pointer-events: none;
}

.hero-copy.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.hero-copy__eyebrow {
  display: inline-block;
  margin-bottom: 1.15rem;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--color-gold);
}

.hero-copy__title {
  font-family: "Cormorant Garamond", "Times New Roman", Georgia, serif;
  font-size: 4.75rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.01em;
  color: var(--color-white);
  max-width: 640px;
  margin-bottom: 1.35rem;
}

@media (max-width: 1199px) {
  .hero-copy__title {
    font-size: clamp(3.5rem, 5.2vw, 4rem);
  }
}

@media (max-width: 767px) {
  .hero-copy__title {
    font-size: clamp(2.625rem, 9vw, 3.125rem);
    line-height: 1.02;
  }
}

.hero-copy__text {
  font-family: var(--font-body);
  font-size: clamp(0.98rem, 1.25vw, 1.06rem);
  font-weight: 300;
  line-height: 1.7;
  color: var(--color-gray-light);
  max-width: 560px;
  margin-bottom: 2.15rem;
}

.hero-copy__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

/* Booking card — light surface for GLM iframe contrast */
.booking-card {
  background: transparent;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 0;
  width: 100%;
  max-width: 480px;
  margin-left: auto;
  overflow: hidden;
}

.booking-card__frame {
  width: 100%;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: transparent;
  min-height: 0;
}

.booking-card__frame iframe,
#glm-booking-iframe,
.glm-iframe {
  display: block;
  width: 100% !important;
  max-width: 100%;
  min-height: 280px;
  border: 0;
  overflow: hidden;
}

.booking-card__placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  min-height: 420px;
  padding: 2rem 1.5rem;
  text-align: center;
  border: 1px dashed rgba(0, 0, 0, 0.15);
  border-radius: var(--radius-md);
  background: #fff;
  color: #555;
}

.booking-card__placeholder strong {
  color: #111;
  font-weight: 600;
}

.booking-card__placeholder code {
  display: inline-block;
  margin-top: 0.35rem;
  padding: 0.2rem 0.45rem;
  font-size: 0.78rem;
  background: #f0f0ee;
  border-radius: 3px;
}

/* --------------------------------------------------------------------------
   Services — full-width section, constrained card grid
   -------------------------------------------------------------------------- */

.services {
  background: #0b0b0b;
  border-top: 1px solid var(--color-border);
  padding-bottom: clamp(3.5rem, 6vw, 5rem);
}

.services.services--home {
  position: relative;
  isolation: isolate;
  background-color: #0b0b0b;
  background-image: url("../assets/images/services-bg.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.services.services--home::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.74);
  z-index: 0;
  pointer-events: none;
}

.services.services--home > .container,
.services.services--home > .services__rows {
  position: relative;
  z-index: 1;
}

.services__intro {
  max-width: 56rem;
  margin-bottom: clamp(2.75rem, 5vw, 4rem);
  padding-inline: 0.5rem;
}

.services__intro .section__title {
  font-family: "Cormorant Garamond", "Times New Roman", Georgia, serif;
  font-size: 4.25rem;
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: 0.01em;
  color: var(--color-white);
  max-width: none;
}

.services__intro .section__lead {
  margin-top: 1.25rem;
  margin-inline: auto;
  max-width: 44rem;
}

@media (max-width: 1199px) {
  .services__intro .section__title {
    font-size: clamp(3.25rem, 5vw, 3.75rem);
  }
}

@media (max-width: 767px) {
  .services > .container {
    width: min(100% - 0.75rem, var(--container));
  }

  .services__intro {
    max-width: none;
    padding-inline: 0;
    margin-bottom: 2rem;
  }

  .services__intro .section__title {
    font-size: clamp(1.9rem, 6.8vw, 2.35rem);
  }

  .services__intro .section__lead {
    margin-top: 1rem;
    max-width: none;
    padding-inline: 0;
  }
}

.services__rows {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  box-sizing: border-box;
}

.service-row {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #111;
}

.service-row__link {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  color: inherit;
}

.service-row__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
  transform: scale(1);
  transition: transform 0.5s ease;
}

/* Wider landscape framing — less crop / zoom */
.service-row:nth-child(1) .service-row__image {
  object-position: 48% 42%;
}

.service-row:nth-child(2) .service-row__image {
  object-position: 50% 40%;
}

.service-row:nth-child(3) .service-row__image {
  object-position: 52% 45%;
}

.service-row:nth-child(4) .service-row__image {
  object-position: 50% 42%;
}

.service-row:nth-child(5) .service-row__image {
  object-position: 48% 40%;
}

.service-row:nth-child(6) .service-row__image {
  object-position: 50% 44%;
}

.service-row__shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.55) 0%,
    rgba(0, 0, 0, 0.18) 28%,
    rgba(0, 0, 0, 0) 52%
  );
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.service-row__content {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: 0;
  width: auto;
  max-width: none;
  padding: 0 28px 12px;
  background: transparent;
  border-radius: 0;
  transition:
    padding 0.45s ease,
    background-color 0.4s ease,
    box-shadow 0.4s ease,
    -webkit-mask-image 0.45s ease,
    mask-image 0.45s ease;
}

/* Gold panel background layer with concave top (center dips down) */
.service-row__content::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  z-index: 0;
  background: #b89b5e;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 200' preserveAspectRatio='none'%3E%3Cpath fill='white' d='M0 0C120 0 150 36 200 36C250 36 280 0 400 0V200H0Z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 200' preserveAspectRatio='none'%3E%3Cpath fill='white' d='M0 0C120 0 150 36 200 36C250 36 280 0 400 0V200H0Z'/%3E%3C/svg%3E");
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

.service-row__title {
  position: relative;
  z-index: 1;
  display: block;
  max-width: 100%;
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 1.6vw, 1.7rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--color-white);
  margin: 0;
  padding: 0.45rem 0 0;
  background: none;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
  transition: color 0.35s ease, text-shadow 0.35s ease;
}

.service-row__title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 42px;
  height: 1px;
  background: var(--color-gold);
  transition: background-color 0.35s ease, width 0.35s ease;
}

.service-row__more {
  position: relative;
  z-index: 1;
  display: block;
  width: fit-content;
  margin: 0.45rem 0 0;
  padding: 0;
  border: 0;
  background: transparent;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gold);
  cursor: pointer;
  max-height: 2rem;
  overflow: hidden;
  transition:
    opacity 0.3s ease,
    color 0.3s ease,
    transform 0.3s ease,
    max-height 0.3s ease,
    margin 0.3s ease,
    visibility 0.3s ease;
}

.service-row__more:hover,
.service-row__more:focus-visible {
  color: #d4bc7a;
  outline: none;
}

.service-row__more::after {
  content: " →";
}

.service-row__text {
  position: relative;
  z-index: 1;
  max-width: 400px;
  margin: 0;
  padding: 0;
  max-height: 0;
  overflow: hidden;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.55;
  color: rgba(26, 22, 16, 0.82);
  text-shadow: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition:
    opacity 0.45s ease,
    transform 0.45s ease,
    visibility 0.45s ease,
    max-height 0.45s ease,
    margin 0.45s ease,
    color 0.35s ease;
}

.service-row__btn {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  margin: 0;
  padding: 0;
  max-height: 0;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 3px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #1a1610;
  background: transparent;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  pointer-events: none;
  transition:
    opacity 0.45s ease 0.04s,
    transform 0.45s ease 0.04s,
    visibility 0.45s ease 0.04s,
    max-height 0.45s ease,
    margin 0.45s ease,
    padding 0.45s ease,
    border-color 0.45s ease,
    background-color 0.28s ease,
    color 0.28s ease;
}

.service-row.is-active .service-row__image,
.service-row:hover .service-row__image {
  transform: scale(1.02);
}

.service-row.is-active .service-row__shade,
.service-row:hover .service-row__shade {
  opacity: 0.35;
}

.service-row.is-active .service-row__content,
.service-row:hover .service-row__content {
  padding: 2.75rem 28px 1.25rem;
  background: transparent;
  box-shadow: none;
}

.service-row.is-active .service-row__content::before,
.service-row:hover .service-row__content::before {
  opacity: 1;
}

.service-row.is-active .service-row__title,
.service-row:hover .service-row__title {
  color: #1a1610;
  text-shadow: none;
  padding-top: 0.65rem;
}

.service-row.is-active .service-row__title::before,
.service-row:hover .service-row__title::before {
  background: rgba(26, 22, 16, 0.45);
  width: 36px;
}

.service-row.is-active .service-row__more,
.service-row:hover .service-row__more {
  opacity: 0;
  visibility: hidden;
  max-height: 0;
  margin: 0;
  pointer-events: none;
  transform: translateY(-4px);
}

.service-row.is-active .service-row__text,
.service-row:hover .service-row__text {
  opacity: 1;
  visibility: visible;
  max-height: 8rem;
  margin-top: 0.65rem;
  transform: translateY(0);
}

.service-row.is-active .service-row__btn,
.service-row:hover .service-row__btn {
  opacity: 1;
  visibility: visible;
  max-height: 3.5rem;
  margin-top: 0.9rem;
  padding: 0.55rem 1rem;
  border-color: rgba(26, 22, 16, 0.55);
  color: #1a1610;
  transform: translateY(0);
  pointer-events: auto;
  text-decoration: none;
}

.service-row__btn:hover,
.service-row__btn:focus-visible {
  background: rgba(26, 22, 16, 0.1);
  color: #0d0b08;
  outline: none;
}

/* Touch / no-hover: expand only via See More click */
@media (hover: none) {
  .service-row:hover .service-row__image {
    transform: scale(1);
  }

  .service-row:hover .service-row__shade {
    opacity: 1;
  }

  .service-row:hover .service-row__content {
    padding: 0 28px 12px;
  }

  .service-row:hover .service-row__content::before {
    opacity: 0;
  }

  .service-row:hover .service-row__title {
    color: var(--color-white);
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
    padding-top: 0.45rem;
  }

  .service-row:hover .service-row__title::before {
    background: var(--color-gold);
    width: 42px;
  }

  .service-row:hover .service-row__more {
    opacity: 1;
    visibility: visible;
    max-height: none;
    margin: 0.55rem 0 0;
    pointer-events: auto;
    transform: none;
  }

  .service-row:hover .service-row__text,
  .service-row:hover .service-row__btn {
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    margin: 0;
    padding: 0;
    transform: translateY(8px);
    pointer-events: none;
  }
}

@media (min-width: 1500px) {
  .services__rows {
    max-width: 1500px;
  }
}

@media (max-width: 1199px) {
  .services__rows {
    padding: 0 30px;
    grid-template-columns: repeat(2, 1fr);
  }

  .service-row {
    height: 280px;
  }
}

@media (max-width: 767px) {
  .services__rows {
    padding: 0 18px;
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .service-row {
    height: 300px;
  }
}

/* --------------------------------------------------------------------------
   Why Choose Us
   -------------------------------------------------------------------------- */

.why {
  width: 100%;
  background: #0a0a0a;
  border-top: 1px solid var(--color-border);
  padding-top: clamp(4.5rem, 7vw, 6.5rem);
  padding-bottom: clamp(4.5rem, 7vw, 6.5rem);
  overflow: hidden;
}

.why__inner {
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  padding-left: 60px;
  padding-right: 60px;
  box-sizing: border-box;
}

.why__intro.section__header {
  max-width: none;
  width: 100%;
  margin-inline: auto;
  margin-bottom: clamp(2.75rem, 5vw, 4rem);
  padding-inline: 0;
}

.why__title {
  font-family: "Cormorant Garamond", "Times New Roman", Georgia, serif;
  font-size: clamp(3rem, 4.5vw, 3.85rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: 0.01em;
  color: var(--color-white);
  max-width: none;
}

.why__lead {
  margin-top: 1.15rem;
  margin-inline: auto;
  max-width: 48rem;
  color: var(--color-gray);
  font-family: var(--font-body);
  font-size: 1.02rem;
  line-height: 1.7;
}

.why__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.48fr) minmax(0, 0.52fr);
  gap: clamp(2rem, 3.5vw, 3rem);
  align-items: center;
}

.why__media {
  position: relative;
  width: 100%;
  max-width: 580px;
}

.why__media-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(184, 155, 94, 0.2);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

.why__media-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.35) 0%, transparent 45%);
  pointer-events: none;
}

.why__slides {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  max-height: 560px;
  background: #1a1a1a;
}

.why__image,
.why__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-height: none;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: center 55%;
  display: block;
  background: #1a1a1a;
  opacity: 0;
  transform: translateY(28px) scale(1.02);
  transition:
    opacity 0.65s ease,
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 0;
}

.why__slide.is-active {
  opacity: 1;
  transform: translateY(0) scale(1);
  z-index: 1;
}

.why__slide.is-leaving {
  opacity: 0;
  transform: translateY(-18px) scale(1.01);
  z-index: 0;
}

.why__float {
  position: absolute;
  right: -0.75rem;
  bottom: 1.5rem;
  z-index: 2;
  width: min(240px, 72%);
  padding: 1.2rem 1.2rem 1.25rem;
  background: #B89B5E;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 18px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.5);
  animation: why-float 4.5s ease-in-out infinite;
}

.why__float-icon {
  display: inline-flex;
  width: 34px;
  height: 34px;
  margin-bottom: 0.75rem;
  color: #111111;
}

.why__float-icon svg {
  width: 100%;
  height: 100%;
}

.why__float-text {
  font-family: "Cormorant Garamond", "Times New Roman", Georgia, serif;
  font-size: 1.18rem;
  font-weight: 600;
  line-height: 1.3;
  color: #111111;
}

.why__features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.15rem;
}

.why-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.35rem 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.02);
  transition: border-color 0.3s ease, background-color 0.3s ease, transform 0.3s ease;
}

.why-item__icon {
  width: 52px;
  height: 52px;
  color: var(--color-gold);
  flex-shrink: 0;
}

.why-item__icon svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.why-icon-ring {
  opacity: 0.55;
  transform-origin: center;
  animation: why-ring-spin 12s linear infinite;
}

.why-icon-draw {
  stroke-dasharray: 80;
  stroke-dashoffset: 80;
  animation: why-draw 1.4s ease forwards;
}

.why-item:nth-child(1) .why-icon-draw { animation-delay: 0.05s; }
.why-item:nth-child(2) .why-icon-draw { animation-delay: 0.15s; }
.why-item:nth-child(3) .why-icon-draw { animation-delay: 0.25s; }
.why-item:nth-child(4) .why-icon-draw { animation-delay: 0.35s; }

.why-icon-pulse {
  transform-origin: center;
  animation: why-pulse 2.4s ease-in-out infinite;
}

.why-item:nth-child(2) .why-icon-pulse { animation-delay: 0.3s; }
.why-item:nth-child(3) .why-icon-pulse { animation-delay: 0.55s; }
.why-item:nth-child(4) .why-icon-pulse { animation-delay: 0.8s; }

.why-item__number {
  display: block;
  margin-bottom: 0.4rem;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--color-gold);
  transition: color 0.28s ease;
}

.why-item__title {
  font-family: "Cormorant Garamond", "Times New Roman", Georgia, serif;
  font-size: clamp(1.35rem, 1.5vw, 1.6rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-off-white);
  margin-bottom: 0.55rem;
  transition: color 0.28s ease;
}

.why-item__text {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.65;
  color: var(--color-gray);
}

.why-item:hover {
  border-color: rgba(184, 155, 94, 0.45);
  background: rgba(184, 155, 94, 0.05);
  transform: translateY(-3px);
}

.why-item:hover .why-item__number,
.why-item:hover .why-item__icon {
  color: var(--color-gold-hover);
}

.why-item:hover .why-item__title {
  color: var(--color-white);
}

.why-item:hover .why-icon-ring {
  opacity: 0.9;
  animation-duration: 7s;
}

@keyframes why-draw {
  to { stroke-dashoffset: 0; }
}

@keyframes why-pulse {
  0%, 100% { opacity: 0.55; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.08); }
}

@keyframes why-ring-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes why-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

@media (max-width: 1199px) {
  .why__inner {
    padding-left: 40px;
    padding-right: 40px;
  }

  .why__layout {
    grid-template-columns: minmax(0, 0.46fr) minmax(0, 0.54fr);
    gap: 2rem;
  }

  .why__media {
    max-width: 520px;
  }

  .why__slides {
    max-height: 480px;
  }

  .why__float {
    right: 0.5rem;
    bottom: 1.1rem;
    width: min(210px, 68%);
  }

  .why__float-text {
    font-size: 1.08rem;
  }

  .why-item {
    padding: 1.15rem 1rem;
    gap: 0.85rem;
  }

  .why-item__icon {
    width: 46px;
    height: 46px;
  }
}

@media (max-width: 991px) {
  .why__layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .why__title {
    font-size: clamp(2.35rem, 4vw, 2.85rem);
  }

  .why__media {
    max-width: 640px;
    margin-inline: auto;
  }

  .why__slides {
    aspect-ratio: 4 / 5;
    max-height: 520px;
  }

  .why__slide {
    object-position: center center;
  }

  .why__float {
    display: none;
  }
}

@media (max-width: 767px) {
  .why {
    padding-top: 3.75rem;
    padding-bottom: 3.75rem;
  }

  .why__inner {
    padding-left: 20px;
    padding-right: 20px;
  }

  .why__title {
    font-size: clamp(1.9rem, 6.8vw, 2.35rem);
  }

  .why__intro.section__header {
    margin-bottom: 1.75rem;
  }

  .why__media {
    max-width: none;
  }

  .why__slides {
    aspect-ratio: 3 / 4;
    max-height: 480px;
  }

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

@media (prefers-reduced-motion: reduce) {
  .why-icon-ring,
  .why-icon-draw,
  .why-icon-pulse,
  .why__float,
  .why__slide {
    animation: none !important;
    transition: none !important;
  }

  .why__slide {
    opacity: 0;
    transform: none;
  }

  .why__slide.is-active {
    opacity: 1;
    transform: none;
  }

  .why-icon-draw {
    stroke-dashoffset: 0;
  }

  .why-item:hover {
    transform: none;
  }

  .why__media:hover .why__image {
    transform: none;
  }
}

/* --------------------------------------------------------------------------
   Fleet — 3D coverflow
   -------------------------------------------------------------------------- */

.fleet {
  width: 100%;
  background: #0a0a0a;
  border-top: 1px solid var(--color-border);
  padding: 90px 0 120px;
  overflow-x: clip;
  overflow-y: visible;
}

.fleet.fleet--home {
  position: relative;
  isolation: isolate;
  border-top: 0;
  background-color: #0a0a0a;
  background-image: url("../assets/images/baysville.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.fleet.fleet--home::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.74);
  z-index: 0;
  pointer-events: none;
}

.fleet.fleet--home > .fleet__inner {
  position: relative;
  z-index: 1;
}

.fleet__intro,
.fleet__nav {
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity 0.75s ease,
    transform 0.75s ease;
}

.fleet__viewport {
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity 0.75s ease,
    transform 0.75s ease;
}

.fleet.is-inview .fleet__intro {
  opacity: 1;
  transform: none;
  transition-delay: 0.05s;
}

.fleet.is-inview .fleet__nav {
  opacity: 1;
  transform: none;
  transition-delay: 0.18s;
}

.fleet.is-inview .fleet__viewport {
  opacity: 1;
  transform: none;
  transition-delay: 0.28s;
}

.fleet__inner {
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  padding-left: 60px;
  padding-right: 60px;
  box-sizing: border-box;
}

.fleet__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 48px;
}

.fleet__title {
  font-family: "Cormorant Garamond", "Times New Roman", Georgia, serif;
  font-size: clamp(2.75rem, 4vw, 3.5rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: 0.01em;
  color: var(--color-white);
  margin-bottom: 0.75rem;
}

.fleet__lead {
  max-width: 34rem;
  font-family: var(--font-body);
  font-size: 1.02rem;
  font-weight: 300;
  line-height: 1.65;
  color: var(--color-gray);
}

.fleet__nav {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
}

.fleet__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(184, 155, 94, 0.65);
  border-radius: 3px;
  background: transparent;
  color: var(--color-gold);
  font-size: 1.15rem;
  line-height: 1;
  cursor: pointer;
  transition: background-color 0.28s ease, border-color 0.28s ease, color 0.28s ease;
}

.fleet__arrow:hover,
.fleet__arrow:focus-visible {
  background: rgba(184, 155, 94, 0.12);
  border-color: var(--color-gold);
  color: var(--color-white);
  outline: none;
}

.fleet__viewport {
  position: relative;
  left: 50%;
  width: 100vw;
  max-width: 100vw;
  margin-left: -50vw;
  height: 480px;
  padding: 24px 0 40px;
  box-sizing: border-box;
  perspective: 1800px;
  perspective-origin: 50% 50%;
  overflow: visible;
  touch-action: pan-y;
}

.fleet__track {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
}

.fleet-slide {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(400px, 26vw);
  height: min(400px, 26vw);
  margin: 0;
  border-radius: 32px;
  overflow: hidden;
  background: transparent;
  border: none;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
  transform-origin: center center;
  transform-style: preserve-3d;
  backface-visibility: hidden;
  cursor: pointer;
  will-change: transform, opacity;
  transition:
    transform 0.7s cubic-bezier(0.34, 1.45, 0.64, 1),
    opacity 0.45s ease,
    box-shadow 0.45s ease;
}

.fleet-slide.is-active {
  cursor: default;
  box-shadow: 0 28px 64px rgba(0, 0, 0, 0.55);
}

.fleet-slide.is-hidden {
  pointer-events: none;
  visibility: hidden;
}

.fleet-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  display: block;
  pointer-events: none;
  user-select: none;
}

/* Homepage fleet slider — 3 / 2 / 1 cards per view, infinite loop */
.fleet-carousel {
  --fleet-per-view: 3;
  --fleet-gap: 24px;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity 0.75s ease,
    transform 0.75s ease;
}

.fleet.is-inview .fleet-carousel {
  opacity: 1;
  transform: none;
  transition-delay: 0.28s;
}

.fleet-carousel__track {
  display: flex;
  gap: var(--fleet-gap);
  will-change: transform;
}

.fleet-carousel.is-animating .fleet-carousel__track {
  transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.fleet-vehicle {
  flex: 0 0
    calc(
      (100% - (var(--fleet-per-view) - 1) * var(--fleet-gap)) / var(--fleet-per-view)
    );
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-width: 0;
  text-align: center;
  background: transparent;
  border: 0;
}

.fleet-vehicle__media {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-inline: auto;
  aspect-ratio: 16 / 10;
  padding: 0 clamp(0.75rem, 2vw, 1.5rem);
  box-sizing: border-box;
  background: transparent;
}

.fleet-vehicle__image {
  width: 100%;
  max-width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  margin-inline: auto;
  background: transparent;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.fleet-vehicle:hover .fleet-vehicle__image {
  transform: scale(1.04);
}

.fleet-vehicle__name {
  margin: -0.5rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 1.9vw, 1.65rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.01em;
  color: var(--color-white);
}

.fleet-vehicle__specs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.25rem, 2.5vw, 2rem);
  margin-top: 0.7rem;
  padding-top: 0.7rem;
  border-top: 1px solid rgba(184, 155, 94, 0.28);
  width: min(100%, 15rem);
}

.fleet-vehicle__spec {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-white);
}

.fleet-vehicle__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  color: var(--color-white);
}

.fleet-vehicle__icon svg {
  width: 100%;
  height: 100%;
}

.fleet-vehicle__value {
  font-family: var(--font-body);
  font-size: 0.98rem;
  font-weight: 500;
  line-height: 1;
  color: var(--color-white);
}

@media (max-width: 1199px) {
  .fleet-carousel {
    --fleet-per-view: 2;
    --fleet-gap: 20px;
  }
}

@media (max-width: 767px) {
  .fleet-carousel {
    --fleet-per-view: 1;
    --fleet-gap: 16px;
  }

  .fleet-vehicle {
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .fleet-vehicle__media {
    max-width: min(100%, 420px);
    padding: 0;
  }

  .fleet-vehicle__name,
  .fleet-vehicle__specs {
    margin-inline: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .fleet-carousel {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .fleet-carousel.is-animating .fleet-carousel__track,
  .fleet-vehicle__image {
    transition: none;
  }
}

/* Static fleet grid (Services pages — 4 vehicles, no carousel) */
.fleet--static .fleet__nav {
  display: none;
}

.fleet--static .fleet__viewport {
  position: static;
  left: auto;
  width: 100%;
  max-width: none;
  margin-left: 0;
  height: auto;
  perspective: none;
  padding: 0;
  opacity: 1;
  transform: none;
  overflow: visible;
}

.fleet--static .fleet__track {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
  height: auto;
  transform-style: flat;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
  box-sizing: border-box;
}

.fleet--static .fleet-slide {
  position: relative;
  top: auto;
  left: auto;
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  max-width: none;
  transform: none !important;
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto;
  cursor: default;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
}

.fleet--static .fleet-slide.is-hidden {
  pointer-events: auto;
  visibility: visible;
}

@media (max-width: 1199px) {
  .fleet--static .fleet__track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .fleet--static .fleet__track {
    grid-template-columns: 1fr;
    max-width: 320px;
  }

  .fleet--static .fleet-slide {
    border-radius: 28px;
  }
}

.fleet--static .fleet__actions {
  display: flex;
  justify-content: center;
  margin-top: clamp(2rem, 4vw, 2.75rem);
  padding: 0 clamp(1.25rem, 4vw, 2.5rem) clamp(0.5rem, 2vw, 1rem);
}

.fleet--static .fleet__more {
  min-height: 50px;
  padding: 0.9rem 1.75rem;
  border-radius: 3px;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

@media (max-width: 1199px) {
  .fleet__inner {
    padding-left: 40px;
    padding-right: 40px;
  }

  .fleet__viewport {
    height: 460px;
  }

  .fleet-slide {
    width: min(340px, 34vw);
    height: min(340px, 34vw);
    border-radius: 28px;
  }
}

@media (max-width: 767px) {
  .fleet {
    padding: 70px 0 90px;
  }

  .fleet__inner {
    padding-left: 20px;
    padding-right: 20px;
  }

  .fleet__title {
    font-size: clamp(1.85rem, 6.5vw, 2.25rem);
    margin-bottom: 0.55rem;
  }

  .fleet__header {
    align-items: flex-start;
    margin-bottom: 36px;
  }

  .fleet__arrow {
    width: 42px;
    height: 42px;
  }

  .fleet__viewport {
    height: 340px;
    padding: 12px 0 24px;
  }

  .fleet-slide {
    width: min(280px, 72vw);
    height: min(280px, 72vw);
    border-radius: 24px;
  }
}

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

  .fleet__intro,
  .fleet__nav,
  .fleet__viewport {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* --------------------------------------------------------------------------
   About
   -------------------------------------------------------------------------- */

.about {
  width: 100%;
  background: #0a0a0a;
  border-top: 1px solid var(--color-border);
  padding: 100px 0;
}

.about__inner {
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  padding-left: 60px;
  padding-right: 60px;
  box-sizing: border-box;
}

.about__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: center;
}

.about__title {
  font-family: "Cormorant Garamond", "Times New Roman", Georgia, serif;
  font-size: clamp(2.6rem, 4vw, 3.5rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0.01em;
  color: var(--color-white);
  margin-bottom: 1.35rem;
  max-width: 16ch;
}

.about__text {
  max-width: 600px;
  margin-bottom: 1.1rem;
  font-family: var(--font-body);
  font-size: 1.02rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--color-gray);
}

.about__text:last-of-type {
  margin-bottom: 2rem;
}

.about__note {
  max-width: 600px;
  margin-bottom: 2rem;
  padding: 1.15rem 1.35rem;
  border-left: 2px solid var(--color-gold);
  background: rgba(184, 155, 94, 0.06);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.72;
  color: var(--color-gray-light);
}

.about__btn {
  border-radius: 3px;
}

.about__btn:hover,
.about__btn:focus-visible {
  background: var(--color-gold-hover);
  color: var(--color-black);
}

.about__media {
  position: relative;
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: #151515;
}

.about__image {
  width: 100%;
  height: auto;
  aspect-ratio: 5 / 4;
  max-height: 420px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.about__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.22) 0%,
    transparent 42%
  );
  pointer-events: none;
}

@media (max-width: 1199px) {
  .about__inner {
    padding-left: 40px;
    padding-right: 40px;
  }

  .about__layout {
    gap: 2.25rem;
  }

  .about__title {
    max-width: none;
  }
}

@media (max-width: 991px) {
  .about {
    padding: 80px 0;
  }

  .about__layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about__media {
    max-width: 720px;
  }

  .about__image {
    aspect-ratio: 4 / 5;
    max-height: 520px;
  }
}

@media (max-width: 767px) {
  .about {
    padding: 70px 0;
  }

  .about__inner {
    padding-left: 20px;
    padding-right: 20px;
  }

  .about__title {
    font-size: clamp(2.35rem, 8vw, 2.85rem);
  }

  .about__media {
    max-width: none;
  }

  .about__image {
    aspect-ratio: 3 / 4;
    max-height: 480px;
  }
}

/* --------------------------------------------------------------------------
   How It Works — animated timeline
   -------------------------------------------------------------------------- */

.how {
  width: 100%;
  background: #111111;
  border-top: 1px solid var(--color-border);
  padding: 100px 0;
  overflow: hidden;
}

.how__inner {
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  padding-left: 60px;
  padding-right: 60px;
  box-sizing: border-box;
}

.how__intro {
  max-width: 40rem;
  margin: 0 auto 4rem;
  text-align: center;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.how__title {
  font-family: "Cormorant Garamond", "Times New Roman", Georgia, serif;
  font-size: clamp(2.6rem, 4vw, 3.5rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0.01em;
  color: var(--color-white);
  margin-bottom: 1rem;
}

.how__lead {
  font-family: var(--font-body);
  font-size: 1.02rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--color-gray);
}

.how__timeline {
  position: relative;
  padding-top: 0.75rem;
}

.how__curve {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  overflow: visible;
}

.how__curve--desktop {
  display: block;
  top: 0;
  left: 12.5%;
  width: 75%;
  height: 90px;
}

.how__curve--mobile {
  display: none;
}

.how__curve-base,
.how__curve-progress {
  stroke-width: 1.35;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.how__curve-base {
  stroke: rgba(184, 155, 94, 0.2);
}

.how__curve-progress {
  stroke: var(--color-gold);
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  transition: stroke-dashoffset 1.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.how__steps {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.how-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 0.5rem;
}

.how-step:nth-child(1) {
  padding-top: 1.1rem;
}

.how-step:nth-child(2) {
  padding-top: 0.15rem;
}

.how-step:nth-child(3) {
  padding-top: 1.85rem;
}

.how-step:nth-child(4) {
  padding-top: 0.55rem;
}

.how-step__node {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-bottom: 1.6rem;
  border-radius: 50%;
  border: 1px solid rgba(184, 155, 94, 0.45);
  background: #151515;
  box-shadow: 0 0 0 8px #111111;
  opacity: 0;
  transform: scale(0.55);
  transition:
    opacity 0.45s ease,
    transform 0.45s ease,
    border-color 0.35s ease,
    background-color 0.35s ease,
    box-shadow 0.45s ease;
}

.how-step__number {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--color-gold);
}

.how-step__body {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.how-step__title {
  font-family: "Cormorant Garamond", "Times New Roman", Georgia, serif;
  font-size: clamp(1.4rem, 1.6vw, 1.75rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-white);
  margin-bottom: 0.7rem;
}

.how-step__text {
  max-width: 260px;
  margin-inline: auto;
  font-family: var(--font-body);
  font-size: 0.94rem;
  font-weight: 300;
  line-height: 1.65;
  color: var(--color-gray);
}

.how.is-inview .how__intro {
  opacity: 1;
  transform: none;
}

.how.is-inview .how__curve-progress {
  stroke-dashoffset: 0;
}

.how.is-inview .how-step:nth-child(1) .how-step__node {
  opacity: 1;
  transform: scale(1);
  transition-delay: 0.2s;
}

.how.is-inview .how-step:nth-child(1) .how-step__body {
  opacity: 1;
  transform: none;
  transition-delay: 0.35s;
}

.how.is-inview .how-step:nth-child(2) .how-step__node {
  opacity: 1;
  transform: scale(1);
  transition-delay: 0.5s;
}

.how.is-inview .how-step:nth-child(2) .how-step__body {
  opacity: 1;
  transform: none;
  transition-delay: 0.65s;
}

.how.is-inview .how-step:nth-child(3) .how-step__node {
  opacity: 1;
  transform: scale(1);
  transition-delay: 0.8s;
}

.how.is-inview .how-step:nth-child(3) .how-step__body {
  opacity: 1;
  transform: none;
  transition-delay: 0.95s;
}

.how.is-inview .how-step:nth-child(4) .how-step__node {
  opacity: 1;
  transform: scale(1);
  transition-delay: 1.1s;
}

.how.is-inview .how-step:nth-child(4) .how-step__body {
  opacity: 1;
  transform: none;
  transition-delay: 1.25s;
}

.how.is-inview .how-step__node {
  animation: how-node-pulse 2.4s ease-in-out 1.4s infinite;
}

.how-step:hover .how-step__node {
  border-color: var(--color-gold);
  background: rgba(184, 155, 94, 0.1);
  box-shadow: 0 0 0 8px #111111, 0 0 20px rgba(184, 155, 94, 0.18);
}

@keyframes how-node-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 8px #111111, 0 0 0 0 rgba(184, 155, 94, 0);
  }
  50% {
    box-shadow: 0 0 0 8px #111111, 0 0 0 10px rgba(184, 155, 94, 0.08);
  }
}

@media (max-width: 1199px) {
  .how__inner {
    padding-left: 40px;
    padding-right: 40px;
  }

  .how__curve--desktop {
    left: 12%;
    width: 76%;
  }

  .how__steps {
    gap: 1.25rem;
  }

  .how-step__text {
    max-width: 220px;
  }
}

@media (max-width: 900px) {
  .how__timeline {
    padding-left: 0.25rem;
  }

  .how__curve--desktop {
    display: none;
  }

  .how__curve--mobile {
    display: block;
    top: 28px;
    bottom: 28px;
    left: 14px;
    width: 44px;
    height: auto;
  }

  .how__steps {
    grid-template-columns: 1fr;
    gap: 2.25rem;
  }

  .how-step,
  .how-step:nth-child(1),
  .how-step:nth-child(2),
  .how-step:nth-child(3),
  .how-step:nth-child(4) {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    gap: 1.25rem;
    padding: 0;
    padding-top: 0;
  }

  .how-step:nth-child(even) {
    padding-left: 0.35rem;
  }

  .how-step:nth-child(odd) {
    padding-left: 0;
  }

  .how-step__node {
    flex-shrink: 0;
    margin-bottom: 0;
  }

  .how-step__body {
    padding-top: 0.35rem;
  }

  .how-step__text {
    max-width: none;
    margin-inline: 0;
  }
}

@media (max-width: 767px) {
  .how {
    padding: 70px 0;
  }

  .how__inner {
    padding-left: 20px;
    padding-right: 20px;
  }

  .how__intro {
    margin-bottom: 2.75rem;
  }

  .how__curve--mobile {
    left: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .how__intro,
  .how-step__node,
  .how-step__body {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    animation: none !important;
  }

  .how__curve-progress {
    stroke-dashoffset: 0 !important;
    transition: none !important;
  }
}

/* --------------------------------------------------------------------------
   Areas We Serve
   -------------------------------------------------------------------------- */

.areas {
  width: 100%;
  background: #0a0a0a;
  border-top: 1px solid var(--color-border);
  padding: clamp(4.5rem, 7vw, 6.5rem) 0;
  overflow: hidden;
}

.areas__inner {
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  padding-left: 70px;
  padding-right: 70px;
  box-sizing: border-box;
}

.areas__intro {
  max-width: 42rem;
  margin: 0 auto 3.25rem;
  text-align: center;
}

.areas__title {
  font-family: "Cormorant Garamond", "Times New Roman", Georgia, serif;
  font-size: clamp(2.6rem, 4vw, 3.6rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0.01em;
  color: var(--color-white);
  margin: 0 0 1rem;
}

.areas__lead {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.02rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--color-gray);
}

.areas__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.15rem;
}

.area-card {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.areas.is-inview .area-card:nth-child(1) { transition-delay: 0.05s; }
.areas.is-inview .area-card:nth-child(2) { transition-delay: 0.15s; }
.areas.is-inview .area-card:nth-child(3) { transition-delay: 0.25s; }
.areas.is-inview .area-card:nth-child(4) { transition-delay: 0.35s; }
.areas.is-inview .area-card:nth-child(5) { transition-delay: 0.45s; }
.areas.is-inview .area-card:nth-child(6) { transition-delay: 0.55s; }
.areas.is-inview .area-card:nth-child(7) { transition-delay: 0.65s; }
.areas.is-inview .area-card:nth-child(8) { transition-delay: 0.75s; }

.areas.is-inview .area-card:not(.is-collapsed) {
  opacity: 1;
  transform: translateY(0);
}

.area-card--extra.is-collapsed {
  display: none;
}

.area-card--extra.is-expanding {
  display: block;
  opacity: 0;
  transform: translateY(24px);
}

.areas.is-expanded .area-card--extra:nth-child(9) {
  transition-delay: 0.05s;
}

.areas.is-expanded .area-card--extra:nth-child(10) {
  transition-delay: 0.15s;
}

.areas.is-expanded .area-card--extra:not(.is-collapsed) {
  opacity: 1;
  transform: translateY(0);
}

.area-card__media {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 16px;
  aspect-ratio: 4 / 5;
  background: #151515;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.area-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transform: scale(1);
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.area-card__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.72) 0%,
    rgba(0, 0, 0, 0.28) 38%,
    rgba(0, 0, 0, 0.08) 100%
  );
  transition: background 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.area-card__name {
  position: absolute;
  left: 1.1rem;
  right: 1.1rem;
  bottom: 1.05rem;
  margin: 0;
  padding-top: 0.55rem;
  font-family: "Cormorant Garamond", "Times New Roman", Georgia, serif;
  font-size: clamp(1.35rem, 1.5vw, 1.65rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--color-white);
  transform: translateY(0);
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.area-card__name::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-gold);
  transition: width 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.area-card:hover .area-card__image,
.area-card:focus-within .area-card__image {
  transform: scale(1.06);
}

.area-card:hover .area-card__shade,
.area-card:focus-within .area-card__shade {
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.82) 0%,
    rgba(0, 0, 0, 0.4) 42%,
    rgba(0, 0, 0, 0.16) 100%
  );
}

.area-card:hover .area-card__name,
.area-card:focus-within .area-card__name {
  transform: translateY(-8px);
}

.area-card:hover .area-card__name::before,
.area-card:focus-within .area-card__name::before {
  width: 36px;
}

.areas__actions {
  display: flex;
  justify-content: center;
  margin-top: 2.5rem;
}

.areas__toggle {
  appearance: none;
  cursor: pointer;
  border: 1px solid var(--color-gold);
  border-radius: 3px;
  background: transparent;
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.9rem 1.6rem;
  transition:
    background-color 0.35s ease,
    color 0.35s ease,
    border-color 0.35s ease;
}

.areas__toggle:hover,
.areas__toggle:focus-visible {
  background: var(--color-gold);
  color: #111111;
  border-color: var(--color-gold);
  outline: none;
}

@media (max-width: 1199px) {
  .areas__inner {
    padding-left: 40px;
    padding-right: 40px;
  }

  .areas__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }
}

@media (max-width: 767px) {
  .areas__inner {
    padding-left: 20px;
    padding-right: 20px;
  }

  .areas__intro {
    margin-bottom: 2.5rem;
  }

  .areas__grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 0.9rem;
  }

  .area-card__media {
    aspect-ratio: 16 / 11;
  }

  .areas__actions {
    margin-top: 2rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .area-card,
  .area-card__image,
  .area-card__shade,
  .area-card__name,
  .area-card__name::before {
    transition: none !important;
    transform: none !important;
  }

  .area-card,
  .areas.is-inview .area-card:not(.is-collapsed) {
    opacity: 1;
  }
}

/* --------------------------------------------------------------------------
   Client Reviews
   -------------------------------------------------------------------------- */

.reviews {
  width: 100%;
  background: #0b0b0b;
  border-top: 1px solid var(--color-border);
  padding: 100px 0;
  overflow: hidden;
}

.reviews__inner {
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  padding-left: 70px;
  padding-right: 70px;
  box-sizing: border-box;
}

.reviews__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 48px;
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reviews.is-inview .reviews__header {
  opacity: 1;
  transform: none;
}

.reviews__intro {
  max-width: 40rem;
}

.reviews__title {
  margin: 0 0 0.9rem;
  font-family: "Cormorant Garamond", "Times New Roman", Georgia, serif;
  font-size: clamp(2.6rem, 4vw, 3.5rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0.01em;
  color: var(--color-white);
}

.reviews__lead {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.02rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--color-gray);
}

.reviews__controls {
  display: flex;
  gap: 0.65rem;
  flex-shrink: 0;
}

.reviews__arrow {
  appearance: none;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-gold);
  border-radius: 4px;
  background: #121212;
  color: var(--color-gold);
  font-size: 1.05rem;
  line-height: 1;
  cursor: pointer;
  transition:
    background-color 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease;
}

.reviews__arrow:hover,
.reviews__arrow:focus-visible {
  background: var(--color-gold);
  color: #111111;
  border-color: var(--color-gold);
  outline: none;
}

.reviews__viewport {
  width: 100%;
  overflow: hidden;
}

.reviews__track {
  display: flex;
  gap: 20px;
  will-change: transform;
}

.review-card {
  flex: 0 0 calc((100% - 40px) / 3);
  min-width: 0;
  min-height: 230px;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  padding: 22px 22px 24px;
  background: #ffffff;
  border: 1px solid #e8eaed;
  border-radius: 12px;
  box-shadow: 0 1px 2px rgba(60, 64, 67, 0.12), 0 2px 8px rgba(60, 64, 67, 0.08);
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.6s ease,
    transform 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.3s ease;
}

.reviews.is-inview .review-card {
  opacity: 1;
  transform: translateY(0);
}

.reviews.is-inview .review-card:nth-child(1) { transition-delay: 0.08s; }
.reviews.is-inview .review-card:nth-child(2) { transition-delay: 0.16s; }
.reviews.is-inview .review-card:nth-child(3) { transition-delay: 0.24s; }
.reviews.is-inview .review-card:nth-child(4) { transition-delay: 0.32s; }
.reviews.is-inview .review-card:nth-child(5) { transition-delay: 0.4s; }
.reviews.is-inview .review-card:nth-child(6) { transition-delay: 0.48s; }

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 2px 6px rgba(60, 64, 67, 0.14), 0 8px 20px rgba(60, 64, 67, 0.12);
}

.reviews.is-inview .review-card:hover {
  transform: translateY(-4px);
}

.review-card__header {
  display: block;
}

.review-card__identity {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.review-card__avatar {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-family: "Roboto", Arial, Helvetica, sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
  color: #ffffff;
  line-height: 1;
}

.review-card__avatar--blue { background: #1a73e8; }
.review-card__avatar--purple { background: #a142f4; }
.review-card__avatar--teal { background: #00796b; }
.review-card__avatar--orange { background: #e8710a; }
.review-card__avatar--pink { background: #d93025; }
.review-card__avatar--green { background: #188038; }

.review-card__meta {
  flex: 1;
  min-width: 0;
}

.review-card__name-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 2px;
}

.review-card__name {
  font-family: "Roboto", Arial, Helvetica, sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: #202124;
  line-height: 1.35;
}

.review-card__google {
  display: inline-flex;
  flex-shrink: 0;
  line-height: 0;
}

.review-card__google svg {
  display: block;
}

.review-card__rating {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.review-card__stars {
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  color: #fbbc04;
  line-height: 1;
}

.review-card__time {
  font-family: "Roboto", Arial, Helvetica, sans-serif;
  font-size: 0.8rem;
  font-weight: 400;
  color: #70757a;
  line-height: 1.2;
}

.review-card__text {
  margin: 0;
  flex: 1;
  font-family: "Roboto", Arial, Helvetica, sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.55;
  color: #3c4043;
}

@media (max-width: 1199px) {
  .reviews__inner {
    padding-left: 40px;
    padding-right: 40px;
  }

  .review-card {
    flex-basis: calc((100% - 20px) / 2);
  }
}

@media (max-width: 767px) {
  .reviews {
    padding: 70px 0;
  }

  .reviews__inner {
    padding-left: 20px;
    padding-right: 20px;
  }

  .reviews__header {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 2rem;
  }

  .reviews__controls {
    align-self: flex-end;
  }

  .review-card {
    flex-basis: 100%;
    min-height: 210px;
    padding: 20px 20px 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reviews__header,
  .review-card {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .review-card:hover {
    transform: none !important;
  }
}

/* --------------------------------------------------------------------------
   Contact Us
   -------------------------------------------------------------------------- */

.contact {
  width: 100%;
  background: #0a0a0a;
  border-top: 1px solid var(--color-border);
  padding: 40px 0;
  overflow: hidden;
}

.contact__inner {
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  padding-left: 70px;
  padding-right: 70px;
  box-sizing: border-box;
}

.contact__panel {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.9fr);
  gap: clamp(1.5rem, 3vw, 2.75rem);
  align-items: center;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: #f5f5f5;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.contact.is-inview .contact__panel {
  opacity: 1;
  transform: none;
}

.contact__left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: 0;
}

.contact__intro {
  max-width: 28rem;
  margin-bottom: 0.15rem;
}

.contact__media {
  position: relative;
  min-width: 0;
  width: 100%;
  max-width: 480px;
  margin-left: auto;
}

.contact__photo {
  position: relative;
  width: 100%;
  min-height: 0;
  aspect-ratio: 1 / 1;
  max-height: 420px;
  border-radius: 28px 16px 32px 18px;
  overflow: hidden;
  background: transparent;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(184, 155, 94, 0.22);
}

.contact__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.contact__title {
  margin: 0 0 0.55rem;
  font-family: "Cormorant Garamond", "Times New Roman", Georgia, serif;
  font-size: clamp(1.9rem, 2.8vw, 2.55rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0.01em;
  color: #f7f3ea;
}

.contact__lead {
  margin: 0;
  font-family: var(--font-body);
  font-size: 0.98rem;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(245, 245, 245, 0.72);
}

.contact__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.contact-item {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.contact.is-inview .contact-item:nth-child(1) {
  opacity: 1;
  transform: none;
  transition-delay: 0.12s;
}

.contact.is-inview .contact-item:nth-child(2) {
  opacity: 1;
  transform: none;
  transition-delay: 0.22s;
}

.contact.is-inview .contact-item:nth-child(3) {
  opacity: 1;
  transform: none;
  transition-delay: 0.32s;
}

.contact-item + .contact-item {
  border-top: 1px solid rgba(184, 155, 94, 0.28);
}

.contact-item__link {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  padding: 0.75rem 0.25rem;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.contact-item__link:hover,
.contact-item__link:focus-visible {
  transform: translateX(4px);
  outline: none;
}

.contact-item__link:hover .contact-item__arrow,
.contact-item__link:focus-visible .contact-item__arrow {
  transform: translateX(4px);
}

.contact-item__icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid rgba(184, 155, 94, 0.7);
  color: #b89b5e;
  background: transparent;
}

.contact-item__icon svg {
  width: 21px;
  height: 21px;
}

.contact-item__body {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
  flex: 1;
}

.contact-item__label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(184, 155, 94, 0.85);
}

.contact-item__value {
  font-family: var(--font-body);
  font-size: 1.12rem;
  font-weight: 600;
  color: #f7f3ea;
  word-break: break-word;
}

.contact-item__hint {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 400;
  color: rgba(245, 245, 245, 0.62);
}

.contact-item__arrow {
  flex-shrink: 0;
  font-size: 1.2rem;
  color: #b89b5e;
  transition: transform 0.3s ease;
}

@media (max-width: 991px) {
  .contact__inner {
    padding-left: 40px;
    padding-right: 40px;
  }

  .contact__panel {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    border-radius: 24px;
  }

  .contact__left {
    padding: 0.35rem 0.25rem 0;
    order: 1;
  }

  .contact__media {
    order: 2;
    max-width: 420px;
    margin-inline: auto;
  }

  .contact__intro {
    max-width: none;
  }

  .contact__photo {
    aspect-ratio: 1 / 1;
    max-height: 380px;
    border-radius: 28px 18px 32px 20px;
  }
}

@media (max-width: 767px) {
  .contact {
    padding: 36px 0;
  }

  .contact__inner {
    padding-left: 20px;
    padding-right: 20px;
  }

  .contact__panel {
    padding: 0;
  }

  .contact__media {
    max-width: 340px;
  }

  .contact__photo {
    max-height: 320px;
    border-radius: 24px 16px 28px 18px;
  }

  .contact-item__link {
    min-height: 56px;
    gap: 0.9rem;
    padding: 0.7rem 0;
  }

  .contact-item__icon {
    width: 44px;
    height: 44px;
  }

  .contact-item__value {
    font-size: 1.02rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .contact__panel,
  .contact-item {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .contact-item__link:hover,
  .contact-item__link:focus-visible {
    transform: none;
  }
}


/* --------------------------------------------------------------------------
   FAQ
   -------------------------------------------------------------------------- */

.faq {
  width: 100%;
  background: #0a0a0a;
  border-top: 1px solid var(--color-border);
  padding: 100px 0;
  overflow: hidden;
}

.faq__inner {
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  padding-left: 70px;
  padding-right: 70px;
  box-sizing: border-box;
}

.faq__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: start;
}

.faq__intro {
  max-width: 28rem;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.faq.is-inview .faq__intro {
  opacity: 1;
  transform: none;
}

.faq__title {
  margin: 0 0 1.1rem;
  font-family: "Cormorant Garamond", "Times New Roman", Georgia, serif;
  font-size: clamp(2.6rem, 4vw, 3.5rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0.01em;
  color: var(--color-white);
}

.faq__lead {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.02rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--color-gray);
}

.faq__accordion {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease;
}

.faq.is-inview .faq-item {
  opacity: 1;
  transform: none;
}

.faq.is-inview .faq-item:nth-child(1) { transition-delay: 0.08s; }
.faq.is-inview .faq-item:nth-child(2) { transition-delay: 0.14s; }
.faq.is-inview .faq-item:nth-child(3) { transition-delay: 0.2s; }
.faq.is-inview .faq-item:nth-child(4) { transition-delay: 0.26s; }
.faq.is-inview .faq-item:nth-child(5) { transition-delay: 0.32s; }
.faq.is-inview .faq-item:nth-child(6) { transition-delay: 0.38s; }
.faq.is-inview .faq-item:nth-child(7) { transition-delay: 0.44s; }
.faq.is-inview .faq-item:nth-child(8) { transition-delay: 0.5s; }
.faq.is-inview .faq-item:nth-child(9) { transition-delay: 0.56s; }
.faq.is-inview .faq-item:nth-child(10) { transition-delay: 0.62s; }

.faq-item__heading {
  margin: 0;
}

.faq-item__trigger {
  appearance: none;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1.35rem 0;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
  color: var(--color-white);
  transition: color 0.3s ease;
}

.faq-item__trigger:hover,
.faq-item__trigger:focus-visible {
  color: var(--color-gold);
  outline: none;
}

.faq-item.is-open .faq-item__trigger {
  color: var(--color-gold);
}

.faq-item__question {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.15vw, 1.12rem);
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.01em;
}

.faq-item__icon {
  position: relative;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}

.faq-item__icon::before,
.faq-item__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 1.5px;
  background: currentColor;
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.faq-item__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item.is-open .faq-item__icon::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-item__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
}

.faq-item.is-open .faq-item__panel {
  grid-template-rows: 1fr;
}

.faq-item__answer {
  overflow: hidden;
}

.faq-item__answer p {
  margin: 0;
  padding: 0 2rem 1.35rem 0;
  font-family: var(--font-body);
  font-size: 0.96rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--color-gray);
}

@media (max-width: 991px) {
  .faq__inner {
    padding-left: 40px;
    padding-right: 40px;
  }

  .faq__layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .faq__intro {
    max-width: none;
  }
}

@media (max-width: 767px) {
  .faq {
    padding: 70px 0;
  }

  .faq__inner {
    padding-left: 20px;
    padding-right: 20px;
  }

  .faq-item__trigger {
    padding: 1.2rem 0;
    gap: 1rem;
  }

  .faq-item__answer p {
    padding-right: 1.25rem;
    font-size: 0.94rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .faq__intro,
  .faq-item,
  .faq-item__panel,
  .faq-item__icon::before,
  .faq-item__icon::after {
    transition: none !important;
  }

  .faq__intro,
  .faq.is-inview .faq-item {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* --------------------------------------------------------------------------
   CTA
   -------------------------------------------------------------------------- */

.cta {
  width: 100%;
  background: #0a0a0a;
  border-top: 1px solid var(--color-border);
  padding: 80px 0;
  overflow: hidden;
}

.cta__inner {
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  padding-left: 70px;
  padding-right: 70px;
  box-sizing: border-box;
}

.cta__panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(1.75rem, 4vw, 3.5rem);
  padding: clamp(2.4rem, 4.5vw, 3.5rem) clamp(2rem, 4vw, 3.5rem);
  border-radius: 28px;
  background: #b89b5e;
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.cta.is-inview .cta__panel {
  opacity: 1;
  transform: none;
}

.cta__copy {
  max-width: 40rem;
}

.cta__title {
  margin: 0 0 0.85rem;
  font-family: "Cormorant Garamond", "Times New Roman", Georgia, serif;
  font-size: clamp(2.3rem, 3.8vw, 3.25rem);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: 0.01em;
  color: #111111;
}

.cta__text {
  margin: 0;
  max-width: 34rem;
  font-family: var(--font-body);
  font-size: 1.02rem;
  font-weight: 400;
  line-height: 1.7;
  color: rgba(26, 22, 16, 0.78);
}

.cta__action {
  flex-shrink: 0;
}

.cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.9rem 1.75rem;
  border-radius: 4px;
  background: #111111;
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.cta__btn:hover,
.cta__btn:focus-visible {
  background: #1f1f1f;
  color: #ffffff;
  transform: translateY(-2px);
  outline: none;
}

@media (max-width: 991px) {
  .cta__inner {
    padding-left: 40px;
    padding-right: 40px;
  }

  .cta__panel {
    flex-direction: column;
    align-items: flex-start;
    border-radius: 24px;
  }
}

@media (max-width: 767px) {
  .cta {
    padding: 60px 0;
  }

  .cta__inner {
    padding-left: 20px;
    padding-right: 20px;
  }

  .cta__panel {
    padding: 2rem 1.4rem;
    border-radius: 20px;
  }

  .cta__btn {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cta__panel {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .cta__btn:hover,
  .cta__btn:focus-visible {
    transform: none;
  }
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */

.site-footer {
  width: 100%;
  background: #050505;
  border-top: 1px solid rgba(184, 155, 94, 0.28);
  padding: 90px 0 28px;
  overflow: hidden;
}

.site-footer__inner {
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  padding-left: 70px;
  padding-right: 70px;
  box-sizing: border-box;
}

.site-footer__main {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) repeat(3, minmax(0, 1fr));
  gap: clamp(2.5rem, 4vw, 4rem);
  align-items: start;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer__logo .site-logo__image {
  max-width: 190px;
  max-height: none;
}

@media (max-width: 767px) {
  .site-footer__logo .site-logo__image {
    max-width: 160px;
  }
}

.site-footer__desc {
  margin: 1rem 0 0;
  max-width: 20rem;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--color-gray);
}

.site-footer__social {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-top: 1.4rem;
}

.site-footer__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(184, 155, 94, 0.35);
  border-radius: 50%;
  color: var(--color-gold);
  transition: color 0.25s ease, border-color 0.25s ease, background-color 0.25s ease;
}

.site-footer__social-link svg {
  width: 16px;
  height: 16px;
}

.site-footer__social-link:hover,
.site-footer__social-link:focus-visible {
  color: #111111;
  background: var(--color-gold);
  border-color: var(--color-gold);
  outline: none;
}

.site-footer__heading {
  margin: 0 0 1.15rem;
  font-family: "Cormorant Garamond", "Times New Roman", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-white);
}

.site-footer__nav {
  display: grid;
  gap: 0.7rem;
}

.site-footer__nav a {
  font-family: var(--font-body);
  font-size: 0.94rem;
  font-weight: 300;
  color: var(--color-gray);
  text-decoration: none;
  transition: color 0.25s ease;
}

.site-footer__nav a:hover,
.site-footer__nav a:focus-visible {
  color: var(--color-gold);
  outline: none;
}

.site-footer__contact {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.9rem;
}

.site-footer__contact-link {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-family: var(--font-body);
  font-size: 0.94rem;
  font-weight: 300;
  line-height: 1.45;
  color: var(--color-gray);
  text-decoration: none;
  transition: color 0.25s ease;
}

.site-footer__contact-link:hover,
.site-footer__contact-link:focus-visible {
  color: var(--color-gold);
  outline: none;
}

.site-footer__contact-icon {
  flex-shrink: 0;
  display: inline-flex;
  width: 18px;
  height: 18px;
  margin-top: 0.12rem;
  color: var(--color-gold);
}

.site-footer__contact-icon svg {
  width: 100%;
  height: 100%;
}

.site-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem 1.5rem;
  padding-top: 1.4rem;
}

.site-footer__copy {
  margin: 0;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--color-gray-muted);
}

.site-footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.site-footer__legal a {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--color-gray-muted);
  text-decoration: none;
  transition: color 0.25s ease;
}

.site-footer__legal a:hover,
.site-footer__legal a:focus-visible {
  color: var(--color-gold);
  outline: none;
}

@media (max-width: 1199px) {
  .site-footer__inner {
    padding-left: 40px;
    padding-right: 40px;
  }

  .site-footer__main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2.5rem 2rem;
  }
}

@media (max-width: 767px) {
  .site-footer {
    padding: 60px 0 24px;
  }

  .site-footer__inner {
    padding-left: 20px;
    padding-right: 20px;
  }

  .site-footer__main {
    grid-template-columns: 1fr;
    gap: 2.25rem;
    padding-bottom: 2.25rem;
  }

  .site-footer__contact-link {
    min-height: 44px;
    align-items: center;
  }

  .site-footer__contact-icon {
    margin-top: 0;
  }

  .site-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* --------------------------------------------------------------------------
   Tablet: 768px – 1199px
   -------------------------------------------------------------------------- */

@media (max-width: 1199px) {
  .hero__inner {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .booking-card {
    max-width: none;
  }

}

@media (max-width: 991px) {
  .site-nav__list {
    gap: 1.2rem;
  }

  .site-header__cta .btn {
    padding-inline: 1.15rem;
  }

  .hero {
    min-height: auto;
    padding-top: calc(var(--header-height) + 2rem);
    padding-bottom: 2.75rem;
  }

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

  .hero__content {
    max-width: none;
    margin-top: 0.5rem;
  }

  .booking-card {
    margin-left: 0;
  }
}

/* --------------------------------------------------------------------------
   Mobile: below 768px
   -------------------------------------------------------------------------- */

@media (max-width: 767px) {
  :root {
    --header-height: 68px;
  }

  .container {
    width: min(100% - 1.5rem, var(--container));
  }

  .site-header {
    background: transparent;
  }

  .site-header.is-scrolled {
    background: rgba(8, 8, 8, 0.96);
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-header__cta {
    display: none;
  }

  .site-nav {
    position: fixed;
    inset: 0;
    z-index: 1001;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 1.75rem;
    padding: calc(var(--header-height) + 1.25rem) 1.75rem 2.5rem;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    background: #050505;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .site-nav__list {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.35rem;
  }

  .site-nav__link {
    font-size: 1.35rem;
    font-family: var(--font-display);
  }

  .site-nav__item--has-dropdown {
    width: 100%;
  }

  .site-mega--areas {
    display: none !important;
  }

  .site-nav__item--has-mega {
    width: 100%;
  }

  .site-nav__item--has-mega::before {
    display: none;
  }

  .site-nav__mega-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 0.75rem;
  }

  .site-nav__mega-row > .site-nav__link {
    flex: 1 1 auto;
  }

  .site-nav__mega-toggle,
  .site-nav__dropdown-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 3px;
    background: transparent;
    color: var(--color-gray-light);
    flex-shrink: 0;
    transition: border-color 0.2s ease, color 0.2s ease;
  }

  .site-nav__mega-toggle:hover,
  .site-nav__mega-toggle:focus-visible,
  .site-nav__dropdown-toggle:hover,
  .site-nav__dropdown-toggle:focus-visible {
    border-color: rgba(184, 155, 94, 0.45);
    color: var(--color-gold);
  }

  .site-nav__dropdown-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 0.75rem;
  }

  .site-nav__dropdown-row > .site-nav__link {
    flex: 1 1 auto;
  }

  .site-nav__item--has-mega.is-mega-expanded .site-nav__mega-toggle .site-nav__caret {
    transform: rotate(-135deg) translateY(1px);
  }

  .site-nav__mega-mobile {
    display: block;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    margin: 0;
    padding: 0 0 0 1rem;
    list-style: none;
    transition: max-height 0.35s ease, opacity 0.28s ease, padding 0.28s ease;
  }

  .site-nav__item--has-mega.is-mega-expanded .site-nav__mega-mobile {
    max-height: 28rem;
    opacity: 1;
    padding: 0.65rem 0 0.35rem 1rem;
    overflow-y: auto;
  }

  .site-nav__item--has-dropdown .site-nav__dropdown,
  .site-nav__item--has-dropdown:hover .site-nav__dropdown,
  .site-nav__item--has-dropdown:focus-within .site-nav__dropdown {
    position: static;
    transform: none;
    visibility: visible;
    pointer-events: auto;
    background: transparent;
    border: none;
    box-shadow: none;
    min-width: 0;
    width: 100%;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    padding: 0 0 0 1rem;
    transition: max-height 0.35s ease, opacity 0.28s ease, padding 0.28s ease;
  }

  .site-nav__item--has-dropdown.is-dropdown-expanded .site-nav__dropdown {
    max-height: 24rem;
    opacity: 1;
    padding: 0.65rem 0 0.35rem 1rem;
  }

  .site-nav__item--has-dropdown.is-dropdown-expanded
    .site-nav__dropdown-toggle
    .site-nav__caret {
    transform: rotate(-135deg) translateY(1px);
  }

  .site-nav__dropdown-link {
    font-size: 1.05rem;
    padding: 0.4rem 0;
    font-family: var(--font-body);
    white-space: normal;
  }

  .site-nav__item--has-dropdown > .site-nav__link::before {
    display: none;
  }

  .site-nav__caret {
    margin-left: 0.55rem;
  }

  .site-nav__mobile-cta {
    display: block;
  }

  .hero {
    align-items: flex-start;
    padding-top: calc(var(--header-height) + 3.25rem);
    padding-bottom: 2.25rem;
  }

  .hero__content {
    margin-top: 1.25rem;
  }

  .hero-copy__text {
    margin-bottom: 1.6rem;
  }

  .hero-copy__actions {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.65rem;
  }

  .hero-copy__actions .btn--hero {
    flex: 1 1 0;
    width: auto;
    min-width: 0;
    min-height: 46px;
    padding: 0.75rem 0.7rem;
    font-size: 0.72rem;
    letter-spacing: 0.06em;
    white-space: nowrap;
  }

  .booking-card {
    padding: 0;
    border-radius: var(--radius-md);
  }

  .booking-card__frame {
    border-radius: var(--radius-md);
  }

  .service-row__title {
    font-size: clamp(1.4rem, 5.5vw, 1.7rem);
  }

  .service-row.is-active .service-row__image {
    transform: scale(1.02);
  }

  .service-row.is-active .service-row__shade {
    opacity: 0.35;
  }

  .service-row.is-active .service-row__content {
    padding: 2.5rem 22px 1.15rem;
  }

  .service-row.is-active .service-row__content::before {
    opacity: 1;
  }

  .service-row.is-active .service-row__title {
    color: #1a1610;
    text-shadow: none;
    padding-top: 0.65rem;
  }

  .service-row.is-active .service-row__title::before {
    background: rgba(26, 22, 16, 0.45);
    width: 36px;
  }

  .service-row.is-active .service-row__text {
    opacity: 1;
    visibility: visible;
    max-height: 8rem;
    margin-top: 0.55rem;
    font-size: 0.88rem;
    transform: translateY(0);
  }

  .service-row.is-active .service-row__btn {
    opacity: 1;
    visibility: visible;
    max-height: 3.5rem;
    margin-top: 0.75rem;
    padding: 0.55rem 0.95rem;
    border-color: rgba(26, 22, 16, 0.55);
    color: #1a1610;
    transform: translateY(0);
    pointer-events: auto;
  }

}

@media (min-width: 768px) {
  .site-nav__mobile-cta {
    display: none;
  }
}

/* --------------------------------------------------------------------------
   Our Chauffeur Experience (Services page)
   -------------------------------------------------------------------------- */

.chauffeur {
  background: #0a0a0a;
}

.chauffeur__layout {
  align-items: center;
}

.chauffeur__eyebrow {
  margin-bottom: 1rem;
}

.chauffeur__title {
  max-width: none;
}

.chauffeur__text {
  margin-bottom: 1.5rem;
}

.chauffeur__accent {
  display: block;
  width: 3.5rem;
  height: 1px;
  margin-bottom: 1.75rem;
  background: linear-gradient(90deg, var(--color-gold), rgba(184, 155, 94, 0.15));
}

.chauffeur__features {
  list-style: none;
  margin: 0 0 2rem;
  padding: 0;
  display: grid;
  gap: 1.15rem;
}

.chauffeur-feature {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.15rem 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
}

.chauffeur-feature__number {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--color-gold);
  padding-top: 0.2rem;
}

.chauffeur-feature__title {
  font-family: "Cormorant Garamond", "Times New Roman", Georgia, serif;
  font-size: clamp(1.25rem, 1.4vw, 1.45rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-off-white);
  margin: 0 0 0.45rem;
}

.chauffeur-feature__text {
  margin: 0;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.65;
  color: var(--color-gray);
}

.chauffeur__media,
.chauffeur__content {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

.chauffeur.is-inview .chauffeur__media,
.chauffeur.is-inview .chauffeur__content {
  opacity: 1;
  transform: translateY(0);
}

.chauffeur.is-inview .chauffeur__content {
  transition-delay: 0.12s;
}

@media (max-width: 991px) {
  .chauffeur__layout {
    grid-template-columns: 1fr;
  }

  .chauffeur__media {
    max-width: 720px;
  }
}

/* --------------------------------------------------------------------------
   Travel For Every Occasion (Services page)
   -------------------------------------------------------------------------- */

.occasions {
  width: 100%;
  background: #111111;
  border-top: 1px solid var(--color-border);
  padding: clamp(4.5rem, 7vw, 6.5rem) 0;
  overflow: hidden;
}

.occasions__inner {
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  padding-left: 60px;
  padding-right: 60px;
  box-sizing: border-box;
}

.occasions__intro {
  max-width: 42rem;
  margin: 0 auto 3.25rem;
  text-align: center;
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.occasions__title {
  font-family: "Cormorant Garamond", "Times New Roman", Georgia, serif;
  font-size: clamp(2.6rem, 4vw, 3.6rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0.01em;
  color: var(--color-white);
  margin: 0 0 1rem;
}

.occasions__lead {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.02rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--color-gray);
}

.occasions__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.occasion-card {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.occasions.is-inview .occasions__intro {
  opacity: 1;
  transform: translateY(0);
}

.occasions.is-inview .occasion-card {
  opacity: 1;
  transform: translateY(0);
}

.occasions.is-inview .occasion-card:nth-child(1) { transition-delay: 0.05s; }
.occasions.is-inview .occasion-card:nth-child(2) { transition-delay: 0.12s; }
.occasions.is-inview .occasion-card:nth-child(3) { transition-delay: 0.19s; }
.occasions.is-inview .occasion-card:nth-child(4) { transition-delay: 0.26s; }
.occasions.is-inview .occasion-card:nth-child(5) { transition-delay: 0.33s; }
.occasions.is-inview .occasion-card:nth-child(6) { transition-delay: 0.4s; }

.occasion-card__media {
  position: relative;
  height: 300px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #151515;
}

.occasion-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
  transform: scale(1);
  transition: transform 0.45s ease;
}

.occasion-card__shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.72) 0%,
    rgba(0, 0, 0, 0.28) 42%,
    rgba(0, 0, 0, 0.08) 68%
  );
  transition: background 0.45s ease;
  pointer-events: none;
}

.occasion-card__content {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.35rem 1.25rem 1.4rem;
  transform: translateY(0);
  transition: transform 0.45s ease;
}

.occasion-card__accent {
  display: block;
  width: 1.75rem;
  height: 2px;
  margin-bottom: 0.75rem;
  background: var(--color-gold);
  opacity: 0.35;
  transition: opacity 0.45s ease, width 0.45s ease;
}

.occasion-card__title {
  margin: 0 0 0.45rem;
  font-family: "Cormorant Garamond", "Times New Roman", Georgia, serif;
  font-size: clamp(1.45rem, 1.8vw, 1.75rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--color-white);
}

.occasion-card__text {
  margin: 0;
  max-width: 34ch;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.78);
}

.occasion-card:hover .occasion-card__image,
.occasion-card:focus-within .occasion-card__image {
  transform: scale(1.06);
}

.occasion-card:hover .occasion-card__shade,
.occasion-card:focus-within .occasion-card__shade {
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.82) 0%,
    rgba(0, 0, 0, 0.42) 46%,
    rgba(0, 0, 0, 0.14) 72%
  );
}

.occasion-card:hover .occasion-card__content,
.occasion-card:focus-within .occasion-card__content {
  transform: translateY(-6px);
}

.occasion-card:hover .occasion-card__accent,
.occasion-card:focus-within .occasion-card__accent {
  width: 3rem;
  opacity: 1;
}

@media (max-width: 1199px) {
  .occasions__inner {
    padding-left: 40px;
    padding-right: 40px;
  }

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

@media (max-width: 767px) {
  .occasions__inner {
    padding-left: 20px;
    padding-right: 20px;
  }

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

  .occasion-card__media {
    height: 280px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .chauffeur__media,
  .chauffeur__content,
  .occasions__intro,
  .occasion-card,
  .service-area__header,
  .service-area__content,
  .service-area__map-wrap {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .occasion-card__image,
  .occasion-card__shade,
  .occasion-card__content,
  .occasion-card__accent {
    transition: none !important;
  }

  .occasion-card:hover .occasion-card__image {
    transform: none;
  }
}

.service-area {
  width: 100%;
  background: #0a0a0a;
  border-top: 1px solid var(--color-border);
  padding: clamp(4.5rem, 7vw, 6.5rem) 0;
  overflow: hidden;
}

.service-area__inner {
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  padding-left: 60px;
  padding-right: 60px;
  box-sizing: border-box;
}

.service-area__header {
  max-width: 42rem;
  margin: 0 auto 3.25rem;
  text-align: center;
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.service-area__eyebrow {
  margin-bottom: 0.85rem;
}

.service-area__title {
  font-family: "Cormorant Garamond", "Times New Roman", Georgia, serif;
  font-size: clamp(2.6rem, 4vw, 3.6rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0.01em;
  color: var(--color-white);
  margin: 0 0 1rem;
}

.service-area__lead {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.02rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--color-gray);
}

.service-area__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: stretch;
}

.service-area__content {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.service-area__subtitle {
  font-family: "Cormorant Garamond", "Times New Roman", Georgia, serif;
  font-size: clamp(1.85rem, 2.5vw, 2.35rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--color-white);
  margin: 0 0 1rem;
  max-width: 18ch;
}

.service-area__text {
  margin: 0 0 1.5rem;
  max-width: 36rem;
  font-family: var(--font-body);
  font-size: 1.02rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--color-gray);
}

.service-area__list {
  list-style: none;
  margin: 0 0 2rem;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem 1.25rem;
}

.service-area__list li {
  position: relative;
  padding-left: 1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-gray-light);
}

.service-area__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 50%;
  background: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(184, 155, 94, 0.12);
}

.service-area__btn {
  border-radius: 3px;
}

.service-area--page .service-area__layout {
  align-items: stretch;
}

.service-area--page .service-area__title {
  margin: 0 0 1rem;
  max-width: none;
}

.service-area__text--lead {
  margin-bottom: 1.5rem;
}

.service-area__note {
  max-width: 36rem;
  margin: 0 0 1.75rem;
  padding: 1rem 1.2rem;
  border-left: 2px solid var(--color-gold);
  background: rgba(184, 155, 94, 0.06);
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 300;
  line-height: 1.65;
  color: var(--color-gray-light);
}

.service-area__map-wrap {
  opacity: 0;
  transform: translateY(24px) scale(0.985);
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: 0.1s;
}

.service-area__map {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #151515;
  z-index: 1;
}

.service-area.is-inview .service-area__header,
.service-area.is-inview .service-area__content,
.service-area.is-inview .service-area__map-wrap {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.service-area-marker-wrap {
  background: transparent;
  border: none;
}

.service-area-marker {
  display: block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--color-gold);
  border: 2px solid rgba(255, 255, 255, 0.92);
  box-shadow: 0 0 0 4px rgba(184, 155, 94, 0.22);
}

.service-area__map .leaflet-control-zoom {
  border: none !important;
  box-shadow: none !important;
}

.service-area__map .leaflet-control-zoom a {
  width: 32px;
  height: 32px;
  line-height: 32px;
  background: rgba(12, 12, 12, 0.92) !important;
  color: var(--color-gold) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
}

.service-area__map .leaflet-control-zoom a:hover {
  background: rgba(24, 24, 24, 0.98) !important;
  color: var(--color-white) !important;
}

.service-area__map .leaflet-control-attribution {
  background: rgba(8, 8, 8, 0.78) !important;
  color: rgba(255, 255, 255, 0.45) !important;
  font-size: 0.62rem;
}

.service-area__map .leaflet-control-attribution a {
  color: rgba(184, 155, 94, 0.85) !important;
}

.service-area-tooltip {
  background: rgba(12, 12, 12, 0.94) !important;
  border: 1px solid rgba(184, 155, 94, 0.35) !important;
  color: var(--color-white) !important;
  font-family: var(--font-body) !important;
  font-size: 0.78rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.03em;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35) !important;
}

.service-area-tooltip::before {
  border-top-color: rgba(12, 12, 12, 0.94) !important;
}

@media (max-width: 991px) {
  .service-area__inner {
    padding-left: 40px;
    padding-right: 40px;
  }

  .service-area__layout {
    grid-template-columns: 1fr;
    gap: 2.25rem;
  }

  .service-area__subtitle {
    max-width: none;
  }

  .service-area__map {
    min-height: 340px;
  }
}

@media (max-width: 767px) {
  .service-area__inner {
    padding-left: 20px;
    padding-right: 20px;
  }

  .service-area__list {
    grid-template-columns: 1fr;
  }

  .service-area__map {
    min-height: 300px;
  }
}

/* --------------------------------------------------------------------------
   Service content blocks — What's Included, Audience, Routes, Tips
   -------------------------------------------------------------------------- */

.svc-block__inner {
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  padding-left: 60px;
  padding-right: 60px;
  box-sizing: border-box;
}

.svc-block__header {
  max-width: 42rem;
  margin-bottom: 3rem;
}

.svc-included {
  background: #0a0a0a;
  border-top: 1px solid var(--color-border);
  padding: clamp(4.5rem, 7vw, 6.5rem) 0;
}

.svc-included__grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
}

.svc-included-card {
  display: flex;
  flex-direction: column;
  min-height: clamp(15.5rem, 20vw, 19.5rem);
  padding: 1.5rem 1.15rem 1.35rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 14px;
  background: #b89b5e;
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.3s ease;
}

.svc-included.is-inview .svc-included-card {
  opacity: 1;
  transform: translateY(0);
}

.svc-included.is-inview .svc-included-card:nth-child(1) { transition-delay: 0.05s; }
.svc-included.is-inview .svc-included-card:nth-child(2) { transition-delay: 0.11s; }
.svc-included.is-inview .svc-included-card:nth-child(3) { transition-delay: 0.17s; }
.svc-included.is-inview .svc-included-card:nth-child(4) { transition-delay: 0.23s; }
.svc-included.is-inview .svc-included-card:nth-child(5) { transition-delay: 0.29s; }
.svc-included.is-inview .svc-included-card:nth-child(6) { transition-delay: 0.35s; }

.svc-included-card__top {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.85rem;
  margin-bottom: 1.15rem;
}

.svc-included-card__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: #111111;
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #ffffff;
  flex-shrink: 0;
}

.svc-included-card__icon {
  width: 46px;
  height: 46px;
  color: #111111;
  opacity: 0.92;
}

.svc-included-card__icon svg {
  width: 100%;
  height: 100%;
}

.svc-included-card__title {
  font-family: "Cormorant Garamond", "Times New Roman", Georgia, serif;
  font-size: clamp(1.05rem, 1vw, 1.35rem);
  font-weight: 600;
  line-height: 1.22;
  color: #111111;
  margin: 0 0 0.55rem;
}

.svc-included-card__text {
  margin: auto 0 0;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 400;
  line-height: 1.65;
  color: rgba(0, 0, 0, 0.78);
}

.svc-included-card:hover {
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.22);
  transform: translateY(-4px);
}

.svc-included.is-inview .svc-included-card:hover {
  transform: translateY(-4px);
}

.svc-audience {
  background: #111111;
  border-top: 1px solid var(--color-border);
  padding: clamp(4.5rem, 7vw, 6.5rem) 0;
}

.svc-audience__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.15rem;
}

.svc-audience-card {
  padding: 1.5rem 1.3rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.02);
  text-align: center;
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.svc-audience.is-inview .svc-audience-card {
  opacity: 1;
  transform: translateY(0);
}

.svc-audience.is-inview .svc-audience-card:nth-child(1) { transition-delay: 0.05s; }
.svc-audience.is-inview .svc-audience-card:nth-child(2) { transition-delay: 0.12s; }
.svc-audience.is-inview .svc-audience-card:nth-child(3) { transition-delay: 0.19s; }
.svc-audience.is-inview .svc-audience-card:nth-child(4) { transition-delay: 0.26s; }
.svc-audience.is-inview .svc-audience-card:nth-child(5) { transition-delay: 0.33s; }
.svc-audience.is-inview .svc-audience-card:nth-child(6) { transition-delay: 0.4s; }

.svc-audience-card__icon {
  display: inline-flex;
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
  color: var(--color-gold);
}

.svc-audience-card__icon svg {
  width: 100%;
  height: 100%;
}

.svc-audience-card__title {
  font-family: "Cormorant Garamond", "Times New Roman", Georgia, serif;
  font-size: clamp(1.25rem, 1.4vw, 1.45rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-white);
  margin: 0 0 0.55rem;
}

.svc-audience-card__text {
  margin: 0;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 300;
  line-height: 1.62;
  color: var(--color-gray);
}

.svc-routes {
  background: #0a0a0a;
  border-top: 1px solid var(--color-border);
  padding: clamp(4.5rem, 7vw, 6.5rem) 0;
  overflow: hidden;
}

.svc-routes .svc-block__inner {
  max-width: none;
  padding-left: clamp(1.25rem, 4vw, 3.75rem);
  padding-right: clamp(1.25rem, 4vw, 3.75rem);
}

.svc-routes .svc-block__header {
  max-width: 48rem;
  margin-inline: auto;
}
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.svc-routes.is-inview .svc-block__header {
  opacity: 1;
  transform: translateY(0);
}

.svc-routes__panel {
  position: relative;
  width: 100%;
  margin-inline: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
}

.svc-routes__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem 1.15rem;
}

.svc-route-item {
  padding: 1.15rem 1.15rem 1.05rem;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  background: rgba(8, 8, 8, 0.55);
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.35s ease,
    box-shadow 0.35s ease,
    background-color 0.35s ease;
}

.svc-routes.is-inview .svc-route-item {
  opacity: 1;
  transform: translateY(0);
}

.svc-routes.is-inview .svc-route-item:nth-child(1) { transition-delay: 0.12s; }
.svc-routes.is-inview .svc-route-item:nth-child(2) { transition-delay: 0.18s; }
.svc-routes.is-inview .svc-route-item:nth-child(3) { transition-delay: 0.24s; }
.svc-routes.is-inview .svc-route-item:nth-child(4) { transition-delay: 0.3s; }
.svc-routes.is-inview .svc-route-item:nth-child(5) { transition-delay: 0.36s; }
.svc-routes.is-inview .svc-route-item:nth-child(6) { transition-delay: 0.42s; }
.svc-routes.is-inview .svc-route-item:nth-child(7) { transition-delay: 0.48s; }
.svc-routes.is-inview .svc-route-item:nth-child(8) { transition-delay: 0.54s; }
.svc-routes.is-inview .svc-route-item:nth-child(9) { transition-delay: 0.6s; }
.svc-routes.is-inview .svc-route-item:nth-child(10) { transition-delay: 0.66s; }

.svc-route-item__journey {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(3.5rem, 1.4fr) minmax(0, 1fr);
  align-items: center;
  gap: 0.55rem;
  width: 100%;
}

.svc-route-item__endpoint {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.35rem;
  min-width: 0;
}

.svc-route-item__endpoint--pickup {
  align-items: flex-start;
  text-align: left;
}

.svc-route-item__endpoint--dropoff {
  align-items: flex-end;
  text-align: right;
}

.svc-route-item__endpoint-dot {
  display: block;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--color-gold);
}

.svc-route-item__endpoint--pickup .svc-route-item__endpoint-dot {
  background: #111;
  border: 2px solid var(--color-gold);
}

.svc-route-item__endpoint--dropoff .svc-route-item__endpoint-dot {
  background: var(--color-gold);
}

.svc-route-item__from,
.svc-route-item__to,
.svc-route-item__single {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 400;
  line-height: 1.4;
  color: var(--color-gray-light);
  transition: color 0.35s ease;
}

.svc-route-item__from {
  color: rgba(255, 255, 255, 0.9);
}

.svc-route-item__track {
  position: relative;
  height: 2rem;
  display: flex;
  align-items: center;
}

.svc-route-item__track-rail,
.svc-route-item__track-progress {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 2px;
  transform: translateY(-50%);
  border-radius: 999px;
}

.svc-route-item__track-rail {
  background: rgba(184, 155, 94, 0.18);
}

.svc-route-item__track-progress {
  width: 0;
  background: linear-gradient(90deg, rgba(184, 155, 94, 0.35), var(--color-gold));
}

.svc-route-item__vehicle {
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.65rem;
  height: 1.65rem;
  color: var(--color-gold);
  background: rgba(17, 17, 17, 0.95);
  border: 1px solid rgba(184, 155, 94, 0.35);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.svc-route-item__vehicle svg {
  width: 0.95rem;
  height: 0.95rem;
  display: block;
}

.svc-routes.is-inview .svc-route-item--split .svc-route-item__track-progress {
  animation: svc-route-progress 3.1s ease-in-out infinite;
  animation-delay: var(--route-delay, 0s);
}

.svc-routes.is-inview .svc-route-item--split .svc-route-item__vehicle {
  animation: svc-route-drive 3.1s ease-in-out infinite;
  animation-delay: var(--route-delay, 0s);
}

.svc-routes.is-inview .svc-route-item--split .svc-route-item__endpoint--pickup .svc-route-item__endpoint-dot {
  animation: svc-route-pickup 3.1s ease-in-out infinite;
  animation-delay: var(--route-delay, 0s);
}

.svc-routes.is-inview .svc-route-item--split .svc-route-item__endpoint--dropoff .svc-route-item__endpoint-dot {
  animation: svc-route-dropoff 3.1s ease-in-out infinite;
  animation-delay: var(--route-delay, 0s);
}

@keyframes svc-route-drive {
  0% {
    left: 0%;
    opacity: 0.45;
  }

  10% {
    opacity: 1;
  }

  90% {
    opacity: 1;
  }

  100% {
    left: 100%;
    opacity: 0.75;
  }
}

@keyframes svc-route-progress {
  0% {
    width: 0%;
  }

  100% {
    width: 100%;
  }
}

@keyframes svc-route-pickup {
  0%,
  100% {
    transform: scale(1);
  }

  12% {
    transform: scale(1.08);
  }

  28%,
  100% {
    transform: scale(1);
  }
}

@keyframes svc-route-dropoff {
  0%,
  72% {
    transform: scale(1);
  }

  86% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1);
  }
}

.svc-route-item__local {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  min-height: 3.25rem;
}

.svc-route-item__local-copy {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.svc-route-item__endpoint-dot--local {
  flex-shrink: 0;
}

.svc-route-item__local-pulse {
  position: absolute;
  left: 0.2rem;
  top: 50%;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  border: 1px solid rgba(184, 155, 94, 0.45);
  transform: translateY(-50%);
  pointer-events: none;
}

.svc-routes.is-inview .svc-route-item--single .svc-route-item__local-pulse {
  animation: svc-route-local-pulse 2.4s ease-out infinite;
  animation-delay: var(--route-delay, 0s);
}

@keyframes svc-route-local-pulse {
  0% {
    opacity: 0.8;
    transform: translateY(-50%) scale(1);
  }

  100% {
    opacity: 0;
    transform: translateY(-50%) scale(2.4);
  }
}

.svc-route-item:hover,
.svc-route-item:focus-within {
  border-color: rgba(184, 155, 94, 0.35);
  background: rgba(184, 155, 94, 0.05);
  transform: translateY(-3px);
}

.svc-route-item:hover .svc-route-item__to,
.svc-route-item:focus-within .svc-route-item__to,
.svc-route-item:hover .svc-route-item__from,
.svc-route-item:focus-within .svc-route-item__from {
  color: var(--color-white);
}

.svc-route-item:hover .svc-route-item__vehicle,
.svc-route-item:focus-within .svc-route-item__vehicle {
  border-color: rgba(184, 155, 94, 0.65);
  color: #fff;
  background: rgba(184, 155, 94, 0.22);
}

.svc-routes__note {
  max-width: 52rem;
  margin: 1.75rem auto 0;
  text-align: center;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.65;
  color: var(--color-gray);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.6s ease 0.35s, transform 0.6s ease 0.35s;
}

.svc-routes.is-inview .svc-routes__note {
  opacity: 1;
  transform: translateY(0);
}

.svc-tips {
  background: #111111;
  border-top: 1px solid var(--color-border);
  padding: clamp(4.5rem, 7vw, 6.5rem) 0;
  overflow: hidden;
}

.svc-tips .svc-block__header {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.svc-tips.is-inview .svc-block__header {
  opacity: 1;
  transform: translateY(0);
}

.svc-tips__timeline {
  position: relative;
  max-width: 980px;
  margin: 0 auto;
  padding: 0.5rem 0 0.25rem;
}

.svc-tips__line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  transform: translateX(-50%) scaleY(0);
  transform-origin: top center;
  background: linear-gradient(180deg, rgba(184, 155, 94, 0.15), var(--color-gold) 8%, var(--color-gold) 92%, rgba(184, 155, 94, 0.15));
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.1s;
  z-index: 0;
}

.svc-tips.is-inview .svc-tips__line {
  transform: translateX(-50%) scaleY(1);
}

.svc-tips__list {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 1;
}

.svc-tip {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 88px minmax(0, 1fr);
  gap: 0;
  align-items: center;
  margin-bottom: 2.35rem;
  opacity: 0;
  transition: opacity 0.65s ease, transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.svc-tip:last-child {
  margin-bottom: 0;
}

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

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

.svc-tips.is-inview .svc-tip {
  opacity: 1;
  transform: translateX(0);
}

.svc-tips.is-inview .svc-tip:nth-child(1) { transition-delay: 0.18s; }
.svc-tips.is-inview .svc-tip:nth-child(2) { transition-delay: 0.3s; }
.svc-tips.is-inview .svc-tip:nth-child(3) { transition-delay: 0.42s; }
.svc-tips.is-inview .svc-tip:nth-child(4) { transition-delay: 0.54s; }
.svc-tips.is-inview .svc-tip:nth-child(5) { transition-delay: 0.66s; }
.svc-tips.is-inview .svc-tip:nth-child(6) { transition-delay: 0.78s; }

.svc-tip--left .svc-tip__card {
  grid-column: 1;
  justify-self: end;
}

.svc-tip--left .svc-tip__marker {
  grid-column: 2;
}

.svc-tip--left .svc-tip__spacer {
  grid-column: 3;
}

.svc-tip--right .svc-tip__spacer {
  grid-column: 1;
}

.svc-tip--right .svc-tip__marker {
  grid-column: 2;
}

.svc-tip--right .svc-tip__card {
  grid-column: 3;
  justify-self: start;
}

.svc-tip__marker {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 88px;
}

.svc-tip__badge {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 3rem;
  padding: 0.35rem 0.55rem;
  border: 1px solid rgba(184, 155, 94, 0.45);
  background: #151515;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--color-gold);
  box-shadow: 0 0 0 4px rgba(184, 155, 94, 0.08);
}

.svc-tip__connector {
  position: absolute;
  top: 50%;
  height: 1px;
  background: linear-gradient(90deg, rgba(184, 155, 94, 0.15), var(--color-gold));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1) 0.25s;
  z-index: 1;
}

.svc-tip--left .svc-tip__connector {
  right: calc(50% + 14px);
  left: -0.5rem;
  transform-origin: right center;
}

.svc-tip--right .svc-tip__connector {
  left: calc(50% + 14px);
  right: -0.5rem;
  transform-origin: left center;
}

.svc-tips.is-inview .svc-tip__connector {
  transform: scaleX(1);
}

.svc-tip__node {
  position: absolute;
  top: calc(50% + 1.35rem);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid var(--color-gold);
  background: #111111;
  box-shadow: 0 0 0 4px rgba(184, 155, 94, 0.12);
  transform: scale(0);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1) 0.35s;
}

.svc-tips.is-inview .svc-tip__node {
  transform: scale(1);
}

.svc-tip__card {
  width: min(100%, 22rem);
  padding: 1.25rem 1.35rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.025);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
  transition: border-color 0.3s ease, background-color 0.3s ease, transform 0.3s ease;
}

.svc-tip--left .svc-tip__card {
  text-align: right;
}

.svc-tip__card:hover {
  border-color: rgba(184, 155, 94, 0.28);
  background: rgba(184, 155, 94, 0.04);
  transform: translateY(-2px);
}

.svc-tip__title {
  font-family: "Cormorant Garamond", "Times New Roman", Georgia, serif;
  font-size: clamp(1.2rem, 1.35vw, 1.42rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--color-white);
  margin: 0 0 0.65rem;
}

.svc-tip__text {
  margin: 0;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 300;
  line-height: 1.65;
  color: var(--color-gray);
}

.svc-tips__note {
  max-width: 780px;
  margin: 2.25rem auto 0;
  padding: 1rem 1.2rem;
  border-left: 2px solid var(--color-gold);
  background: rgba(184, 155, 94, 0.06);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.65;
  color: var(--color-gray-light);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.6s ease 0.45s, transform 0.6s ease 0.45s;
}

.svc-tips.is-inview .svc-tips__note {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1199px) {
  .svc-block__inner {
    padding-left: 40px;
    padding-right: 40px;
  }

  .svc-included__grid {
    grid-template-columns: repeat(6, minmax(10.5rem, 1fr));
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x proximity;
    padding-bottom: 0.35rem;
  }

  .svc-included-card {
    scroll-snap-align: start;
  }

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

@media (max-width: 767px) {
  .svc-block__inner {
    padding-left: 20px;
    padding-right: 20px;
  }

  .svc-included__grid {
    grid-template-columns: repeat(6, minmax(9.5rem, 1fr));
    gap: 0.85rem;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x proximity;
  }

  .svc-audience__grid,
  .svc-routes__list {
    grid-template-columns: 1fr;
  }

  .svc-tips__line {
    left: 1.35rem;
    transform: translateX(0) scaleY(0);
  }

  .svc-tips.is-inview .svc-tips__line {
    transform: translateX(0) scaleY(1);
  }

  .svc-tip,
  .svc-tip--left,
  .svc-tip--right {
    grid-template-columns: 44px minmax(0, 1fr);
    transform: translateX(12px);
  }

  .svc-tips.is-inview .svc-tip {
    transform: translateX(0);
  }

  .svc-tip--left .svc-tip__card,
  .svc-tip--right .svc-tip__card,
  .svc-tip--left .svc-tip__marker,
  .svc-tip--right .svc-tip__marker,
  .svc-tip--left .svc-tip__spacer,
  .svc-tip--right .svc-tip__spacer {
    grid-column: auto;
  }

  .svc-tip--left .svc-tip__card,
  .svc-tip--right .svc-tip__card {
    grid-column: 2;
    grid-row: 1;
    justify-self: stretch;
    width: 100%;
    text-align: left;
  }

  .svc-tip--left .svc-tip__marker,
  .svc-tip--right .svc-tip__marker {
    grid-column: 1;
    grid-row: 1;
    min-height: auto;
    align-self: start;
    padding-top: 0.85rem;
  }

  .svc-tip__spacer {
    display: none;
  }

  .svc-tip__connector {
    display: none;
  }

  .svc-tip__node {
    top: 2.35rem;
  }

  .svc-route-item__journey {
    grid-template-columns: minmax(0, 1fr) minmax(2.5rem, 1fr) minmax(0, 1fr);
    gap: 0.4rem;
  }

  .svc-route-item__from,
  .svc-route-item__to,
  .svc-route-item__single {
    font-size: 0.82rem;
  }
}

/* --------------------------------------------------------------------------
   Fleet page — showcase grid, match cards
   -------------------------------------------------------------------------- */

.fleet-gallery {
  background: #0a0a0a;
  border-top: 1px solid var(--color-border);
  padding: clamp(4rem, 6vw, 5.5rem) 0;
}

.fleet-gallery__inner {
  width: min(100% - 2.5rem, 1500px);
  margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 2.5rem);
  box-sizing: border-box;
}

.fleet-gallery__header {
  max-width: 42rem;
  margin: 0 auto 2.75rem;
}

.fleet-gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.15rem;
  align-items: start;
}

.fleet-gallery-card:nth-child(9) {
  grid-column: 2;
}

.fleet-gallery-card:nth-child(10) {
  grid-column: 3;
}

.fleet-gallery-card {
  border-radius: 16px;
  overflow: hidden;
  background: #b89b5e;
  border: 1px solid rgba(0, 0, 0, 0.1);
  transition: transform 0.35s ease;
}

.fleet-gallery-card:hover {
  transform: translateY(-3px);
}

.fleet-gallery-card__link {
  display: block;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.fleet-gallery-card__media {
  display: block;
  line-height: 0;
  padding: 0;
}

.fleet-gallery-card__media img {
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  vertical-align: top;
  transition: transform 0.45s ease;
}

.fleet-gallery-card:hover .fleet-gallery-card__media img {
  transform: scale(1.02);
}

.fleet-page {
  background: #0a0a0a;
  border-top: 1px solid var(--color-border);
  padding: clamp(4.5rem, 7vw, 6.5rem) 0;
}

.fleet-page__inner {
  width: min(100% - 3rem, 1440px);
  margin: 0 auto;
  padding: 0 1.5rem;
  box-sizing: border-box;
}

.fleet-page__header {
  max-width: 42rem;
  margin: 0 auto 3rem;
}

.fleet-page__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.fleet-card {
  position: relative;
  width: 100%;
  min-height: 380px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #111;
}

.fleet-card__link {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 380px;
  color: inherit;
}

.fleet-card__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: scale(1);
  transition: transform 0.45s ease;
}

.fleet-card__shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.62) 0%,
    rgba(0, 0, 0, 0.22) 34%,
    rgba(0, 0, 0, 0) 58%
  );
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.fleet-card__content {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0 24px 14px;
  transition: padding 0.45s ease;
}

.fleet-card__content::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #b89b5e;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 200' preserveAspectRatio='none'%3E%3Cpath fill='white' d='M0 0C120 0 150 36 200 36C250 36 280 0 400 0V200H0Z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 200' preserveAspectRatio='none'%3E%3Cpath fill='white' d='M0 0C120 0 150 36 200 36C250 36 280 0 400 0V200H0Z'/%3E%3C/svg%3E");
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

.fleet-card__title {
  position: relative;
  z-index: 1;
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 1.45vw, 1.55rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-white);
  margin: 0;
  padding: 0.45rem 0 0;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
  transition: color 0.35s ease, transform 0.45s ease, text-shadow 0.35s ease;
}

.fleet-card__title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 42px;
  height: 1px;
  background: var(--color-gold);
  transition: background-color 0.35s ease, width 0.35s ease;
}

.fleet-card__more {
  position: relative;
  z-index: 1;
  display: block;
  width: fit-content;
  margin: 0.45rem 0 0;
  padding: 0;
  border: 0;
  background: transparent;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gold);
  cursor: pointer;
  max-height: 2rem;
  overflow: hidden;
  transition:
    opacity 0.3s ease,
    color 0.3s ease,
    transform 0.3s ease,
    max-height 0.3s ease,
    margin 0.3s ease,
    visibility 0.3s ease;
}

.fleet-card__more::after {
  content: " →";
}

.fleet-card__text,
.fleet-card__ideal {
  position: relative;
  z-index: 1;
  max-width: 100%;
  margin: 0;
  padding: 0;
  max-height: 0;
  overflow: hidden;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.55;
  color: rgba(26, 22, 16, 0.82);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition:
    opacity 0.45s ease,
    transform 0.45s ease,
    visibility 0.45s ease,
    max-height 0.45s ease,
    margin 0.45s ease;
}

.fleet-card__ideal-label {
  display: block;
  margin-bottom: 0.2rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(26, 22, 16, 0.62);
}

.fleet-card__btn {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  margin: 0;
  padding: 0;
  max-height: 0;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 3px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #1a1610;
  background: transparent;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  pointer-events: none;
  text-decoration: none;
  transition:
    opacity 0.45s ease 0.04s,
    transform 0.45s ease 0.04s,
    visibility 0.45s ease 0.04s,
    max-height 0.45s ease,
    margin 0.45s ease,
    padding 0.45s ease,
    border-color 0.45s ease,
    background-color 0.28s ease;
}

.fleet-card.is-active .fleet-card__image,
.fleet-card:hover .fleet-card__image {
  transform: scale(1.04);
}

.fleet-card.is-active .fleet-card__shade,
.fleet-card:hover .fleet-card__shade {
  opacity: 0.42;
}

.fleet-card.is-active .fleet-card__content,
.fleet-card:hover .fleet-card__content {
  padding: 2.85rem 24px 1.2rem;
}

.fleet-card.is-active .fleet-card__content::before,
.fleet-card:hover .fleet-card__content::before {
  opacity: 1;
}

.fleet-card.is-active .fleet-card__title,
.fleet-card:hover .fleet-card__title {
  color: #1a1610;
  text-shadow: none;
  transform: translateY(-4px);
  padding-top: 0.65rem;
}

.fleet-card.is-active .fleet-card__title::before,
.fleet-card:hover .fleet-card__title::before {
  background: rgba(26, 22, 16, 0.45);
  width: 36px;
}

.fleet-card.is-active .fleet-card__more,
.fleet-card:hover .fleet-card__more {
  opacity: 0;
  visibility: hidden;
  max-height: 0;
  margin: 0;
  pointer-events: none;
}

.fleet-card.is-active .fleet-card__text,
.fleet-card:hover .fleet-card__text {
  opacity: 1;
  visibility: visible;
  max-height: 5rem;
  margin-top: 0.55rem;
  transform: translateY(0);
}

.fleet-card.is-active .fleet-card__ideal,
.fleet-card:hover .fleet-card__ideal {
  opacity: 1;
  visibility: visible;
  max-height: 4.5rem;
  margin-top: 0.55rem;
  transform: translateY(0);
}

.fleet-card.is-active .fleet-card__btn,
.fleet-card:hover .fleet-card__btn {
  opacity: 1;
  visibility: visible;
  max-height: 3.5rem;
  margin-top: 0.85rem;
  padding: 0.55rem 1rem;
  border-color: rgba(26, 22, 16, 0.55);
  transform: translateY(0);
  pointer-events: auto;
}

.fleet-card__btn:hover,
.fleet-card__btn:focus-visible {
  background: rgba(26, 22, 16, 0.1);
  color: #0d0b08;
  outline: none;
}

.fleet-features.how {
  background: #111111;
}

.fleet-match {
  background: #111111;
  border-top: 1px solid var(--color-border);
  padding: clamp(4.5rem, 7vw, 6.5rem) 0;
}

.fleet-match__table-wrap {
  overflow-x: auto;
  margin-bottom: 2.25rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.02);
}

.fleet-match__table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
}

.fleet-match__table th,
.fleet-match__table td {
  padding: 1.15rem 1.35rem;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.fleet-match__table thead th {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-gold);
  background: rgba(184, 155, 94, 0.08);
}

.fleet-match__table tbody tr:last-child td,
.fleet-match__table tbody tr:last-child th {
  border-bottom: none;
}

.fleet-match__table tbody tr:hover {
  background: rgba(184, 155, 94, 0.04);
}

.fleet-match__table-category {
  font-family: "Cormorant Garamond", "Times New Roman", Georgia, serif;
  font-size: clamp(1.25rem, 1.35vw, 1.45rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-white);
  white-space: nowrap;
}

.fleet-match__table-vehicles {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.55;
  color: var(--color-gold);
}

.fleet-match__table-text {
  margin: 0;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 300;
  line-height: 1.65;
  color: var(--color-gray);
}

.fleet-match__actions {
  text-align: center;
}

@media (max-width: 767px) {
  .fleet-match__table th,
  .fleet-match__table td {
    padding: 0.95rem 1rem;
  }

  .fleet-match__table-category {
    white-space: normal;
  }
}

@media (max-width: 1199px) {
  .fleet-gallery__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .fleet-gallery-card:nth-child(9),
  .fleet-gallery-card:nth-child(10) {
    grid-column: auto;
  }

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

@media (max-width: 767px) {
  .fleet-gallery__inner {
    padding: 0 20px;
  }

  .fleet-gallery__grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .fleet-gallery-card:nth-child(9),
  .fleet-gallery-card:nth-child(10) {
    grid-column: auto;
  }

  .fleet-page__inner {
    padding: 0 20px;
  }

  .fleet-page__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .fleet-card,
  .fleet-card__link {
    min-height: 340px;
  }
}

@media (hover: none) {
  .fleet-card:hover .fleet-card__image {
    transform: scale(1);
  }

  .fleet-card:hover .fleet-card__shade {
    opacity: 1;
  }

  .fleet-card:hover .fleet-card__content {
    padding: 0 24px 14px;
  }

  .fleet-card:hover .fleet-card__content::before {
    opacity: 0;
  }

  .fleet-card:hover .fleet-card__title {
    color: var(--color-white);
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
    transform: none;
  }

  .fleet-card:hover .fleet-card__text,
  .fleet-card:hover .fleet-card__ideal,
  .fleet-card:hover .fleet-card__btn {
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    margin: 0;
    pointer-events: none;
  }

  .fleet-card:hover .fleet-card__more {
    opacity: 1;
    visibility: visible;
    max-height: 2rem;
  }

  .fleet-card.is-active .fleet-card__image {
    transform: scale(1.04);
  }

  .fleet-card.is-active .fleet-card__shade {
    opacity: 0.42;
  }

  .fleet-card.is-active .fleet-card__content {
    padding: 2.85rem 24px 1.2rem;
  }

  .fleet-card.is-active .fleet-card__content::before {
    opacity: 1;
  }

  .fleet-card.is-active .fleet-card__title {
    color: #1a1610;
    text-shadow: none;
    transform: translateY(-4px);
  }

  .fleet-card.is-active .fleet-card__text,
  .fleet-card.is-active .fleet-card__ideal,
  .fleet-card.is-active .fleet-card__btn {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .fleet-card.is-active .fleet-card__text {
    max-height: 5rem;
    margin-top: 0.55rem;
  }

  .fleet-card.is-active .fleet-card__ideal {
    max-height: 4.5rem;
    margin-top: 0.55rem;
  }

  .fleet-card.is-active .fleet-card__btn {
    max-height: 3.5rem;
    margin-top: 0.85rem;
    padding: 0.55rem 1rem;
  }

  .fleet-card.is-active .fleet-card__more {
    opacity: 0;
    visibility: hidden;
    max-height: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .svc-included-card,
  .svc-audience-card,
  .svc-route-item,
  .svc-tip,
  .svc-routes .svc-block__header,
  .svc-routes__note,
  .svc-tips .svc-block__header,
  .svc-tips__note {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .svc-tips__line,
  .svc-tip__connector,
  .svc-tip__node {
    transform: none !important;
    transition: none !important;
  }

  .svc-routes.is-inview .svc-route-item--split .svc-route-item__track-progress {
    width: 100%;
    animation: none !important;
  }

  .svc-routes.is-inview .svc-route-item--split .svc-route-item__vehicle {
    left: 100%;
    animation: none !important;
  }

  .svc-routes.is-inview .svc-route-item--split .svc-route-item__endpoint-dot,
  .svc-routes.is-inview .svc-route-item--single .svc-route-item__local-pulse {
    animation: none !important;
  }
}

/* --------------------------------------------------------------------------
   Reduced motion
   -------------------------------------------------------------------------- */

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

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

  .hero__slide {
    transition: none;
  }

  .hero-copy {
    transition: none;
  }

  .service-row__image,
  .service-row__shade,
  .service-row__content,
  .service-row__text,
  .service-row__btn {
    transition: none;
  }

  .service-row:hover .service-row__image {
    transform: none;
  }
}

/* --------------------------------------------------------------------------
   Reservation page
   -------------------------------------------------------------------------- */

.how--before-book .how-step__node {
  background: #B89B5E;
  border-color: #B89B5E;
}

.how--before-book .how-step__number {
  color: #111111;
}

.how--before-book .how-step:hover .how-step__node {
  background: #c4a96a;
  border-color: #c4a96a;
  box-shadow: 0 0 0 8px #111111, 0 0 20px rgba(184, 155, 94, 0.22);
}

.how--before-book.is-inview .how-step__node {
  animation: how-before-book-node-pulse 2.4s ease-in-out 1.4s infinite;
}

@keyframes how-before-book-node-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 8px #111111, 0 0 0 0 rgba(184, 155, 94, 0);
  }
  50% {
    box-shadow: 0 0 0 8px #111111, 0 0 0 10px rgba(184, 155, 94, 0.16);
  }
}

.svc-tips--full .svc-block__header {
  max-width: 46rem;
}

.svc-tips--full .svc-tips__timeline {
  max-width: none;
  width: 100%;
}

.svc-tips--full .svc-tip {
  grid-template-columns: minmax(0, 1fr) 96px minmax(0, 1fr);
  margin-bottom: 2.75rem;
}

.svc-tips--full .svc-tip__card {
  width: min(100%, 30rem);
}

.svc-tips--full .svc-tip__marker {
  min-height: 96px;
}

.svc-tips--full .svc-tip__badge {
  min-width: 3.25rem;
  padding: 0.45rem 0.65rem;
  font-size: 0.78rem;
}

@media (min-width: 1200px) {
  .svc-tips--full .svc-tip__card {
    width: min(100%, 34rem);
  }
}

@media (max-width: 991px) {
  .svc-tips--full .svc-tip,
  .svc-tips--full .svc-tip--left,
  .svc-tips--full .svc-tip--right {
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 0.85rem;
  }

  .svc-tips--full .svc-tip__card {
    width: 100%;
    max-width: none;
  }

  .svc-tips--full .svc-tip--left .svc-tip__card,
  .svc-tips--full .svc-tip--right .svc-tip__card {
    grid-column: 2;
    grid-row: 1;
    justify-self: stretch;
    text-align: left;
  }

  .svc-tips--full .svc-tip--left .svc-tip__marker,
  .svc-tips--full .svc-tip--right .svc-tip__marker {
    grid-column: 1;
    grid-row: 1;
    min-height: auto;
    align-self: start;
    padding-top: 0.85rem;
  }
}

@media (max-width: 767px) {
  .svc-tips--full .svc-tip,
  .svc-tips--full .svc-tip--left,
  .svc-tips--full .svc-tip--right {
    margin-bottom: 2rem;
  }

  .svc-tips--full .svc-tip__title {
    font-size: 1.05rem;
    line-height: 1.3;
  }

  .svc-tips--full .svc-tip__text {
    max-width: none;
  }
}

/* --------------------------------------------------------------------------
   About page
   -------------------------------------------------------------------------- */

.about__layout--media-first {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.about.about--story .about__layout {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.about.about--story.is-inview .about__layout {
  opacity: 1;
  transform: none;
}

.about-approach {
  width: 100%;
  background: #111111;
  border-top: 1px solid var(--color-border);
  padding: clamp(4.5rem, 7vw, 6.25rem) 0;
}

.about-approach__inner {
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  padding-left: clamp(1.25rem, 4vw, 3.75rem);
  padding-right: clamp(1.25rem, 4vw, 3.75rem);
  box-sizing: border-box;
}

.about-approach__intro {
  max-width: 40rem;
  margin: 0 auto 3rem;
  text-align: center;
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.about-approach.is-inview .about-approach__intro {
  opacity: 1;
  transform: none;
}

.about-approach__title {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.35rem);
  font-weight: 600;
  line-height: 1.12;
  color: var(--color-white);
}

.about-approach__lead {
  margin: 0;
  font-size: 1.02rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--color-gray);
}

.about-approach__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(184, 155, 94, 0.22);
  border: 1px solid rgba(184, 155, 94, 0.18);
}

.about-approach__item {
  padding: clamp(1.75rem, 3vw, 2.35rem);
  background: #141414;
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease,
    background-color 0.3s ease;
}

.about-approach.is-inview .about-approach__item {
  opacity: 1;
  transform: none;
}

.about-approach.is-inview .about-approach__item:nth-child(1) { transition-delay: 0.08s; }
.about-approach.is-inview .about-approach__item:nth-child(2) { transition-delay: 0.16s; }
.about-approach.is-inview .about-approach__item:nth-child(3) { transition-delay: 0.24s; }

.about-approach__item:hover {
  background: #181818;
}

.about-approach__number {
  display: block;
  margin-bottom: 1.1rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--color-gold);
}

.about-approach__heading {
  margin: 0 0 0.75rem;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-white);
}

.about-approach__text {
  margin: 0;
  font-size: 0.98rem;
  font-weight: 300;
  line-height: 1.72;
  color: var(--color-gray);
}

.about-locations {
  width: 100%;
  background: #0a0a0a;
  border-top: 1px solid var(--color-border);
  padding: clamp(4.5rem, 7vw, 6rem) 0;
}

.about-locations__inner {
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  padding-left: clamp(1.25rem, 4vw, 3.75rem);
  padding-right: clamp(1.25rem, 4vw, 3.75rem);
  box-sizing: border-box;
}

.about-locations__intro {
  max-width: 42rem;
  margin: 0 auto 2.75rem;
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.about-locations.is-inview .about-locations__intro {
  opacity: 1;
  transform: none;
}

.about-locations__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
  margin: 0;
  padding: 0;
  list-style: none;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.65s ease 0.08s, transform 0.65s ease 0.08s;
}

.about-locations.is-inview .about-locations__grid {
  opacity: 1;
  transform: none;
}

.about-locations__link {
  display: flex;
  align-items: center;
  min-height: 58px;
  padding: 0.85rem 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-top: 1px solid rgba(184, 155, 94, 0.35);
  background: #111111;
  color: var(--color-white);
  font-size: 0.92rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  text-decoration: none;
  transition: border-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.about-locations__link:hover,
.about-locations__link:focus-visible {
  border-color: rgba(184, 155, 94, 0.55);
  color: var(--color-gold);
  transform: translateY(-2px);
  outline: none;
}

.about-locations__actions {
  margin-top: 2rem;
  text-align: center;
}

.about-locations__btn {
  border-radius: 3px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.fleet-gallery__grid--compact {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.fleet-gallery__actions {
  margin-top: 2.25rem;
  text-align: center;
}

.fleet-gallery__btn {
  border-radius: 3px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.fleet-gallery--about .fleet-gallery__header {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.fleet-gallery--about.is-inview .fleet-gallery__header {
  opacity: 1;
  transform: none;
}

.fleet-gallery--about .fleet-gallery-card {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.fleet-gallery--about.is-inview .fleet-gallery-card {
  opacity: 1;
  transform: none;
}

.fleet-gallery--about.is-inview .fleet-gallery-card:nth-child(1) { transition-delay: 0.06s; }
.fleet-gallery--about.is-inview .fleet-gallery-card:nth-child(2) { transition-delay: 0.12s; }
.fleet-gallery--about.is-inview .fleet-gallery-card:nth-child(3) { transition-delay: 0.18s; }
.fleet-gallery--about.is-inview .fleet-gallery-card:nth-child(4) { transition-delay: 0.24s; }

.about-experience {
  position: relative;
  width: 100%;
  min-height: clamp(420px, 52vw, 560px);
  display: flex;
  align-items: center;
  border-top: 1px solid var(--color-border);
  overflow: hidden;
}

.about-experience__bg {
  position: absolute;
  inset: 0;
  background-image: url("../assets/images/muskoka-event-transportation.webp");
  background-size: cover;
  background-position: center;
  transform: scale(1.03);
  transition: transform 1.2s ease;
}

.about-experience.is-inview .about-experience__bg {
  transform: scale(1);
}

.about-experience__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 8, 8, 0.92) 0%, rgba(8, 8, 8, 0.72) 48%, rgba(8, 8, 8, 0.35) 100%);
}

.about-experience__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  padding: clamp(3.5rem, 7vw, 5.5rem) clamp(1.25rem, 4vw, 3.75rem);
  box-sizing: border-box;
}

.about-experience__content {
  max-width: 34rem;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.about-experience.is-inview .about-experience__content {
  opacity: 1;
  transform: none;
}

.about-experience__line {
  display: block;
  width: 52px;
  height: 1px;
  margin-bottom: 1.35rem;
  background: var(--color-gold);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.8s ease 0.12s;
}

.about-experience.is-inview .about-experience__line {
  transform: scaleX(1);
}

.about-experience__title {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(2.35rem, 4vw, 3.25rem);
  font-weight: 600;
  line-height: 1.12;
  color: var(--color-white);
}

.about-experience__text {
  margin: 0;
  font-size: 1.02rem;
  font-weight: 300;
  line-height: 1.78;
  color: var(--color-gray);
}

.cta--dark {
  background: #080808;
}

.cta--dark .cta__panel--dark {
  background: #111111;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.cta--dark.is-inview .cta__panel--dark {
  opacity: 1;
  transform: none;
}

.cta--dark .cta__title {
  color: var(--color-white);
}

.cta--dark .cta__text {
  color: var(--color-gray);
}

.cta__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem;
  flex-shrink: 0;
}

.cta__actions .btn {
  min-width: 168px;
}

@media (max-width: 1199px) {
  .about-approach__grid {
    grid-template-columns: minmax(0, 1fr);
  }

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

  .fleet-gallery__grid--compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 991px) {
  .cta--dark .cta__panel--dark {
    flex-direction: column;
    align-items: flex-start;
  }

  .about-experience__overlay {
    background: rgba(8, 8, 8, 0.82);
  }
}

@media (max-width: 767px) {
  .about-locations__grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .fleet-gallery__grid--compact {
    grid-template-columns: minmax(0, 1fr);
  }

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

  .cta__actions .btn {
    width: 100%;
  }
}

/* --------------------------------------------------------------------------
   Contact page
   -------------------------------------------------------------------------- */

.contact-page-intro {
  width: 100%;
  background: #0a0a0a;
  border-top: 1px solid var(--color-border);
  padding: clamp(4.5rem, 7vw, 6.25rem) 0;
}

.contact-page-intro__inner {
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  padding-left: clamp(1.25rem, 4vw, 3.75rem);
  padding-right: clamp(1.25rem, 4vw, 3.75rem);
  box-sizing: border-box;
}

.contact-page-intro__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: start;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.contact-page-intro.is-inview .contact-page-intro__layout {
  opacity: 1;
  transform: none;
}

.contact-page-intro__title {
  margin: 0 0 1.25rem;
  font-family: var(--font-display);
  font-size: clamp(2.35rem, 4vw, 3.15rem);
  font-weight: 600;
  line-height: 1.12;
  color: var(--color-white);
  max-width: 18ch;
}

.contact-page-intro__text {
  margin: 0 0 1.1rem;
  max-width: 38rem;
  font-size: 1.02rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--color-gray);
}

.contact-page-intro__text:last-of-type {
  margin-bottom: 0;
}

.contact-info-panel {
  padding: clamp(1.75rem, 3vw, 2.35rem);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-top: 2px solid rgba(184, 155, 94, 0.55);
  background: #111111;
}

.contact-info-panel__row {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.contact-info-panel__label {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
}

.contact-info-panel__value {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-white);
  text-decoration: none;
  transition: color 0.3s ease;
}

a.contact-info-panel__value:hover,
a.contact-info-panel__value:focus-visible {
  color: var(--color-gold);
  outline: none;
}

.contact-info-panel__value--static {
  color: var(--color-gray-light);
}

.contact-info-panel__divider {
  height: 1px;
  margin: 1.15rem 0;
  background: rgba(255, 255, 255, 0.08);
}

.contact-form-section {
  width: 100%;
  background: #080808;
  border-top: 1px solid var(--color-border);
  padding: clamp(4.5rem, 7vw, 6rem) 0;
}

.contact-form-section__inner {
  width: 100%;
  max-width: 920px;
  margin: 0 auto;
  padding-left: clamp(1.25rem, 4vw, 2.5rem);
  padding-right: clamp(1.25rem, 4vw, 2.5rem);
  box-sizing: border-box;
}

.contact-form-section__header {
  margin-bottom: 2.5rem;
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.contact-form-section.is-inview .contact-form-section__header {
  opacity: 1;
  transform: none;
}

.contact-form {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s ease 0.08s, transform 0.65s ease 0.08s;
}

.contact-form-section.is-inview .contact-form {
  opacity: 1;
  transform: none;
}

.contact-form__grid {
  display: grid;
  gap: 1rem;
  margin-bottom: 1rem;
}

.contact-form__grid--half {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-form__field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.contact-form__label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.contact-form__input {
  width: 100%;
  min-height: 50px;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 3px;
  background: #111111;
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 0.96rem;
  font-weight: 400;
  line-height: 1.4;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form__textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-form__select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23b89b5e' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.contact-form__input:focus {
  outline: none;
  border-color: var(--color-gold);
  box-shadow: 0 0 0 1px rgba(184, 155, 94, 0.35);
}

.contact-form__input::placeholder {
  color: rgba(255, 255, 255, 0.28);
}

.contact-form__actions {
  margin-top: 1.5rem;
}

.contact-form__submit {
  min-width: 200px;
  border-radius: 3px;
  letter-spacing: 0.14em;
}

.contact-book-cta {
  width: 100%;
  background: #111111;
  border-top: 1px solid var(--color-border);
  padding: clamp(3rem, 5vw, 4rem) 0;
}

.contact-book-cta__inner {
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  padding-left: clamp(1.25rem, 4vw, 3.75rem);
  padding-right: clamp(1.25rem, 4vw, 3.75rem);
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.contact-book-cta.is-inview .contact-book-cta__inner {
  opacity: 1;
  transform: none;
}

.contact-book-cta__title {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 600;
  line-height: 1.12;
  color: var(--color-white);
}

.contact-book-cta__text {
  margin: 0;
  max-width: 36rem;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--color-gray);
}

.contact-book-cta__btn {
  flex-shrink: 0;
  border-radius: 3px;
  letter-spacing: 0.12em;
}

.contact-actions {
  width: 100%;
  background: #0a0a0a;
  border-top: 1px solid var(--color-border);
  padding: clamp(3.5rem, 6vw, 5rem) 0;
}

.contact-actions__inner {
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  padding-left: clamp(1.25rem, 4vw, 3.75rem);
  padding-right: clamp(1.25rem, 4vw, 3.75rem);
  box-sizing: border-box;
}

.contact-actions__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(184, 155, 94, 0.18);
  border: 1px solid rgba(184, 155, 94, 0.15);
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.contact-actions.is-inview .contact-actions__grid {
  opacity: 1;
  transform: none;
}

.contact-action-card {
  padding: clamp(1.75rem, 3vw, 2.25rem);
  background: #111111;
  transition: background-color 0.3s ease;
}

.contact-action-card:hover {
  background: #161616;
}

.contact-action-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 1rem;
  border: 1px solid rgba(184, 155, 94, 0.35);
  color: var(--color-gold);
}

.contact-action-card__icon svg {
  width: 20px;
  height: 20px;
}

.contact-action-card__title {
  margin: 0 0 0.55rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-white);
}

.contact-action-card__link {
  display: inline-block;
  margin-bottom: 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  color: var(--color-gold);
  text-decoration: none;
  transition: color 0.3s ease;
  word-break: break-word;
}

.contact-action-card__link:hover,
.contact-action-card__link:focus-visible {
  color: var(--color-white);
  outline: none;
}

.contact-action-card__text {
  margin: 0;
  font-size: 0.94rem;
  font-weight: 300;
  line-height: 1.65;
  color: var(--color-gray);
}

.contact-service-area {
  background: #080808;
}

.contact-map-section {
  width: 100%;
  background: #0a0a0a;
  border-top: 1px solid var(--color-border);
  padding-top: clamp(3.5rem, 6vw, 4.5rem);
}

.contact-map-section__header {
  width: 100%;
  max-width: 1500px;
  margin: 0 auto 1.75rem;
  padding-left: clamp(1.25rem, 4vw, 3.75rem);
  padding-right: clamp(1.25rem, 4vw, 3.75rem);
  box-sizing: border-box;
}

.contact-map-section__title {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 3.8vw, 3rem);
  font-weight: 600;
  line-height: 1.12;
  color: var(--color-white);
}

.contact-map-section__lead {
  margin: 0;
  max-width: 36rem;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--color-gray);
}

.contact-map-section__map {
  width: 100%;
  min-height: 420px;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.contact-map-section__map--leaflet .leaflet-container {
  width: 100%;
  min-height: 420px;
  background: #101010;
}

.faq--compact .faq__intro {
  max-width: none;
  margin-bottom: 2rem;
}

.faq--compact .faq__layout {
  grid-template-columns: minmax(0, 1fr);
}

@media (max-width: 991px) {
  .contact-page-intro__layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .contact-form__grid--half {
    grid-template-columns: minmax(0, 1fr);
  }

  .contact-book-cta__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-actions__grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 767px) {
  .contact-form__submit,
  .contact-book-cta__btn {
    width: 100%;
  }
}
