:root {
  --bg: #0b0b0b;
  --bg-2: #111111;
  --bg-3: #171717;
  --ink: #0b0b0b;
  --cream: #f4efe6;
  --cream-dim: #d8d1c4;
  --muted: #9b9488;
  --gold: #c9a257;
  --gold-2: #e4c57a;
  --gold-3: #8d7036;
  --line: rgba(201, 162, 87, 0.22);
  --line-strong: rgba(201, 162, 87, 0.45);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  --serif: "Cormorant Garamond", "Iowan Old Style", Georgia, serif;
  --sans: "Outfit", "Avenir Next", "Segoe UI", sans-serif;
  --max: 1180px;
  --header: 84px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--cream);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font-family: inherit; }
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 500; letter-spacing: 0.01em; line-height: 1.12; margin: 0; }
p { margin: 0; }

.eyebrow {
  display: inline-block;
  color: var(--gold);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.wrap { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }
.wrap-wide { width: min(1280px, calc(100% - 40px)); margin: 0 auto; }

/* Header */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  height: var(--header);
  display: flex;
  align-items: center;
  background: linear-gradient(to bottom, rgba(11,11,11,0.72), rgba(11,11,11,0));
  transition: background 0.3s ease, border-color 0.3s ease, backdrop-filter 0.3s ease;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(11, 11, 11, 0.94);
  backdrop-filter: blur(16px);
  border-bottom-color: var(--line);
}
.header-inner {
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 28px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  color: var(--gold);
}
.brand svg { width: 52px; height: 32px; }
.brand-name {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.34em;
  color: var(--cream);
}
.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-left: auto;
}
.nav a {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--cream-dim);
  text-transform: uppercase;
  padding: 8px 0;
  border-bottom: 1px solid transparent;
}
.nav a:hover, .nav a[aria-current="page"] {
  color: var(--cream);
  border-bottom-color: var(--gold);
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 22px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  border: 1px solid var(--gold);
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s;
}
.btn-gold { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.btn-gold:hover { background: var(--gold-2); border-color: var(--gold-2); }
.btn-outline { background: transparent; color: var(--gold); }
.btn-outline:hover { background: var(--gold); color: var(--ink); }
.btn-ghost { background: transparent; color: var(--cream); border-color: rgba(244,239,230,0.35); }
.btn-ghost:hover { border-color: var(--cream); }
.header-cta { margin-left: 8px; flex-shrink: 0; }
.menu-toggle {
  display: none;
  margin-left: auto;
  width: 44px; height: 44px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--cream);
  cursor: pointer;
  padding: 0;
}
.menu-toggle span {
  display: block;
  width: 18px; height: 1px;
  background: currentColor;
  margin: 5px auto;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding: calc(var(--header) + 40px) 0 72px;
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 62% 50%;
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(11,11,11,0.82) 0%, rgba(11,11,11,0.38) 48%, rgba(11,11,11,0.55) 100%),
    linear-gradient(180deg, rgba(11,11,11,0.25) 0%, rgba(11,11,11,0.15) 40%, rgba(11,11,11,0.88) 100%);
}
.hero-content { position: relative; z-index: 1; width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }
.hero-kicker {
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 0.28em;
  font-weight: 500;
  margin-bottom: 22px;
}
.hero h1 {
  font-size: clamp(44px, 7vw, 84px);
  max-width: 12ch;
  color: var(--cream);
}
.hero .lede {
  margin-top: 22px;
  max-width: 38ch;
  font-size: 18px;
  color: var(--cream-dim);
  font-weight: 300;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }

/* Sections */
section { padding: 96px 0; }
.section-head { max-width: 640px; margin-bottom: 48px; }
.section-head h2 { font-size: clamp(34px, 4.4vw, 52px); }
.section-head p { margin-top: 16px; color: var(--muted); font-size: 17px; }
.gold-rule {
  width: 48px; height: 1px;
  background: var(--gold);
  margin: 0 0 22px;
}

/* Props */
.props { background: var(--bg); border-top: 1px solid var(--line); }
.prop-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--line);
}
.prop {
  padding: 36px 28px;
  border-right: 1px solid var(--line);
}
.prop:last-child { border-right: 0; }
.prop-icon { width: 36px; height: 36px; color: var(--gold); margin-bottom: 22px; }
.prop h3 {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.prop p { color: var(--muted); font-size: 15px; }

/* Perfect for */
.perfect { background: var(--bg-2); }
.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.card {
  background: var(--bg-3);
  border: 1px solid var(--line);
  padding: 28px 24px 32px;
  min-height: 168px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: border-color 0.2s, transform 0.2s;
}
.card:hover { border-color: var(--line-strong); transform: translateY(-2px); }
.card-num {
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 0.22em;
  margin-bottom: auto;
  padding-bottom: 24px;
}
.card h3 {
  font-size: 26px;
  font-weight: 500;
}

/* Why */
.why { background: var(--bg); }
.why-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.why-copy h2 { font-size: clamp(34px, 4.4vw, 50px); max-width: 16ch; }
.why-copy .intro { margin: 20px 0 28px; color: var(--cream-dim); font-size: 18px; max-width: 38ch; }
.bullets { list-style: none; padding: 0; margin: 0; }
.bullets li {
  position: relative;
  padding: 12px 0 12px 28px;
  border-top: 1px solid var(--line);
  color: var(--cream-dim);
}
.bullets li:last-child { border-bottom: 1px solid var(--line); }
.bullets li::before {
  content: "";
  position: absolute;
  left: 0; top: 20px;
  width: 10px; height: 1px;
  background: var(--gold);
}
.why-photo {
  position: relative;
  min-height: 460px;
}
.why-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  min-height: 460px;
  border: 1px solid var(--line);
}
.why-photo figcaption {
  position: absolute;
  left: 16px; bottom: 16px;
  background: rgba(11,11,11,0.72);
  border: 1px solid var(--line);
  padding: 8px 12px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

/* How */
.how { background: var(--bg-2); }
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  counter-reset: step;
}
.step {
  padding: 8px 28px 8px 0;
  border-right: 1px solid var(--line);
  padding-right: 28px;
  margin-right: 28px;
}
.step:last-child { border-right: 0; margin-right: 0; }
.step-num {
  font-family: var(--serif);
  font-size: 42px;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 16px;
}
.step h3 { font-size: 26px; margin-bottom: 10px; }
.step p { color: var(--muted); }

/* Form */
.request { background: var(--bg); }
.request-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 64px;
}
.form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 16px;
}
.field { display: flex; flex-direction: column; gap: 8px; }
.field.full { grid-column: 1 / -1; }
.field label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}
.field input, .field select, .field textarea {
  background: var(--bg-3);
  border: 1px solid var(--line);
  color: var(--cream);
  padding: 14px 14px;
  font-size: 15px;
  outline: none;
  width: 100%;
  appearance: none;
  border-radius: 0;
}
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--gold);
}
.form .btn { justify-self: start; margin-top: 8px; }
.form-success {
  display: none;
  border: 1px solid var(--line-strong);
  padding: 40px 32px;
  background: var(--bg-3);
}
.form-success.is-visible { display: block; }
.form.is-hidden { display: none; }
.form-success h3 { font-size: 34px; margin-bottom: 12px; }
.form-success p { color: var(--muted); }
.form-note { grid-column: 1 / -1; color: var(--muted); font-size: 13px; }

/* Experience band */
.experience { background: var(--bg-2); }
.exp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.exp-item {
  background: var(--bg-2);
  padding: 36px 28px;
}
.exp-item h3 { font-size: 24px; margin-bottom: 10px; }
.exp-item p { color: var(--muted); font-size: 15px; }

/* Trust */
.trust { background: var(--bg); text-align: center; padding: 80px 0; }
.trust p {
  font-family: var(--serif);
  font-size: clamp(26px, 3.4vw, 38px);
  max-width: 22ch;
  margin: 0 auto 32px;
}
.chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.chip {
  border: 1px solid var(--line);
  padding: 8px 14px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream-dim);
}

/* CTA */
.cta {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}
.cta-media { position: absolute; inset: 0; }
.cta-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; }
.cta-media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,11,11,0.55), rgba(11,11,11,0.82));
}
.cta-inner { position: relative; z-index: 1; text-align: center; }
.cta h2 { font-size: clamp(34px, 5vw, 58px); max-width: 16ch; margin: 0 auto 28px; }
.cta-points {
  display: flex;
  justify-content: center;
  gap: 36px;
  margin-top: 36px;
  color: var(--cream-dim);
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.cta-points span { position: relative; }
.cta-points span + span::before {
  content: "·";
  position: absolute;
  left: -22px;
  color: var(--gold);
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 48px 0 28px;
  background: var(--bg);
}
.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: flex-start;
  padding-bottom: 36px;
}
.footer-nav { display: flex; flex-wrap: wrap; gap: 8px 22px; }
.footer-nav a {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream-dim);
}
.footer-nav a:hover { color: var(--gold); }
.footer-mail { color: var(--gold); letter-spacing: 0.08em; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  border-top: 1px solid var(--line);
  padding-top: 22px;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.08em;
}
.credits { color: var(--muted); font-size: 11px; }

/* Page hero */
.page-hero {
  padding: calc(var(--header) + 72px) 0 64px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(11,11,11,0.2), var(--bg)),
    var(--bg-2);
}
.page-hero h1 { font-size: clamp(40px, 6vw, 72px); max-width: 14ch; }
.page-hero .lede { margin-top: 18px; max-width: 46ch; color: var(--cream-dim); font-size: 18px; }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.split img { width: 100%; height: 100%; object-fit: cover; min-height: 380px; border: 1px solid var(--line); }
.prose h2 { font-size: 36px; margin: 0 0 16px; }
.prose p + p { margin-top: 14px; }
.prose p { color: var(--cream-dim); }
.prose ul { margin: 18px 0 0; padding: 0; list-style: none; }
.prose li {
  padding: 10px 0 10px 22px;
  border-top: 1px solid var(--line);
  position: relative;
  color: var(--cream-dim);
}
.prose li::before {
  content: "";
  width: 8px; height: 1px;
  background: var(--gold);
  position: absolute;
  left: 0; top: 20px;
}

.airport-list { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.airport {
  border: 1px solid var(--line);
  padding: 24px;
  background: var(--bg-3);
}
.airport h3 { font-size: 22px; margin-bottom: 6px; }
.airport .code { color: var(--gold); font-size: 12px; letter-spacing: 0.2em; margin-bottom: 10px; }
.airport p { color: var(--muted); font-size: 14px; }

.legal { max-width: 760px; }
.legal h2 { font-size: 28px; margin: 36px 0 12px; }
.legal p { color: var(--muted); margin-bottom: 12px; }

.mobile-panel {
  display: none;
  position: fixed;
  inset: var(--header) 0 0 0;
  background: rgba(11,11,11,0.97);
  z-index: 40;
  padding: 28px 24px;
  flex-direction: column;
  gap: 8px;
}
.mobile-panel.open { display: flex; }
.mobile-panel a {
  font-size: 14px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

@media (max-width: 1024px) {
  .nav { display: none; }
  .header-cta { display: none; }
  .menu-toggle { display: block; }
  .prop-grid { grid-template-columns: 1fr 1fr; }
  .prop:nth-child(2) { border-right: 0; }
  .prop:nth-child(1), .prop:nth-child(2) { border-bottom: 1px solid var(--line); }
  .card-grid { grid-template-columns: 1fr 1fr; }
  .why-grid, .request-grid, .split { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr 1fr; gap: 32px 24px; }
  .step { border-right: 0; margin-right: 0; padding-right: 0; border-bottom: 1px solid var(--line); padding-bottom: 24px; }
  .exp-grid { grid-template-columns: 1fr 1fr; }
  .airport-list { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  :root { --header: 72px; }
  .brand-name { letter-spacing: 0.22em; font-size: 13px; }
  .hero { align-items: flex-end; padding-bottom: 48px; }
  .hero h1 { font-size: 42px; }
  section { padding: 72px 0; }
  .prop-grid, .card-grid, .steps, .exp-grid, .form { grid-template-columns: 1fr; }
  .prop { border-right: 0; border-bottom: 1px solid var(--line); }
  .prop:last-child { border-bottom: 0; }
  .cta-points { flex-direction: column; gap: 10px; }
  .cta-points span + span::before { display: none; }
  .footer-top { flex-direction: column; }
  .why-photo, .why-photo img, .split img { min-height: 280px; }
}
