:root {
  --top-bar-height: 3.15rem;
  --font-body: "Inter", "Helvetica Neue", Arial, sans-serif;
  --font-display: "Newsreader", Georgia, serif;
  --font-size-xs: 0.82rem;
  --font-size-sm: 0.94rem;
  --font-size-md: 1rem;
  --font-size-lg: 1.12rem;
  --font-size-xl: 1.35rem;
  --font-size-2xl: clamp(2.1rem, 4vw, 3.4rem);
  --font-size-3xl: clamp(2.5rem, 4vw, 4rem);
  --tracking-tight: -0.025em;
  --tracking-wide: 0.16em;
  --space-1: 0.5rem;
  --space-2: 0.75rem;
  --space-3: 1rem;
  --space-4: 1.5rem;
  --space-5: 2rem;
  --space-6: 3rem;
  --bg: #090909;
  --bg-soft: #121212;
  --bg-panel: rgba(15, 15, 15, 0.78);
  --surface: #ffffff;
  --surface-soft: #f6f1e7;
  --surface-warm: #f1eadc;
  --text: #151515;
  --text-soft: rgba(255, 255, 255, 0.78);
  --text-muted: #5b5448;
  --text-deep: var(--gold-bright);
  --gold: #d1a13a;
  --gold-bright: #f2ca6d;
  --gold-wash: rgba(209, 161, 58, 0.12);
  --teal-accent: #335c63;
  --line: rgba(209, 161, 58, 0.22);
  --line-strong: rgba(209, 161, 58, 0.42);
  --shadow: 0 24px 60px -28px rgba(0, 0, 0, 0.55);
  --shadow-soft: 0 20px 45px -30px rgba(0, 0, 0, 0.22);
  --radius: 24px;
  --radius-sm: 16px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--surface);
  font-size: var(--font-size-md);
  line-height: 1.65;
}

h1,
h2,
h3,
h4 {
  margin-top: 0;
  font-family: var(--font-body);
  letter-spacing: var(--tracking-tight);
  color: var(--text-deep);
}

img {
  display: block;
  width: 100%;
}

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

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

button {
  border: 0;
  cursor: pointer;
}

section[id] {
  scroll-margin-top: 6rem;
}

.container {
  width: min(1140px, calc(100% - 2rem));
  margin: 0 auto;
}

.section {
  padding: 6rem 0;
}

.section--tight {
  padding: 1.5rem 0 0;
}

.section--destination {
  padding: 2.5rem 0 1rem;
  background: var(--surface-soft);
}

.section--light {
  background: var(--surface);
}

.section--soft {
  background:
    linear-gradient(180deg, rgba(209, 161, 58, 0.05), rgba(209, 161, 58, 0)),
    var(--surface);
}

.section--dark {
  background:
    radial-gradient(circle at top, rgba(209, 161, 58, 0.12), transparent 35%),
    linear-gradient(180deg, #111111, #080808);
  color: #ffffff;
}

.section__header {
  max-width: 780px;
  margin: 0 auto 3.5rem;
  text-align: center;
}

.section__eyebrow,
.hero__eyebrow {
  margin: 0 0 0.8rem;
  color: var(--gold);
  font-size: var(--font-size-sm);
  font-weight: 600;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
}

.section__eyebrow--light {
  color: var(--gold-bright);
}

.section__header h2 {
  margin: 0;
  font-size: var(--font-size-3xl);
  line-height: 0.96;
}

.section__header p {
  margin: 1rem 0 0;
  color: var(--text-muted);
  font-size: var(--font-size-lg);
  line-height: 1.8;
}

.section__header--light p {
  color: var(--text-soft);
}

.top-bar {
  background: #000000;
  color: #ffffff;
}

.top-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--top-bar-height);
  font-family: var(--font-body);
  font-size: 0.87rem;
  font-weight: 500;
}

.top-bar__left,
.top-bar__right {
  display: flex;
  align-items: center;
  min-width: 0;
}

.top-bar__right {
  justify-content: flex-end;
  gap: 1rem;
  flex: 1;
}

.top-bar__inner a,
.top-bar__inner span {
  white-space: nowrap;
}

.site-header {
  position: absolute;
  top: var(--top-bar-height);
  left: 0;
  right: 0;
  z-index: 12;
  backdrop-filter: blur(18px);
  background: transparent;
  border-bottom: 0;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  min-height: 3.4rem;
}

.site-header__brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.site-header__brand img {
  display: block;
  width: min(7.75rem, 34vw);
  height: auto;
}

.brand-crest {
  position: relative;
  display: grid;
  place-items: center;
  border-radius: 50%;
  overflow: hidden;
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.08), transparent 38%),
    #0d0d0d;
  border: 1px solid rgba(209, 161, 58, 0.42);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.06),
    0 16px 34px -20px rgba(0, 0, 0, 0.72);
}

.brand-crest::before,
.brand-crest::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.brand-crest::before {
  inset: 0.4rem;
  border: 1px solid rgba(209, 161, 58, 0.34);
}

.brand-crest::after {
  inset: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.brand-crest__art {
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.04), transparent 34%),
    url("./assets/TKlogo.png") 50% 5% / 155% auto no-repeat,
    #111111;
}

.brand-crest--header {
  width: 3.5rem;
  height: 3.5rem;
}

.brand-crest--hero {
  width: 8.75rem;
  height: 8.75rem;
  margin-bottom: 1.4rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.02rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.site-nav a,
.site-header__call,
.text-link {
  transition: color 180ms ease;
}

.site-nav a:hover,
.site-header__call:hover,
.text-link:hover {
  color: var(--gold-bright);
}

.site-header__call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.65rem;
  padding: 0.55rem 1rem;
  color: #0f0f0f;
  background: linear-gradient(135deg, var(--gold), var(--gold-bright));
  border-radius: 999px;
  font-weight: 700;
  white-space: nowrap;
  font-size: var(--font-size-sm);
}

.site-header__call:hover {
  color: #0f0f0f;
  background: #f3d27f;
}

.hero {
  position: relative;
  min-height: calc(100svh - 5rem);
  overflow: hidden;
  background: url("./assets/hero-vehicle.jpg") center/cover no-repeat;
  color: #ffffff;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.74) 0%, rgba(0, 0, 0, 0.56) 30%, rgba(0, 0, 0, 0.26) 53%, rgba(0, 0, 0, 0.08) 70%, rgba(0, 0, 0, 0) 84%);
  pointer-events: none;
}

.hero__shell {
  position: relative;
  z-index: 1;
  display: block;
  padding: 14.4rem 0 4.5rem;
}

.hero__copy {
  max-width: 760px;
  padding: 0;
}

.destination-showcase__intro h2 {
  color: #241f18;
}

.hero h1 {
  margin: 0;
  font-size: clamp(3.4rem, 7vw, 6.1rem);
  line-height: 0.9;
  font-weight: 600;
  color: #f7f1e8;
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.32);
}

.hero__lead {
  max-width: 640px;
  margin: 1.35rem 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.04rem, 1.45vw, 1.22rem);
  line-height: 1.75;
  text-shadow: 0 8px 22px rgba(0, 0, 0, 0.28);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.hero__trust span {
  padding: 0.85rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.95rem;
}
.vehicle-card,
.operations-card,
.quote-card,
.contact-card,
.booking-form,
.service-hours,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.contact-card p,
.form-note,
.service-hours p {
  color: var(--text-soft);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.55rem;
  padding: 0.9rem 1.45rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: var(--font-size-sm);
  font-weight: 600;
  letter-spacing: 0.02em;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--gold {
  color: #0f0f0f;
  background: linear-gradient(135deg, var(--gold), var(--gold-bright));
  box-shadow: 0 18px 38px -22px rgba(242, 202, 109, 0.82);
}

.button--ghost {
  color: #0f0f0f;
  border: 1px solid rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.96);
}

.button--ghost:hover {
  border-color: #ffffff;
  color: #0f0f0f;
  background: #ffffff;
}

.button--full {
  width: 100%;
}

.trust-band,
.card-grid,
.proof-grid,
.contact-layout,
.two-up,
.operations-steps {
  display: grid;
  gap: 1.5rem;
}

.destination-showcase {
  padding: 2rem;
  border: 1px solid rgba(167, 145, 50, 0.18);
  border-radius: calc(var(--radius) + 4px);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-soft);
}

.destination-showcase__intro {
  max-width: 700px;
  margin-bottom: 1.8rem;
}

.destination-showcase__intro h2 {
  margin: 0;
  font-size: var(--font-size-2xl);
  line-height: 1;
}

.destination-showcase__intro p:last-child {
  margin: 1rem 0 0;
  color: var(--text-muted);
  line-height: 1.75;
}

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

.destination-card {
  position: relative;
  min-height: 22rem;
  overflow: hidden;
  border-radius: calc(var(--radius) - 2px);
  background: var(--destination-image) center/cover no-repeat;
  box-shadow: 0 18px 35px -24px rgba(0, 0, 0, 0.35);
}

.destination-card::after {
  display: none;
}

.destination-card__overlay {
  position: absolute;
  inset: auto 1.15rem 1.15rem;
  z-index: 1;
  padding: 1rem 1.05rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(12px);
}

.destination-card__overlay p {
  margin: 0;
  color: #141414;
  font-size: var(--font-size-xl);
  font-weight: 600;
}

.destination-card__overlay span {
  display: block;
  margin-top: 0.35rem;
  color: rgba(20, 20, 20, 0.72);
  font-size: 0.92rem;
  line-height: 1.55;
}

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

.trust-band__item,
.service-card,
.trust-card {
  padding: 1.65rem;
  border: 1px solid rgba(209, 161, 58, 0.18);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.trust-band__item strong,
.service-card h3,
.trust-card h3,
.contact-card h3,
.booking-form h3,
.service-hours h4,
.operations-card h3 {
  display: block;
  margin: 0 0 0.65rem;
  font-size: var(--font-size-xl);
}

.trust-band__item span,
.service-card p,
.trust-card p,
.vehicle-card p,
.operations-card p,
.quote-card p,
.faq-list p {
  line-height: 1.75;
}

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

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

.card-grid--two,
.contact-layout,
.proof-grid,
.two-up {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.fleet-showcase {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  overflow: hidden;
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.fleet-panel {
  position: relative;
  min-height: 46rem;
  overflow: hidden;
  isolation: isolate;
}

.fleet-panel--light {
  background: #f5f4ee;
  color: #181818;
}

.fleet-panel--dark {
  background: #111212;
  color: #ffffff;
}

.fleet-panel__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 3rem 2rem 0;
  text-align: center;
}

.fleet-panel__vehicle {
  margin: 0 0 0.5rem;
  color: rgba(24, 24, 24, 0.58);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.fleet-panel--dark .fleet-panel__vehicle {
  color: rgba(255, 255, 255, 0.62);
}

.fleet-panel h3 {
  margin: 0;
  color: inherit;
  font-family: var(--font-body);
  font-size: clamp(2.85rem, 4.4vw, 4.4rem);
  font-weight: 700;
  line-height: 0.96;
  letter-spacing: -0.06em;
}

.fleet-panel h3 span {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.fleet-panel__summary {
  max-width: 26rem;
  margin: 1rem 0 0;
  color: rgba(24, 24, 24, 0.86);
  font-size: 1rem;
  line-height: 1.55;
}

.fleet-panel--dark .fleet-panel__summary {
  color: rgba(255, 255, 255, 0.84);
}

.fleet-panel__rate {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  margin: 1.5rem 0 0;
  color: inherit;
}

.fleet-panel__rate strong {
  font-size: clamp(2.2rem, 3vw, 2.85rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.05em;
}

.fleet-panel__rate span {
  font-size: 1rem;
  font-weight: 700;
  opacity: 0.88;
}

.fleet-panel__button {
  margin-top: 1.35rem;
  min-width: 13.5rem;
  min-height: 3rem;
  padding-inline: 1.15rem;
}

.fleet-panel__button--dark {
  color: #111212;
  background: #ffffff;
}

.fleet-panel__button--dark:hover {
  background: #f3e6c0;
}

.fleet-panel__stars {
  margin-bottom: 1rem;
  color: #d9c58f;
  font-size: 1.1rem;
  letter-spacing: 0.24em;
}

.fleet-panel__image {
  position: absolute;
  left: 50%;
  bottom: 0.35rem;
  z-index: 1;
  width: min(92%, 34rem);
  max-width: none;
  transform: translateX(-50%);
  transform-origin: bottom center;
  filter: drop-shadow(0 20px 24px rgba(0, 0, 0, 0.12));
  pointer-events: none;
  user-select: none;
}

.fleet-panel--gs4 .fleet-panel__image {
  width: min(96%, 35rem);
  left: 52%;
}

.fleet-panel--suburban .fleet-panel__image {
  width: min(98%, 36rem);
  left: 52%;
}

.fleet-panel--sprinter .fleet-panel__image {
  width: min(97%, 35rem);
  left: 52%;
  filter: drop-shadow(0 12px 18px rgba(0, 0, 0, 0.16));
}

.trust-card {
  background:
    linear-gradient(180deg, rgba(209, 161, 58, 0.08), rgba(209, 161, 58, 0)),
    #ffffff;
}

#why-us {
  background: #fbfaf7;
}

#services {
  background: #111111;
}

.section__header--why {
  max-width: 920px;
  margin-bottom: 4.5rem;
}

.section__header--why h2 {
  max-width: 760px;
  margin: 0 auto;
  color: #151515;
  font-family: var(--font-body);
  font-size: clamp(2.9rem, 5.7vw, 5rem);
  font-weight: 700;
  line-height: 0.96;
  letter-spacing: -0.05em;
}

.section__header--why h2 span {
  display: inline;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.section__header--services h2 {
  max-width: 840px;
  color: #ffffff;
}

#services .section__eyebrow,
#services .section__header--services p,
#services .why-item p {
  color: #ffffffc7;
}

#services .why-item h3 {
  color: #ffffff;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 3rem 4rem;
  max-width: 1040px;
  margin: 0 auto;
}

.why-item {
  display: grid;
  grid-template-columns: 5.75rem minmax(0, 1fr);
  gap: 1.55rem;
  align-items: start;
}

.why-item__icon {
  display: grid;
  place-items: center;
  width: 4.5rem;
  height: 4.5rem;
  padding: 0.8rem;
  border-radius: 1.1rem;
  color: #181818;
}

#why-us .why-item__icon {
  background: #111111;
  color: #ffffff;
  box-shadow: 0 20px 45px -34px rgba(0, 0, 0, 0.5);
}

#services .why-item__icon {
  background: #ffffff;
  color: #181818;
  box-shadow: 0 18px 36px -30px rgba(0, 0, 0, 0.18);
}

.why-item__icon svg {
  width: 2.4rem;
  height: 2.4rem;
  stroke: currentColor;
  stroke-width: 1.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.why-item h3 {
  margin: 0;
  color: #181818;
  font-family: var(--font-body);
  font-size: clamp(1.6rem, 2vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.04em;
}

.why-item p {
  margin: 0.6rem 0 0;
  max-width: 29rem;
  color: #2d2923;
  font-size: 1.03rem;
  line-height: 1.65;
}

.why-grid--services {
  max-width: 1120px;
}

.why-item--service h3 {
  font-size: clamp(1.7rem, 2.15vw, 2.15rem);
}

.why-item--service p {
  max-width: 30rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  margin-top: 1rem;
  color: var(--teal-accent);
  font-weight: 700;
}

.section--proof {
  background: #ffffff;
}

.proof-head {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 3rem;
  align-items: start;
  margin-bottom: 3rem;
}

.proof-head__intro h2 {
  margin: 0;
  color: #101010;
  font-family: var(--font-body);
  font-size: clamp(2.75rem, 4.6vw, 4.2rem);
  font-weight: 700;
  line-height: 0.96;
  letter-spacing: -0.07em;
  max-width: 11ch;
}

.proof-head__aside {
  max-width: 36rem;
  justify-self: end;
}

.proof-head__aside p {
  margin: 0;
  color: #323232;
  font-size: 1.16rem;
  line-height: 1.65;
}

.proof-head__button {
  margin-top: 1.75rem;
  color: #101010;
  border: 1px solid rgba(16, 16, 16, 0.12);
  background: #ffffff;
}

.proof-head__button:hover {
  color: #101010;
  background: #f5f3ee;
  border-color: rgba(16, 16, 16, 0.16);
}

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

.proof-step-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 20.5rem;
  padding: 1.6rem 1.35rem 1.35rem;
  border-radius: 1.75rem;
  background: #f0efed;
}

.proof-step-card h3 {
  margin: 0;
  color: #141414;
  max-width: 10ch;
  font-size: clamp(1.55rem, 2vw, 2rem);
  font-weight: 500;
  line-height: 1.15;
}

.proof-step-card p {
  margin: 1rem 0 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(16, 16, 16, 0.12);
  color: #2f2f2f;
  font-size: 0.98rem;
  line-height: 1.55;
}

.proof-step-card__arrow {
  position: absolute;
  top: 1.45rem;
  right: 1.45rem;
  display: grid;
  place-items: center;
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 50%;
  border: 1px solid rgba(16, 16, 16, 0.08);
  color: #141414;
  font-size: 1.5rem;
  line-height: 1;
}

.proof-step-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 1rem;
}

.proof-step-card__icon {
  display: grid;
  place-items: center;
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 50%;
  border: 1px solid rgba(16, 16, 16, 0.08);
  color: #141414;
}

.proof-step-card__icon svg {
  width: 1.4rem;
  height: 1.4rem;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.proof-step-card__footer strong {
  color: #111111;
  font-size: clamp(2.3rem, 4vw, 3.2rem);
  font-weight: 500;
  letter-spacing: -0.05em;
}

.section--faq {
  background: #fffdfa;
}

.faq-stage {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 4rem;
  align-items: start;
}

.faq-stage__intro .section__eyebrow {
  color: #184a54;
}

.faq-stage__intro h2 {
  margin: 0;
  color: #241f18;
  font-family: var(--font-body);
  font-size: clamp(3rem, 5vw, 4.85rem);
  font-weight: 700;
  line-height: 0.94;
  letter-spacing: -0.07em;
}

.faq-stage__intro p:last-child {
  max-width: 34rem;
  margin: 1.6rem 0 0;
  color: #7c807f;
  font-size: 1.06rem;
  line-height: 1.7;
}

.faq-list {
  display: grid;
  gap: 1.85rem;
}

.faq-list details {
  padding: 0;
  background: #ffffff;
  border: 1px solid rgba(17, 17, 17, 0.14);
  border-radius: 1.35rem;
  box-shadow: 0 16px 40px -34px rgba(0, 0, 0, 0.22);
}

.faq-list summary {
  position: relative;
  padding: 1.45rem 5rem 1.45rem 1.45rem;
  cursor: pointer;
  color: #111111;
  font-weight: 700;
  font-size: clamp(1.08rem, 1.45vw, 1.35rem);
  line-height: 1.4;
  list-style: none;
}

.faq-list summary::after {
  content: "⌄";
  position: absolute;
  right: 1.35rem;
  top: 50%;
  display: grid;
  place-items: center;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 0.45rem;
  background: #111111;
  color: #ffffff;
  font-size: 1.25rem;
  line-height: 0.85;
  font-weight: 700;
  transform: translateY(-50%);
}

.faq-list details[open] summary::after {
  content: "⌃";
}

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

.faq-list p {
  max-width: 44rem;
  margin: 0;
  padding: 0 1.45rem 1.45rem;
  color: #7c807f;
  font-size: 1rem;
  line-height: 1.75;
}

.booking-stage {
  display: grid;
  grid-template-columns: minmax(0, 1.42fr) minmax(300px, 0.58fr);
  max-width: 1480px;
  margin: 0 auto;
  column-gap: 1.75rem;
  row-gap: 0;
  align-items: stretch;
}

.booking-stage,
.booking-stage__form-wrap,
.booking-stage__content,
.booking-form,
.booking-form__grid,
.booking-field,
.booking-autocomplete,
.booking-select {
  min-width: 0;
}

.booking-stage__form-wrap {
  position: relative;
  z-index: 2;
  display: flex;
  align-self: stretch;
  padding-top: 1rem;
}

.booking-form {
  width: 100%;
}

.booking-form label {
  display: block;
}

.booking-field {
  display: grid;
  gap: 0.5rem;
}

.booking-autocomplete {
  position: relative;
}

.booking-select {
  position: relative;
}

.booking-select select {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
}

.booking-select__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 3.95rem;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(23, 23, 23, 0.1);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.92);
  color: #1b1b1b;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  text-align: left;
}

.booking-select__trigger:focus-visible,
.booking-select.is-open .booking-select__trigger {
  outline: none;
  border-color: rgba(209, 161, 58, 0.55);
  box-shadow: 0 0 0 3px rgba(209, 161, 58, 0.12);
}

.booking-select__value {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  color: #1b1b1b;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.booking-select__chevron {
  flex: 0 0 auto;
  color: rgba(27, 27, 27, 0.72);
  font-size: 1rem;
  line-height: 1;
}

.booking-select__menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  right: 0;
  z-index: 30;
  display: grid;
  gap: 0.35rem;
  max-height: 17rem;
  padding: 0.45rem;
  overflow-y: auto;
  border: 1px solid rgba(23, 23, 23, 0.08);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 28px 60px -38px rgba(0, 0, 0, 0.45);
}

.booking-select__menu[hidden] {
  display: none;
}

.booking-select__option {
  display: block;
  width: 100%;
  padding: 0.82rem 0.9rem;
  border: 0;
  border-radius: 0.8rem;
  background: transparent;
  color: #141414;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  line-height: 1.35;
  text-align: left;
}

.booking-select__option-content {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}

.booking-select__thumb {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 2.9rem;
  width: 2.9rem;
  height: 2.15rem;
}

.booking-select__thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.booking-select__text {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.booking-select__option:hover,
.booking-select__option:focus-visible,
.booking-select__option.is-active,
.booking-select__option.is-selected {
  background: rgba(209, 161, 58, 0.1);
  outline: none;
}

.booking-autocomplete__menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  right: 0;
  z-index: 30;
  display: grid;
  gap: 0.35rem;
  max-height: 17rem;
  padding: 0.45rem;
  overflow-y: auto;
  border: 1px solid rgba(23, 23, 23, 0.08);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 28px 60px -38px rgba(0, 0, 0, 0.45);
}

.booking-autocomplete__menu[hidden] {
  display: none;
}

.booking-autocomplete__option {
  display: grid;
  gap: 0.15rem;
  width: 100%;
  padding: 0.78rem 0.9rem;
  border: 0;
  border-radius: 0.8rem;
  background: transparent;
  color: #141414;
  text-align: left;
}

.booking-autocomplete__option:hover,
.booking-autocomplete__option:focus-visible,
.booking-autocomplete__option.is-active {
  background: rgba(209, 161, 58, 0.1);
  outline: none;
}

.booking-autocomplete__primary {
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.35;
}

.booking-autocomplete__secondary {
  color: #716a60;
  font-size: 0.76rem;
  line-height: 1.42;
}

.booking-field__label {
  color: #5d574e;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border-radius: 0;
  font-family: var(--font-body);
  font-size: 1rem;
}

.booking-form textarea {
  resize: vertical;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  outline: none;
}

.booking-form--showcase {
  width: 100%;
  max-width: none;
  height: 100%;
  padding: 2.5rem;
  border-radius: 1.75rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(249, 247, 242, 0.94));
  box-shadow: 0 30px 80px -42px rgba(0, 0, 0, 0.68);
}

.booking-form--showcase h3 {
  margin: 0 0 2rem;
  color: #181818;
  font-family: var(--font-body);
  font-size: clamp(1.7rem, 2.15vw, 2.3rem);
  line-height: 1;
  letter-spacing: -0.06em;
  white-space: nowrap;
}

.booking-form__grid {
  gap: 1.1rem 1.2rem;
  margin-bottom: 1.2rem;
}

.booking-form__grid--triple {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.booking-form--showcase input,
.booking-form--showcase select,
.booking-form--showcase textarea {
  min-height: 3.95rem;
  border: 1px solid rgba(23, 23, 23, 0.1);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.92);
  color: #1b1b1b;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.booking-form--showcase input::placeholder,
.booking-form--showcase textarea::placeholder,
.booking-form--showcase select {
  color: rgba(27, 27, 27, 0.64);
}

.booking-form--showcase input:focus,
.booking-form--showcase select:focus,
.booking-form--showcase textarea:focus {
  border-color: rgba(209, 161, 58, 0.55);
  box-shadow: 0 0 0 3px rgba(209, 161, 58, 0.12);
}

.booking-form__details {
  margin-top: 0.35rem;
  padding: 1rem 1.1rem 1.1rem;
  border: 1px solid rgba(23, 23, 23, 0.08);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.72);
}

.booking-form__details--open textarea {
  margin-top: 0;
}

.booking-total {
  display: grid;
  gap: 0.25rem;
  margin: 0;
  padding: 1rem 1.1rem;
  border-radius: 1rem;
  background: transparent;
}

.booking-total__label {
  color: #6b624f;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.booking-total__value {
  color: #141414;
  font-size: clamp(1.5rem, 2vw, 1.9rem);
  font-weight: 800;
  line-height: 1;
}

.booking-total__meta {
  color: #6a655c;
  font-size: 0.82rem;
  line-height: 1.5;
}

.booking-field__meta {
  color: #6a655c;
  font-size: 0.72rem;
  line-height: 1.4;
}

.booking-form__details summary {
  cursor: pointer;
  color: #3c3a35;
  font-size: 0.94rem;
  font-weight: 700;
  list-style: none;
}

.booking-form__details summary::-webkit-details-marker {
  display: none;
}

.booking-form__details textarea {
  min-height: 7rem;
  margin-top: 1rem;
}

.booking-form__submit {
  width: 100%;
  margin-top: 1.35rem;
  color: #ffffff;
  background: #171717;
  box-shadow: none;
}

.booking-form__submit:hover {
  background: #000000;
}

.form-note {
  margin: 0.85rem 0 0;
  font-size: 0.92rem;
}

.booking-form__caption {
  color: #6e685f;
  text-align: center;
}

.booking-form__status {
  min-height: 1.35rem;
  color: #6a655c;
  text-align: center;
  transition: color 0.2s ease;
}

.booking-form__status.is-pending {
  color: #6a655c;
}

.booking-form__status.is-success {
  color: #198754;
}

.booking-form__status.is-error {
  color: #b42318;
}

.booking-stage__content {
  position: relative;
  z-index: 2;
  display: flex;
  align-self: stretch;
  padding-top: 1rem;
}

.booking-stage__info {
  display: grid;
  gap: 1.1rem 1.5rem;
  width: 100%;
  height: 100%;
  align-content: stretch;
}

.booking-stage__info-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 0;
  padding: 1.75rem 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.booking-stage__info-card p {
  margin: 0;
  color: var(--gold-bright);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.booking-stage__info-card a,
.booking-stage__info-card strong {
  display: block;
  margin-top: 0.7rem;
  color: #ffffff;
  font-size: clamp(1.28rem, 1.65vw, 1.58rem);
  font-weight: 800;
  line-height: 1.22;
  white-space: nowrap;
  overflow-wrap: normal;
}

.booking-stage__info-card span {
  display: block;
  margin-top: 0.75rem;
  color: rgba(255, 255, 255, 0.66);
  font-size: clamp(1rem, 1.45vw, 1.1rem);
  line-height: 1.55;
}


.footer {
  background: #050505;
  color: rgba(255, 255, 255, 0.72);
}

.footer__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1.35rem 0 5rem;
  font-size: var(--font-size-sm);
}

.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 12;
  display: none;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  padding: 0.8rem 1rem calc(0.8rem + env(safe-area-inset-bottom));
  background: rgba(8, 8, 8, 0.94);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

.sticky-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: var(--font-size-sm);
  font-weight: 600;
}

.sticky-cta a:first-child {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

.sticky-cta a:last-child {
  color: #0f0f0f;
  background: linear-gradient(135deg, var(--gold), var(--gold-bright));
}

@media (max-width: 1080px) {
  .hero__shell,
  .card-grid--three,
  .card-grid--four,
  .trust-band,
  .fleet-showcase,
  .destination-grid,
  .proof-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .proof-head {
    grid-template-columns: 1fr;
    gap: 1.75rem;
    margin-bottom: 2.25rem;
  }

  .proof-head__intro h2 {
    max-width: 12ch;
  }

  .proof-head__aside {
    max-width: 42rem;
    justify-self: start;
  }

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

  .proof-step-card:last-child {
    grid-column: 1 / -1;
  }

  .why-grid {
    gap: 2.5rem 2.25rem;
  }

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

  .booking-stage {
    grid-template-columns: 1fr;
    row-gap: 2rem;
  }

  .booking-stage__form-wrap {
    padding-top: 0;
  }

  .booking-stage__content {
    padding-top: 0;
  }

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

  .booking-form__grid--triple {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .top-bar__inner {
    flex-wrap: wrap;
    justify-content: center;
    min-height: auto;
    padding: 0.7rem 0;
    line-height: 1.5;
  }

  .top-bar__left,
  .top-bar__right {
    width: 100%;
    justify-content: center;
  }

  .top-bar__right {
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
  }

  .site-nav {
    display: none;
  }

  .hero h1 {
    font-size: clamp(2.9rem, 12vw, 4.5rem);
  }

  .card-grid--two,
  .two-up {
    grid-template-columns: 1fr;
  }

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

  .proof-steps {
    grid-template-columns: 1fr;
  }

  .proof-step-card,
  .proof-step-card:last-child {
    grid-column: auto;
    min-height: 19rem;
  }

  .section__header--why {
    margin-bottom: 3rem;
  }

  .booking-stage__info {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }
}

@media (max-width: 720px) {
  body {
    padding-bottom: 5.25rem;
  }

  .section {
    padding: 4.5rem 0;
  }

  .site-header__inner {
    min-height: 4rem;
  }

  .site-header__brand {
    max-width: 11rem;
  }

  .brand-crest--hero {
    width: 7rem;
    height: 7rem;
    margin-bottom: 1rem;
  }

  .site-header__call {
    font-size: 0.94rem;
  }

  .hero__shell {
    padding: 4rem 0 3.5rem;
  }

  .booking-form--showcase {
    padding: 1.6rem 1rem;
  }

  .booking-form--showcase h3 {
    font-size: clamp(1.35rem, 5.6vw, 1.75rem);
    line-height: 1.05;
    letter-spacing: -0.04em;
    margin-bottom: 1.75rem;
  }

  .proof-head__intro h2 {
    font-size: clamp(2.45rem, 12vw, 3.5rem);
    line-height: 0.98;
    letter-spacing: -0.06em;
  }

  .proof-step-card {
    min-height: 18rem;
    padding: 1.5rem 1.25rem 1.35rem;
  }

  .proof-step-card p {
    margin-top: 0.9rem;
    padding-top: 1.1rem;
    font-size: 0.98rem;
  }

  .proof-step-card__footer {
    padding-top: 0.9rem;
  }

  .proof-step-card__arrow,
  .proof-step-card__icon {
    width: 3rem;
    height: 3rem;
  }

  .booking-form__grid {
    gap: 1rem;
    margin-bottom: 1rem;
  }

  .booking-form--showcase input,
  .booking-form--showcase select,
  .booking-form--showcase textarea,
  .booking-select__trigger {
    min-height: 3.6rem;
    padding-inline: 0.88rem;
  }

  .booking-select__menu,
  .booking-autocomplete__menu {
    max-width: 100%;
  }

  .booking-stage__info-card {
    padding: 1.35rem 0 0;
  }

  .booking-stage__info-card a,
  .booking-stage__info-card strong {
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .fleet-panel {
    min-height: 39rem;
  }

  .fleet-panel__content {
    padding: 2.35rem 1.35rem 0;
  }

  .fleet-panel__image,
  .fleet-panel--gs4 .fleet-panel__image,
  .fleet-panel--suburban .fleet-panel__image,
  .fleet-panel--sprinter .fleet-panel__image {
    width: min(82%, 24rem);
    left: 50%;
  }

  .why-item {
    grid-template-columns: 4.5rem minmax(0, 1fr);
    gap: 1rem;
  }

  .why-item__icon {
    width: 4.5rem;
    height: 4.5rem;
  }

  .why-item__icon svg {
    width: 2.85rem;
    height: 2.85rem;
  }

  .hero__actions,
  .hero__trust {
    grid-template-columns: 1fr;
  }

  .hero__trust {
    display: grid;
  }

  .button,
  .sticky-cta a {
    min-height: 3.35rem;
  }

  .sticky-cta {
    display: grid;
  }

  .footer__inner {
    flex-direction: column;
    padding-bottom: 0;
  }
}

@media (max-width: 520px) {
  .container {
    width: min(100% - 1rem, 1140px);
  }

  .booking-form--showcase {
    padding: 1.4rem 0.9rem;
    border-radius: 1.35rem;
  }

  .booking-form--showcase h3 {
    font-size: clamp(1.22rem, 5.3vw, 1.5rem);
    margin-bottom: 1.35rem;
  }

  .booking-field__label {
    font-size: 0.75rem;
    letter-spacing: 0.07em;
  }

  .booking-form input,
  .booking-form select,
  .booking-form textarea,
  .booking-select__trigger {
    font-size: 0.95rem;
  }

  .booking-field__meta,
  .booking-total__meta {
    font-size: 0.72rem;
    line-height: 1.45;
  }

  .booking-total {
    padding-inline: 0;
  }

  .booking-autocomplete__primary,
  .booking-select__option,
  .booking-select__value {
    font-size: 0.84rem;
  }

  .booking-autocomplete__secondary {
    font-size: 0.72rem;
  }
}
