:root {
  --navy: #041827;
  --deep: #06283d;
  --blue: #0b6f9d;
  --aqua: #28d7d0;
  --sand: #f4d49b;
  --foam: #f4fbfb;
  --ink: #10202b;
  --muted: #61717d;
  --white: #ffffff;
  --shadow: 0 24px 80px rgba(4, 24, 39, 0.22);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--foam);
}

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

.nav {
  position: fixed;
  z-index: 20;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1120px, calc(100% - 32px));
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px;
  color: var(--white);
  background: rgba(4, 24, 39, .58);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 40px rgba(0,0,0,.18);
}

.brand, .nav-links { display: flex; align-items: center; gap: 18px; }
.brand { font-weight: 900; letter-spacing: .08em; font-size: .86rem; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--aqua), var(--sand));
  color: var(--navy);
  font-size: .72rem;
}
.nav-links { font-weight: 700; font-size: .88rem; }
.nav-links a { opacity: .9; }
.nav-links a:hover { opacity: 1; }
.nav-cta {
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--white);
  color: var(--navy);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 75% 20%, rgba(40,215,208,.28), transparent 28%),
    linear-gradient(120deg, rgba(4,24,39,.84), rgba(6,40,61,.50) 48%, rgba(11,111,157,.18));
  pointer-events: none;
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 170px;
  background: linear-gradient(transparent, var(--foam));
}
.hero-content {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding-top: 80px;
}
.eyebrow {
  margin: 0 0 14px;
  color: var(--sand);
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-size: .78rem;
}
.eyebrow.dark { color: var(--blue); }
.hero h1 {
  max-width: 920px;
  margin: 0;
  font-size: clamp(3.2rem, 8vw, 7.6rem);
  line-height: .9;
  letter-spacing: -.07em;
}
.hero h1 span { color: var(--aqua); }
.hero-copy {
  max-width: 680px;
  margin: 28px 0 0;
  color: rgba(255,255,255,.86);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 1.55;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  font-weight: 900;
  cursor: pointer;
}
.primary { background: linear-gradient(135deg, var(--sand), var(--aqua)); color: var(--navy); }
.ghost { border: 1px solid rgba(255,255,255,.32); color: var(--white); background: rgba(255,255,255,.08); }
.trust-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.trust-row span { padding: 9px 13px; border-radius: 999px; background: rgba(255,255,255,.12); color: rgba(255,255,255,.86); }

.section { width: min(1120px, calc(100% - 32px)); margin: 0 auto; padding: 80px 0; }
.intro { display: grid; grid-template-columns: 1.05fr .95fr; gap: 42px; align-items: end; }
h2 { margin: 0; font-size: clamp(2rem, 4vw, 4.2rem); line-height: .98; letter-spacing: -.055em; }
.intro p:last-child { color: var(--muted); font-size: 1.1rem; line-height: 1.75; }
.pricing {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 28px;
  align-items: stretch;
  padding-top: 28px;
}
.pricing-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 360px;
  padding: 42px;
  border-radius: 34px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(4,24,39,.95), rgba(6,40,61,.88)),
    url("/assets/flybridge.jpg") center/cover;
  box-shadow: var(--shadow);
}
.pricing-copy p:last-child {
  max-width: 620px;
  margin: 22px 0 0;
  color: rgba(255,255,255,.78);
  font-size: 1.08rem;
  line-height: 1.7;
}
.price-card {
  display: grid;
  align-content: center;
  gap: 12px;
  min-height: 360px;
  padding: 34px;
  border-radius: 34px;
  background: var(--white);
  border: 1px solid rgba(6,40,61,.08);
  box-shadow: var(--shadow);
}
.price-label {
  color: var(--blue);
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: .76rem;
}
.price-card strong {
  color: var(--navy);
  font-size: clamp(3rem, 6vw, 4.9rem);
  line-height: .9;
  letter-spacing: -.07em;
}
.price-unit {
  color: var(--muted);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.price-floor {
  display: grid;
  gap: 6px;
  margin: 10px 0 12px;
  padding: 18px;
  border-radius: 22px;
  background: #f5fbfb;
  border: 1px solid rgba(6,40,61,.08);
}
.price-floor span { color: var(--muted); font-weight: 800; }
.price-floor b { color: var(--deep); font-size: 1.2rem; }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; padding-top: 20px; }
.gallery { display: grid; grid-template-columns: 1.15fr .85fr; gap: 18px; padding-top: 20px; }
.gallery-card {
  position: relative;
  min-height: 290px;
  overflow: hidden;
  border-radius: 34px;
  box-shadow: var(--shadow);
  background: var(--navy);
}
.gallery-card.featured { min-height: 520px; grid-row: span 2; }
.gallery-card img { width: 100%; height: 100%; object-fit: cover; display: block; position: absolute; inset: 0; }
.gallery-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(transparent 45%, rgba(4,24,39,.78)); }
.gallery-card span { position: absolute; z-index: 1; left: 22px; right: 22px; bottom: 20px; color: var(--white); font-weight: 900; font-size: 1.15rem; }
.card {
  min-height: 260px;
  padding: 28px;
  border-radius: 34px;
  background: var(--white);
  box-shadow: var(--shadow);
  border: 1px solid rgba(6,40,61,.08);
}
.card-icon { font-size: 2.2rem; }
.card h3 { margin: 22px 0 10px; font-size: 1.45rem; }
.card p { color: var(--muted); line-height: 1.65; }
.split { display: grid; grid-template-columns: 1.1fr .9fr; gap: 18px; }
.panel { border-radius: 38px; padding: 38px; min-height: 470px; }
.dark-panel { color: var(--white); background: linear-gradient(145deg, var(--navy), var(--deep)); box-shadow: var(--shadow); }
.checklist { display: grid; gap: 15px; padding: 0; margin: 28px 0 0; list-style: none; color: rgba(255,255,255,.84); }
.checklist li::before { content: "✓"; color: var(--aqua); font-weight: 900; margin-right: 10px; }
.image-panel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background:
    radial-gradient(circle at 30% 20%, rgba(244,212,155,.95), transparent 22%),
    linear-gradient(160deg, rgba(40,215,208,.85), rgba(11,111,157,.98));
  color: var(--navy);
}
.stat strong { display: block; font-size: 5rem; letter-spacing: -.08em; }
.stat span { font-weight: 900; text-transform: uppercase; letter-spacing: .08em; }
.wave-card { padding: 22px; border-radius: 24px; background: rgba(255,255,255,.55); font-size: 1.5rem; font-weight: 900; }
.faq { padding-top: 20px; }
details { margin-top: 14px; padding: 22px 24px; border-radius: 24px; background: var(--white); box-shadow: 0 12px 40px rgba(4,24,39,.08); }
summary { cursor: pointer; font-weight: 900; font-size: 1.08rem; }
details p { color: var(--muted); line-height: 1.65; }
.booking {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 28px;
  align-items: start;
}
.booking > div > p:last-child { color: var(--muted); line-height: 1.7; }
.form { display: grid; gap: 14px; padding: 24px; border-radius: 34px; background: var(--white); box-shadow: var(--shadow); }
label { display: grid; gap: 8px; font-weight: 800; color: var(--deep); }
input, textarea {
  width: 100%;
  border: 1px solid rgba(6,40,61,.14);
  border-radius: 18px;
  padding: 15px 16px;
  font: inherit;
  background: #f8fbfc;
}
textarea { min-height: 118px; resize: vertical; }
.footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 34px max(16px, calc((100vw - 1120px)/2));
  background: var(--navy);
  color: var(--white);
}
.footer div { display: grid; gap: 4px; }
.footer span, .footer a { color: rgba(255,255,255,.7); }

@media (max-width: 800px) {
  .nav { top: 10px; border-radius: 24px; align-items: flex-start; }
  .nav-links { gap: 10px; font-size: .78rem; }
  .nav-links a:not(.nav-cta) { display: none; }
  .hero { min-height: 88vh; }
  .intro, .pricing, .split, .booking { grid-template-columns: 1fr; }
  .cards, .gallery { grid-template-columns: 1fr; }
  .pricing-copy, .price-card { min-height: auto; padding: 28px; }
  .gallery-card, .gallery-card.featured { min-height: 300px; grid-row: auto; }
  .panel { min-height: auto; }
  .footer { flex-direction: column; }
}
