@charset "utf-8";
/* ==========================================================================
   Private Jet Charters
   Black canvas, gold foil, hairline rules. No cards, no shadows, no radii.
   The visual language is an instrument bezel crossed with an editorial
   masthead. Every display heading is measured to fill its container exactly.
   ========================================================================== */

/* -------------------------------------------------------------- tokens */
:root {
  --ink:      #000000;
  --ink-1:    #060505;
  --ink-2:    #0B0A08;
  --ink-3:    #131110;
  --ink-4:    #1C1917;

  /* Luminance is deliberately held down. Pure black canvas is a brand rule,
     so the burden of comfort falls on everything sitting on it. Nothing here
     goes near white, and the display gold is a full step below the mark so a
     200px headline does not glare. */
  --gold-1:   #DCC79C;           /* hover and small bright accents */
  --gold:     #BE9F68;           /* display type, primary gold */
  --gold-2:   #A2854D;           /* kickers, small caps, rules */
  --gold-3:   #7E663A;           /* borders */
  --gold-4:   #574627;

  --bone:     #CFC9BE;           /* headings and emphasis, not white */
  --body:     #A8A29A;           /* running prose */
  --mute:     #8A847B;
  --faint:    #625D55;

  --line:     rgba(190, 159, 104, .14);
  --line-2:   rgba(207, 201, 190, .07);
  --line-3:   rgba(190, 159, 104, .30);

  /* Flat gold. No foil, no chrome, no gradient on type. The mark is gold,
     so the type is gold, and it holds its colour at every size. */
  --foil: var(--gold);

  --f-display: 'Bodoni Moda', 'Didot', 'Playfair Display', Georgia, serif;
  --f-sans:    'Archivo', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --f-mono:    'Martian Mono', ui-monospace, 'SFMono-Regular', Menlo, monospace;

  --gut:  clamp(1.15rem, 4vw, 3.5rem);
  --rail: 2.6rem;
  --dock: 0px;

  --ease: cubic-bezier(.22, 1, .36, 1);
  --slow: .72s var(--ease);
  --fast: .28s var(--ease);
}

*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--bone);
  font-family: var(--f-sans);
  font-size: clamp(1rem, .93rem + .3vw, 1.1rem);
  font-variation-settings: 'wght' 400, 'wdth' 100;
  line-height: 1.62;
  letter-spacing: .004em;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

img, svg, video { display: block; max-width: 100%; }
a { color: inherit; }

::selection { background: var(--gold-2); color: #000; }

:where(a, button, input, select, textarea, summary, [tabindex]):focus-visible {
  outline: 2px solid var(--gold-1);
  outline-offset: 3px;
}

/* --------------------------------------------------------------- layout */
.wrap {
  width: 100%;
  max-width: 1560px;
  margin-inline: auto;
  padding-inline: var(--gut);
}
.wrap--tight { max-width: 1180px; }
.wrap--text  { max-width: 74ch; }

.grid { display: grid; gap: clamp(1.5rem, 3vw, 3rem); }
.grid > * { min-width: 0; }
.g-2 { grid-template-columns: repeat(2, 1fr); }
.g-3 { grid-template-columns: repeat(3, 1fr); }
.g-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .g-3, .g-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .g-2, .g-3, .g-4 { grid-template-columns: 1fr; } }

.sect { padding-block: clamp(3.5rem, 8vw, 8rem); position: relative; }
.sect--hair { border-top: 1px solid var(--line); }

/* ------------------------------------------------------- fitted display */
/* Each line is measured at build time and scaled with container query units
   so it spans exactly 100% of its parent. JS then trims the residual to
   sub-pixel accuracy. white-space:nowrap makes a mid-word break impossible. */
.fit {
  container-type: inline-size;
  display: block;
  max-width: 100%;
  margin: 0;
  font-family: var(--f-display);
  font-variation-settings: 'opsz' 96;
  font-weight: 500;
  line-height: .88;
  letter-spacing: -.012em;
  text-transform: uppercase;
}
.fit__l {
  display: block;
  white-space: nowrap;
  max-width: 100%;
  font-size: calc(100cqi / (var(--ch) * var(--fk, .545)));
  background: var(--foil);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  padding-block: .012em;
}
@supports not (background-clip: text) { .fit__l { color: var(--gold); } }

.fit--sans { font-family: var(--f-sans); font-variation-settings: 'wght' 600, 'wdth' 112; letter-spacing: -.028em; }
.fit--sans .fit__l { font-size: calc(100cqi / (var(--ch) * var(--fk, .49))); }
.fit--plain .fit__l { background: none; color: var(--bone); -webkit-text-fill-color: currentColor; }
.fit--rule .fit__l + .fit__l { border-top: 1px solid var(--line); margin-top: .06em; padding-top: .06em; }

/* ------------------------------------------------------------ typography */
h1, h2, h3, h4, h5, h6 { margin: 0 0 .6em; font-weight: 600; line-height: 1.1; letter-spacing: -.02em; }

.h-sect {
  font-family: var(--f-display);
  font-variation-settings: 'opsz' 60;
  font-weight: 500;
  font-size: clamp(2rem, 1.1rem + 3.6vw, 4.1rem);
  line-height: .98;
  letter-spacing: -.018em;
  text-transform: uppercase;
  background: var(--foil);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.h-sub {
  font-family: var(--f-sans);
  font-variation-settings: 'wght' 600, 'wdth' 108;
  font-size: clamp(1.28rem, 1rem + 1.1vw, 1.9rem);
  letter-spacing: -.022em;
  color: var(--bone);
}
.h-min {
  font-family: var(--f-mono);
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--gold-2);
  margin: 0 0 1.1rem;
  display: flex;
  align-items: center;
  gap: .8rem;
}
.h-min::after { content: ''; flex: 1; height: 1px; background: var(--line); }
.h-min--plain::after { display: none; }

.lede {
  font-size: clamp(1.1rem, 1rem + .55vw, 1.42rem);
  line-height: 1.5;
  color: var(--bone);
  letter-spacing: -.008em;
  max-width: 62ch;
}
.prose { max-width: 74ch; }
.prose p { margin: 0 0 1.3em; color: var(--body); }
.prose p:first-child { margin-top: 0; }
.prose strong { color: var(--bone); font-variation-settings: 'wght' 620; }
.prose a { color: var(--gold); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: .22em; text-decoration-color: var(--line-3); transition: color var(--fast); }
.prose a:hover { color: var(--gold-1); text-decoration-color: var(--gold-1); }
.prose h2 { margin: 2.4em 0 .7em; }
.prose h3 { margin: 2em 0 .55em; font-family: var(--f-sans); font-variation-settings: 'wght' 620, 'wdth' 104; font-size: 1.18rem; letter-spacing: -.012em; color: var(--gold-1); }
.prose ul, .prose ol { margin: 0 0 1.4em; padding-left: 1.1rem; color: var(--body); }
.prose li { margin-bottom: .5em; }
.prose li::marker { color: var(--gold-3); }

.mono { font-family: var(--f-mono); font-variation-settings: 'wght' 400; letter-spacing: -.02em; }
.num  { font-family: var(--f-mono); font-feature-settings: 'tnum' 1; letter-spacing: -.03em; }
.dim  { color: var(--mute); }
.gold { color: var(--gold); }

/* ------------------------------------------------------------- topbar */
.top {
  position: fixed; inset: 0 0 auto; z-index: 90;
  background: transparent;
  transition: background var(--fast), border-color var(--fast);
  border-bottom: 1px solid transparent;
}
.top.is-solid { background: rgba(0,0,0,.94); border-bottom-color: var(--line); backdrop-filter: blur(16px); }
.top__in { display: flex; align-items: center; gap: clamp(1rem,2.4vw,2.6rem); height: 84px; }
@media (max-width: 900px) { .top__in { height: 66px; } }

.brand { display: block; flex: none; }
.brand img { height: 26px; width: auto; }
@media (max-width: 900px) { .brand img { height: 20px; } }

.nav { display: flex; align-items: center; gap: clamp(.6rem, 1.6vw, 1.9rem); margin-left: auto; }
@media (max-width: 1100px) { .nav--main { display: none; } }

.nav__b {
  appearance: none; background: none; border: 0; cursor: pointer;
  font-family: var(--f-mono); font-size: .655rem; font-weight: 500;
  letter-spacing: .2em; text-transform: uppercase; color: var(--bone);
  padding: .55rem 0; position: relative; text-decoration: none; white-space: nowrap;
}
.nav__b::after {
  content: ''; position: absolute; left: 0; right: 100%; bottom: .18rem;
  height: 1px; background: var(--gold); transition: right var(--fast);
}
.nav__b:hover::after, .nav__b[aria-expanded="true"]::after { right: 0; }
.nav__b[aria-expanded="true"] { color: var(--gold-1); }

/* ------------------------------------------------------------ buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .7rem;
  font-family: var(--f-mono); font-size: .68rem; font-weight: 500;
  letter-spacing: .19em; text-transform: uppercase; text-decoration: none;
  padding: 1.05rem 1.7rem; border: 1px solid var(--gold-3); color: var(--gold-1);
  background: transparent; cursor: pointer; position: relative; overflow: hidden;
  transition: color var(--fast), border-color var(--fast);
}
.btn span { position: relative; z-index: 1; }
.btn::before {
  content: ''; position: absolute; inset: 0; background: var(--gold);
  transform: scaleY(0); transform-origin: bottom; transition: transform .3s var(--ease);
}
.btn:hover { color: #0A0908; border-color: var(--gold); }
.btn:hover::before { transform: none; }
.btn--fill { background: var(--gold); color: #0A0908; border-color: var(--gold); font-weight: 600; }
.btn--fill::before { background: var(--gold-1); }
.btn--fill:hover { color: #0A0908; border-color: var(--gold-1); }
.btn--sm { padding: .74rem 1.2rem; font-size: .62rem; }
.btn--wide { width: 100%; }
.btn--ghost { border-color: var(--line-2); color: var(--bone); }

/* --------------------------------------------------------------- hero */
/* The header is fixed and transparent, so the hero reserves its height as
   padding and then centres the content in what is left. That keeps the block
   optically centred between the masthead and the fold at any viewport height,
   rather than anchored to the bottom with a dead zone above it. */
.hero {
  position: relative;
  min-height: min(94svh, 900px);
  display: flex;
  align-items: center;
  padding-top: 84px;
  overflow: hidden;
}
.hero--tall { min-height: min(100svh, 1040px); }
.hero--mid  { min-height: min(78svh, 780px); }
@media (max-width: 900px) { .hero { padding-top: 66px; } }

.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img {
  width: 100%; height: 100%; object-fit: cover; opacity: .74;
  filter: saturate(.52) contrast(1.04) brightness(.72);
}
.hero__bg::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(0,0,0,.34);
}
.hero__bg::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(0,0,0,.55) 0, transparent 22%, transparent 62%, #000 100%);
}
.hero__in {
  position: relative; z-index: 2; width: 100%;
  display: grid; grid-template-columns: minmax(0,1fr) 400px;
  gap: clamp(1.5rem, 3vw, 3.5rem); align-items: center;
  /* Symmetric, so the block sits dead centre in the space below the header.
     The scroll cue is absolutely positioned and takes no part in this. */
  padding-block: 2.5rem;
}
.hero__in > * { min-width: 0; }
@media (max-width: 1060px) { .hero__in { grid-template-columns: minmax(0,1fr); padding-block: 2rem 3rem; } }

.hero__kicker {
  font-family: var(--f-mono); font-size: .64rem; letter-spacing: .3em;
  text-transform: uppercase; color: var(--gold-2); margin: 0 0 1.4rem;
  display: flex; align-items: center; gap: .9rem; flex-wrap: wrap;
}
.hero__kicker span { display: inline-flex; align-items: center; gap: .55rem; }
.hero__kicker span::before { content: ''; width: 5px; height: 5px; background: var(--gold); transform: rotate(45deg); }
.hero__sub { max-width: 46ch; margin: 1.7rem 0 2.1rem; color: var(--bone); font-size: clamp(1rem, .95rem + .3vw, 1.16rem); }
.hero__cta { display: flex; gap: .9rem; flex-wrap: wrap; }

/* scroll cue */
.cue { position: absolute; left: var(--gut); bottom: 1.6rem; z-index: 3; display: flex; align-items: center; gap: .7rem; font-family: var(--f-mono); font-size: .58rem; letter-spacing: .24em; text-transform: uppercase; color: var(--faint); }
.cue i { display: block; width: 1px; height: 30px; background: var(--gold-3); animation: cue 2.6s var(--ease) infinite; transform-origin: top; }
@keyframes cue { 0%,100% { transform: scaleY(.4); opacity: .4; } 50% { transform: scaleY(1); opacity: 1; } }
@media (max-width: 1060px) { .cue { display: none; } }

/* --------------------------------------------------------- quote panel */
.qp {
  background: rgba(3,3,3,.93);
  backdrop-filter: blur(12px);
  border: 1px solid var(--line-3);
  padding: 1.5rem 1.4rem 1.4rem;
  position: relative;
}
.qp::before, .qp::after {
  content: ''; position: absolute; width: 11px; height: 11px; border: 1px solid var(--gold);
}
.qp::before { top: -1px; left: -1px; border-right: 0; border-bottom: 0; }
.qp::after  { bottom: -1px; right: -1px; border-left: 0; border-top: 0; }

.qp__head { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; margin-bottom: 1.1rem; }
.qp__title { font-family: var(--f-display); font-variation-settings: 'opsz' 40; font-size: 1.5rem; text-transform: uppercase; letter-spacing: -.01em; margin: 0; background: var(--foil); -webkit-background-clip: text; background-clip: text; color: transparent; }
.qp__free { font-family: var(--f-mono); font-size: .55rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-2); border: 1px solid var(--line-3); padding: .3rem .5rem; white-space: nowrap; }

.seg { display: grid; grid-auto-flow: column; border: 1px solid var(--line); margin-bottom: .9rem; }
.seg input { position: absolute; opacity: 0; pointer-events: none; }
.seg label {
  text-align: center; padding: .6rem .3rem; cursor: pointer;
  font-family: var(--f-mono); font-size: .56rem; letter-spacing: .13em; text-transform: uppercase;
  color: var(--mute); transition: color var(--fast), background var(--fast);
  border-right: 1px solid var(--line);
}
.seg label:last-of-type { border-right: 0; }
.seg input:checked + label { background: var(--foil); color: #000; font-weight: 600; }

.fld { margin-bottom: .72rem; position: relative; }
.fld > label, .lbl {
  display: block; font-family: var(--f-mono); font-size: .54rem; letter-spacing: .18em;
  text-transform: uppercase; color: var(--faint); margin-bottom: .32rem;
}
.inp {
  width: 100%; background: rgba(255,255,255,.028); border: 1px solid var(--line-2);
  color: var(--bone); font-family: var(--f-sans); font-size: .93rem;
  padding: .7rem .75rem; appearance: none; transition: border-color var(--fast), background var(--fast);
}
.inp::placeholder { color: #58534B; }
.inp:hover { border-color: var(--line); }
.inp:focus { border-color: var(--gold-2); background: rgba(190,159,104,.06); outline: none; }
select.inp {
  background-image: linear-gradient(45deg, transparent 50%, var(--gold-2) 50%), linear-gradient(135deg, var(--gold-2) 50%, transparent 50%);
  background-position: calc(100% - 15px) 50%, calc(100% - 10px) 50%;
  background-size: 5px 5px, 5px 5px; background-repeat: no-repeat; padding-right: 2rem;
}
.inp[type="date"]::-webkit-calendar-picker-indicator { filter: invert(74%) sepia(24%) saturate(560%) hue-rotate(357deg) brightness(92%); cursor: pointer; }
.row2 { display: grid; grid-template-columns: 1fr 1fr; gap: .6rem; }

.chips { display: flex; flex-wrap: wrap; gap: .34rem; }
.chips input { position: absolute; opacity: 0; pointer-events: none; }
.chips label {
  cursor: pointer; border: 1px solid var(--line-2); padding: .36rem .58rem;
  font-family: var(--f-mono); font-size: .53rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--mute); transition: all var(--fast); white-space: nowrap;
}
.chips label:hover { border-color: var(--line-3); color: var(--gold-1); }
.chips input:checked + label { background: var(--gold-2); border-color: var(--gold-2); color: #000; font-weight: 600; }

.qp__note { font-size: .7rem; line-height: 1.45; color: var(--faint); margin: .8rem 0 0; }
.qp__note b { color: var(--gold-2); font-weight: 500; }

.ac { position: absolute; z-index: 20; left: 0; right: 0; top: 100%; background: #0A0908; border: 1px solid var(--line-3); max-height: 224px; overflow-y: auto; display: none; }
.ac.is-open { display: block; }
.ac button { display: block; width: 100%; text-align: left; background: none; border: 0; border-bottom: 1px solid var(--line-2); color: var(--bone); padding: .55rem .7rem; cursor: pointer; font: inherit; font-size: .86rem; }
.ac button:hover, .ac button[aria-selected="true"] { background: rgba(190,159,104,.13); color: var(--gold-1); }
.ac button i { display: block; font-style: normal; font-family: var(--f-mono); font-size: .58rem; color: var(--faint); letter-spacing: .06em; }

/* ---------------------------------------------------------- data slab */
.slab { border-top: 1px solid var(--line); display: grid; grid-template-columns: repeat(4, 1fr); }
@media (max-width: 780px) { .slab { grid-template-columns: repeat(2, 1fr); } }
.slab__c { padding: 1.6rem 1.3rem; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.slab__c:last-child { border-right: 0; }
@media (max-width: 780px) { .slab__c:nth-child(2n) { border-right: 0; } }
.slab__k { font-family: var(--f-mono); font-size: .55rem; letter-spacing: .2em; text-transform: uppercase; color: var(--faint); margin-bottom: .5rem; }
.slab__v { font-family: var(--f-mono); font-variation-settings: 'wght' 500; font-size: clamp(1.35rem, 1rem + 1.3vw, 2.1rem); letter-spacing: -.04em; color: var(--gold-1); line-height: 1; }
.slab__v small { font-size: .48em; color: var(--mute); letter-spacing: .04em; margin-left: .25em; }
.slab__n { font-size: .76rem; color: var(--faint); margin-top: .5rem; line-height: 1.4; }

/* --------------------------------------------------------------- table */
.tbl { width: 100%; border-collapse: collapse; font-size: .88rem; }
.tbl caption { text-align: left; font-family: var(--f-mono); font-size: .58rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-2); padding-bottom: .9rem; }
.tbl th, .tbl td { text-align: left; padding: .82rem .9rem; border-bottom: 1px solid var(--line-2); vertical-align: top; }
.tbl thead th { font-family: var(--f-mono); font-size: .55rem; letter-spacing: .16em; text-transform: uppercase; color: var(--faint); font-weight: 500; border-bottom-color: var(--line); white-space: nowrap; }
.tbl tbody tr { transition: background var(--fast); }
.tbl tbody tr:hover { background: rgba(190,159,104,.05); }
.tbl td:first-child { color: var(--bone); }
.tbl .n { font-family: var(--f-mono); font-feature-settings: 'tnum' 1; letter-spacing: -.03em; white-space: nowrap; }
.scroll-x { overflow-x: auto; -webkit-overflow-scrolling: touch; }

.pill { font-family: var(--f-mono); font-size: .55rem; letter-spacing: .1em; text-transform: uppercase; padding: .22rem .45rem; border: 1px solid currentColor; white-space: nowrap; }
.pill--yes { color: #8FBF7F; }
.pill--maybe { color: var(--gold); }
.pill--no { color: #B87A6A; }

/* ---------------------------------------------------------------- list */
.rlist { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line); }
.rlist li { border-bottom: 1px solid var(--line-2); }
.rlist a {
  display: grid; grid-template-columns: 1fr auto auto; align-items: center; gap: 1.2rem;
  padding: 1rem .2rem; text-decoration: none; transition: padding var(--fast), background var(--fast);
}
.rlist a:hover { background: rgba(190,159,104,.05); padding-inline: .8rem .2rem; }
.rlist a:hover .rlist__t { color: var(--gold-1); }
.rlist__t { font-size: .98rem; color: var(--bone); transition: color var(--fast); }
.rlist__m { font-family: var(--f-mono); font-size: .68rem; color: var(--faint); letter-spacing: -.02em; white-space: nowrap; }
.rlist__x { color: var(--gold-3); font-family: var(--f-mono); font-size: .8rem; }
@media (max-width: 520px) { .rlist a { grid-template-columns: 1fr auto; } .rlist__x { display: none; } }

/* --------------------------------------------------------------- cards */
.tile { display: block; text-decoration: none; border: 1px solid var(--line-2); position: relative; overflow: hidden; transition: border-color var(--fast); }
.tile:hover { border-color: var(--line-3); }
.tile__img { aspect-ratio: 16/10; overflow: hidden; background: var(--ink-2); }
.tile__img img {
  width: 100%; height: 100%; object-fit: cover; opacity: .9;
  filter: saturate(.42) contrast(1.06) brightness(.66);
  transition: transform 1.1s var(--ease), filter var(--fast);
}
.tile:hover .tile__img img { transform: scale(1.03); filter: saturate(.62) contrast(1.04) brightness(.82); }
.tile__b { padding: 1.15rem 1.2rem 1.3rem; }
.tile__k { font-family: var(--f-mono); font-size: .55rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-2); margin-bottom: .5rem; }
.tile__t { font-size: 1.12rem; color: var(--bone); margin: 0 0 .4rem; letter-spacing: -.018em; font-variation-settings: 'wght' 560; }
.tile__d { font-size: .84rem; color: var(--mute); margin: 0; line-height: 1.5; }

/* ------------------------------------------------------------ callouts */
.note { border-left: 2px solid var(--gold-3); padding: .1rem 0 .1rem 1.3rem; margin: 2rem 0; }
.note__k { font-family: var(--f-mono); font-size: .56rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-2); margin-bottom: .5rem; }
.note p { margin: 0 0 .7em; color: var(--body); font-size: .95rem; }
.note p:last-child { margin-bottom: 0; }

.field { border: 1px solid var(--line); padding: 1.5rem 1.6rem; margin: 2.4rem 0; background: #070706; }
.field__k { font-family: var(--f-mono); font-size: .56rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-2); margin-bottom: .7rem; display: flex; align-items: center; gap: .6rem; }
.field__k::before { content: ''; width: 14px; height: 1px; background: var(--gold-2); }

/* ----------------------------------------------------------------- faq */
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line-2); }
.faq summary {
  cursor: pointer; list-style: none; padding: 1.15rem 2.5rem 1.15rem 0; position: relative;
  font-size: 1.02rem; color: var(--bone); letter-spacing: -.012em; font-variation-settings: 'wght' 520;
  transition: color var(--fast);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--gold-1); }
.faq summary::after {
  content: ''; position: absolute; right: .4rem; top: 50%; width: 11px; height: 11px;
  border-right: 1px solid var(--gold-2); border-bottom: 1px solid var(--gold-2);
  transform: translateY(-70%) rotate(45deg); transition: transform var(--fast);
}
.faq details[open] summary::after { transform: translateY(-30%) rotate(-135deg); }
.faq details > div { padding: 0 3rem 1.4rem 0; color: var(--body); font-size: .95rem; }
.faq details > div p { margin: 0 0 .8em; }
.faq details > div p:last-child { margin-bottom: 0; }

/* ---------------------------------------------------------------- chart */
.chart { border: 1px solid var(--line); position: relative; background: #000; }
.gc { width: 100%; height: auto; display: block; }
.gc-grat { fill: none; stroke: rgba(190,159,104,.10); stroke-width: .7; }
.gc-grat.is-eq { stroke: rgba(190,159,104,.20); }
.gc-limb { fill: none; stroke: rgba(190,159,104,.26); stroke-width: 1; }
.gc-track path { fill: none; stroke: var(--gold); stroke-width: 2; stroke-linecap: round; }
.gc-halo { fill: rgba(190,159,104,.07); }
.gc-cross { stroke: var(--gold-1); stroke-width: 1; fill: none; }
.gc-dot { fill: var(--gold-1); }
.gc-code { font-family: var(--f-mono); font-size: 15px; font-weight: 500; fill: var(--gold-1); letter-spacing: .04em; }
.gc-tick { stroke: rgba(190,159,104,.24); stroke-width: 1; }
.gc-readout text { font-family: var(--f-mono); font-size: 12.5px; fill: var(--faint); letter-spacing: .12em; text-transform: uppercase; }
.gcs { width: 100%; height: auto; }
.gcs-track path { fill: none; stroke: var(--gold-3); stroke-width: 1.4; }
.gcs-dot { fill: var(--gold); }
.gcs-dot.is-end { fill: var(--gold-1); }

.chart__bar { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: .85rem 1rem; border-top: 1px solid var(--line); font-family: var(--f-mono); font-size: .58rem; letter-spacing: .16em; text-transform: uppercase; color: var(--faint); }
.gmap { width: 100%; aspect-ratio: 16/9; background: #000; display: none; }
.gmap.is-on { display: block; }

/* ------------------------------------------------------------ breadcrumb */
.crumb { font-family: var(--f-mono); font-size: .58rem; letter-spacing: .14em; text-transform: uppercase; color: var(--faint); padding-block: 1.2rem; }
.crumb ol { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: .5rem; }
.crumb li::after { content: '/'; margin-left: .5rem; color: var(--gold-4); }
.crumb li:last-child::after { display: none; }
.crumb a { text-decoration: none; color: var(--mute); }
.crumb a:hover { color: var(--gold-1); }

/* --------------------------------------------------------------- footer */
.foot { border-top: 1px solid var(--line); padding-top: clamp(3rem, 6vw, 5rem); padding-bottom: calc(3rem + var(--dock)); background: var(--ink); }
.foot__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2.5rem; padding-bottom: 3rem; }
@media (max-width: 1000px) { .foot__top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .foot__top { grid-template-columns: 1fr; } }
.foot h2, .foot .foot__h { font-family: var(--f-mono); font-size: .58rem; letter-spacing: .22em; text-transform: uppercase; color: var(--gold-2); margin: 0 0 1.1rem; }
.foot ul { list-style: none; margin: 0; padding: 0; }
.foot li { margin-bottom: .45rem; }
.foot a { text-decoration: none; color: var(--mute); font-size: .88rem; transition: color var(--fast); }
.foot a:hover { color: var(--gold-1); }
.foot__bar { border-top: 1px solid var(--line-2); padding-top: 1.6rem; display: flex; flex-wrap: wrap; gap: 1rem 2rem; justify-content: space-between; font-family: var(--f-mono); font-size: .58rem; letter-spacing: .12em; text-transform: uppercase; color: var(--faint); }
.foot__legal { max-width: 78ch; font-family: var(--f-sans); font-size: .76rem; letter-spacing: 0; text-transform: none; color: var(--faint); line-height: 1.6; margin-top: 1.4rem; }

/* --------------------------------------------------------- mobile dock */
.dock {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 95; display: none;
  background: rgba(0,0,0,.96); backdrop-filter: blur(16px);
  border-top: 1px solid var(--line-3);
  padding-bottom: env(safe-area-inset-bottom, 0px);
}
.dock__in { display: grid; grid-auto-flow: column; grid-auto-columns: 1fr; }
.dock a, .dock button {
  appearance: none; background: none; border: 0; border-right: 1px solid var(--line-2);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .3rem;
  padding: .72rem .3rem .78rem; text-decoration: none; color: var(--mute); cursor: pointer;
  font-family: var(--f-mono); font-size: .5rem; letter-spacing: .14em; text-transform: uppercase;
}
.dock a:last-child, .dock button:last-child { border-right: 0; }
.dock svg { width: 17px; height: 17px; stroke: currentColor; fill: none; stroke-width: 1.4; }
.dock .is-key { background: var(--foil); color: #000; font-weight: 600; }
@media (max-width: 1100px) { .dock { display: block; } body { --dock: 62px; } }

/* ------------------------------------------------------------- burger */
.burger {
  appearance: none; background: none; border: 0; cursor: pointer;
  display: inline-flex; align-items: center; gap: .6rem; padding: .5rem 0;
  font-family: var(--f-mono); font-size: .655rem; font-weight: 500;
  letter-spacing: .2em; text-transform: uppercase; color: var(--bone);
}
.burger__ln { display: block; width: 21px; }
.burger__ln i { display: block; height: 1px; background: currentColor; transition: transform var(--fast); }
.burger__ln i:first-child { margin-bottom: 6px; }
.burger:hover { color: var(--gold-1); }
.burger:hover .burger__ln i:first-child { transform: translateX(-3px); }
.burger:hover .burger__ln i:last-child { transform: translateX(3px); }
@media (max-width: 560px) { .burger__tx { display: none; } .quote-cta { display: none; } }

/* -------------------------------------------------------- nav overlay */
.sheet {
  position: fixed; inset: 0; z-index: 99; background: var(--ink);
  overflow-y: auto; visibility: hidden; opacity: 0;
  transition: opacity .32s var(--ease), visibility .32s var(--ease);
}
.sheet.is-open { visibility: visible; opacity: 1; }
.nv { min-height: 100dvh; display: flex; flex-direction: column; }
.nv > .wrap { display: flex; flex-direction: column; flex: 1; min-height: 100dvh; }

.nv__hd {
  display: flex; align-items: center; justify-content: space-between;
  height: 84px; flex: none;
}
@media (max-width: 900px) { .nv__hd { height: 66px; } }
.sheet__x {
  appearance: none; background: none; border: 1px solid var(--line);
  color: var(--gold-1); width: 42px; height: 42px; cursor: pointer;
  font-size: .95rem; line-height: 1; display: grid; place-items: center;
  transition: border-color var(--fast), color var(--fast);
}
.sheet__x:hover { border-color: var(--gold-2); color: var(--gold-1); }

.nv__grid {
  flex: 1; display: grid; grid-template-columns: repeat(6, 1fr);
  gap: 2.4rem; padding-block: clamp(1.5rem, 4vh, 3.4rem) 2rem;
  align-content: start;
}
@media (max-width: 1180px) { .nv__grid { grid-template-columns: repeat(3, 1fr); gap: 2rem 2.4rem; } }
@media (max-width: 760px)  { .nv__grid { grid-template-columns: repeat(2, 1fr); gap: 1.8rem; } }
@media (max-width: 480px)  { .nv__grid { grid-template-columns: 1fr; gap: 1.4rem; } }

.nv__col ul { list-style: none; margin: 0; padding: 0; }
.nv__col li { margin: 0; }
.nv__h {
  display: block; text-decoration: none;
  font-family: var(--f-display); font-variation-settings: 'opsz' 40;
  font-weight: 500; font-size: clamp(1.5rem, 1.1rem + 1.1vw, 2.1rem);
  letter-spacing: -.014em; text-transform: uppercase; color: var(--gold);
  padding-bottom: .7rem; margin-bottom: .9rem; border-bottom: 1px solid var(--line);
  transition: color var(--fast);
}
.nv__h:hover { color: var(--gold-1); }
.nv__col a:not(.nv__h) {
  display: flex; align-items: baseline; justify-content: space-between; gap: 1rem;
  text-decoration: none; padding: .38rem 0; font-size: .93rem; color: var(--body);
  transition: color var(--fast), padding-left var(--fast);
}
.nv__col a:not(.nv__h):hover { color: var(--gold-1); padding-left: .45rem; }
.nv__col i {
  font-style: normal; font-family: var(--f-mono); font-size: .58rem;
  color: var(--faint); letter-spacing: .06em; white-space: nowrap;
}

.nv__ft {
  flex: none; border-top: 1px solid var(--line);
  padding-block: 1.6rem calc(2rem + env(safe-area-inset-bottom, 0px));
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; flex-wrap: wrap;
}
.nv__ft p {
  margin: 0; font-family: var(--f-mono); font-size: .58rem;
  letter-spacing: .18em; text-transform: uppercase; color: var(--faint);
}

/* --------------------------------------------------------- accessibility */
.skip { position: absolute; left: -9999px; top: 0; z-index: 200; background: var(--gold); color: #000; padding: .9rem 1.4rem; font-family: var(--f-mono); font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; }
.skip:focus { left: 0; }
.sr { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

.a11y-btn {
  position: fixed; right: 14px; bottom: calc(14px + var(--dock)); z-index: 96;
  width: 46px; height: 46px; border: 1px solid var(--gold-3); background: rgba(0,0,0,.92);
  color: var(--gold-1); cursor: pointer; display: grid; place-items: center;
  transition: border-color var(--fast), transform var(--fast);
}
.a11y-btn:hover { border-color: var(--gold-1); transform: translateY(-2px); }
.a11y-btn svg { width: 21px; height: 21px; }

.a11y {
  position: fixed; right: 14px; bottom: calc(68px + var(--dock)); z-index: 97; width: min(316px, calc(100vw - 28px));
  background: #050505; border: 1px solid var(--line-3); padding: 1.1rem 1.15rem 1.25rem;
  display: none; max-height: min(70vh, 620px); overflow-y: auto;
}
.a11y.is-open { display: block; }
.a11y h3 { font-family: var(--f-mono); font-size: .6rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-2); margin: 0 0 .9rem; }
.a11y__g { border-top: 1px solid var(--line-2); padding-top: .75rem; margin-top: .75rem; }
.a11y__g > span { display: block; font-family: var(--f-mono); font-size: .52rem; letter-spacing: .16em; text-transform: uppercase; color: var(--faint); margin-bottom: .5rem; }
.a11y__row { display: flex; gap: .35rem; flex-wrap: wrap; }
.a11y__t {
  appearance: none; background: none; border: 1px solid var(--line-2); color: var(--mute);
  font-family: var(--f-mono); font-size: .55rem; letter-spacing: .1em; text-transform: uppercase;
  padding: .42rem .6rem; cursor: pointer; transition: all var(--fast); flex: 1 1 auto;
}
.a11y__t:hover { border-color: var(--line-3); color: var(--gold-1); }
.a11y__t[aria-pressed="true"] { background: var(--gold-2); border-color: var(--gold-2); color: #000; font-weight: 600; }
.a11y__reset { margin-top: .9rem; }

/* accessibility modes, applied to <html> */
html.a11y-contrast { --bone: #FFFFFF; --mute: #E4E0D8; --faint: #C8C3B9; --line: rgba(255,214,140,.55); --line-2: rgba(255,255,255,.34); --line-3: rgba(255,214,140,.8); --gold: #FFD98A; --gold-1: #FFF3D8; --gold-2: #FFD98A; }
html.a11y-contrast .hero__bg img { opacity: .3; }
html.a11y-contrast .fit__l, html.a11y-contrast .h-sect, html.a11y-contrast .qp__title { background: none; color: #FFE9B8; -webkit-text-fill-color: #FFE9B8; }
html.a11y-links a:not(.btn):not(.brand) { text-decoration: underline !important; text-underline-offset: .18em; }
html.a11y-dys, html.a11y-dys body { font-family: 'Comic Sans MS', 'Trebuchet MS', Verdana, sans-serif !important; letter-spacing: .04em; word-spacing: .16em; }
html.a11y-dys .fit, html.a11y-dys .h-sect, html.a11y-dys .mono, html.a11y-dys .num { font-family: inherit !important; }
html.a11y-space { line-height: 2 !important; }
html.a11y-space p, html.a11y-space li { letter-spacing: .05em; word-spacing: .18em; }
html.a11y-ts-1 { font-size: 112.5%; }
html.a11y-ts-2 { font-size: 125%; }
html.a11y-ts-3 { font-size: 140%; }
html.a11y-cursor, html.a11y-cursor * { cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='38' height='38' viewBox='0 0 38 38'%3E%3Cpath d='M4 2l26 13-11 3-4 12z' fill='%23000' stroke='%23FFD98A' stroke-width='2.4'/%3E%3C/svg%3E") 3 2, auto !important; }
html.a11y-pause *, html.a11y-pause *::before, html.a11y-pause *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
}

/* ---------------------------------------------------------- translate */
.tr { position: relative; }
.tr__b { display: inline-flex; align-items: center; gap: .45rem; }
.tr__b svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 1.4; }
.tr__m { position: absolute; right: 0; top: calc(100% + .6rem); background: #050505; border: 1px solid var(--line-3); padding: .45rem; display: none; min-width: 186px; max-height: 300px; overflow-y: auto; z-index: 30; }
.tr__m.is-open { display: block; }
.tr__m button { display: block; width: 100%; text-align: left; background: none; border: 0; color: var(--mute); padding: .42rem .6rem; cursor: pointer; font-family: var(--f-sans); font-size: .82rem; }
.tr__m button:hover { background: rgba(190,159,104,.13); color: var(--gold-1); }
.tr__m button[aria-current="true"] { color: var(--gold-1); }
.tr__m button::after { content: attr(data-native); float: right; color: var(--faint); font-size: .72rem; }
#google_translate_element { position: absolute; left: -9999px; height: 0; overflow: hidden; }
.goog-te-banner-frame, .skiptranslate iframe { display: none !important; }
body { top: 0 !important; }

/* --------------------------------------------------------- split flap */
.flap { display: inline-flex; gap: 2px; }
.flap i { font-style: normal; display: inline-block; min-width: .62em; text-align: center; }

/* --------------------------------------------------------- reveal */
.rv { opacity: 0; transform: translateY(18px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.rv.is-in { opacity: 1; transform: none; }
.rv-d1 { transition-delay: .08s; } .rv-d2 { transition-delay: .16s; } .rv-d3 { transition-delay: .24s; }

/* ------------------------------------------------- slack absorbing column
   Two column sections go lopsided whenever one side is data driven. The cost
   driver list on a route page is always six to nine items while the
   seasonality note can be a single paragraph, which leaves a hole. A column
   marked .colfill stretches to the taller sibling and hands the leftover
   height to an image rather than to empty black. */
.grid--fill { align-items: stretch; }
.colfill { display: flex; flex-direction: column; }
.colfill__grow { flex: 1 1 auto; min-height: 260px; margin-top: 2.2rem; overflow: hidden; position: relative; border: 1px solid var(--line-2); }
.colfill__grow picture, .colfill__grow img { width: 100%; height: 100%; object-fit: cover; display: block; }
.colfill__grow figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: .9rem 1rem;
  background: linear-gradient(0deg, #000 10%, rgba(0,0,0,.6) 60%, transparent);
  font-family: var(--f-mono); font-size: .55rem; letter-spacing: .18em;
  text-transform: uppercase; color: var(--gold-2); margin: 0;
}
@media (max-width: 560px) { .colfill__grow { min-height: 200px; } }

.est { border: 1px solid var(--line-3); background: #050505; padding: 1.5rem 1.4rem 1.4rem; position: relative; }
.est::before, .est::after { content: ''; position: absolute; width: 11px; height: 11px; border: 1px solid var(--gold); }
.est::before { top: -1px; left: -1px; border-right: 0; border-bottom: 0; }
.est::after { bottom: -1px; right: -1px; border-left: 0; border-top: 0; }
.est__dl { margin: 0; border-top: 1px solid var(--line); }
.est__dl dt {
  font-family: var(--f-mono); font-size: .55rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold-2); padding-top: .85rem;
}
.est__dl dd { margin: .3rem 0 .85rem; padding-bottom: .85rem; border-bottom: 1px solid var(--line-2); color: var(--body); font-size: .9rem; line-height: 1.5; }

/* ------------------------------------------------------------- misc */
.hr { height: 1px; background: var(--line); border: 0; margin: 0; }
.tag { display: inline-flex; align-items: center; gap: .4rem; font-family: var(--f-mono); font-size: .55rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-2); }
.stack > * + * { margin-top: 1.15rem; }
.stack .fit + .lede { margin-top: 1.5rem; }
.center { text-align: center; }
.cols2 { columns: 2; column-gap: 3rem; }
@media (max-width: 700px) { .cols2 { columns: 1; } }

.marq { overflow: hidden; border-block: 1px solid var(--line); padding-block: .9rem; }
.marq__t { display: flex; gap: 3rem; width: max-content; animation: marq 46s linear infinite; }
.marq__t span { font-family: var(--f-mono); font-size: .62rem; letter-spacing: .22em; text-transform: uppercase; color: var(--faint); white-space: nowrap; display: flex; align-items: center; gap: 3rem; }
.marq__t span::after { content: ''; width: 4px; height: 4px; background: var(--gold-3); transform: rotate(45deg); }
@keyframes marq { to { transform: translateX(-50%); } }

.az { display: flex; flex-wrap: wrap; gap: .3rem; margin-bottom: 2rem; }
.az a { display: grid; place-items: center; width: 34px; height: 34px; border: 1px solid var(--line-2); text-decoration: none; font-family: var(--f-mono); font-size: .68rem; color: var(--mute); transition: all var(--fast); }
.az a:hover { border-color: var(--gold-2); color: var(--gold-1); }

@media print {
  .top, .dock, .a11y, .a11y-btn, .sheet, .cue, .qp { display: none !important; }
  body { background: #fff; color: #000; }
}
