:root {
  --bg: #111726;
  --bg-soft: #1a2235;
  --card: #1a2438;
  --text: #f6f8ff;
  --muted: #c1cbe1;
  --gold: #d3b27b;
  --gold-strong: #e4c58b;
  --line: #3a4560;
  --shadow: 0 18px 48px rgba(0, 0, 0, 0.45);
  --logo-height: 63px;
  --pill-pad-y: 6px;
  --pill-pad-x: 6px;
  --pill-radius: 799px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  background:
    radial-gradient(circle at 10% 10%, rgba(211, 178, 123, 0.12) 0%, transparent 35%),
    radial-gradient(circle at 90% 85%, rgba(211, 178, 123, 0.08) 0%, transparent 30%),
    var(--bg);
  color: var(--text);
  line-height: 1.65;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(18, 25, 40, 0.86);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.site-header.scrolled {
  background: rgba(24, 34, 52, 0.95);
  border-bottom-color: rgba(211, 178, 123, 0.35);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.nav-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 86px;
  padding: 0.18rem 0;
}

.brand {
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.14em;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0;
  line-height: 1;
  background: #ffffff;
  border: 2px solid #ffffff;
  border-radius: var(--pill-radius);
  padding: var(--pill-pad-y) var(--pill-pad-x);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.22);
}

.brand-logo {
  height: var(--logo-height);
  width: auto;
  display: block;
  object-fit: contain;
  image-rendering: -webkit-optimize-contrast;
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
  opacity: 1;
  filter: none;
  transform-origin: center;
  animation: none;
  transition: transform 0.16s ease;
}

.brand:hover .brand-logo {
  transform: scale(1.02);
  opacity: 1;
  filter: none;
}

.brand-text {
  display: none;
}

.main-nav {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.main-nav a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 500;
  font-size: 0.94rem;
  letter-spacing: 0.02em;
  transition: color 0.2s ease;
  position: relative;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.22s ease;
}

.main-nav a:hover {
  color: var(--gold-strong);
}

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

.main-nav a.active {
  color: #f0dcb6;
}

.section {
  position: relative;
  padding: 6rem 0;
  border-bottom: 1px solid var(--line);
}

.section h2 {
  margin: 0;
  font-size: clamp(1.95rem, 3vw, 2.8rem);
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.section-dark {
  background: linear-gradient(180deg, #172036 0%, #141c2e 100%);
}

.section-dark a {
  color: var(--gold-strong);
  text-decoration: none;
}

.section-dark a:hover {
  text-decoration: underline;
}

.hero {
  min-height: 84vh;
  display: grid;
  place-items: center;
  text-align: center;
  background: url("images/hero-main.png") center/cover no-repeat;
}

.hero-content {
  max-width: 840px;
  position: relative;
  z-index: 2;
  background: linear-gradient(180deg, rgba(26, 35, 53, 0.3), rgba(26, 35, 53, 0.58));
  border: 1px solid rgba(211, 178, 123, 0.2);
  border-radius: 22px;
  padding: clamp(1.2rem, 3vw, 2rem);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-content::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 0%, rgba(211, 178, 123, 0.1) 48%, transparent 75%);
  transform: translateX(-110%);
  animation: heroShimmer 7s ease-in-out infinite;
  pointer-events: none;
}

.eyebrow {
  color: #1b2a44;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  margin: 0 0 0.8rem;
  font-size: 0.78rem;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.3);
}

h1 {
  font-size: clamp(2.6rem, 5.4vw, 4.4rem);
  margin: 0.2rem 0 0.85rem;
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 700;
  line-height: 1.1;
}

.hero p {
  color: #e6ecfa;
  margin-inline: auto;
  max-width: 640px;
}

.hero-meta {
  margin: 1rem 0 1.4rem;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.hero-meta span {
  border: 1px solid rgba(211, 178, 123, 0.4);
  border-radius: 999px;
  padding: 0.35rem 0.8rem;
  font-size: 0.78rem;
  color: #d9c297;
  background: rgba(24, 33, 50, 0.62);
}

.hero-subline {
  margin-top: -0.2rem;
  margin-bottom: 1.3rem;
  color: #f0dcb6;
  font-size: 0.93rem;
}

.btn-primary {
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  padding: 0.92rem 1.7rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  color: #0d1018;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-strong) 100%);
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(211, 178, 123, 0.3);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    filter 0.2s ease;
}

.btn-primary:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(211, 178, 123, 0.34);
}

.btn-primary:disabled {
  opacity: 0.72;
  cursor: not-allowed;
  transform: none;
  filter: none;
  box-shadow: 0 10px 24px rgba(211, 178, 123, 0.18);
}

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

.card {
  background: linear-gradient(180deg, rgba(27, 37, 56, 0.92), rgba(22, 31, 48, 0.95));
  border: 1px solid rgba(211, 178, 123, 0.2);
  border-radius: 16px;
  padding: 1.4rem;
  box-shadow: var(--shadow);
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease;
}

.card h3 {
  margin-top: 0;
  margin-bottom: 0.55rem;
  font-family: "Playfair Display", Georgia, serif;
  color: #f5e6ca;
  font-size: 1.35rem;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(228, 197, 139, 0.5);
  box-shadow: 0 22px 42px rgba(0, 0, 0, 0.45);
}

.images-grid img {
  width: 100%;
  height: 236px;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid rgba(211, 178, 123, 0.25);
}

.jet-image-card {
  margin: 0;
}

.jet-image-card figcaption {
  margin-top: 0.58rem;
  color: #d2ddf7;
  font-weight: 600;
}

.replace-note {
  margin-top: 1.2rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.fleet-intro {
  max-width: 720px;
  color: var(--muted);
  margin: 0 0 1.5rem;
  font-size: 0.98rem;
}

.fleet-carousel {
  margin-top: 0.5rem;
}

.fleet-carousel-top {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.65rem;
  align-items: stretch;
}

.fleet-nav {
  align-self: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(211, 178, 123, 0.45);
  background: rgba(18, 26, 42, 0.85);
  color: var(--gold-strong);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}

.fleet-nav:hover {
  background: rgba(211, 178, 123, 0.15);
  border-color: var(--gold);
  color: #f5e6ca;
}

.fleet-nav:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* Scroll-snap carousel: one slide = 100% of viewport width (works without transform; swipe on mobile) */
.fleet-viewport {
  display: flex;
  flex-flow: row nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  border-radius: 16px;
  border: 1px solid rgba(211, 178, 123, 0.22);
  background: rgba(10, 14, 24, 0.5);
  box-shadow: var(--shadow);
  width: 100%;
  max-width: 100%;
}

.fleet-viewport:focus-visible {
  outline: 2px solid rgba(211, 178, 123, 0.5);
  outline-offset: 2px;
}

.fleet-track {
  display: contents;
}

.fleet-slide {
  flex: 0 0 100%;
  flex-shrink: 0;
  min-width: 100%;
  max-width: 100%;
  width: 100%;
  margin: 0;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 280px;
  box-sizing: border-box;
}

.fleet-slide-media {
  position: relative;
  min-height: 240px;
  background: #0a0e18;
}

.fleet-slide-media img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
  display: block;
}

.fleet-slide-body {
  padding: 1.25rem 1.35rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(180deg, rgba(20, 28, 44, 0.95), rgba(14, 20, 34, 0.98));
}

.fleet-slide-body h3 {
  margin: 0 0 0.75rem;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.45rem;
  color: #f5e6ca;
}

.fleet-specs {
  margin: 0;
  padding-left: 1.1rem;
  color: #d2ddf7;
  font-size: 0.9rem;
  line-height: 1.55;
}

.fleet-specs li {
  margin-bottom: 0.35rem;
}

.fleet-specs strong {
  color: #e8eefc;
  font-weight: 600;
}

.fleet-dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.45rem;
  margin-top: 1rem;
}

.fleet-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 1px solid rgba(211, 178, 123, 0.5);
  background: transparent;
  padding: 0;
  cursor: pointer;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.fleet-dot[aria-current="true"] {
  background: var(--gold);
  border-color: var(--gold-strong);
  transform: scale(1.15);
}

.fleet-dot:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

@media (max-width: 900px) {
  .fleet-carousel-top {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .fleet-nav {
    justify-self: center;
    width: 40px;
    height: 40px;
  }

  .fleet-carousel-top .fleet-prev {
    order: 2;
  }

  .fleet-viewport {
    order: 1;
  }

  .fleet-carousel-top .fleet-next {
    order: 3;
  }

  .fleet-slide {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .fleet-slide-media {
    min-height: 200px;
  }

  .fleet-slide-media img {
    min-height: 200px;
    max-height: 240px;
  }
}

.quote-section {
  background: linear-gradient(180deg, #1a2438 0%, #151f31 100%);
}

.quote-form {
  margin-top: 1.4rem;
  display: grid;
  gap: 1rem;
  background: linear-gradient(180deg, rgba(28, 38, 57, 0.92), rgba(23, 32, 49, 0.95));
  border: 1px solid rgba(211, 178, 123, 0.24);
  border-radius: 18px;
  padding: clamp(1rem, 3vw, 1.6rem);
  box-shadow: var(--shadow);
}

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

label {
  display: grid;
  gap: 0.4rem;
  font-size: 0.9rem;
  color: #cbd6ee;
  font-weight: 500;
}

input,
select,
textarea {
  border: 1px solid #3a4662;
  border-radius: 10px;
  background: #1a2538;
  color: var(--text);
  padding: 0.75rem 0.84rem;
  font: inherit;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(200, 164, 106, 0.28);
  border-color: var(--gold);
}

.form-status {
  min-height: 1.5rem;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--muted);
}

.form-status.success {
  color: #61d995;
}

.form-status.error {
  color: #ff7a7a;
}

.to-top {
  position: absolute;
  right: 1.5rem;
  bottom: 1rem;
  text-decoration: none;
  color: #ddc08c;
  border: 1px solid rgba(211, 178, 123, 0.8);
  border-radius: 999px;
  padding: 0.35rem 0.75rem;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: all 0.2s ease;
}

.to-top:hover {
  color: #0d1018;
  background: var(--gold);
}

.section-kicker {
  margin: 0 0 0.6rem;
  color: var(--gold);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 600;
}

.site-footer {
  background: #0f1626;
  border-top: 1px solid rgba(211, 178, 123, 0.2);
  padding: 1.6rem 0 2rem;
}

.footer-content {
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-content p {
  margin: 0.35rem 0;
}

.footer-brand {
  color: var(--text);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@keyframes heroShimmer {
  0% {
    transform: translateX(-110%);
  }
  60% {
    transform: translateX(110%);
  }
  100% {
    transform: translateX(110%);
  }
}

@keyframes logoFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}

@media (max-width: 920px) {
  :root {
    --logo-height: 52px;
  }

  .grid-3,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .main-nav {
    gap: 0.65rem;
    justify-content: flex-end;
  }

  .nav-wrap {
    min-height: 76px;
  }

  .section {
    padding: 5rem 0;
  }
}

@media (max-width: 640px) {
  :root {
    --logo-height: 44px;
  }

  .nav-wrap {
    min-height: 84px;
    flex-direction: column;
    justify-content: center;
    gap: 0.08rem;
    padding: 0.14rem 0 0.2rem;
  }

  .main-nav {
    justify-content: center;
    gap: 0.55rem 0.8rem;
  }

  .main-nav a {
    font-size: 0.88rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .brand-logo {
    animation: none;
  }

  .fleet-viewport {
    scroll-behavior: auto;
  }
}

.hidden-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}
