:root {
  --ink: #050505;
  --espresso: #141414;
  --cocoa: #252525;
  --cream: #f4f1eb;
  --ivory: #fffdf8;
  --champagne: #d8d6cf;
  --gold: #8e8c86;
  --copper: #4b4a47;
  --sage: #74736e;
  --blue: #343434;
  --muted: #6f6d68;
  --line: rgba(5, 5, 5, 0.13);
  --shadow: 0 24px 70px rgba(5, 5, 5, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

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

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 50;
  width: min(1180px, calc(100% - 32px));
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 14px 12px 16px;
  color: var(--ivory);
  border: 1px solid rgba(255, 250, 242, 0.18);
  background: rgba(5, 5, 5, 0.54);
  backdrop-filter: blur(24px);
  box-shadow: 0 16px 55px rgba(0, 0, 0, 0.22);
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  border-color: rgba(5, 5, 5, 0.12);
  background: rgba(255, 250, 242, 0.86);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: max-content;
}

.brand img {
  width: 174px;
  height: auto;
  filter: invert(1) brightness(1.8);
  transition: filter 180ms ease;
}

.site-header.is-scrolled .brand img {
  filter: none;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav a {
  padding: 13px 14px;
  opacity: 0.84;
}

.site-nav a:hover {
  opacity: 1;
}

.site-nav .nav-cta {
  color: var(--espresso);
  background: var(--champagne);
  opacity: 1;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  place-items: center;
  color: currentColor;
  border: 0;
  background: transparent;
}

.nav-toggle svg,
.button svg,
.feature svg,
.service-content svg,
.text-link svg {
  width: 18px;
  height: 18px;
  stroke-width: 1.8;
}

.hero {
  position: relative;
  min-height: clamp(760px, 96svh, 960px);
  display: grid;
  align-items: end;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 410px);
  gap: 26px;
  padding: 150px max(28px, calc((100vw - 1180px) / 2)) 52px;
  overflow: hidden;
  color: var(--ivory);
  background: var(--ink);
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.04) saturate(1.04);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.9) 0%, rgba(5, 5, 5, 0.68) 42%, rgba(5, 5, 5, 0.28) 78%),
    linear-gradient(0deg, rgba(5, 5, 5, 0.94) 0%, rgba(5, 5, 5, 0.12) 52%, rgba(5, 5, 5, 0.24) 100%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 253, 248, 0.62), transparent);
}

.hero-content,
.hero-panel {
  position: relative;
  z-index: 2;
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.book h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 800px;
  font-size: clamp(48px, 6.6vw, 92px);
  line-height: 0.92;
}

.hero-copy {
  max-width: 640px;
  margin: 28px 0 0;
  color: rgba(255, 250, 242, 0.8);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
}

.hero-actions,
.book-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 20px;
  border: 1px solid transparent;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.button-primary {
  color: var(--espresso);
  background: var(--ivory);
  box-shadow: 0 18px 48px rgba(255, 255, 255, 0.1);
}

.button-secondary {
  color: var(--ivory);
  border-color: rgba(255, 250, 242, 0.24);
  background: transparent;
}

.hero-panel {
  align-self: end;
  padding: 22px;
  border: 1px solid rgba(255, 250, 242, 0.2);
  background: rgba(255, 250, 242, 0.1);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.hero-panel span {
  display: block;
  margin-bottom: 8px;
  color: var(--champagne);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.hero-panel strong {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: 30px;
  line-height: 1.04;
}

.hero-panel dl {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 22px 0 0;
  background: rgba(255, 250, 242, 0.18);
}

.hero-panel dl div {
  padding: 14px 10px;
  background: rgba(5, 5, 5, 0.42);
}

.hero-panel dt {
  color: var(--champagne);
  font-size: 22px;
  font-weight: 900;
}

.hero-panel dd {
  margin: 2px 0 0;
  color: rgba(255, 250, 242, 0.76);
  font-size: 12px;
}

.section {
  padding: 112px max(24px, calc((100vw - 1180px) / 2));
}

.about {
  padding-bottom: 0;
  background:
    linear-gradient(135deg, rgba(5, 5, 5, 0.05), transparent 38%),
    var(--ivory);
}

.about-grid,
.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1fr);
  gap: 58px;
  align-items: end;
}

.section h2,
.book h2 {
  max-width: 760px;
  color: var(--espresso);
  font-size: clamp(34px, 4.2vw, 58px);
  line-height: 1.02;
}

.about-copy {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.about-copy p {
  margin: 0;
}

.about-copy p + p {
  margin-top: 18px;
}

.feature-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 58px;
}

.feature {
  display: flex;
  align-items: center;
  gap: 13px;
  min-height: 78px;
  padding: 18px;
  border: 1px solid var(--line);
  color: var(--espresso);
  background: rgba(255, 255, 255, 0.48);
  font-weight: 800;
}

.feature svg {
  color: var(--copper);
}

.moment-marquee {
  position: relative;
  width: 100vw;
  margin: 54px calc(50% - 50vw) -4px;
  overflow: hidden;
  background: var(--ink);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, rgba(0, 0, 0, 0.2) 5%, rgba(0, 0, 0, 0.7) 13%, #000 24%, #000 76%, rgba(0, 0, 0, 0.7) 87%, rgba(0, 0, 0, 0.2) 95%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, rgba(0, 0, 0, 0.2) 5%, rgba(0, 0, 0, 0.7) 13%, #000 24%, #000 76%, rgba(0, 0, 0, 0.7) 87%, rgba(0, 0, 0, 0.2) 95%, transparent 100%);
}

.moment-marquee::before,
.moment-marquee::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  width: min(24vw, 320px);
  pointer-events: none;
}

.moment-marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--ivory) 0%, rgba(255, 253, 248, 0.68) 20%, rgba(255, 253, 248, 0.22) 52%, rgba(255, 253, 248, 0) 100%);
}

.moment-marquee::after {
  right: 0;
  background: linear-gradient(270deg, var(--ivory) 0%, rgba(255, 253, 248, 0.68) 20%, rgba(255, 253, 248, 0.22) 52%, rgba(255, 253, 248, 0) 100%);
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 0;
  padding: 0;
  animation: marquee-scroll 86s linear infinite;
  will-change: transform;
}

.moment-marquee:hover .marquee-track {
  animation-play-state: paused;
}

.marquee-track img {
  width: clamp(260px, 25vw, 390px);
  height: clamp(260px, 25vw, 390px);
  flex: 0 0 auto;
  object-fit: cover;
  filter: contrast(1.03) saturate(1.04);
}

@keyframes marquee-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.brand-film {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: 48px;
  align-items: center;
  background:
    radial-gradient(circle at 14% 18%, rgba(5, 5, 5, 0.06), transparent 30%),
    var(--cream);
}

.brand-film-copy h2 {
  margin: 0;
  color: var(--espresso);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(34px, 4.2vw, 58px);
  line-height: 1.02;
}

.brand-film-copy p {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.brand-film-copy .text-link {
  justify-self: start;
  margin-top: 26px;
}

.video-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(5, 5, 5, 0.14);
  background: var(--ink);
  box-shadow: 0 28px 80px rgba(5, 5, 5, 0.18);
}

.video-frame::before {
  content: "";
  display: block;
  aspect-ratio: 16 / 9;
}

.video-frame video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fleet {
  background: linear-gradient(180deg, var(--cream), #e5e2dc);
}

.section-heading {
  margin-bottom: 34px;
}

.section-heading.centered {
  display: block;
  max-width: 820px;
  margin-inline: auto;
  text-align: center;
}

.text-link {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--copper);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.fleet-grid {
  display: grid;
  grid-template-columns: 1.22fr 1fr 1fr;
  gap: 16px;
}

.fleet-card {
  position: relative;
  min-height: 352px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  border: 1px solid rgba(255, 250, 242, 0.08);
  color: var(--ivory);
  background:
    radial-gradient(circle at 62% 24%, rgba(255, 255, 255, 0.16), transparent 34%),
    linear-gradient(145deg, #080808, #202020 58%, #3a3a3a);
  box-shadow: 0 22px 58px rgba(5, 5, 5, 0.18);
}

.fleet-card img {
  width: 100%;
  height: 235px;
  object-fit: contain;
  margin-top: 34px;
  padding: 0 18px;
  filter: contrast(1.04) saturate(1.04) drop-shadow(0 24px 30px rgba(0, 0, 0, 0.38));
  transform: scale(1.03);
}

.fleet-card div {
  padding: 26px;
  background: linear-gradient(0deg, rgba(5, 5, 5, 0.92), rgba(5, 5, 5, 0));
}

.fleet-card span {
  color: var(--champagne);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.fleet-card h3,
.service-card h3 {
  margin: 7px 0 8px;
  font-family: "Playfair Display", serif;
  line-height: 1;
}

.fleet-card h3 {
  font-size: 30px;
}

.service-card h3 {
  font-size: clamp(25px, 1.9vw, 28px);
  white-space: nowrap;
}

.fleet-card p,
.service-card p {
  margin: 0;
  color: rgba(255, 250, 242, 0.72);
  line-height: 1.55;
}

.fleet-cta-card {
  min-height: 352px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px;
  border: 1px solid rgba(5, 5, 5, 0.16);
  color: var(--espresso);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.76), rgba(216, 214, 207, 0.34)),
    repeating-linear-gradient(135deg, rgba(5, 5, 5, 0.045) 0 1px, transparent 1px 12px);
  box-shadow: 0 22px 58px rgba(5, 5, 5, 0.1);
}

.fleet-cta-card span {
  color: var(--copper);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.fleet-cta-card h3 {
  margin: 10px 0 12px;
  font-family: "Playfair Display", serif;
  font-size: 34px;
  line-height: 1;
}

.fleet-cta-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.58;
}

.fleet-cta-card .button {
  width: max-content;
  margin-top: 24px;
  box-shadow: none;
}

.services {
  background: var(--ivory);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 42px;
}

.service-card {
  position: relative;
  min-height: 510px;
  overflow: hidden;
  color: var(--ivory);
  background: var(--ink);
}

.service-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
  filter: contrast(1.04) saturate(1.06);
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(5, 5, 5, 0.94) 0%, rgba(5, 5, 5, 0.5) 52%, rgba(5, 5, 5, 0.06) 100%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.14), transparent 44%);
}

.service-card:hover img {
  transform: scale(1.05);
}

.service-content {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  padding: 24px;
}

.service-content svg {
  color: var(--champagne);
}

.service-content a {
  display: inline-flex;
  margin-top: 22px;
  color: var(--champagne);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.testimonials {
  display: grid;
  grid-template-columns: 0.78fr 1.35fr;
  gap: 42px;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(5, 5, 5, 0.08), transparent 42%),
    #ebe8e1;
}

.testimonial-intro p {
  max-width: 420px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.quote-card {
  margin: 0;
  padding: 24px;
  border: 1px solid var(--line);
  background: rgba(255, 250, 242, 0.7);
  box-shadow: 0 20px 50px rgba(5, 5, 5, 0.1);
}

.quote-card.featured {
  color: var(--ivory);
  background: linear-gradient(150deg, var(--ink), #353535);
  transform: translateY(-18px);
}

.quote-card img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border: 3px solid rgba(255, 253, 248, 0.55);
  border-radius: 50%;
  filter: sepia(0.28) saturate(1.65) hue-rotate(-8deg) contrast(1.03);
}

.quote-card blockquote {
  margin: 22px 0;
  font-family: "Playfair Display", serif;
  font-size: 24px;
  line-height: 1.18;
}

.quote-card figcaption {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.book {
  padding: 105px 24px;
  color: var(--ivory);
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.72), rgba(5, 5, 5, 0.48)),
    linear-gradient(0deg, rgba(5, 5, 5, 0.42), rgba(5, 5, 5, 0.04) 48%, rgba(5, 5, 5, 0.32)),
    url("assets/cta-interior.jpg") center / cover;
  filter: contrast(1.02) saturate(1.04);
}

.book-inner {
  width: min(920px, 100%);
  margin: 0 auto;
  text-align: center;
}

.book h2 {
  margin-inline: auto;
  color: var(--ivory);
}

.book p:not(.eyebrow) {
  max-width: 560px;
  margin: 22px auto 0;
  color: rgba(255, 250, 242, 0.78);
  font-size: 18px;
  line-height: 1.6;
}

.book-actions {
  justify-content: center;
}

.site-footer {
  padding: 72px max(24px, calc((100vw - 1180px) / 2)) 28px;
  color: rgba(255, 250, 242, 0.74);
  background:
    radial-gradient(circle at 18% 14%, rgba(255, 253, 248, 0.1), transparent 26%),
    linear-gradient(145deg, #050505, #161616 56%, #0a0a0a);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(280px, 1.55fr) repeat(3, minmax(150px, 0.72fr));
  gap: 42px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 253, 248, 0.14);
}

.footer-brand img {
  width: 230px;
  height: auto;
  filter: invert(1) brightness(1.8);
}

.footer-brand p {
  max-width: 430px;
  margin: 24px 0 0;
  color: rgba(255, 250, 242, 0.68);
  font-size: 17px;
  line-height: 1.65;
}

.footer-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  margin-top: 28px;
  padding: 0 18px;
  color: var(--ink);
  background: var(--ivory);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-cta svg {
  width: 17px;
  height: 17px;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 12px;
}

.footer-column span,
.footer-bottom span {
  color: var(--ivory);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.footer-column a,
.footer-contact p,
.footer-bottom a {
  color: rgba(255, 250, 242, 0.7);
  font-size: 14px;
  line-height: 1.5;
}

.footer-column a:hover,
.footer-bottom a:hover {
  color: var(--ivory);
}

.footer-contact p {
  margin: 0;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
}

.footer-bottom a {
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

  .site-nav {
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    padding: 10px;
    color: var(--ivory);
    background: rgba(21, 17, 13, 0.96);
    transform: translateY(-18px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }

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

  .site-nav a {
    padding: 18px;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 138px;
  }

  .hero-panel {
    max-width: 520px;
  }

  .about-grid,
  .section-heading,
  .testimonials {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .text-link {
    justify-self: start;
  }

  .fleet-grid,
  .service-grid,
  .testimonial-grid {
    grid-template-columns: 1fr 1fr;
  }

  .quote-card.featured {
    transform: none;
  }

  .footer-main {
    grid-template-columns: 1.4fr 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  .site-header {
    top: 10px;
    width: calc(100% - 20px);
  }

  .brand img {
    width: 142px;
  }

  .hero {
    padding: 120px 20px 34px;
  }

  .hero-content,
  .hero-panel {
    width: min(100%, 350px);
  }

  .hero-bg {
    background:
      linear-gradient(90deg, rgba(5, 5, 5, 0.96) 0%, rgba(5, 5, 5, 0.72) 62%, rgba(5, 5, 5, 0.38) 100%),
      linear-gradient(0deg, rgba(5, 5, 5, 0.96) 0%, rgba(5, 5, 5, 0.12) 48%, rgba(5, 5, 5, 0.28) 100%);
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(37px, 10vw, 40px);
    line-height: 0.98;
  }

  .hero-copy {
    max-width: 100%;
    font-size: 17px;
  }

  .hero-actions,
  .book-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-panel dl,
  .feature-row,
  .fleet-grid,
  .service-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .moment-marquee {
    margin-top: 38px;
  }

  .marquee-track {
    animation-duration: 62s;
  }

  .marquee-track img {
    width: 240px;
    height: 240px;
  }

  .brand-film {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .section {
    padding: 78px 20px;
  }

  .section h2,
  .book h2 {
    font-size: clamp(32px, 10vw, 44px);
  }

  .fleet-card,
  .fleet-cta-card {
    min-height: 390px;
  }

  .fleet-card img {
    height: 210px;
    margin-top: 28px;
  }

  .fleet-cta-card .button {
    width: 100%;
  }

  .service-card {
    min-height: 440px;
  }

  .service-card h3 {
    white-space: normal;
  }

  .site-footer {
    padding-top: 58px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-brand img {
    width: 190px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

.hero-content,
.hero-panel {
  animation: hero-rise 900ms cubic-bezier(0.2, 0.72, 0.18, 1) both;
}

.hero-panel {
  animation-delay: 180ms;
}

.hero-video {
  animation: hero-video-settle 1400ms ease both;
}

.reveal-enabled .reveal-item {
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity 720ms ease,
    transform 720ms cubic-bezier(0.2, 0.72, 0.18, 1),
    filter 720ms ease;
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.reveal-enabled .fleet-card,
.reveal-enabled .fleet-cta-card,
.reveal-enabled .service-card,
.reveal-enabled .quote-card,
.reveal-enabled .video-frame {
  transform: translateY(28px) scale(0.985);
}

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

.reveal-enabled .service-card.reveal-item,
.reveal-enabled .fleet-card.reveal-item {
  filter: saturate(0.88);
}

.reveal-enabled .service-card.reveal-item.is-visible,
.reveal-enabled .fleet-card.reveal-item.is-visible {
  filter: saturate(1);
}

@keyframes hero-rise {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-video-settle {
  from {
    filter: contrast(1.12) saturate(0.82);
    transform: scale(1.035);
  }

  to {
    filter: contrast(1.04) saturate(1.04);
    transform: scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal-enabled .reveal-item {
    opacity: 1;
    transform: none;
    filter: none;
  }
}
