:root {
  --bg: #071019;
  --bg-soft: #0b1621;
  --panel: #0f1c28;
  --panel-2: #132231;
  --text: #f5f7fa;
  --muted: rgba(255, 255, 255, 0.72);
  --line: rgba(255, 255, 255, 0.1);
  --gold: #c9a96a;
  --gold-soft: #e3c58b;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  --radius: 24px;
  --max-width: 1240px;
  --nav-height: 86px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background:
    radial-gradient(circle at top, rgba(201, 169, 106, 0.08), transparent 22%),
    linear-gradient(180deg, #061019 0%, #08131d 40%, #071019 100%);
  color: var(--text);
  overflow-x: hidden;
}

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

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

.section-shell {
  width: min(var(--max-width), calc(100% - 48px));
  margin: 0 auto;
}

/* Loader */
#loader {
  position: fixed;
  inset: 0;
  background: #061019;
  z-index: 9999;
  display: grid;
  place-items: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

#loader.hide {
  opacity: 0;
  visibility: hidden;
}

.loader-line {
  width: 180px;
  height: 2px;
  background: rgba(255,255,255,0.12);
  position: relative;
  overflow: hidden;
}

.loader-line::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  animation: loading 1.2s linear infinite;
}

@keyframes loading {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1200;
  transition: background 0.35s ease, border-color 0.35s ease, padding 0.35s ease;
}

.navbar.scrolled {
  background: rgba(4, 10, 17, 0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.nav-inner {
  width: min(var(--max-width), calc(100% - 48px));
  min-height: var(--nav-height);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo-mark {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-weight: 800;
  letter-spacing: 0.08em;
  background: linear-gradient(135deg, rgba(201,169,106,0.22), rgba(255,255,255,0.04));
  border: 1px solid rgba(201,169,106,0.3);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-text strong {
  font-size: 0.98rem;
  font-weight: 700;
}

.logo-text small {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.7);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
}

.nav-links a {
  color: rgba(255,255,255,0.82);
  font-size: 0.96rem;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--gold-soft);
}

.nav-cta {
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid rgba(201,169,106,0.45);
  background: rgba(201,169,106,0.1);
  color: var(--text);
  transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.nav-cta:hover {
  transform: translateY(-2px);
  background: rgba(201,169,106,0.18);
  border-color: rgba(201,169,106,0.7);
}

.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

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

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 150px 24px 70px;
  overflow: hidden;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 8, 14, 0.86) 0%, rgba(3, 8, 14, 0.62) 42%, rgba(3, 8, 14, 0.7) 100%),
    linear-gradient(180deg, rgba(6, 11, 18, 0.25) 0%, rgba(6, 11, 18, 0.5) 100%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 120px 120px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.55), transparent 85%);
  pointer-events: none;
}

.hero-content,
.hero-bottom {
  position: relative;
  z-index: 2;
  width: min(var(--max-width), 100%);
  margin: 0 auto;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  color: var(--gold-soft);
}

.hero h1 {
  max-width: 820px;
  font-size: clamp(3.4rem, 7vw, 6.6rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
  font-weight: 800;
}

.hero-subtext {
  margin-top: 26px;
  max-width: 720px;
  font-size: 1.14rem;
  line-height: 1.8;
  color: var(--muted);
}

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

.btn {
  padding: 15px 24px;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

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

.btn-gold {
  color: #101010;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  box-shadow: 0 10px 30px rgba(201, 169, 106, 0.22);
}

.btn-dark {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: white;
}

.btn-dark:hover {
  background: rgba(255,255,255,0.1);
}

.hero-bottom {
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.hero-card {
  padding: 24px;
  border-radius: 22px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}

.hero-card span {
  display: block;
  margin-bottom: 10px;
  color: var(--gold-soft);
  font-size: 0.83rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-card strong {
  display: block;
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.88);
}

/* Intro */
.intro-band {
  padding: 42px 0 24px;
}

.intro-shell {
  border-top: 1px solid var(--line);
  padding-top: 34px;
}

.intro-band p {
  max-width: 860px;
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  line-height: 1.8;
  color: rgba(255,255,255,0.82);
}

/* Section heading */
.section-heading {
  max-width: 760px;
  margin-bottom: 60px;
}

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

.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

/* Services */
.services {
  padding: 120px 0;
}

.service-row {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 34px;
  align-items: center;
  margin-bottom: 34px;
}

.service-row.reverse {
  grid-template-columns: 1fr 1.15fr;
}

.service-row.reverse .service-image {
  order: 2;
}

.service-row.reverse .service-text {
  order: 1;
}

.service-image {
  overflow: hidden;
  border-radius: 26px;
  min-height: 520px;
  background: #101820;
  box-shadow: var(--shadow);
}

.service-image img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

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

.service-text {
  padding: 10px 12px;
}

.service-index {
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  color: var(--gold-soft);
  margin-bottom: 12px;
}

.service-text h3 {
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1.12;
  margin-bottom: 18px;
}

.service-text p:last-child {
  font-size: 1.04rem;
  line-height: 1.9;
  color: rgba(255,255,255,0.74);
}

/* Stats */
.stats {
  position: relative;
  padding: 120px 0;
  background:
    linear-gradient(180deg, rgba(6, 14, 22, 0.75), rgba(9, 18, 28, 0.92)),
    url("/static/images/fleet-lineup.jpg") center/cover no-repeat;
}

.stats-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(4,8,14,0.92), rgba(5,10,16,0.75));
}

.stats-inner {
  position: relative;
  z-index: 1;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 38px;
}

.stat {
  padding: 34px 26px;
  border-radius: 22px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  backdrop-filter: blur(10px);
}

.stat h3 {
  font-size: clamp(2.1rem, 4vw, 3.8rem);
  color: var(--gold-soft);
  line-height: 1;
  margin-bottom: 12px;
}

.stat p {
  color: rgba(255,255,255,0.78);
  font-size: 0.98rem;
}

/* Fleet */
.fleet {
  padding: 120px 0;
}

.fleet-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  gap: 18px;
}

.fleet-card {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  border-radius: 24px;
  background: #101820;
  box-shadow: var(--shadow);
}

.fleet-card.large {
  min-height: 660px;
}

.fleet-card img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

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

.fleet-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(5,10,16,0.78) 100%);
}

.fleet-overlay {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 1;
}

.fleet-overlay span {
  display: inline-block;
  color: var(--gold-soft);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.76rem;
  margin-bottom: 10px;
}

.fleet-overlay h3 {
  max-width: 420px;
  font-size: 1.55rem;
  line-height: 1.25;
}

/* Contact */
.contact-section {
  padding: 40px 0 120px;
}

.contact-card {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 28px;
  padding: 38px;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.contact-copy h2 {
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.08;
  margin-bottom: 18px;
  letter-spacing: -0.04em;
}

.contact-copy p:last-child {
  color: rgba(255,255,255,0.74);
  line-height: 1.85;
  max-width: 680px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
  padding: 18px 10px;
}

.contact-info p {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--gold-soft);
  font-size: 0.76rem;
}

.contact-info a:first-of-type {
  font-size: 1.1rem;
  color: white;
  word-break: break-word;
}

/* Footer */
.footer {
  border-top: 1px solid var(--line);
  padding: 28px 0;
}

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

.footer h3 {
  margin-bottom: 4px;
  font-size: 1rem;
}

.footer p,
.footer a {
  color: rgba(255,255,255,0.66);
  font-size: 0.95rem;
}

/* Reveal animations */
.reveal,
.reveal-left,
.reveal-right {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

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

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

.reveal.active,
.reveal-left.active,
.reveal-right.active {
  opacity: 1;
  transform: translate(0, 0);
}

/* Responsive */
@media (max-width: 1100px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .fleet-grid,
  .contact-card,
  .service-row,
  .service-row.reverse {
    grid-template-columns: 1fr;
  }

  .service-row.reverse .service-image,
  .service-row.reverse .service-text {
    order: initial;
  }

  .fleet-card.large {
    min-height: 420px;
  }

  .service-image {
    min-height: 380px;
  }
}

@media (max-width: 860px) {
  .nav-links,
  .nav-cta {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .navbar.open .nav-inner {
    align-items: flex-start;
  }

  .navbar.open .nav-links {
    display: flex;
    position: absolute;
    top: calc(var(--nav-height) - 4px);
    left: 24px;
    right: 24px;
    flex-direction: column;
    gap: 18px;
    padding: 24px;
    border-radius: 20px;
    background: rgba(8, 14, 21, 0.96);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: var(--shadow);
  }

  .hero {
    padding-top: 132px;
  }

  .hero h1 {
    font-size: clamp(2.8rem, 13vw, 4rem);
  }

  .hero-bottom {
    grid-template-columns: 1fr;
  }

  .contact-card {
    padding: 26px;
  }

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

@media (max-width: 560px) {
  .section-shell {
    width: min(var(--max-width), calc(100% - 28px));
  }

  .nav-inner {
    width: min(var(--max-width), calc(100% - 28px));
  }

  .hero-subtext,
  .service-text p:last-child,
  .contact-copy p:last-child,
  .intro-band p {
    font-size: 0.98rem;
    line-height: 1.8;
  }

  .stat {
    padding: 26px 18px;
  }

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