:root {
  --ink: #101418;
  --graphite: #1c2329;
  --graphite-2: #273039;
  --mist: #f3f5f2;
  --paper: #ffffff;
  --line: #dfe5e1;
  --muted: #65717a;
  --pine: #244d38;
  --leaf: #527342;
  --amber: #f2a516;
  --clay: #a75c31;
  --blue: #2f7894;
  --radius: 8px;
  --shadow: 0 22px 70px rgb(16 20 24 / 14%);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.5;
}

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

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

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  color: #fff;
  background: rgb(16 20 24 / 24%);
  border-bottom: 1px solid rgb(255 255 255 / 18%);
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  color: var(--ink);
  background: rgb(255 255 255 / 96%);
  border-color: var(--line);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: baseline;
  font-weight: 900;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand-mark {
  font-size: 1.75rem;
  line-height: 1;
}

.brand-dot {
  color: var(--amber);
  font-size: 1.1rem;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 0.92rem;
  font-weight: 850;
  text-transform: uppercase;
}

.main-nav a {
  position: relative;
  padding: 28px 0;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 20px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--amber);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.main-nav a:hover::after,
.main-nav a.is-active::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.phone-link {
  font-weight: 850;
  white-space: nowrap;
}

.btn,
.icon-button,
.filter-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  font: inherit;
  font-weight: 850;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.btn {
  min-height: 48px;
  padding: 0 20px;
  gap: 9px;
  border-radius: var(--radius);
}

.btn svg,
.icon-button svg,
.category-tile svg,
.page-card svg,
.video-play svg {
  width: 19px;
  height: 19px;
  stroke-width: 2.35;
}

.btn:hover,
.category-tile:hover,
.trip-card:hover,
.page-card:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #161616;
  background: var(--amber);
}

.btn-dark {
  color: #fff;
  background: var(--graphite);
}

.btn-glass {
  color: #fff;
  background: rgb(255 255 255 / 13%);
  border: 1px solid rgb(255 255 255 / 42%);
}

.btn-outline {
  min-height: 42px;
  padding: 0 15px;
  color: var(--pine);
  background: transparent;
  border: 1px solid var(--pine);
}

.btn-small {
  min-height: 40px;
  padding: 0 14px;
}

.icon-button {
  width: 42px;
  height: 42px;
  color: currentColor;
  background: transparent;
  border: 1px solid currentColor;
  border-radius: var(--radius);
}

.menu-toggle {
  display: none;
}

.hero,
.page-hero {
  position: relative;
  display: grid;
  overflow: hidden;
  color: #fff;
  isolation: isolate;
}

.hero {
  min-height: 88svh;
}

.page-hero {
  min-height: 440px;
  height: min(620px, 72svh);
}

.hero img,
.page-hero img,
.hero-shade,
.hero-content,
.page-hero-content {
  grid-area: 1 / 1;
}

.hero img,
.page-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero img {
  min-height: 88svh;
}

.hero-shade {
  z-index: 1;
  background:
    linear-gradient(90deg, rgb(10 13 15 / 84%) 0%, rgb(10 13 15 / 58%) 43%, rgb(10 13 15 / 22%) 100%),
    linear-gradient(0deg, rgb(10 13 15 / 58%) 0%, rgb(10 13 15 / 6%) 48%);
}

.hero-content,
.page-hero-content {
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  min-width: 0;
}

.hero-content {
  padding-top: 102px;
  padding-bottom: 50px;
}

.page-hero-content {
  padding-top: 110px;
  padding-bottom: 58px;
}

.eyebrow {
  margin: 0 0 13px;
  color: var(--amber);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1,
.page-hero h1 {
  margin: 0;
  line-height: 0.92;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 780px;
  font-size: clamp(4rem, 11vw, 8.5rem);
}

.page-hero h1 {
  max-width: 880px;
  font-size: clamp(2.7rem, 7vw, 5.6rem);
}

.hero-copy,
.page-copy {
  width: min(660px, 100%);
  max-width: 100%;
  margin: 28px 0 0;
  color: rgb(255 255 255 / 88%);
  font-size: clamp(1.04rem, 2vw, 1.28rem);
  overflow-wrap: break-word;
}

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

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(890px, 100%);
  margin: 48px 0 0;
  background: rgb(255 255 255 / 22%);
  border: 1px solid rgb(255 255 255 / 22%);
  border-radius: var(--radius);
  overflow: hidden;
}

.hero-stats div {
  padding: 18px;
  background: rgb(16 20 24 / 52%);
}

.hero-stats dt {
  font-weight: 900;
}

.hero-stats dd {
  margin: 4px 0 0;
  color: rgb(255 255 255 / 76%);
  font-size: 0.9rem;
}

.category-strip {
  position: relative;
  z-index: 6;
  margin-top: -48px;
}

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

.category-tile,
.page-card {
  color: var(--paper);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.category-tile {
  display: grid;
  min-height: 134px;
  padding: 22px;
  background: var(--graphite);
}

.category-tile:nth-child(2) {
  background: var(--pine);
}

.category-tile:nth-child(3) {
  background: var(--clay);
}

.category-tile:nth-child(4) {
  background: var(--blue);
}

.category-tile svg,
.page-card svg {
  color: var(--amber);
}

.category-tile strong {
  margin-top: 18px;
  font-size: 1.08rem;
}

.category-tile small {
  color: rgb(255 255 255 / 75%);
}

.section {
  padding: 92px 0;
}

.section-tight {
  padding: 66px 0;
}

.section-muted {
  background: var(--mist);
}

.section-dark {
  color: #fff;
  background: var(--graphite);
}

.promo-rail {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
  gap: 16px;
}

.promo-card {
  position: relative;
  display: flex;
  min-height: 280px;
  overflow: hidden;
  color: #fff;
  border-radius: var(--radius);
  isolation: isolate;
  box-shadow: var(--shadow);
}

.promo-card:first-child {
  min-height: 360px;
}

.promo-card img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.promo-card::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: linear-gradient(0deg, rgb(10 13 15 / 86%), rgb(10 13 15 / 18%));
}

.promo-card-content {
  align-self: flex-end;
  padding: 26px;
}

.promo-card h3 {
  margin: 8px 0;
  font-size: clamp(1.55rem, 3vw, 2.7rem);
  line-height: 1.02;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 14px;
}

.tag-row span {
  padding: 6px 9px;
  color: rgb(255 255 255 / 86%);
  font-size: 0.76rem;
  font-weight: 850;
  background: rgb(255 255 255 / 15%);
  border: 1px solid rgb(255 255 255 / 18%);
  border-radius: 999px;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
}

.section-heading.compact {
  margin-bottom: 22px;
}

h2,
h3,
p {
  overflow-wrap: break-word;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.03;
  letter-spacing: 0;
}

.lead {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.1rem;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-button {
  min-height: 38px;
  padding: 0 14px;
  color: var(--graphite);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.filter-button.active,
.filter-button:hover {
  color: #171717;
  background: var(--amber);
  border-color: var(--amber);
}

.trip-grid,
.page-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.trip-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 10px 28px rgb(16 20 24 / 7%);
  transition: transform 160ms ease;
}

.trip-card.is-hidden {
  display: none;
}

.trip-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.trip-body {
  padding: 20px;
}

.trip-topline,
.trip-meta,
.trip-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.trip-topline {
  color: var(--pine);
  font-size: 0.77rem;
  font-weight: 900;
  text-transform: uppercase;
}

.trip-card h3 {
  min-height: 62px;
  margin: 13px 0 10px;
  font-size: 1.42rem;
  line-height: 1.1;
  letter-spacing: 0;
}

.trip-card p {
  margin: 0;
  color: var(--muted);
}

.trip-meta {
  padding: 0;
  margin: 20px 0;
  list-style: none;
}

.trip-meta li {
  display: grid;
}

.trip-meta strong {
  font-size: 1rem;
}

.trip-meta span {
  color: var(--muted);
  font-size: 0.78rem;
}

.trip-footer {
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.trip-footer > strong {
  font-size: 1.1rem;
}

.video-shell {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: #000;
}

.video-teaser {
  position: relative;
  display: grid;
  min-height: 420px;
  overflow: hidden;
  color: #fff;
  border-radius: 0;
  isolation: isolate;
}

.video-teaser img,
.video-teaser video,
.video-teaser-content {
  grid-area: 1 / 1;
}

.video-teaser img,
.video-teaser video {
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-teaser video {
  filter: saturate(1.06) contrast(1.04);
}

.video-teaser::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: rgb(10 13 15 / 58%);
}

.video-teaser-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.video-teaser h2 {
  max-width: 760px;
}

.video-shell video {
  width: 100%;
  aspect-ratio: 16 / 8.3;
  object-fit: cover;
}

.video-copy {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: end;
  margin-bottom: 28px;
}

.video-copy p {
  color: rgb(255 255 255 / 72%);
}

.video-play {
  position: absolute;
  right: 22px;
  bottom: 22px;
  width: 58px;
  height: 58px;
  color: #111;
  background: var(--amber);
  border: 0;
  border-radius: 999px;
  cursor: pointer;
}

.split-layout,
.feature-inner,
.detail-layout,
.news-testimonials {
  display: grid;
  gap: 52px;
}

.split-layout {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
}

.feature-inner {
  grid-template-columns: minmax(0, 1.14fr) minmax(320px, 0.86fr);
  align-items: center;
}

.feature-inner img,
.media-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--radius);
}

.process-list {
  display: grid;
  gap: 14px;
}

.process-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  column-gap: 18px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
}

.section-dark .process-item {
  border-color: rgb(255 255 255 / 16%);
}

.process-item span {
  color: var(--amber);
  font-weight: 900;
}

.process-item strong {
  font-size: 1.2rem;
}

.process-item p {
  grid-column: 2;
  margin: 6px 0 0;
  color: var(--muted);
}

.section-dark .process-item p,
.section-dark .lead,
.section-dark .feature-copy p {
  color: rgb(255 255 255 / 72%);
}

.page-card {
  min-height: 210px;
  padding: 24px;
  background: var(--graphite);
}

.page-card:nth-child(2) {
  background: var(--pine);
}

.page-card:nth-child(3) {
  background: var(--blue);
}

.page-card h3 {
  margin: 42px 0 8px;
  font-size: 1.45rem;
}

.media-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 14px;
}

.media-item {
  position: relative;
  min-height: 250px;
  overflow: hidden;
  color: #fff;
  border-radius: var(--radius);
  isolation: isolate;
}

.media-item:first-child {
  grid-row: span 2;
}

.media-item img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-item::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: linear-gradient(0deg, rgb(10 13 15 / 74%), transparent 58%);
}

.media-item strong {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  font-size: 1.12rem;
}

.tabs {
  position: sticky;
  top: 76px;
  z-index: 12;
  background: rgb(255 255 255 / 96%);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.tabs-inner {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  padding: 10px 0;
}

.tabs a {
  flex: 0 0 auto;
  min-height: 38px;
  padding: 8px 13px;
  color: var(--muted);
  font-weight: 850;
  border-radius: var(--radius);
}

.tabs a.is-active,
.tabs a:hover {
  color: var(--ink);
  background: var(--amber);
}

.detail-layout {
  grid-template-columns: minmax(0, 1fr) 340px;
  align-items: start;
}

.content-panel {
  padding: 30px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.content-panel h2 {
  font-size: clamp(1.8rem, 3vw, 2.7rem);
}

.content-panel h3 {
  margin-top: 30px;
}

.content-panel p,
.content-panel li {
  color: var(--muted);
}

.info-sidebar {
  position: sticky;
  top: 150px;
  padding: 22px;
  background: var(--graphite);
  color: #fff;
  border-radius: var(--radius);
}

.info-sidebar dl {
  display: grid;
  gap: 12px;
  margin: 0 0 22px;
}

.info-sidebar div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 11px;
  border-bottom: 1px solid rgb(255 255 255 / 16%);
}

.info-sidebar dt {
  color: rgb(255 255 255 / 66%);
}

.info-sidebar dd {
  margin: 0;
  font-weight: 850;
  text-align: right;
}

.schedule-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.schedule-table th,
.schedule-table td {
  padding: 14px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

.schedule-table th {
  background: var(--mist);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 12px;
}

.map-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 42px;
  align-items: center;
}

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

.destination-list a {
  padding: 16px;
  font-weight: 850;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.destination-list small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-weight: 600;
}

.fleet-strip {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 42px;
  align-items: center;
}

.fleet-strip img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 30px 0 34px;
}

.trust-item {
  min-height: 190px;
  padding: 20px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.trust-item svg {
  width: 28px;
  height: 28px;
  margin-bottom: 18px;
  color: var(--accent);
}

.trust-item strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.02rem;
  line-height: 1.2;
}

.trust-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.55;
}

.text-columns {
  columns: 2 320px;
  column-gap: 42px;
  color: var(--muted);
  font-size: 1.02rem;
}

.motion-strip {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(180deg, #15202a 0%, #203241 48%, #111519 100%);
  isolation: isolate;
}

.motion-strip::after {
  position: absolute;
  inset: 0;
  z-index: 6;
  pointer-events: none;
  content: "";
  background: linear-gradient(90deg, rgb(17 21 25 / 88%) 0%, rgb(17 21 25 / 32%) 42%, rgb(17 21 25 / 78%) 100%);
}

.motion-sky {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 18%, rgb(242 165 22 / 18%), transparent 22%),
    linear-gradient(180deg, rgb(47 120 148 / 35%), transparent 55%);
}

.motion-hills {
  position: absolute;
  right: -10%;
  left: -10%;
  height: 46%;
  background-repeat: repeat-x;
  background-size: 820px 100%;
  opacity: 0.9;
}

.motion-hills-back {
  bottom: 104px;
  background-image:
    linear-gradient(150deg, transparent 0 23%, rgb(36 77 56 / 58%) 23% 46%, transparent 46%),
    linear-gradient(35deg, transparent 0 34%, rgb(36 77 56 / 48%) 34% 62%, transparent 62%);
  animation: hillsDrift 34s linear infinite;
}

.motion-hills-front {
  bottom: 58px;
  background-image:
    linear-gradient(150deg, transparent 0 18%, rgb(23 48 36 / 82%) 18% 54%, transparent 54%),
    linear-gradient(32deg, transparent 0 30%, rgb(23 48 36 / 74%) 30% 68%, transparent 68%);
  animation: hillsDrift 20s linear infinite reverse;
}

.motion-track {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 118px;
  background:
    linear-gradient(0deg, #17130f 0%, #4b3324 64%, transparent 65%),
    repeating-linear-gradient(96deg, rgb(255 255 255 / 0%) 0 42px, rgb(242 165 22 / 32%) 42px 48px, rgb(255 255 255 / 0%) 48px 96px);
}

.motion-track::before,
.motion-track::after {
  position: absolute;
  right: -20%;
  left: -20%;
  height: 18px;
  content: "";
  background: repeating-linear-gradient(90deg, rgb(255 255 255 / 0%) 0 28px, rgb(255 255 255 / 14%) 28px 40px, rgb(255 255 255 / 0%) 40px 92px);
  animation: trackMove 8s linear infinite;
}

.motion-track::before {
  top: 42px;
}

.motion-track::after {
  top: 70px;
  opacity: 0.52;
  animation-duration: 5.6s;
}

.motion-copy {
  position: relative;
  z-index: 8;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding-top: 82px;
}

.motion-copy h2 {
  width: min(620px, 100%);
}

.motion-quad {
  position: absolute;
  z-index: 9;
  bottom: 42px;
  left: -330px;
  width: clamp(250px, 31vw, 410px);
  animation: quadDrive 12s cubic-bezier(0.45, 0, 0.2, 1) infinite;
}

.motion-quad svg {
  width: 100%;
  overflow: visible;
}

.quad-shadow ellipse {
  fill: rgb(0 0 0 / 42%);
}

.quad-body path,
.quad-body rect,
.quad-rider circle,
.quad-rider path {
  fill: #1a2026;
  stroke: rgb(255 255 255 / 24%);
  stroke-width: 3;
  stroke-linejoin: round;
}

.quad-body .quad-accent {
  fill: var(--amber);
  stroke: none;
}

.quad-rider circle {
  fill: #0d1115;
}

.quad-rider path {
  fill: #273039;
}

.quad-line {
  fill: none !important;
  stroke: #d7dee3 !important;
  stroke-linecap: round;
}

.quad-wheel {
  transform-box: fill-box;
  transform-origin: center;
  animation: wheelSpin 0.62s linear infinite;
}

.quad-wheel circle {
  fill: #0b0d0f;
  stroke: #d7dee3;
  stroke-width: 5;
}

.quad-wheel circle + circle {
  fill: #273039;
  stroke-width: 3;
}

.quad-wheel path {
  fill: none;
  stroke: rgb(255 255 255 / 62%);
  stroke-width: 3;
  stroke-linecap: round;
}

.dust {
  position: absolute;
  bottom: 22px;
  left: 2%;
  width: 70px;
  height: 20px;
  background: radial-gradient(ellipse, rgb(214 178 126 / 46%), transparent 70%);
  border-radius: 999px;
  opacity: 0;
  animation: dustPuff 1.4s ease-out infinite;
}

.dust-two {
  bottom: 10px;
  left: -10%;
  width: 110px;
  animation-delay: 0.46s;
}

@keyframes quadDrive {
  0% {
    transform: translateX(0) translateY(0) rotate(-1deg);
  }
  12% {
    transform: translateX(24vw) translateY(-5px) rotate(1deg);
  }
  50% {
    transform: translateX(60vw) translateY(3px) rotate(-0.7deg);
  }
  82% {
    transform: translateX(108vw) translateY(-4px) rotate(1deg);
  }
  100% {
    transform: translateX(132vw) translateY(0) rotate(-1deg);
  }
}

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

@keyframes dustPuff {
  0% {
    transform: translateX(30px) scale(0.45);
    opacity: 0;
  }
  30% {
    opacity: 0.58;
  }
  100% {
    transform: translateX(-90px) scale(1.6);
    opacity: 0;
  }
}

@keyframes trackMove {
  to {
    transform: translateX(-180px);
  }
}

@keyframes hillsDrift {
  to {
    transform: translateX(-360px);
  }
}

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

.faq-item {
  padding: 22px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.faq-item h3 {
  margin: 0 0 8px;
  font-size: 1.1rem;
}

.faq-item p {
  margin: 0;
  color: var(--muted);
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  border-radius: var(--radius);
}

.gallery-grid img:first-child {
  grid-row: span 2;
}

.news-testimonials {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.75fr);
}

.news-list {
  display: grid;
  gap: 1px;
  overflow: hidden;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.news-list a {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 18px;
  align-items: center;
  min-height: 82px;
  padding: 18px;
  background: var(--paper);
}

.news-list time {
  color: var(--clay);
  font-weight: 900;
  text-transform: uppercase;
}

.testimonial {
  margin: 0;
  padding: 28px;
  color: #fff;
  background: var(--pine);
  border-radius: var(--radius);
}

.testimonial p {
  margin: 0;
  font-size: 1.16rem;
}

.testimonial cite {
  display: block;
  margin-top: 18px;
  color: rgb(255 255 255 / 76%);
  font-style: normal;
  font-weight: 850;
}

.contact-band {
  padding: 72px 0;
  color: #fff;
  background: var(--pine);
}

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

.contact-inner p,
.feature-copy p {
  color: rgb(255 255 255 / 76%);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.site-footer {
  padding: 34px 0;
  color: #fff;
  background: #111519;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-inner nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  color: rgb(255 255 255 / 72%);
  font-weight: 700;
}

@media (max-width: 980px) {
  .phone-link,
  .header-actions .btn-small {
    display: none;
  }

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

  .main-nav {
    position: fixed;
    top: 76px;
    right: 0;
    left: 0;
    display: none;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 12px 20px 24px;
    color: var(--ink);
    background: rgb(255 255 255 / 98%);
    border-bottom: 1px solid var(--line);
  }

  .main-nav.is-open {
    display: grid;
  }

  .main-nav a {
    padding: 15px 0;
  }

  .main-nav a::after {
    bottom: 8px;
  }

  .hero img {
    object-position: 63% center;
  }

  .hero-stats,
  .category-grid,
  .trip-grid,
  .page-grid,
  .promo-rail,
  .media-grid,
  .map-band,
  .fleet-strip,
  .faq-grid,
  .split-layout,
  .feature-inner,
  .detail-layout,
  .news-testimonials,
  .video-copy {
    grid-template-columns: 1fr;
  }

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

  .category-strip {
    margin-top: -28px;
  }

  .section-heading,
  .contact-inner,
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .info-sidebar {
    position: static;
  }

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

  .gallery-grid img:first-child {
    grid-row: auto;
  }

  .media-item:first-child {
    grid-row: auto;
  }

  .motion-strip {
    min-height: 420px;
  }

  .motion-copy {
    width: calc(100% - 28px);
    padding-top: 58px;
  }

  .motion-quad {
    width: 300px;
    animation-duration: 9s;
  }
}

@media (max-width: 640px) {
  .container {
    width: calc(100% - 28px);
  }

  .header-inner {
    min-height: 66px;
  }

  .main-nav {
    top: 66px;
  }

  .brand-mark {
    font-size: 1.45rem;
  }

  .hero {
    min-height: 86svh;
  }

  .hero img {
    min-height: 86svh;
  }

  .page-hero {
    min-height: 390px;
    height: 56svh;
  }

  .hero-content {
    padding-top: 86px;
  }

  .hero-actions,
  .contact-actions {
    width: 100%;
    min-width: 0;
  }

  .hero-actions .btn,
  .contact-actions .btn {
    width: 100%;
    min-width: 0;
  }

  .hero-stats {
    margin-top: 30px;
  }

  .hero-stats div {
    padding: 14px;
  }

  .section {
    padding: 64px 0;
  }

  .trip-card h3 {
    min-height: 0;
  }

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

  .trust-item {
    min-height: 0;
  }

  .trip-meta {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .trip-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .content-panel {
    padding: 22px;
  }

  .schedule-table {
    display: block;
    overflow-x: auto;
  }

  .news-list a {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .video-teaser video {
    display: none;
  }

  .motion-hills,
  .motion-track::before,
  .motion-track::after,
  .motion-quad,
  .quad-wheel,
  .dust {
    animation: none;
  }

  .motion-quad {
    left: auto;
    right: 8%;
  }
}
