:root {
  --ink: #10151a;
  --ink-soft: #27323b;
  --muted: #66737f;
  --paper: #f8f5ee;
  --paper-2: #eee8dc;
  --cream: #fffaf1;
  --line: rgba(16, 21, 26, 0.12);
  --gold: #b98b45;
  --gold-dark: #8a622c;
  --wood: #5b2f1e;
  --sky: #dbe8ef;
  --shadow: 0 24px 80px rgba(16, 21, 26, 0.18);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  width: 100%;
  padding: 22px clamp(20px, 4vw, 64px);
  color: var(--cream);
  transition: background 220ms ease, box-shadow 220ms ease, padding 220ms ease;
}

.site-header.is-scrolled,
.site-header.menu-active {
  padding-block: 14px;
  background: rgba(16, 21, 26, 0.92);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 210px;
}

.brand img {
  width: 210px;
  height: auto;
  filter: brightness(0) invert(1);
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 3vw, 38px);
  color: rgba(255, 250, 241, 0.78);
  font-size: 14px;
  font-weight: 600;
}

.desktop-nav a {
  transition: color 160ms ease;
}

.desktop-nav a:hover {
  color: var(--cream);
}

.header-cta,
.mobile-cta {
  justify-self: end;
  border: 1px solid rgba(255, 250, 241, 0.42);
  border-radius: 999px;
  padding: 11px 18px;
  color: var(--cream);
  font-size: 13px;
  font-weight: 700;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 250, 241, 0.34);
  border-radius: 50%;
  background: rgba(255, 250, 241, 0.08);
  color: var(--cream);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.mobile-menu {
  position: fixed;
  inset: 72px 16px auto 16px;
  z-index: 49;
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 16px;
  border: 1px solid rgba(255, 250, 241, 0.16);
  border-radius: 8px;
  background: rgba(16, 21, 26, 0.96);
  color: var(--cream);
  box-shadow: var(--shadow);
}

.mobile-menu a {
  padding: 13px 12px;
  border-radius: 6px;
  font-weight: 700;
}

.mobile-menu.is-open {
  display: flex;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  color: var(--cream);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

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

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(11, 16, 20, 0.88) 0%, rgba(11, 16, 20, 0.54) 45%, rgba(11, 16, 20, 0.28) 100%),
    linear-gradient(0deg, rgba(11, 16, 20, 0.74) 0%, rgba(11, 16, 20, 0.08) 46%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
  gap: clamp(28px, 5vw, 72px);
  align-items: end;
  min-height: 100svh;
  padding: 150px clamp(20px, 5vw, 80px) 70px;
}

.hero-copy {
  max-width: 760px;
}

.route-line,
.section-label {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: "Playfair Display", Georgia, serif;
  letter-spacing: 0;
  line-height: 1.02;
}

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(48px, 8vw, 96px);
}

.hero-copy > p:not(.route-line) {
  max-width: 640px;
  color: rgba(255, 250, 241, 0.82);
  font-size: clamp(17px, 2vw, 21px);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 0;
  border-radius: 999px;
  padding: 13px 22px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

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

.btn-primary {
  background: var(--gold);
  color: #15100a;
}

.btn-primary:hover {
  background: #d1a96a;
}

.btn:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.btn-secondary {
  border: 1px solid rgba(255, 250, 241, 0.44);
  background: rgba(255, 250, 241, 0.08);
  color: var(--cream);
}

.quote-panel {
  border: 1px solid rgba(255, 250, 241, 0.2);
  border-radius: var(--radius);
  padding: 24px;
  background: rgba(16, 21, 26, 0.72);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}

.quote-panel h2 {
  margin-bottom: 18px;
  color: var(--cream);
  font-family: Inter, system-ui, sans-serif;
  font-size: 20px;
  line-height: 1.2;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-grid label {
  display: grid;
  gap: 7px;
  color: rgba(255, 250, 241, 0.7);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.form-grid .wide {
  grid-column: 1 / -1;
}

input,
select {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(255, 250, 241, 0.16);
  border-radius: 6px;
  background: rgba(255, 250, 241, 0.08);
  color: var(--cream);
  padding: 0 12px;
  font-size: 14px;
  font-weight: 600;
  outline: none;
}

input::placeholder {
  color: rgba(255, 250, 241, 0.42);
}

select option {
  color: var(--ink);
}

.btn-full {
  width: 100%;
  margin-top: 16px;
}

.form-note {
  margin: 13px 0 0;
  color: rgba(255, 250, 241, 0.62);
  font-size: 13px;
  line-height: 1.45;
}

.form-note.is-success {
  color: #f8d79d;
}

.form-note.is-error {
  color: #ffb4a8;
}

.quick-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
  background: var(--ink);
  color: var(--cream);
}

.quick-stats div {
  min-height: 126px;
  padding: 28px clamp(20px, 4vw, 46px);
  border-right: 1px solid rgba(255, 250, 241, 0.12);
}

.quick-stats strong {
  display: block;
  font-size: clamp(21px, 2.4vw, 32px);
  line-height: 1.1;
}

.quick-stats span {
  display: block;
  margin-top: 10px;
  color: rgba(255, 250, 241, 0.62);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.section {
  padding: clamp(76px, 10vw, 132px) clamp(20px, 5vw, 80px);
}

.aircraft {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(30px, 6vw, 84px);
  align-items: center;
}

.section-copy h2,
.section-heading h2,
.destinations h2,
.contact h2,
.experience-copy h2 {
  max-width: 760px;
  font-size: clamp(36px, 5vw, 66px);
}

.section-copy p:not(.section-label),
.experience-copy p,
.contact-copy p {
  max-width: 610px;
  color: var(--ink-soft);
  font-size: 18px;
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.contact-links a {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 11px 15px;
  background: var(--cream);
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.aircraft-card {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--cream);
  box-shadow: var(--shadow);
}

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

.aircraft-specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}

.aircraft-specs div {
  padding: 20px;
  border-right: 1px solid var(--line);
}

.aircraft-specs span {
  display: block;
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.aircraft-specs strong {
  font-size: 15px;
}

.experience-band {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  background: var(--ink);
  color: var(--cream);
}

.experience-image img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
}

.experience-copy {
  align-self: center;
  padding: clamp(44px, 7vw, 92px);
}

.experience-copy p {
  color: rgba(255, 250, 241, 0.72);
}

.check-list {
  display: grid;
  gap: 13px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  color: rgba(255, 250, 241, 0.88);
  font-weight: 700;
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 2px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--gold);
  content: "";
}

.check-list li::after {
  position: absolute;
  left: 6px;
  top: 7px;
  width: 6px;
  height: 3px;
  border-left: 2px solid #15100a;
  border-bottom: 2px solid #15100a;
  content: "";
  transform: rotate(-45deg);
}

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

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

.service-grid article {
  min-height: 310px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  background: var(--cream);
}

.icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 28px;
  border-radius: 50%;
  background: var(--sky);
  color: var(--gold-dark);
}

.icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.service-grid h3 {
  margin-bottom: 12px;
  font-size: 24px;
  line-height: 1.18;
}

.service-grid p {
  color: var(--muted);
}

.destinations {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
  padding: clamp(70px, 9vw, 110px) clamp(20px, 5vw, 80px);
  background: var(--paper-2);
}

.route-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.route-grid span {
  display: grid;
  place-items: center;
  min-height: 74px;
  border: 1px solid rgba(16, 21, 26, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 250, 241, 0.62);
  font-weight: 800;
}

.gallery {
  background: var(--ink);
  color: var(--cream);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr 0.8fr;
  grid-auto-rows: 260px;
  gap: 14px;
}

.gallery-item {
  overflow: hidden;
  border: 0;
  border-radius: var(--radius);
  padding: 0;
  cursor: zoom-in;
  background: #000;
}

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

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

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

.gallery-item:hover img {
  opacity: 0.88;
  transform: scale(1.035);
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 450px);
  gap: clamp(30px, 6vw, 80px);
  align-items: center;
  padding: clamp(76px, 10vw, 128px) clamp(20px, 5vw, 80px);
}

.address-card {
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  padding: 28px;
  background: var(--cream);
  box-shadow: 0 18px 50px rgba(16, 21, 26, 0.1);
  color: var(--ink-soft);
  font-style: normal;
}

.address-card strong {
  display: block;
  margin-bottom: 14px;
  color: var(--ink);
  font-size: 18px;
}

.address-contact {
  display: grid;
  gap: 6px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-weight: 800;
}

.address-contact a {
  color: var(--ink);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 30px clamp(20px, 5vw, 80px);
  background: var(--ink);
  color: var(--cream);
}

.site-footer span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 250, 241, 0.62);
  font-size: 13px;
}

.footer-logo {
  width: 190px;
  height: auto;
  filter: brightness(0) invert(1);
}

.site-footer a {
  color: #f8d79d;
  font-weight: 800;
}

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

.lightbox {
  width: min(1100px, calc(100vw - 32px));
  border: 0;
  border-radius: var(--radius);
  padding: 0;
  background: transparent;
}

.lightbox::backdrop {
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(8px);
}

.lightbox img {
  width: 100%;
  max-height: 84vh;
  border-radius: var(--radius);
  object-fit: contain;
}

.lightbox button {
  position: absolute;
  top: -52px;
  right: 0;
  min-height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  cursor: pointer;
  padding: 0 16px;
  font-size: 13px;
  font-weight: 800;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
  }

  .hero-content,
  .aircraft,
  .experience-band,
  .destinations,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero-content {
    align-items: start;
    min-height: auto;
    padding-top: 132px;
  }

  .quote-panel {
    max-width: 620px;
  }

  .quick-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .experience-image img {
    min-height: 420px;
  }

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

  .gallery-item.large,
  .gallery-item.tall {
    grid-row: span 1;
  }
}

@media (max-width: 680px) {
  .brand {
    min-width: 150px;
  }

  .brand img {
    width: 150px;
  }

  .hero-content {
    padding-inline: 16px;
    padding-bottom: 36px;
  }

  h1 {
    font-size: 46px;
  }

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

  .btn,
  .header-cta {
    width: 100%;
  }

  .form-grid,
  .quick-stats,
  .aircraft-specs,
  .service-grid,
  .route-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .quick-stats div {
    min-height: 108px;
  }

  .section {
    padding-inline: 16px;
  }

  .service-grid article {
    min-height: auto;
  }

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

  .contact,
  .destinations,
  .experience-copy {
    padding-inline: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
