:root {
  --ink: #141821;
  --muted: #6b7280;
  --paper: #f5f1e8;
  --paper-2: #fffaf0;
  --white: #ffffff;
  --night: #08111f;
  --night-2: #111827;
  --red: #cf2526;
  --gold: #d8a84a;
  --gold-2: #f4d37a;
  --blue: #0b67b2;
  --line: rgba(20, 24, 33, 0.12);
  --shadow: 0 24px 80px rgba(8, 17, 31, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body.menu-open {
  overflow: hidden;
}

body.lightbox-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.icon,
.stat-icon,
.service-icon,
.benefit-icon,
.detail-icon {
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon {
  width: 1.05em;
  height: 1.05em;
}

.topbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  min-height: 38px;
  padding: 9px max(18px, calc((100vw - 1180px) / 2));
  color: rgba(255, 255, 255, 0.8);
  background: #050910;
  font-size: 0.86rem;
}

.topbar a {
  color: var(--gold-2);
}

.topbar span,
.topbar a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.site-header {
  position: fixed;
  inset: 54px max(18px, calc((100vw - 1180px) / 2)) auto;
  z-index: 29;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 86px;
  padding: 12px 14px;
  color: #fff;
  background: rgba(8, 17, 31, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  backdrop-filter: blur(18px);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.26);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  min-width: 0;
  font-weight: 950;
}

.brand img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 0 0 2px rgba(216, 168, 74, 0.5);
}

.brand span {
  white-space: nowrap;
}

.nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 2.2vw, 32px);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.94rem;
  font-weight: 800;
}

.nav a {
  position: relative;
  padding: 9px 0;
  transition: color 180ms ease;
}

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

.nav a:hover {
  color: #fff;
}

.nav a:hover::after {
  transform: scaleX(1);
}

.header-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 0 17px;
  color: #fff;
  background: var(--red);
  border-radius: 6px;
  font-weight: 950;
  box-shadow: 0 12px 30px rgba(207, 37, 38, 0.32);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.header-call:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(207, 37, 38, 0.42);
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
  align-items: end;
  gap: 30px;
  overflow: hidden;
  padding: 210px max(18px, calc((100vw - 1180px) / 2)) 148px;
  color: #fff;
  background: var(--night);
}

.hero::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: 88px;
  width: 58vw;
  height: 22px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: rotate(-7deg);
  opacity: 0.8;
  animation: road-glow 4.8s ease-in-out infinite;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.74;
  animation: hero-drift 16s ease-in-out infinite alternate;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 75% 38%, rgba(11, 103, 178, 0.18), transparent 32%),
    linear-gradient(90deg, rgba(8, 17, 31, 0.96) 0%, rgba(8, 17, 31, 0.76) 42%, rgba(8, 17, 31, 0.28) 100%),
    linear-gradient(0deg, rgba(8, 17, 31, 0.96), transparent 54%);
}

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

.hero-enter {
  animation: hero-enter 820ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.hero-enter.delayed {
  animation-delay: 180ms;
}

.eyebrow,
.section-kicker,
.panel-label {
  display: inline-flex;
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 770px;
  margin-bottom: 24px;
  font-size: clamp(4rem, 9vw, 8.9rem);
  line-height: 0.86;
  letter-spacing: 0;
}

.hero-content p {
  max-width: 650px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.08rem, 2vw, 1.42rem);
  line-height: 1.55;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 6px;
  font-weight: 950;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.btn.primary {
  color: #fff;
  background: var(--red);
  box-shadow: 0 14px 34px rgba(207, 37, 38, 0.3);
}

.btn.ghost {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.42);
}

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

.hero-panel {
  align-self: center;
  padding: 28px;
  background: rgba(255, 250, 240, 0.96);
  color: var(--ink);
  border-radius: 8px;
  box-shadow: var(--shadow);
  animation: panel-float 5.4s ease-in-out infinite;
}

.hero-panel.hero-enter {
  animation:
    hero-enter 820ms cubic-bezier(0.2, 0.8, 0.2, 1) 180ms both,
    panel-float 5.4s ease-in-out 1.1s infinite;
}

.hero-panel h2 {
  margin-bottom: 14px;
  font-size: clamp(1.65rem, 3vw, 2.3rem);
  line-height: 1;
}

.hero-panel p {
  color: var(--muted);
  line-height: 1.65;
}

.panel-contacts {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.panel-contacts a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 15px;
  color: #fff;
  background: var(--night);
  border-radius: 6px;
  font-weight: 850;
  overflow-wrap: anywhere;
}

.hero-stats {
  position: absolute;
  right: max(18px, calc((100vw - 1180px) / 2));
  bottom: 24px;
  left: max(18px, calc((100vw - 1180px) / 2));
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  backdrop-filter: blur(16px);
}

.hero-stats div {
  position: relative;
  padding: 22px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  transition: background 180ms ease, transform 180ms ease;
}

.hero-stats div:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-3px);
}

.hero-stats div:last-child {
  border-right: 0;
}

.stat-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 34px;
  height: 34px;
  color: rgba(255, 255, 255, 0.42);
}

.hero-stats strong {
  display: block;
  color: var(--gold-2);
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  line-height: 1;
}

.hero-stats span {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 800;
}

.section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 96px 0;
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: 18px;
  align-items: stretch;
}

.intro-card {
  padding: clamp(30px, 5vw, 58px);
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 16px 50px rgba(8, 17, 31, 0.08);
}

.intro-card span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--gold);
  font-weight: 950;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.1rem, 5vw, 4.7rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.intro-card p,
.equipment-copy p,
.contact-card p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.78;
}

.intro-image {
  overflow: hidden;
  border-radius: 8px;
  min-height: 430px;
  box-shadow: var(--shadow);
}

.intro-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
}

.intro-image:hover img {
  transform: scale(1.04);
}

.section-head {
  max-width: 780px;
  margin-bottom: 38px;
}

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

.service-card {
  position: relative;
  min-height: 290px;
  padding: 28px;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(145deg, rgba(216, 168, 74, 0.08), transparent 48%),
    var(--night);
  border-radius: 8px;
  box-shadow: 0 18px 52px rgba(8, 17, 31, 0.16);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.service-card:hover,
.benefits div:hover,
.process-step:hover,
.contact-details a:hover {
  transform: translateY(-4px);
}

.service-card:hover {
  box-shadow: 0 24px 62px rgba(8, 17, 31, 0.22);
}

.service-card::before {
  content: "";
  position: absolute;
  inset: auto -40px -50px auto;
  width: 150px;
  height: 150px;
  background: rgba(216, 168, 74, 0.18);
  border-radius: 50%;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.12) 42%, transparent 58%);
  transform: translateX(-120%);
  transition: transform 600ms ease;
}

.service-card:hover::after {
  transform: translateX(120%);
}

.service-top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 56px;
}

.service-number {
  display: inline-flex;
  color: var(--gold-2);
  font-size: 2.8rem;
  font-weight: 950;
  line-height: 1;
}

.service-icon {
  width: 54px;
  height: 54px;
  padding: 12px;
  color: var(--gold-2);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
}

.service-card h3 {
  margin-bottom: 12px;
  font-size: 1.42rem;
}

.service-card p {
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.64;
}

.equipment {
  padding: 102px max(18px, calc((100vw - 1180px) / 2));
  color: #fff;
  background:
    linear-gradient(90deg, rgba(8, 17, 31, 0.94), rgba(8, 17, 31, 0.64)),
    url("img/WhatsApp Image 2026-06-25 at 1.36.00 PM.jpeg") center / cover;
}

.equipment-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
  gap: clamp(30px, 6vw, 82px);
  align-items: center;
}

.equipment-copy p {
  color: rgba(255, 255, 255, 0.78);
}

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

.equipment-list span {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  font-weight: 850;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.equipment-list span .icon {
  width: 23px;
  height: 23px;
  color: var(--gold-2);
}

.equipment-list span:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(244, 211, 122, 0.34);
}

.fleet {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: clamp(34px, 6vw, 78px);
  align-items: center;
}

.fleet-gallery {
  position: relative;
  min-height: 610px;
}

.fleet-main,
.fleet-small {
  position: absolute;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
  transition: transform 600ms ease;
}

.fleet-gallery:hover .fleet-main {
  transform: translateY(-8px) scale(1.015);
}

.fleet-gallery:hover .fleet-small.one {
  transform: translateX(8px) translateY(-6px);
}

.fleet-gallery:hover .fleet-small.two {
  transform: translateX(-8px) translateY(6px);
}

.fleet-main {
  inset: 0 auto auto 0;
  width: 82%;
  height: 72%;
}

.fleet-small.one {
  right: 0;
  top: 58px;
  width: 38%;
  height: 34%;
}

.fleet-small.two {
  right: 8%;
  bottom: 0;
  width: 48%;
  height: 36%;
}

.benefits {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.benefits div {
  position: relative;
  padding: 18px;
  padding-left: 74px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(8, 17, 31, 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.benefits div:hover {
  box-shadow: 0 18px 44px rgba(8, 17, 31, 0.1);
}

.benefit-icon {
  position: absolute;
  top: 19px;
  left: 18px;
  width: 38px;
  height: 38px;
  padding: 8px;
  color: var(--blue);
  background: rgba(11, 103, 178, 0.1);
  border-radius: 50%;
}

.benefits strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.08rem;
}

.benefits span,
.fleet-copy p {
  color: var(--muted);
  line-height: 1.58;
}

.destinations {
  padding: 112px max(18px, calc((100vw - 1180px) / 2));
  color: #fff;
  background:
    linear-gradient(90deg, rgba(8, 17, 31, 0.92), rgba(8, 17, 31, 0.34)),
    url("img/WhatsApp Image 2026-06-25 at 1.35.55 PM (1).jpeg") center / cover;
}

.destinations-inner {
  max-width: 860px;
}

.destinations-inner p:not(.section-kicker) {
  max-width: 690px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
  line-height: 1.75;
}

.journey-lines {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
}

.journey-lines span {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 86px;
  padding: 18px;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  font-weight: 950;
  backdrop-filter: blur(12px);
  transition: transform 180ms ease, background 180ms ease;
}

.journey-lines span:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.18);
}

.journey-lines .icon {
  width: 24px;
  height: 24px;
  color: var(--gold-2);
}

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

.process-step {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.process-step:hover {
  box-shadow: 0 18px 46px rgba(8, 17, 31, 0.1);
}

.process-step span {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 42px;
  color: #fff;
  background: var(--blue);
  border-radius: 50%;
  font-weight: 950;
}

.process-step span .icon {
  width: 24px;
  height: 24px;
}

.process-step h3 {
  margin-bottom: 10px;
  font-size: 1.35rem;
}

.process-step p {
  color: var(--muted);
  line-height: 1.64;
}

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

.gallery-item {
  position: relative;
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: #ddd;
  cursor: pointer;
}

.gallery-item::after {
  content: "Ansehen";
  position: absolute;
  right: 14px;
  bottom: 14px;
  padding: 9px 12px;
  color: #fff;
  background: rgba(8, 17, 31, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 900;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.gallery-item:hover::after {
  opacity: 1;
  transform: translateY(0);
}

.gallery-item.wide {
  grid-column: span 2;
}

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 360ms ease, filter 360ms ease;
}

.gallery-item:hover img {
  transform: scale(1.055);
  filter: saturate(1.08);
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: 18px;
  align-items: stretch;
}

.contact-card {
  padding: clamp(30px, 5vw, 60px);
  color: #fff;
  background: var(--night);
  border-radius: 8px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.contact-card > * {
  position: relative;
  z-index: 1;
}

.contact-card::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -80px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(216, 168, 74, 0.28), transparent 68%);
  animation: soft-pulse 4.2s ease-in-out infinite;
  pointer-events: none;
}

.contact-card p {
  color: rgba(255, 255, 255, 0.76);
}

.contact-details {
  display: grid;
  gap: 10px;
}

.contact-details a,
.contact-details p {
  position: relative;
  margin: 0;
  padding: 22px 22px 22px 76px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.contact-details a:hover {
  border-color: rgba(11, 103, 178, 0.26);
  box-shadow: 0 16px 42px rgba(8, 17, 31, 0.1);
}

.detail-icon {
  position: absolute;
  top: 22px;
  left: 22px;
  width: 36px;
  height: 36px;
  padding: 8px;
  color: var(--red);
  background: rgba(207, 37, 38, 0.1);
  border-radius: 50%;
}

.contact-details span {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.contact-details strong {
  overflow-wrap: anywhere;
  font-size: 1.08rem;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 32px max(18px, calc((100vw - 1180px) / 2));
  color: rgba(255, 255, 255, 0.74);
  background: #050910;
}

.footer strong,
.footer a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
}

.footer div {
  display: grid;
  gap: 4px;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: none;
  place-items: center;
  padding: 72px 96px 42px;
  background: rgba(5, 9, 16, 0.92);
}

.lightbox.open {
  display: grid;
}

.lightbox-frame {
  display: grid;
  gap: 14px;
  margin: 0;
  justify-items: center;
}

.lightbox img {
  max-width: min(1120px, 94vw);
  max-height: 78vh;
  border-radius: 8px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.54);
}

.lightbox-caption {
  min-height: 22px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
  font-weight: 850;
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 46px;
  height: 46px;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  font-size: 1.8rem;
  cursor: pointer;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  cursor: pointer;
  font-size: 3rem;
  line-height: 1;
  transform: translateY(-50%);
  transition: background 180ms ease, transform 180ms ease;
}

.lightbox-nav:hover {
  background: rgba(216, 168, 74, 0.3);
  transform: translateY(-50%) scale(1.05);
}

.lightbox-prev {
  left: 22px;
}

.lightbox-next {
  right: 22px;
}

.js .reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 760ms ease, transform 760ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.js .reveal-left {
  transform: translateX(-28px);
}

.js .reveal-right {
  transform: translateX(28px);
}

.js .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes hero-drift {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.065) translateX(1.5%);
  }
}

@keyframes road-glow {
  0%,
  100% {
    opacity: 0.42;
    transform: rotate(-7deg) translateX(-22px);
  }

  50% {
    opacity: 0.92;
    transform: rotate(-7deg) translateX(22px);
  }
}

@keyframes panel-float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes soft-pulse {
  0%,
  100% {
    opacity: 0.5;
    transform: scale(0.9);
  }

  50% {
    opacity: 1;
    transform: scale(1.12);
  }
}

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

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

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

@media (max-width: 980px) {
  .topbar {
    position: absolute;
    flex-wrap: wrap;
  }

  .site-header {
    position: absolute;
    inset: 54px 14px auto;
    grid-template-columns: auto auto;
  }

  .menu-toggle {
    display: inline-grid;
    justify-self: end;
    gap: 7px;
    width: 46px;
    height: 46px;
    place-content: center;
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 6px;
  }

  .menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: currentColor;
  }

  .nav {
    display: none;
    grid-column: 1 / -1;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .nav.open {
    display: flex;
  }

  .nav a {
    padding: 14px 4px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .header-call {
    display: none;
  }

  .hero,
  .intro,
  .equipment-inner,
  .fleet,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 190px;
    padding-bottom: 178px;
  }

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

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

  .fleet-gallery {
    min-height: 520px;
  }

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

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

  .lightbox {
    padding: 72px 78px 34px;
  }
}

@media (max-width: 660px) {
  .topbar {
    display: none;
  }

  .site-header {
    inset: 12px 12px auto;
  }

  .brand img {
    width: 50px;
    height: 50px;
  }

  .brand span {
    max-width: 154px;
    white-space: normal;
    line-height: 1.06;
  }

  .hero {
    min-height: auto;
    padding: 138px 12px 34px;
    gap: 22px;
  }

  .hero::after {
    bottom: 20px;
    width: 92vw;
  }

  h1 {
    font-size: clamp(3.5rem, 18vw, 5.4rem);
  }

  h2 {
    font-size: clamp(2rem, 11vw, 3.4rem);
  }

  .hero-panel {
    padding: 22px;
    animation: none;
  }

  .hero-stats {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    grid-template-columns: 1fr;
  }

  .hero-stats div {
    padding: 15px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .hero-stats div:last-child {
    border-bottom: 0;
  }

  .section {
    width: min(100% - 24px, 1180px);
    padding: 68px 0;
  }

  .intro-image {
    min-height: 300px;
  }

  .service-grid,
  .equipment-list,
  .process-grid,
  .journey-lines,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .equipment,
  .destinations {
    padding: 72px 12px;
  }

  .fleet-gallery {
    min-height: 430px;
  }

  .fleet-main {
    width: 100%;
    height: 62%;
  }

  .fleet-small.one {
    top: auto;
    right: 0;
    bottom: 72px;
    width: 48%;
    height: 30%;
  }

  .fleet-small.two {
    right: auto;
    left: 0;
    width: 55%;
    height: 28%;
  }

  .gallery-grid {
    grid-auto-rows: 230px;
  }

  .gallery-item.wide,
  .gallery-item.tall {
    grid-column: auto;
    grid-row: auto;
  }

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

  .lightbox {
    padding: 70px 12px 30px;
  }

  .lightbox img {
    max-width: 100%;
    max-height: 72vh;
  }

  .lightbox-nav {
    top: auto;
    bottom: 22px;
    width: 48px;
    height: 48px;
    font-size: 2.5rem;
    transform: none;
  }

  .lightbox-nav:hover {
    transform: scale(1.05);
  }

  .lightbox-prev {
    left: 18px;
  }

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