:root {
  --leo-yellow: #ffcd00;
  --leo-yellow-dark: #e4b600;
  --leo-black: #252423;
  --leo-black-soft: #343230;
  --leo-cream: #f7f5ef;
  --leo-grey: #6d6a66;
  --leo-border: #e8e3d9;
  --leo-white: #ffffff;
  --leo-shadow: 0 16px 40px rgba(37, 36, 35, 0.10);
}

html {
  scroll-behavior: smooth;
}

body {
  padding-top: 97px;
  color: var(--leo-black);
  background: var(--leo-white);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.65;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

.site-header-shell {
  z-index: 1030;
  background: var(--leo-black);
  border-bottom: 3px solid var(--leo-yellow);
  box-shadow: 0 5px 18px rgba(0, 0, 0, .2);
}

.contact-strip {
  min-height: 30px;
  color: rgba(255, 255, 255, .78);
  background: #171615;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  font-size: .75rem;
  line-height: 1;
}

.contact-strip-inner {
  display: flex;
  min-height: 30px;
  align-items: center;
  justify-content: space-between;
}

.contact-strip-links {
  display: flex;
  gap: 1.15rem;
  align-items: center;
}

.contact-strip a {
  display: inline-flex;
  gap: .38rem;
  align-items: center;
  color: rgba(255, 255, 255, .82);
  text-decoration: none;
}

.contact-strip a:hover {
  color: var(--leo-yellow);
}

.contact-strip i {
  color: var(--leo-yellow);
  font-size: .72rem;
}

.contact-email-short {
  display: none;
}

.site-nav {
  min-height: 64px;
  background: var(--leo-black) !important;
}

.site-nav .navbar-brand {
  width: 132px;
  margin-right: 1.5rem;
}

.site-nav .navbar-brand img {
  display: block;
  width: 100%;
  height: auto;
}

.site-nav .nav-item {
  padding-right: .12rem;
}

.site-nav .nav-link {
  position: relative;
  padding: .58rem .55rem !important;
  color: rgba(255, 255, 255, .86) !important;
  font-size: .79rem;
  font-weight: 700;
  letter-spacing: .025em;
  text-transform: uppercase;
}

.site-nav .nav-link:hover,
.site-nav .nav-link.active {
  color: var(--leo-yellow) !important;
}

.site-nav .nav-booking-link {
  display: inline-flex;
  gap: .38rem;
  align-items: center;
  margin-left: .45rem;
  padding-right: .78rem !important;
  padding-left: .78rem !important;
  color: var(--leo-black) !important;
  background: var(--leo-yellow);
  border-radius: 4px;
}

.site-nav .nav-booking-link:hover,
.site-nav .nav-booking-link.active {
  color: var(--leo-black) !important;
  background: #ffe36c;
}

.site-nav .nav-booking-link.active::after {
  display: none;
}

.site-nav .nav-link.active::after {
  position: absolute;
  right: .6rem;
  bottom: .34rem;
  left: .6rem;
  height: 2px;
  content: "";
  background: var(--leo-yellow);
}

.navbar-toggler {
  color: var(--leo-black);
  background: var(--leo-yellow);
  border: 0;
}

.language-switch {
  display: inline-flex;
  gap: .3rem;
  align-items: center;
  color: rgba(255, 255, 255, .52);
  font-size: .72rem;
  font-weight: 800;
  line-height: 1;
}

.language-switch a {
  color: rgba(255, 255, 255, .68);
  text-decoration: none;
}

.language-switch a:hover,
.language-switch a.active {
  color: var(--leo-yellow);
}

.hero {
  position: relative;
  display: flex;
  min-height: 570px;
  align-items: center;
  overflow: hidden;
  color: var(--leo-white);
  background-position: center;
  background-size: cover;
}

.hero::before,
.page-hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(20, 19, 18, .92) 0%, rgba(20, 19, 18, .68) 48%, rgba(20, 19, 18, .18) 100%);
}

.hero .container,
.page-hero .container {
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-flex;
  gap: .55rem;
  align-items: center;
  margin-bottom: 1rem;
  color: var(--leo-yellow);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 34px;
  height: 3px;
  content: "";
  background: var(--leo-yellow);
}

.hero h1,
.page-hero h1 {
  max-width: 850px;
  margin-bottom: 1.1rem;
  font-size: clamp(2.6rem, 6vw, 5.4rem);
  font-weight: 900;
  letter-spacing: -.045em;
  line-height: .98;
}

.hero h1 span,
.page-hero h1 span {
  color: var(--leo-yellow);
}

.hero .lead {
  max-width: 660px;
  margin-bottom: 1.8rem;
  color: rgba(255,255,255,.9);
  font-size: 1.2rem;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
}

.btn-leo,
.btn-leo-outline {
  display: inline-flex;
  gap: .55rem;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: .78rem 1.25rem;
  border: 2px solid var(--leo-yellow);
  border-radius: 4px;
  font-weight: 800;
  text-decoration: none;
  transition: transform .2s ease, background-color .2s ease;
}

.btn-leo {
  color: var(--leo-black);
  background: var(--leo-yellow);
}

.btn-leo:hover {
  color: var(--leo-black);
  background: #ffe36c;
  transform: translateY(-2px);
}

.btn-leo-outline {
  color: var(--leo-white);
  background: transparent;
}

.btn-leo-outline:hover {
  color: var(--leo-black);
  background: var(--leo-yellow);
  transform: translateY(-2px);
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  margin-top: 2rem;
  padding: 0;
  list-style: none;
}

.hero-facts li {
  display: flex;
  gap: .55rem;
  align-items: center;
  color: rgba(255,255,255,.92);
  font-weight: 700;
}

.hero-facts i {
  color: var(--leo-yellow);
}

.page-hero {
  position: relative;
  display: flex;
  min-height: 390px;
  align-items: flex-end;
  padding: 5.5rem 0 3.2rem;
  overflow: hidden;
  color: var(--leo-white);
  background-position: center;
  background-size: cover;
}

.page-hero::before {
  background: linear-gradient(90deg, rgba(20, 19, 18, .93) 0%, rgba(20, 19, 18, .68) 58%, rgba(20, 19, 18, .25) 100%);
}

.page-hero h1 {
  margin-bottom: .8rem;
  font-size: clamp(2.4rem, 5vw, 4.5rem);
}

.page-hero p {
  max-width: 760px;
  margin: 0;
  color: rgba(255,255,255,.9);
  font-size: 1.12rem;
}

.breadcrumb-leo {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  margin-bottom: 1rem;
  color: rgba(255,255,255,.76);
  font-size: .9rem;
}

.breadcrumb-leo a {
  color: var(--leo-yellow);
  text-decoration: none;
}

.section {
  padding: 82px 0;
}

.section-compact {
  padding: 58px 0;
}

.section-soft {
  background: var(--leo-cream);
}

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

.section-heading {
  max-width: 780px;
  margin-bottom: 2.25rem;
}

.section-heading.center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading h2 {
  margin-bottom: .8rem;
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 900;
  letter-spacing: -.035em;
}

.section-heading p {
  margin-bottom: 0;
  color: var(--leo-grey);
  font-size: 1.08rem;
}

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

.title-rule {
  width: 58px;
  height: 4px;
  margin-bottom: 1.2rem;
  background: var(--leo-yellow);
}

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

.service-card,
.fleet-card,
.info-card {
  height: 100%;
  overflow: hidden;
  background: var(--leo-white);
  border: 1px solid var(--leo-border);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(37,36,35,.06);
  transition: transform .2s ease, box-shadow .2s ease;
}

.service-card:hover,
.fleet-card:hover {
  box-shadow: var(--leo-shadow);
  transform: translateY(-5px);
}

.service-card {
  position: relative;
  padding: 2rem;
  border-top: 5px solid var(--leo-yellow);
}

.service-icon {
  display: grid;
  width: 58px;
  height: 58px;
  margin-bottom: 1.25rem;
  place-items: center;
  color: var(--leo-black);
  background: var(--leo-yellow);
  border-radius: 50%;
  font-size: 1.55rem;
}

.service-card h3,
.fleet-card h3 {
  margin-bottom: .65rem;
  font-size: 1.35rem;
  font-weight: 850;
}

.service-card p,
.fleet-card p {
  color: var(--leo-grey);
}

.card-link {
  display: inline-flex;
  gap: .4rem;
  align-items: center;
  color: var(--leo-black);
  font-weight: 800;
  text-decoration: none;
}

.card-link i {
  color: var(--leo-yellow-dark);
}

.fleet-card img {
  display: block;
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.fleet-card-body {
  padding: 1.45rem;
}

.fleet-meta {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: .95rem;
}

.fleet-meta span,
.spec-badge {
  display: inline-flex;
  gap: .35rem;
  align-items: center;
  padding: .38rem .65rem;
  color: var(--leo-black);
  background: #fff5c7;
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 750;
}

.feature-list {
  display: grid;
  gap: .7rem;
  padding: 0;
  list-style: none;
}

.feature-list li {
  display: flex;
  gap: .7rem;
  align-items: flex-start;
}

.feature-list i {
  margin-top: .16rem;
  color: var(--leo-yellow-dark);
}

.split-layout {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.split-layout.reverse > :first-child {
  order: 2;
}

.feature-image {
  position: relative;
}

.feature-image img {
  display: block;
  width: 100%;
  min-height: 360px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--leo-shadow);
}

.feature-image::after {
  position: absolute;
  right: -14px;
  bottom: -14px;
  width: 42%;
  height: 42%;
  z-index: -1;
  content: "";
  background: var(--leo-yellow);
  border-radius: 8px;
}

.text-content h2 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 4vw, 3.15rem);
  font-weight: 900;
  letter-spacing: -.035em;
}

.text-content h3 {
  margin-top: 1.5rem;
  font-weight: 850;
}

.text-content p {
  color: var(--leo-grey);
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.6rem;
}

.stat {
  padding: 1.2rem;
  background: var(--leo-cream);
  border-left: 4px solid var(--leo-yellow);
}

.stat strong {
  display: block;
  margin-bottom: .25rem;
  font-size: 1.25rem;
}

.stat span {
  color: var(--leo-grey);
  font-size: .9rem;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 1.2rem;
  counter-reset: steps;
}

.process-step {
  position: relative;
  padding: 2rem 1.5rem 1.5rem;
  background: var(--leo-white);
  border: 1px solid var(--leo-border);
  border-radius: 8px;
  counter-increment: steps;
}

.process-step::before {
  display: grid;
  width: 44px;
  height: 44px;
  margin-bottom: 1rem;
  place-items: center;
  color: var(--leo-black);
  content: counter(steps, decimal-leading-zero);
  background: var(--leo-yellow);
  border-radius: 50%;
  font-weight: 900;
}

.process-step h3 {
  font-size: 1.15rem;
  font-weight: 850;
}

.process-step p {
  margin-bottom: 0;
  color: var(--leo-grey);
}

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

.spec-card {
  padding: 1.4rem;
  background: var(--leo-white);
  border: 1px solid var(--leo-border);
  border-radius: 8px;
}

.spec-card i {
  color: var(--leo-yellow-dark);
  font-size: 1.35rem;
}

.spec-card strong {
  display: block;
  margin: .55rem 0 .2rem;
}

.spec-card span {
  color: var(--leo-grey);
  font-size: .92rem;
}

.vehicle-photo {
  position: relative;
  overflow: hidden;
  background: var(--leo-black);
  border-radius: 8px;
  box-shadow: var(--leo-shadow);
}

.vehicle-photo img {
  display: block;
  width: 100%;
  height: auto;
  min-height: 360px;
  object-fit: cover;
}

.photo-caption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 1.4rem;
  color: var(--leo-white);
  background: linear-gradient(transparent, rgba(0,0,0,.82));
  font-weight: 750;
}

.related-photos {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: .8rem;
}

.related-photos a {
  position: relative;
  min-height: 240px;
  overflow: hidden;
  border-radius: 8px;
}

.related-photos img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .25s ease;
}

.related-photos a:hover img {
  transform: scale(1.035);
}

.related-photos span {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 2.5rem 1rem .8rem;
  color: var(--leo-white);
  background: linear-gradient(transparent, rgba(0,0,0,.8));
  font-weight: 800;
}

.vehicle-gallery {
  display: grid;
  grid-auto-rows: 230px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: .8rem;
}

.vehicle-gallery a {
  position: relative;
  overflow: hidden;
  color: var(--leo-white);
  background: var(--leo-black);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(37, 36, 35, .08);
}

.vehicle-gallery a:first-child {
  grid-column: span 2;
  grid-row: span 2;
}

.vehicle-gallery img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .25s ease, filter .25s ease;
}

.vehicle-gallery a:hover img,
.vehicle-gallery a:focus-visible img {
  filter: brightness(.82);
  transform: scale(1.035);
}

.vehicle-gallery span {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 2.8rem 1rem .85rem;
  color: var(--leo-white);
  background: linear-gradient(transparent, rgba(0, 0, 0, .82));
  font-size: .9rem;
  font-weight: 800;
  pointer-events: none;
}

.photo-lightbox {
  width: min(1100px, calc(100% - 2rem));
  max-width: none;
  padding: 0;
  overflow: visible;
  color: var(--leo-white);
  background: transparent;
  border: 0;
}

.photo-lightbox::backdrop {
  background: rgba(0, 0, 0, .9);
  backdrop-filter: blur(3px);
}

.photo-lightbox figure {
  margin: 0;
  text-align: center;
}

.photo-lightbox img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 82vh;
  margin: auto;
  object-fit: contain;
  border-radius: 7px;
}

.photo-lightbox figcaption {
  padding: .8rem 3.5rem 0;
  font-weight: 750;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  z-index: 2;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--leo-black);
  background: var(--leo-yellow);
  border: 0;
  border-radius: 50%;
  font-size: 1.25rem;
  cursor: pointer;
}

.lightbox-close {
  top: -18px;
  right: -12px;
}

.lightbox-prev,
.lightbox-next {
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-prev { left: -18px; }
.lightbox-next { right: -18px; }

.notice {
  padding: 1rem 1.1rem;
  color: #5d4c00;
  background: #fff7d7;
  border-left: 4px solid var(--leo-yellow);
}

.cta-band {
  padding: 62px 0;
  color: var(--leo-white);
  background: linear-gradient(115deg, var(--leo-black) 0%, #090909 100%);
  border-top: 5px solid var(--leo-yellow);
}

.cta-band h2 {
  margin-bottom: .75rem;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
}

.cta-band p {
  max-width: 720px;
  color: rgba(255,255,255,.78);
}

.contact-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 1.5rem;
}

.contact-card {
  padding: 2rem;
  background: var(--leo-black);
  border-top: 5px solid var(--leo-yellow);
  border-radius: 8px;
  color: var(--leo-white);
}

.contact-card h2 {
  font-weight: 900;
}

.contact-card a {
  color: var(--leo-white);
  text-decoration: none;
}

.contact-line {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: .8rem;
  align-items: start;
  margin-top: 1.25rem;
}

.contact-line i {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--leo-black);
  background: var(--leo-yellow);
  border-radius: 50%;
}

.map-frame {
  min-height: 480px;
  overflow: hidden;
  border: 0;
  border-radius: 8px;
}

.map-frame iframe {
  width: 100%;
  min-height: 480px;
  border: 0;
}

.reviews-section {
  background: var(--leo-cream);
}

.reviews-overview {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  margin: -1rem 0 2rem;
}

.reviews-score {
  display: inline-flex;
  gap: .55rem;
  align-items: center;
  padding: .55rem .85rem;
  color: var(--leo-black);
  background: var(--leo-white);
  border: 1px solid var(--leo-border);
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(37, 36, 35, .06);
  font-size: .92rem;
}

.reviews-score strong {
  font-size: 1.1rem;
}

.review-stars {
  display: inline-flex;
  gap: .08rem;
  color: #f6b800;
  line-height: 1;
}

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

.review-card {
  display: flex;
  min-width: 0;
  min-height: 235px;
  flex-direction: column;
  padding: 1.25rem;
  background: var(--leo-white);
  border: 1px solid var(--leo-border);
  border-top: 4px solid var(--leo-yellow);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(37, 36, 35, .07);
}

.review-author {
  display: flex;
  gap: .75rem;
  align-items: center;
  color: var(--leo-black);
  text-decoration: none;
}

.review-author:hover strong {
  color: #8a6c00;
}

.review-author img,
.review-author-placeholder {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  place-items: center;
  border-radius: 50%;
  object-fit: cover;
}

.review-author-placeholder {
  color: var(--leo-black);
  background: var(--leo-yellow);
}

.review-author strong,
.review-author small {
  display: block;
}

.review-author strong {
  line-height: 1.25;
}

.review-author small {
  margin-top: .12rem;
  color: var(--leo-grey);
  font-size: .78rem;
}

.review-card .review-stars {
  margin: 1rem 0 .65rem;
}

.review-text {
  margin: 0 0 1rem;
  color: #4f4c49;
  font-size: .92rem;
  line-height: 1.62;
}

.review-source-link {
  display: inline-flex;
  gap: .35rem;
  align-items: center;
  margin-top: auto;
  color: #705900;
  font-size: .8rem;
  font-weight: 800;
  text-decoration: none;
}

.review-source-link:hover {
  color: var(--leo-black);
}

.reviews-disclosure {
  display: flex;
  gap: .8rem 1.2rem;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin: 1.4rem auto 0;
  color: var(--leo-grey);
  font-size: .76rem;
  text-align: center;
}

.reviews-disclosure a {
  color: #5e5e5e;
}

.google-maps-attribution {
  color: #5e5e5e;
  font-family: Roboto, Arial, sans-serif;
  font-size: .85rem;
  font-style: normal;
  font-weight: 400;
  letter-spacing: normal;
  white-space: nowrap;
}

.site-footer {
  padding-top: 58px;
  color: rgba(255,255,255,.76);
  background: #171615;
}

.footer-partners {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 2rem;
  align-items: center;
  margin-bottom: 2.6rem;
  padding-bottom: 2.6rem;
  border-bottom: 1px solid rgba(255, 255, 255, .11);
}

.footer-partners-heading .title-rule {
  margin-bottom: .6rem;
}

.footer-partners-heading h2 {
  margin: 0 0 .35rem;
  color: var(--leo-white);
  font-size: clamp(1.45rem, 2.5vw, 2rem);
  font-weight: 900;
}

.footer-partners-heading p {
  max-width: 390px;
  margin: 0;
  font-size: .9rem;
}

.footer-partner-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .8rem;
}

.footer-partner-card {
  position: relative;
  display: grid;
  min-width: 0;
  grid-template-columns: 86px 1fr auto;
  gap: .85rem;
  align-items: center;
  min-height: 104px;
  padding: .8rem 1rem .8rem .8rem;
  color: var(--leo-black) !important;
  background: var(--leo-white);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 8px;
  text-decoration: none;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.footer-partner-card:hover {
  color: var(--leo-black) !important;
  border-color: var(--leo-yellow);
  box-shadow: 0 10px 26px rgba(0, 0, 0, .22);
  transform: translateY(-2px);
}

.footer-partner-logo {
  display: grid;
  width: 86px;
  height: 76px;
  place-items: center;
}

.footer-partner-logo img {
  display: block;
  max-width: 100%;
  max-height: 68px;
  object-fit: contain;
}

.footer-partner-logo-round img {
  max-width: 68px;
}

.footer-partner-name {
  min-width: 0;
  font-size: .88rem;
  font-weight: 850;
  line-height: 1.25;
}

.footer-partner-name small {
  display: block;
  margin-top: .2rem;
  color: var(--leo-grey);
  font-size: .7rem;
  font-weight: 700;
}

.footer-partner-card > i {
  align-self: start;
  color: #8a6c00;
  font-size: .8rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr .8fr 1.05fr 1fr;
  gap: 2rem;
}

.footer-logo {
  width: 165px;
  margin-bottom: 1.1rem;
}

.site-footer h3 {
  margin-bottom: 1rem;
  color: var(--leo-white);
  font-size: 1rem;
  font-weight: 850;
  text-transform: uppercase;
}

.site-footer ul {
  padding: 0;
  list-style: none;
}

.site-footer li {
  margin-bottom: .45rem;
}

.site-footer a {
  color: rgba(255,255,255,.78);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--leo-yellow);
}

.payment-icons {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}

.payment-icons span {
  padding: .42rem .62rem;
  color: var(--leo-white);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 4px;
  font-size: .85rem;
}

.social-links {
  display: flex;
  gap: .6rem;
  margin-top: 1rem;
}

.social-links a {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--leo-black);
  background: var(--leo-yellow);
  border-radius: 50%;
  font-size: 1.05rem;
}

.footer-bottom {
  margin-top: 45px;
  padding: 1rem 0;
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: .88rem;
  text-align: center;
}

.legal-content {
  max-width: 850px;
}

.legal-content h2 {
  margin-top: 2rem;
  font-size: 1.4rem;
  font-weight: 850;
}

.error-page {
  position: relative;
  display: flex;
  min-height: calc(100vh - 97px);
  align-items: center;
  padding: 72px 0;
  overflow: hidden;
  color: var(--leo-white);
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 205, 0, .16), transparent 29%),
    linear-gradient(135deg, #151413 0%, #252423 58%, #171615 100%);
  isolation: isolate;
}

.error-page::before,
.error-page::after {
  position: absolute;
  z-index: -1;
  content: "";
  pointer-events: none;
}

.error-page::before {
  top: -210px;
  right: -170px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(255, 205, 0, .13);
  border-radius: 50%;
  box-shadow: 0 0 0 72px rgba(255, 205, 0, .025), 0 0 0 145px rgba(255, 205, 0, .018);
}

.error-page::after {
  bottom: -165px;
  left: -120px;
  width: 390px;
  height: 390px;
  border: 70px solid rgba(255, 255, 255, .018);
  border-radius: 50%;
}

.error-layout {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr);
  gap: clamp(2.5rem, 6vw, 6.5rem);
  align-items: center;
}

.error-copy {
  position: relative;
  z-index: 2;
}

.error-number {
  display: flex;
  align-items: center;
  margin: -.12em 0 .05em;
  color: var(--leo-white);
  font-size: clamp(6.5rem, 15vw, 11.5rem);
  font-weight: 950;
  letter-spacing: -.11em;
  line-height: .82;
  text-shadow: 0 16px 34px rgba(0, 0, 0, .32);
}

.error-number > span:last-child {
  color: var(--leo-yellow);
}

.error-zero {
  display: grid;
  width: .7em;
  height: .7em;
  margin: 0 .07em 0 .1em;
  place-items: center;
  color: var(--leo-black);
  background: var(--leo-yellow);
  border-radius: 50% 50% 50% 10%;
  font-size: .38em;
  transform: rotate(-45deg);
  box-shadow: 0 0 0 9px rgba(255, 205, 0, .08), 0 18px 30px rgba(0, 0, 0, .2);
  animation: error-pin 2.8s ease-in-out infinite;
}

.error-zero i {
  transform: rotate(45deg);
}

.error-copy h1 {
  max-width: 560px;
  margin: 1rem 0 .8rem;
  font-size: clamp(2.15rem, 4.3vw, 4.15rem);
  font-weight: 900;
  letter-spacing: -.045em;
  line-height: 1.02;
}

.error-copy h1 span {
  color: var(--leo-yellow);
}

.error-copy > p {
  max-width: 580px;
  margin-bottom: 1.65rem;
  color: rgba(255, 255, 255, .76);
  font-size: 1.08rem;
}

.error-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
}

.error-visual {
  position: relative;
  min-width: 0;
}

.error-photo {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  background-image:
    linear-gradient(180deg, rgba(20, 19, 18, .08) 20%, rgba(20, 19, 18, .85) 100%),
    url('/images/fleet/ensemble/flotte-4.webp');
  background-position: center;
  background-size: cover;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 18px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, .38);
  transform: rotate(1.5deg);
}

.error-photo::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(120deg, transparent 25%, rgba(255, 255, 255, .12) 43%, transparent 58%);
  transform: translateX(-110%);
  animation: error-shine 5.5s ease-in-out infinite;
}

.error-photo-label {
  position: absolute;
  top: 1.15rem;
  left: 1.15rem;
  display: inline-flex;
  gap: .45rem;
  align-items: center;
  padding: .55rem .75rem;
  color: var(--leo-black);
  background: var(--leo-yellow);
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.error-route {
  position: absolute;
  right: 1.2rem;
  bottom: 1.2rem;
  left: 1.2rem;
  height: 74px;
  overflow: hidden;
  background: rgba(20, 19, 18, .82);
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 12px;
  backdrop-filter: blur(7px);
}

.error-route::before {
  position: absolute;
  top: 50%;
  right: 22px;
  left: 22px;
  height: 2px;
  content: "";
  background: repeating-linear-gradient(90deg, var(--leo-yellow) 0 22px, transparent 22px 38px);
  opacity: .8;
}

.error-taxi {
  position: absolute;
  top: 14px;
  left: 22px;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: var(--leo-black);
  background: var(--leo-yellow);
  border: 4px solid #1d1c1b;
  border-radius: 50%;
  font-size: 1.25rem;
  box-shadow: 0 8px 18px rgba(0, 0, 0, .35);
  animation: error-drive 4.8s cubic-bezier(.45, .05, .2, 1) infinite;
}

.error-note {
  position: absolute;
  right: -18px;
  bottom: -20px;
  max-width: 270px;
  padding: .9rem 1.05rem;
  color: var(--leo-black);
  background: var(--leo-white);
  border-left: 5px solid var(--leo-yellow);
  border-radius: 7px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, .28);
  font-size: .9rem;
  font-weight: 800;
  transform: rotate(-2deg);
}

@keyframes error-pin {
  0%, 100% { transform: rotate(-45deg) translate(0, 0); }
  50% { transform: rotate(-45deg) translate(5px, -5px); }
}

@keyframes error-shine {
  0%, 32% { transform: translateX(-110%); }
  62%, 100% { transform: translateX(120%); }
}

@keyframes error-drive {
  0% { left: 22px; transform: rotate(-2deg); }
  45%, 55% { left: calc(100% - 68px); transform: rotate(2deg); }
  100% { left: 22px; transform: rotate(-2deg); }
}

@media (max-width: 1199.98px) {
  .site-nav .nav-link {
    font-size: .72rem;
  }
}

@media (max-width: 991.98px) {
  body {
    padding-top: 97px;
  }
  .site-nav {
    min-height: 64px;
  }
  .site-nav .navbar-collapse {
    margin: .55rem -12px -.45rem;
    padding: .45rem 1rem .8rem;
    background: #171615;
    border-top: 1px solid rgba(255,255,255,.1);
  }
  .site-nav .nav-booking-link {
    margin: .35rem 0 0;
  }
  .site-nav .nav-link.active::after {
    display: none;
  }
  .hero {
    min-height: 520px;
  }
  .service-grid,
  .fleet-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .split-layout,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .split-layout.reverse > :first-child {
    order: initial;
  }
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0,1fr));
  }
  .footer-partners {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .review-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .vehicle-gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .error-page {
    padding: 62px 0 78px;
  }
  .error-layout {
    grid-template-columns: 1fr;
    gap: 2.6rem;
  }
  .error-copy {
    max-width: 720px;
  }
  .error-photo {
    min-height: 410px;
    transform: none;
  }
  .error-note {
    right: 18px;
  }
}

@media (max-width: 767.98px) {
  .hero::before,
  .page-hero::before {
    background: rgba(20, 19, 18, .76);
  }
  .hero {
    min-height: 540px;
  }
  .page-hero {
    min-height: 360px;
  }
  .section {
    padding: 62px 0;
  }
  .stats-row,
  .process-grid,
  .spec-grid {
    grid-template-columns: 1fr;
  }
  .related-photos {
    grid-template-columns: 1fr;
  }
  .review-grid {
    display: flex;
    margin-right: -12px;
    padding-right: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }
  .review-card {
    width: min(82vw, 330px);
    flex: 0 0 min(82vw, 330px);
    scroll-snap-align: start;
  }
  .related-photos a {
    min-height: 220px;
  }
  .vehicle-gallery {
    grid-auto-rows: 190px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .lightbox-prev { left: .5rem; }
  .lightbox-next { right: .5rem; }
  .lightbox-close { top: .5rem; right: .5rem; }
}

@media (max-width: 575.98px) {
  .contact-strip-links {
    gap: .75rem;
  }
  .contact-email-full {
    display: none;
  }
  .contact-email-short {
    display: inline;
  }
  .site-nav .navbar-brand {
    width: 122px;
  }
  .hero h1,
  .page-hero h1 {
    letter-spacing: -.025em;
  }
  .hero-actions,
  .cta-actions {
    flex-direction: column;
  }
  .btn-leo,
  .btn-leo-outline {
    width: 100%;
  }
  .service-grid,
  .fleet-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-partner-list {
    grid-template-columns: 1fr;
  }
  .fleet-card img {
    height: 210px;
  }
  .feature-image img,
  .vehicle-photo img {
    min-height: 260px;
  }
  .vehicle-gallery {
    grid-auto-rows: 170px;
  }
  .vehicle-gallery a:first-child {
    grid-column: span 2;
    grid-row: span 1;
  }
  .error-page {
    min-height: auto;
    padding: 48px 0 66px;
  }
  .error-number {
    font-size: clamp(6rem, 34vw, 8.5rem);
  }
  .error-actions {
    flex-direction: column;
  }
  .error-photo {
    min-height: 330px;
    border-radius: 13px;
  }
  .error-note {
    right: 10px;
    bottom: -28px;
    left: 10px;
    max-width: none;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .error-zero,
  .error-photo::before,
  .error-taxi {
    animation: none;
  }
}
