/* Solusjet — dark boho luxury */

:root {
  --bg: #0e0c09;
  --bg-2: #14110d;
  --bg-3: #1c1813;
  --panel: #171410;
  --ink: #f3ede1;
  --ink-dim: #b3a68f;
  --ink-faint: #7d7260;
  --gold: #c9a96a;
  --gold-2: #e2ca97;
  --gold-dark: #9a7c45;
  --line: rgba(201, 169, 106, 0.16);
  --line-soft: rgba(201, 169, 106, 0.09);
  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans: "Manrope", -apple-system, "Segoe UI", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow: 0 24px 60px -24px rgba(0, 0, 0, 0.65);
}

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

html { scroll-behavior: smooth; }
html:focus-within { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16.5px;
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
}

/* film grain */
body::after {
  content: "";
  position: fixed;
  inset: -50%;
  pointer-events: none;
  z-index: 2000;
  opacity: 0.20;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 0.79 0 0 0 0 0.66 0 0 0 0 0.42 0 0 0 0.05 0'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain 9s steps(6) infinite;
}
@keyframes grain {
  0%, 100% { transform: translate(0, 0); }
  20% { transform: translate(-3%, 2%); }
  40% { transform: translate(2%, -3%); }
  60% { transform: translate(-2%, -2%); }
  80% { transform: translate(3%, 3%); }
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }

::selection { background: rgba(201, 169, 106, 0.32); }

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: 0.005em;
}
h1 { font-size: clamp(2.6rem, 6.2vw, 4.9rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.55rem); }
h1 em, h2 em { font-style: italic; color: var(--gold-2); }

.skip {
  position: absolute; left: -999px; top: 0; z-index: 3000;
  background: var(--gold); color: var(--bg); padding: 10px 18px;
}
.skip:focus { left: 12px; top: 12px; }

.wrap { width: min(1180px, 92vw); margin-inline: auto; }
.wrap-narrow { width: min(760px, 92vw); margin-inline: auto; }

.section { padding: clamp(4.5rem, 9vw, 8rem) 0; position: relative; }
.section-tight { padding: clamp(3rem, 6vw, 5rem) 0; }

.eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 1.1rem;
}
.eyebrow::before { content: ""; width: 34px; height: 1px; background: var(--gold-dark); }

.lede { color: var(--ink-dim); font-size: clamp(1.02rem, 1.5vw, 1.18rem); max-width: 56ch; }

.section-head { margin-bottom: clamp(2.2rem, 4vw, 3.6rem); }
.section-head .lede { margin-top: 0.9rem; }

.center { text-align: center; }
.center .eyebrow { justify-content: center; }
.center .eyebrow::before { display: none; }
.center .lede { margin-inline: auto; }

/* buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid transparent;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.45s var(--ease);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.btn-gold { background: var(--gold); color: #171207; }
.btn-gold:hover { background: var(--gold-2); transform: translateY(-2px); box-shadow: 0 14px 34px -12px rgba(201, 169, 106, 0.45); }
.btn-line { border-color: var(--line); color: var(--ink); background: transparent; }
.btn-line:hover { border-color: var(--gold); color: var(--gold-2); transform: translateY(-2px); }
.btn[disabled] { opacity: 0.55; pointer-events: none; }

.cta-row { display: flex; gap: 14px; flex-wrap: wrap; }

.link-arrow { color: var(--gold); font-weight: 600; }
.link-arrow::after { content: " →"; transition: transform 0.3s var(--ease); display: inline-block; }
a:hover .link-arrow::after, .link-arrow:hover::after { transform: translateX(4px); }

/* ---------- header ---------- */
.site-head {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background 0.4s, border-color 0.4s, padding 0.4s;
  border-bottom: 1px solid transparent;
  padding: 18px 0;
}
.site-head.scrolled {
  background: rgba(14, 12, 9, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--line-soft);
  padding: 10px 0;
}
.head-in { display: flex; align-items: center; gap: 34px; }

.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-svg { width: 30px; height: 30px; flex: none; transition: transform 0.7s var(--ease); }
.brand:hover .brand-svg { transform: rotate(180deg); }
.brand-name {
  font-family: "Cinzel", var(--serif);
  font-weight: 400;
  font-size: 1.3rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  line-height: 1;
  color: var(--ink);
  transform: translateY(1px);
}

.nav { display: flex; gap: 26px; margin-left: auto; }
.nav a {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-dim);
  transition: color 0.3s;
  position: relative;
  padding: 6px 0;
}
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: right;
  transition: transform 0.4s var(--ease);
}
.nav a:hover, .nav a[aria-current] { color: var(--ink); }
.nav a:hover::after, .nav a[aria-current]::after { transform: scaleX(1); transform-origin: left; }

.head-cta { padding: 12px 22px; }

.nav-toggle {
  display: none;
  background: none; border: 0; cursor: pointer;
  width: 40px; height: 40px;
  flex-direction: column; justify-content: center; align-items: center; gap: 7px;
}
.nav-toggle span { width: 24px; height: 1.5px; background: var(--ink); transition: 0.35s var(--ease); }
.nav-toggle[aria-expanded="true"] span:first-child { transform: translateY(4.2px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4.2px) rotate(-45deg); }

/* ---------- hero ---------- */
.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 118px 0 48px;
}
.hero-bg {
  position: absolute; inset: 0; z-index: -2;
  background-size: cover;
  background-position: center;
  animation: kenburns 26s var(--ease) infinite alternate;
  filter: saturate(0.82) brightness(0.9);
}
@keyframes kenburns {
  from { transform: scale(1) translateY(0); }
  to { transform: scale(1.09) translateY(-1.5%); }
}
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(to right, rgba(14, 12, 9, 0.92) 0%, rgba(14, 12, 9, 0.55) 55%, rgba(14, 12, 9, 0.25) 100%),
    linear-gradient(to top, var(--bg) 0%, transparent 34%),
    linear-gradient(to bottom, rgba(14, 12, 9, 0.6) 0%, transparent 22%);
}
.hero-inner { position: relative; }
.hero h1 { max-width: 16ch; margin-bottom: 1rem; font-size: clamp(2.2rem, 4.6vw, 3.7rem); }
.hero .lede { margin-bottom: 2rem; font-size: clamp(0.98rem, 1.3vw, 1.1rem); }
.hero-est { width: 100%; }
.hero .eyebrow { margin-bottom: 0.8rem; }
.hero-note {
  margin-top: 2.6rem;
  display: flex; align-items: center; gap: 12px;
  color: var(--ink-faint);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
}
.hero-note svg { flex: none; }

/* ---------- marquee ---------- */
.marquee {
  border-block: 1px solid var(--line-soft);
  padding: 16px 0;
  overflow: hidden;
  background: var(--bg-2);
  position: relative;
}
.marquee-track {
  display: flex;
  gap: 3.4rem;
  width: max-content;
  animation: marquee 46s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }
.marquee-track span {
  font-family: var(--serif);
  font-size: 1.02rem;
  letter-spacing: 0.1em;
  color: var(--ink-dim);
  white-space: nowrap;
  display: inline-flex; align-items: center; gap: 3.4rem;
}
.marquee-track span::after { content: "✦"; color: var(--gold-dark); font-size: 0.7rem; }

/* ---------- estimate widget ---------- */
.est-card {
  background: linear-gradient(160deg, var(--bg-3), var(--panel) 60%);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: clamp(1.6rem, 3.4vw, 2.8rem);
  box-shadow: var(--shadow);
  position: relative;
}
.est-card::before {
  content: ""; position: absolute; top: 0; left: 24px; right: 24px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.55;
}
.est-grid {
  display: grid;
  grid-template-columns: 1.25fr 1.25fr 0.9fr 0.62fr auto;
  gap: 14px;
  align-items: end;
}
.field input[type="date"] { color-scheme: dark; min-width: 0; }
.field.has-ac { position: relative; }
.ac-list {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 60;
  background: #17130f;
  border: 1px solid var(--line);
  border-top: 0;
  border-radius: 0 0 3px 3px;
  max-height: 288px;
  overflow-y: auto;
  box-shadow: var(--shadow);
  display: none;
}
.ac-list.open { display: block; }
.ac-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding: 11px 15px;
  cursor: pointer;
  border-bottom: 1px solid var(--line-soft);
}
.ac-item:last-child { border-bottom: 0; }
.ac-item:hover, .ac-item.active { background: rgba(201, 169, 106, 0.1); }
.ac-city { color: var(--ink); font-weight: 600; font-size: 0.9rem; }
.ac-name { color: var(--ink-faint); font-size: 0.76rem; }
.ac-code { color: var(--gold); font-weight: 700; font-size: 0.76rem; letter-spacing: 0.1em; flex: none; }

.field label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 9px;
}
.field input, .field select, .field textarea {
  width: 100%;
  background: rgba(14, 12, 9, 0.55);
  border: 1px solid var(--line);
  border-radius: 2px;
  padding: 14px 16px;
  color: var(--ink);
  transition: border-color 0.3s, background 0.3s;
}
.field input::placeholder, .field textarea::placeholder { color: var(--ink-faint); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(14, 12, 9, 0.85);
}
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23c9a96a'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; }

.seg {
  display: inline-flex;
  border: 1px solid var(--line);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 20px;
}
.seg button {
  background: transparent;
  border: 0;
  padding: 9px 20px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-dim);
  cursor: pointer;
  transition: 0.3s;
}
.seg button[aria-pressed="true"] { background: var(--gold); color: #171207; }

.est-results { margin-top: 26px; display: none; }
.est-results.show { display: block; animation: rise 0.7s var(--ease); }
@keyframes rise { from { opacity: 0; transform: translateY(16px); } }
.est-route {
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--gold-2);
  margin-bottom: 16px;
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
}
.est-cats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.est-cat {
  border: 1px solid var(--line);
  border-radius: 3px;
  padding: 18px;
  background: rgba(14, 12, 9, 0.4);
  transition: border-color 0.35s, transform 0.35s var(--ease), background 0.35s;
  cursor: pointer;
  position: relative;
  text-align: left;
  font: inherit;
  color: inherit;
  width: 100%;
}
.est-cat:hover { border-color: var(--gold); transform: translateY(-3px); }
.est-cat:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
.est-cat[aria-pressed="true"] {
  border-color: var(--gold);
  background: rgba(201, 169, 106, 0.09);
  box-shadow: 0 0 0 1px var(--gold);
}
.est-cat .cat-check {
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-2);
  opacity: 0;
  transition: opacity 0.3s;
}
.est-cat[aria-pressed="true"] .cat-check { opacity: 1; }
.est-hint { font-size: 0.8rem; color: var(--ink-dim); margin-bottom: 12px; }
.est-cat h4 {
  font-size: 0.74rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--ink-dim); margin-bottom: 8px;
}
.est-cat .price { font-family: var(--serif); font-size: clamp(1.15rem, 2vw, 1.5rem); color: var(--ink); }
.est-cat .conf { font-size: 0.75rem; color: var(--ink-faint); margin-top: 6px; }
.est-disclaimer { font-size: 0.78rem; color: var(--ink-faint); margin-top: 16px; max-width: 70ch; }
.est-next { margin-top: 22px; display: flex; gap: 14px; flex-wrap: wrap; }
.est-error { color: #e0a48f; margin-top: 16px; font-size: 0.9rem; display: none; }
.est-error.show { display: block; }

.spinner {
  width: 16px; height: 16px;
  border: 2px solid rgba(23, 18, 7, 0.35);
  border-top-color: #171207;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  display: none;
}
.btn.loading .spinner { display: inline-block; }
.btn.loading .btn-label { opacity: 0.75; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- empty legs ---------- */
.legs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 18px;
}
.leg-card {
  border: 1px solid var(--line);
  background: linear-gradient(155deg, var(--bg-3), var(--panel));
  border-radius: 4px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.4s var(--ease), border-color 0.4s, box-shadow 0.4s;
  position: relative;
  overflow: hidden;
}
.leg-card:hover { transform: translateY(-5px); border-color: var(--gold); box-shadow: var(--shadow); }
.leg-route { display: grid; grid-template-columns: 1fr auto 1fr; gap: 10px; align-items: center; }
.leg-port { min-width: 0; }
.leg-port .code { font-family: var(--serif); font-size: 1.5rem; color: var(--ink); }
.leg-port .name { font-size: 0.74rem; color: var(--ink-faint); letter-spacing: 0.04em; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.leg-port:last-child { text-align: right; }
.leg-arrow { color: var(--gold); position: relative; width: 54px; height: 12px; flex: none; }
.leg-arrow::before { content: ""; position: absolute; top: 50%; left: 0; right: 8px; height: 1px; background: linear-gradient(90deg, transparent, var(--gold)); }
.leg-arrow::after { content: "➤"; position: absolute; right: 0; top: 50%; transform: translateY(-58%); font-size: 0.6rem; }
.leg-meta { display: flex; flex-wrap: wrap; gap: 8px 16px; font-size: 0.8rem; color: var(--ink-dim); }
.leg-meta strong { color: var(--ink); font-weight: 600; }
.leg-foot { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: auto; padding-top: 14px; border-top: 1px solid var(--line-soft); }
.leg-price { font-family: var(--serif); font-size: 1.45rem; color: var(--gold-2); }
.leg-aircraft {
  font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold); font-weight: 700;
}

.leg-skeleton {
  height: 190px;
  border-radius: 4px;
  border: 1px solid var(--line-soft);
  background: linear-gradient(100deg, var(--bg-3) 40%, var(--panel) 50%, var(--bg-3) 60%);
  background-size: 250% 100%;
  animation: shimmer 1.4s infinite;
}
@keyframes shimmer { to { background-position: -150% 0; } }
.legs-empty { color: var(--ink-dim); }
.legs-none { grid-column: 1 / -1; padding: 32px; border: 1px solid var(--line-soft); border-radius: 4px; background: var(--bg-2); }
.legs-none .legs-empty strong { color: var(--gold-2); }

.legs-search { margin-bottom: 30px; padding: clamp(1.3rem, 2.6vw, 2rem); }
.legs-search-grid { grid-template-columns: 1.3fr 1.3fr auto; align-items: end; }
.legs-count-field { text-align: right; min-width: 110px; }
.legs-count-num { font-family: var(--serif); font-size: 2rem; color: var(--gold-2); display: block; line-height: 1; }
.legs-count-lbl { font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink-faint); }
@media (max-width: 780px) {
  .legs-search-grid { grid-template-columns: 1fr; }
  .legs-count-field { text-align: left; }
}

/* ---------- fleet ---------- */
.fleet-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.fleet-card {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  min-height: 460px;
  display: flex;
  align-items: flex-end;
  isolation: isolate;
}
.fleet-card img {
  position: absolute; inset: 0; z-index: -1;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease), filter 1.2s;
  filter: saturate(0.75) brightness(0.72);
}
.fleet-card:hover img { transform: scale(1.06); filter: saturate(0.9) brightness(0.85); }
.fleet-card::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(to top, rgba(14, 12, 9, 0.94) 8%, rgba(14, 12, 9, 0.25) 55%, transparent);
}
.fleet-body { position: relative; z-index: 1; padding: 26px; }
.fleet-body h3 { margin-bottom: 6px; }
.fleet-body .fleet-sub { color: var(--gold-2); font-family: var(--serif); font-style: italic; margin-bottom: 12px; }
.fleet-body p { font-size: 0.88rem; color: var(--ink-dim); margin-bottom: 12px; }
.fleet-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.fleet-tags span {
  font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase;
  border: 1px solid var(--line); border-radius: 2px;
  padding: 5px 10px; color: var(--ink-dim);
}

/* ---------- steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; counter-reset: step; }
.step { position: relative; padding-top: 18px; }
.step::before {
  counter-increment: step;
  content: "0" counter(step);
  font-family: var(--serif);
  font-size: 4.4rem;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px var(--gold-dark);
  display: block;
  margin-bottom: 14px;
  opacity: 0.85;
}
.step h3 { font-size: 1.2rem; margin-bottom: 8px; }
.step p { font-size: 0.9rem; color: var(--ink-dim); }

/* ---------- stats ---------- */
.stats-band {
  border-block: 1px solid var(--line-soft);
  background:
    radial-gradient(60% 120% at 50% 0%, rgba(201, 169, 106, 0.07), transparent),
    var(--bg-2);
}
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat .num {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4.4vw, 3.4rem);
  color: var(--gold-2);
  display: block;
}
.stat .lbl {
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-dim);
  margin-top: 6px;
  display: block;
}

/* ---------- banners ---------- */
.banner { display: grid; place-items: center; gap: 10px; margin: clamp(2rem, 5vw, 3.4rem) auto; }
.banner-tag {
  font-size: 0.66rem; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--ink-faint);
}
.banner-970 { display: none; }
.banner-160 { display: none; }
.banner-320 { display: grid; }
@media (min-width: 1020px) {
  .banner-970 { display: grid; }
  .banner-160 { display: grid; position: sticky; top: 90px; }
  .banner-320.hide-desktop { display: none; }
}
.routes-layout { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: start; }
@media (min-width: 1020px) { .routes-layout { grid-template-columns: 1fr auto; } }

/* ---------- faq ---------- */
.faq { border-top: 1px solid var(--line-soft); }
.faq details { border-bottom: 1px solid var(--line-soft); }
.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 22px 40px 22px 0;
  font-family: var(--serif);
  font-size: 1.15rem;
  position: relative;
  transition: color 0.3s;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute; right: 4px; top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  font-size: 1.5rem;
  font-family: var(--sans);
  font-weight: 300;
  transition: transform 0.35s var(--ease);
}
.faq details[open] summary { color: var(--gold-2); }
.faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq .faq-a { padding: 0 0 24px; color: var(--ink-dim); max-width: 72ch; }

/* ---------- cta band ---------- */
.cta-band {
  background:
    radial-gradient(70% 140% at 50% 100%, rgba(201, 169, 106, 0.1), transparent),
    var(--bg-2);
  border-block: 1px solid var(--line-soft);
  text-align: center;
}
.cta-in h2 { margin-bottom: 0.8rem; }
.cta-in p { color: var(--ink-dim); margin-bottom: 2rem; }
.cta-in .cta-row { justify-content: center; }

/* ---------- footer ---------- */
.site-foot { border-top: 1px solid var(--line-soft); padding: clamp(3rem, 6vw, 4.5rem) 0 2rem; background: var(--bg-2); }
.foot-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 3rem; }
.foot-brand p { color: var(--ink-dim); font-size: 0.88rem; margin-top: 16px; max-width: 34ch; }
.foot-col h4 {
  font-size: 0.72rem; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px; font-weight: 700;
}
.foot-col a { display: block; padding: 5px 0; color: var(--ink-dim); font-size: 0.9rem; transition: color 0.3s; }
.foot-col a:hover { color: var(--gold-2); }
.foot-note { border-top: 1px solid var(--line-soft); padding-top: 1.6rem; display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.foot-note p { font-size: 0.76rem; color: var(--ink-faint); max-width: 72ch; }

/* ---------- page hero (inner pages) ---------- */
.page-hero {
  padding: clamp(9rem, 16vw, 12rem) 0 clamp(2.5rem, 5vw, 4rem);
  position: relative;
}
.page-hero.with-img { min-height: 62vh; display: flex; flex-direction: column; justify-content: flex-end; overflow: hidden; }
.page-hero .hero-bg { z-index: -2; }
.page-hero.with-img::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(to top, var(--bg) 4%, rgba(14, 12, 9, 0.55) 60%, rgba(14, 12, 9, 0.75));
}
.page-hero h1 { max-width: 17ch; }

/* ---------- crumbs ---------- */
.crumbs { display: flex; flex-wrap: wrap; gap: 10px; font-size: 0.78rem; color: var(--ink-faint); margin-bottom: 1.6rem; letter-spacing: 0.06em; }
.crumbs a { color: var(--ink-dim); }
.crumbs a:hover { color: var(--gold-2); }

/* ---------- blog ---------- */
.post-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(310px, 1fr)); gap: 20px; }
.post-card {
  border: 1px solid var(--line);
  background: linear-gradient(155deg, var(--bg-3), var(--panel));
  border-radius: 4px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.4s var(--ease), border-color 0.4s;
}
.post-card:hover { transform: translateY(-5px); border-color: var(--gold); }
.post-topic {
  font-size: 0.66rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); font-weight: 700;
  display: inline-block;
  margin-bottom: 4px;
}
.post-card h3 { font-size: 1.3rem; }
.post-card p { font-size: 0.88rem; color: var(--ink-dim); flex: 1; }
.post-meta { font-size: 0.76rem; color: var(--ink-faint); }

.article h1 { font-size: clamp(2rem, 4.4vw, 3.2rem); margin: 0.6rem 0 1rem; }
.article-meta { color: var(--ink-faint); font-size: 0.84rem; margin-bottom: 2.6rem; }
.article-body { color: #d9d0bf; }
.article-body h2 { margin: 2.6rem 0 1rem; font-size: clamp(1.5rem, 2.6vw, 2rem); }
.article-body h3 { margin: 2rem 0 0.8rem; }
.article-body p { margin-bottom: 1.15rem; }
.article-body ul, .article-body ol { margin: 0 0 1.3rem 1.2rem; }
.article-body li { margin-bottom: 0.5rem; }
.article-body strong { color: var(--ink); }
.article-body blockquote {
  border-left: 2px solid var(--gold);
  padding: 4px 0 4px 22px;
  margin: 1.8rem 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--gold-2);
}
.article-cta {
  margin: 3rem 0;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 30px;
  background: linear-gradient(150deg, var(--bg-3), var(--panel));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.article-cta h3 { margin-bottom: 6px; }
.article-cta p { color: var(--ink-dim); font-size: 0.9rem; max-width: 40ch; }

/* ---------- routes table ---------- */
.routes-table { width: 100%; border-collapse: collapse; }
.routes-table th, .routes-table td { text-align: left; padding: 16px 14px; border-bottom: 1px solid var(--line-soft); }
.routes-table th {
  font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); font-weight: 700;
}
.routes-table td { color: var(--ink-dim); font-size: 0.92rem; }
.routes-table td:first-child { color: var(--ink); font-family: var(--serif); font-size: 1.05rem; }
.routes-table tr { transition: background 0.3s; }
.routes-table tbody tr:hover { background: rgba(201, 169, 106, 0.04); }
.table-scroll { overflow-x: auto; }

/* ---------- prose (about/legal) ---------- */
.prose { color: #d9d0bf; }
.prose h2 { margin: 2.4rem 0 0.9rem; }
.prose h3 { margin: 1.8rem 0 0.7rem; }
.prose p { margin-bottom: 1.1rem; }
.prose ul { margin: 0 0 1.2rem 1.2rem; }
.prose a { color: var(--gold-2); border-bottom: 1px solid var(--gold-dark); }

/* ---------- contact ---------- */
.quote-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.quote-grid .field-full { grid-column: 1 / -1; }
.form-msg { margin-top: 18px; display: none; }
.form-msg.show { display: block; animation: rise 0.6s var(--ease); }
.form-msg.ok {
  border: 1px solid rgba(151, 190, 143, 0.4);
  background: rgba(151, 190, 143, 0.08);
  color: #c9e0c2;
  padding: 18px 22px;
  border-radius: 3px;
}
.form-msg.err {
  border: 1px solid rgba(224, 164, 143, 0.4);
  background: rgba(224, 164, 143, 0.07);
  color: #e0b4a0;
  padding: 18px 22px;
  border-radius: 3px;
}
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

/* ---------- split feature ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.split-img { border-radius: 4px; overflow: hidden; border: 1px solid var(--line-soft); position: relative; }
.split-img img { transition: transform 1.4s var(--ease); filter: saturate(0.8) brightness(0.88); width: 100%; height: 100%; object-fit: cover; }
.split-img:hover img { transform: scale(1.05); }
.split-img.tall { aspect-ratio: 4 / 5; }

/* ---------- reveal ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); transition-delay: var(--d, 0ms); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- responsive ---------- */
@media (max-width: 1020px) {
  .est-grid { grid-template-columns: 1fr 1fr; }
  .est-grid .est-submit { grid-column: 1 / -1; }
  .fleet-grid { grid-template-columns: 1fr; }
  .fleet-card { min-height: 340px; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 34px; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .split { grid-template-columns: 1fr; }
  .split-img.tall { aspect-ratio: 16 / 10; }
}
@media (max-width: 780px) {
  .nav {
    position: fixed;
    inset: 0;
    background: rgba(14, 12, 9, 0.97);
    backdrop-filter: blur(10px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s;
    z-index: 999;
  }
  .nav a { font-size: 1.2rem; padding: 14px; }
  .nav.open { opacity: 1; pointer-events: auto; }
  .nav-toggle { display: flex; margin-left: auto; z-index: 1001; }
  .head-cta { display: none; }
  .est-grid { grid-template-columns: 1fr; }
  .est-cats { grid-template-columns: 1fr; }
  .quote-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .foot-note { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}
