:root {
  --navy: #0b1c33;
  --deep: #071221;
  --gold: #c6a15b;
  --gold-soft: #e0c48a;
  --ivory: #f3efe6;
  --muted: #8b97a8;
  --line: rgba(198, 161, 91, 0.28);
  --display: "Cormorant Garamond", Georgia, serif;
  --sans: "Sora", sans-serif;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ivory);
  background:
    radial-gradient(ellipse 70% 40% at 50% -10%, rgba(198, 161, 91, 0.18), transparent 55%),
    linear-gradient(180deg, var(--deep), var(--navy) 35%, #0e243f 70%, var(--deep));
  line-height: 1.65;
  overflow-x: hidden;
}

.grain {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 50;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

a { color: var(--gold-soft); }

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem clamp(1.2rem, 4vw, 3.2rem);
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(7, 18, 33, 0.85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.mark {
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--ivory);
  text-decoration: none;
  letter-spacing: 0.02em;
}

.mark em {
  font-style: italic;
  color: var(--gold);
}

.site-header nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.15rem;
}

.site-header nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.site-header nav a:hover { color: var(--gold); }

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
  position: relative;
}

.nav-toggle::before,
.nav-toggle::after {
  content: "";
  position: absolute;
  left: 11px;
  right: 11px;
  height: 1px;
  background: var(--ivory);
}

.nav-toggle::before { top: 16px; }
.nav-toggle::after { top: 24px; }

.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  padding: clamp(3rem, 8vh, 5.5rem) clamp(1.2rem, 4vw, 3.2rem) 3.5rem;
}

.brand-line {
  font-family: var(--display);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: 0.01em;
  margin: 0 0 1.2rem;
  color: var(--gold);
  max-width: 12ch;
}

.hero h1 {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(1.55rem, 3vw, 2.4rem);
  line-height: 1.18;
  margin: 0 0 1rem;
  max-width: 18ch;
}

.lead {
  color: var(--muted);
  max-width: 42ch;
  margin: 0 0 1.6rem;
  font-size: 1rem;
  font-weight: 300;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.gold-btn {
  display: inline-flex;
  padding: 0.95rem 1.35rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  color: var(--deep);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 12px 30px rgba(198, 161, 91, 0.25);
}

.gold-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(198, 161, 91, 0.35);
}

.text-btn {
  color: var(--ivory);
  text-decoration: none;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 0.15rem;
}

.hero-panel {
  position: relative;
}

.seat {
  border: 1px solid var(--line);
  background:
    linear-gradient(160deg, rgba(198, 161, 91, 0.12), transparent 45%),
    rgba(255, 255, 255, 0.03);
  padding: 1.8rem 1.6rem;
  min-height: 360px;
  position: relative;
  overflow: hidden;
}

.seat::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(198, 161, 91, 0.15);
  pointer-events: none;
}

.seat-label {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
}

.seat strong {
  display: block;
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
  line-height: 1.1;
}

.seat ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.7rem;
}

.seat li {
  padding-left: 1.2rem;
  position: relative;
  color: var(--muted);
  font-size: 0.95rem;
}

.seat li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
}

.runway {
  height: 3px;
  margin-top: 1.2rem;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  animation: runway 2.8s ease-in-out infinite;
}

@keyframes runway {
  0%, 100% { opacity: 0.35; transform: scaleX(0.7); }
  50% { opacity: 1; transform: scaleX(1); }
}

.ribbon {
  border-block: 1px solid var(--line);
  padding: 1rem clamp(1.2rem, 4vw, 3.2rem);
  text-align: center;
  background: rgba(198, 161, 91, 0.06);
}

.ribbon p {
  margin: 0;
  font-family: var(--display);
  font-size: 1.25rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-soft);
}

section {
  padding: clamp(3.8rem, 9vh, 6rem) clamp(1.2rem, 4vw, 3.2rem);
}

.eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

h2 {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(1.9rem, 3.6vw, 3rem);
  line-height: 1.12;
  margin: 0 0 1.3rem;
  max-width: 18ch;
}

.standard-copy {
  display: grid;
  gap: 1rem;
  max-width: 78ch;
}

.standard-copy p {
  margin: 0;
  color: var(--muted);
  font-weight: 300;
  font-size: 1.05rem;
}

.standard-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.9rem;
  margin-top: 2rem;
}

.standard-stats div {
  border: 1px solid var(--line);
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.025);
}

.standard-stats strong {
  display: block;
  font-family: var(--display);
  font-size: 2.6rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.standard-stats span {
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 300;
}

.svc {
  padding: 1.8rem 0;
  border-top: 1px solid var(--line);
}

.svc:last-of-type { border-bottom: 1px solid var(--line); }

.svc h3 {
  font-family: var(--display);
  font-size: 1.7rem;
  font-weight: 600;
  margin: 0 0 0.7rem;
  display: flex;
  gap: 0.85rem;
  align-items: baseline;
}

.svc h3 span {
  color: var(--gold);
  font-size: 1.2rem;
}

.svc > p {
  color: var(--muted);
  max-width: 72ch;
  font-weight: 300;
}

.svc ul {
  columns: 2;
  gap: 1.8rem;
  margin: 1rem 0 0;
  padding-left: 1.1rem;
  color: var(--ivory);
}

.svc li { margin-bottom: 0.4rem; }

.flight {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.9rem;
  counter-reset: leg;
}

.flight li {
  counter-increment: leg;
  border: 1px solid var(--line);
  padding: 1.3rem;
  background: rgba(198, 161, 91, 0.04);
  position: relative;
}

.flight li::before {
  content: "0" counter(leg);
  display: block;
  font-family: var(--display);
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.flight h3 {
  margin: 0 0 0.45rem;
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 600;
}

.flight p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 300;
}

.sector-grid,
.insight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.9rem;
}

.sector-grid article,
.insight-grid article {
  border: 1px solid var(--line);
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.025);
}

.sector-grid h3,
.insight-grid h3 {
  margin: 0 0 0.45rem;
  font-family: var(--display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--gold-soft);
}

.sector-grid p,
.insight-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 300;
}

.gate-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
}

.gate-list div {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.35rem;
  padding: 1.2rem 1.3rem;
  border-left: 2px solid var(--gold);
  background: rgba(255, 255, 255, 0.03);
}

.gate-list h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 600;
}

.gate-list p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 300;
}

.stories article {
  padding: 1.5rem 0;
  border-top: 1px solid var(--line);
}

.stories article:last-child { border-bottom: 1px solid var(--line); }

.stories h3 {
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0 0 0.55rem;
  color: var(--gold);
}

.stories p {
  margin: 0;
  color: var(--muted);
  max-width: 80ch;
  font-weight: 300;
}

.faq details {
  border: 1px solid var(--line);
  margin-bottom: 0.55rem;
  padding: 0.15rem 1rem;
  background: rgba(255, 255, 255, 0.025);
}

.faq summary {
  cursor: pointer;
  font-family: var(--display);
  font-size: 1.25rem;
  padding: 0.9rem 0;
  list-style: none;
}

.faq summary::-webkit-details-marker { display: none; }

.faq p {
  margin: 0 0 1rem;
  color: var(--muted);
  max-width: 70ch;
  font-weight: 300;
}

.contact-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
  border: 1px solid var(--line);
  padding: clamp(1.4rem, 3vw, 2.2rem);
  background:
    radial-gradient(circle at top left, rgba(198, 161, 91, 0.12), transparent 45%),
    rgba(255, 255, 255, 0.03);
}

.contact-panel address {
  font-style: normal;
  margin: 1.4rem 0 0.8rem;
  line-height: 1.8;
}

.email { font-weight: 500; }

.contact-panel form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

.contact-panel label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.contact-panel .full { grid-column: 1 / -1; }

.contact-panel input,
.contact-panel select,
.contact-panel textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: rgba(7, 18, 33, 0.8);
  color: var(--ivory);
  padding: 0.85rem;
  font: inherit;
}

.contact-panel button {
  grid-column: 1 / -1;
  justify-self: start;
  border: 0;
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  color: var(--deep);
  font: inherit;
  font-weight: 650;
  padding: 0.95rem 1.3rem;
  cursor: pointer;
}

.form-note {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--gold-soft);
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  padding: 2.4rem clamp(1.2rem, 4vw, 3.2rem) 3rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
}

.site-footer strong {
  font-family: var(--display);
  color: var(--ivory);
  font-size: 1.2rem;
}

.site-footer p:last-child { grid-column: 1 / -1; }

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 980px) {
  .hero,
  .standard-stats,
  .flight,
  .sector-grid,
  .insight-grid,
  .gate-list,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .svc ul { columns: 1; }

  .nav-toggle { display: block; }

  .site-header nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    padding: 1rem 1.2rem 1.3rem;
    background: rgba(7, 18, 33, 0.96);
    border-bottom: 1px solid var(--line);
  }

  .site-header nav.open { display: flex; }
}

@media (max-width: 640px) {
  .contact-panel form { grid-template-columns: 1fr; }
  .site-footer { grid-template-columns: 1fr; }
}
