/* ============================================================
   FLEET PAGE STYLES
   Loaded after styles.css on individual vehicle pages.
   Reuses all design tokens from styles.css.
   ============================================================ */

/* ---------- Breadcrumb ---------- */
.breadcrumb {
  padding-top: calc(var(--header-h) + var(--space-3));
  padding-bottom: 0;
}
.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: var(--ink-2);
}
.breadcrumb li { display: inline-flex; align-items: center; gap: 8px; }
.breadcrumb li:not(:last-child)::after {
  content: "\203A";
  color: var(--ink-2);
  opacity: 0.6;
}
.breadcrumb a { color: var(--ink-2); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb [aria-current] { color: var(--ink-1); }

/* ---------- Vehicle hero ---------- */
.veh-hero {
  position: relative;
  padding-top: var(--space-4);
  padding-bottom: var(--space-5);
  overflow: hidden;
  isolation: isolate;
}
.veh-hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(1000px 560px at 68% 78%, rgba(224, 192, 120, 0.10), transparent 62%),
    radial-gradient(900px 600px at 12% 0%, rgba(205, 171, 99, 0.05), transparent 55%),
    linear-gradient(180deg, #0a0906 0%, var(--bg-0) 100%);
}
.veh-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: var(--space-4);
  align-items: center;
}
.veh-hero .eyebrow { color: var(--gold); }
.veh-hero h1 {
  font-size: clamp(2.6rem, 5.5vw, 4.6rem);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-2);
  text-shadow:
    0 0 1px rgba(245, 245, 242, 0.3),
    0 0 44px rgba(224, 192, 120, 0.16),
    0 0 90px rgba(224, 192, 120, 0.08);
}
.veh-tagline {
  font-size: var(--step-1);
  color: var(--ink-1);
  max-width: 48ch;
  margin-bottom: var(--space-3);
}
.veh-quickspecs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 30px;
  padding: var(--space-2) 0;
  margin-bottom: var(--space-3);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.veh-quickspecs div { display: flex; flex-direction: column; gap: 3px; }
.veh-quickspecs dt {
  font-family: var(--font-label);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-2);
}
.veh-quickspecs dd {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--gold);
  text-shadow: 0 0 16px rgba(205, 171, 99, 0.3);
}
.veh-hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; }

.veh-stage {
  position: relative;
  border-radius: var(--radius-l);
  overflow: hidden;
  background:
    radial-gradient(120% 90% at 50% 118%, rgba(255,255,255,0.16), transparent 60%),
    linear-gradient(180deg, #161619, #0c0c0e);
  border: 1px solid var(--hairline);
  box-shadow: var(--shadow-soft);
}
.veh-stage img { width: 100%; height: auto; display: block; }
.veh-stage .veh-badge {
  position: absolute;
  top: 16px; left: 16px;
  font-family: var(--font-label);
  font-size: 0.6rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-1);
  background: rgba(5,5,6,0.6);
  border: 1px solid var(--hairline);
  padding: 6px 12px;
  border-radius: 999px;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

/* ---------- Section intro shared ---------- */
.veh-section { padding-block: var(--space-5); position: relative; }
.veh-section:nth-of-type(even) { background: var(--bg-1); }

/* ---------- Overview prose ---------- */
.veh-overview-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: var(--space-4);
  align-items: start;
}
.veh-overview-body p { color: var(--ink-1); margin-bottom: var(--space-2); }
.veh-overview-body p:first-of-type { font-size: var(--step-1); color: var(--ink-0); }
.veh-highlights {
  border: 1px solid var(--hairline);
  border-radius: var(--radius-l);
  background: var(--glass);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  padding: 24px 26px;
}
.veh-highlights h3 { font-size: 1.1rem; margin-bottom: 16px; }
.veh-highlights ul { display: grid; gap: 12px; }
.veh-highlights li {
  position: relative;
  padding-left: 26px;
  color: var(--ink-1);
  font-size: 0.92rem;
}
.veh-highlights li::before {
  content: "";
  position: absolute;
  left: 0; top: 8px;
  width: 12px; height: 2px;
  background: var(--gold);
  box-shadow: 0 0 8px rgba(205, 171, 99, 0.6);
}

/* ---------- Spec table ---------- */
.spec-table {
  border: 1px solid var(--hairline);
  border-radius: var(--radius-l);
  overflow: hidden;
}
.spec-table .spec-row {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 20px;
  padding: 16px 24px;
  border-bottom: 1px solid var(--hairline);
}
.spec-table .spec-row:last-child { border-bottom: none; }
.spec-table .spec-row:nth-child(odd) { background: rgba(255,255,255,0.015); }
.spec-table dt {
  font-family: var(--font-label);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-2);
  align-self: center;
}
.spec-table dd {
  margin: 0;
  color: var(--ink-0);
  font-weight: 500;
  align-self: center;
}

/* ---------- Capacity / luggage diagram ---------- */
.capacity-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: var(--space-4);
  align-items: center;
}
.lug-diagram {
  border: 1px solid var(--hairline);
  border-radius: var(--radius-l);
  background:
    radial-gradient(600px 300px at 50% 0%, rgba(205,171,99,0.05), transparent 60%),
    var(--bg-2);
  padding: 28px;
}
.lug-diagram h3 { font-size: 1.05rem; margin-bottom: 20px; text-align: center; }
.lug-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
  border-top: 1px solid var(--hairline);
}
.lug-row:first-of-type { border-top: none; }
.lug-row .lug-label {
  flex: 0 0 96px;
  font-family: var(--font-label);
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-2);
}
.lug-icons { display: flex; flex-wrap: wrap; gap: 7px; align-items: center; }
.lug-icons svg { display: block; }
.lug-icons .ico-seat path,
.lug-icons .ico-seat rect { fill: var(--ink-1); }
.lug-icons .ico-bag-lg rect,
.lug-icons .ico-bag-lg path { fill: var(--gold); }
.lug-icons .ico-bag-sm rect,
.lug-icons .ico-bag-sm path { fill: #9a8352; }
.lug-count {
  margin-left: auto;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--ink-0);
}
.cap-note {
  color: var(--ink-1);
  font-size: 0.92rem;
  margin-top: var(--space-2);
}
.cap-copy .lead { font-size: var(--step-1); color: var(--ink-0); margin-bottom: var(--space-2); }
.cap-copy p { color: var(--ink-1); }

/* ---------- Configurator ---------- */
.configurator {
  border: 1px solid var(--hairline-strong);
  border-radius: var(--radius-l);
  background:
    radial-gradient(700px 360px at 20% 0%, rgba(205,171,99,0.08), transparent 60%),
    var(--glass-strong);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  padding: clamp(24px, 4vw, 40px);
  max-width: 760px;
  margin: 0 auto;
}
.configurator h3 { font-size: 1.4rem; margin-bottom: 6px; text-align: center; }
.configurator .cfg-sub { color: var(--ink-2); text-align: center; margin-bottom: var(--space-3); font-size: 0.9rem; }
.cfg-controls {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: var(--space-3);
}
.cfg-field {
  border: 1px solid var(--hairline);
  border-radius: var(--radius-m);
  background: rgba(5,5,6,0.4);
  padding: 18px 20px;
  text-align: center;
}
.cfg-field label {
  display: block;
  font-family: var(--font-label);
  font-size: 0.64rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-2);
  margin-bottom: 14px;
}
.cfg-stepper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}
.cfg-stepper button {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--hairline-strong);
  background: transparent;
  color: var(--ink-0);
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, transform 0.1s;
}
.cfg-stepper button:hover { border-color: var(--gold); background: rgba(205,171,99,0.1); }
.cfg-stepper button:active { transform: scale(0.94); }
.cfg-stepper button:disabled { opacity: 0.3; cursor: not-allowed; }
.cfg-value {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
  color: var(--ink-0);
  min-width: 2ch;
}
.cfg-result {
  border-radius: var(--radius-m);
  padding: 20px 24px;
  text-align: center;
  border: 1px solid var(--hairline);
  transition: background 0.3s, border-color 0.3s;
}
.cfg-result.fits {
  background: rgba(120, 180, 120, 0.08);
  border-color: rgba(140, 200, 140, 0.35);
}
.cfg-result.tight {
  background: rgba(205, 171, 99, 0.08);
  border-color: rgba(205, 171, 99, 0.4);
}
.cfg-result.over {
  background: rgba(200, 120, 120, 0.07);
  border-color: rgba(210, 140, 140, 0.35);
}
.cfg-result .cfg-status {
  font-family: var(--font-label);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.cfg-result.fits .cfg-status { color: #9ccf9c; }
.cfg-result.tight .cfg-status { color: var(--gold); }
.cfg-result.over .cfg-status { color: #d9a3a3; }
.cfg-result .cfg-msg { color: var(--ink-0); font-size: 1.02rem; margin: 0; }
.cfg-result .cfg-msg strong { color: var(--gold); }
.cfg-suggest {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  font-family: var(--font-label);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  color: var(--gold);
  border-bottom: 1px solid var(--gold-soft);
  padding-bottom: 2px;
}
.cfg-suggest:hover { border-color: var(--gold); }
.cfg-suggest::after { content: "\2192"; }
.cfg-cta { text-align: center; margin-top: var(--space-3); }

/* ---------- Use cases ---------- */
.usecase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}
.usecase {
  display: block;
  border: 1px solid var(--hairline);
  border-radius: var(--radius-l);
  padding: 26px 24px;
  background: var(--bg-2);
  transition: transform 0.3s var(--ease-out), border-color 0.3s, background 0.3s;
}
.usecase:hover {
  transform: translateY(-4px);
  border-color: var(--gold-soft);
  background: var(--bg-3, #17171b);
}
.usecase .uc-icon {
  width: 34px; height: 34px;
  color: var(--gold);
  margin-bottom: 16px;
}
.usecase h3 { font-size: 1.12rem; margin-bottom: 8px; }
.usecase p { color: var(--ink-1); font-size: 0.9rem; margin: 0; }
.usecase .uc-go {
  display: inline-block;
  margin-top: 14px;
  font-family: var(--font-label);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  color: var(--gold);
}
.usecase .uc-go::after { content: " \2192"; }

/* ---------- Included list ---------- */
.included-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}
.included-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px 20px;
  border: 1px solid var(--hairline);
  border-radius: var(--radius-m);
  background: var(--bg-2);
}
.included-item .inc-check {
  flex: 0 0 22px;
  width: 22px; height: 22px;
  color: var(--gold);
  margin-top: 1px;
}
.included-item h3 { font-size: 0.98rem; margin-bottom: 4px; }
.included-item p { color: var(--ink-2); font-size: 0.84rem; margin: 0; }

/* ---------- Routes ---------- */
.routes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}
.route-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  border: 1px solid var(--hairline);
  border-radius: var(--radius-m);
  background: var(--bg-2);
  transition: border-color 0.3s, transform 0.3s var(--ease-out);
}
.route-card:hover { border-color: var(--gold-soft); transform: translateY(-3px); }
.route-card .rt-path { display: flex; flex-direction: column; gap: 3px; }
.route-card .rt-from { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-2); }
.route-card .rt-to { font-family: var(--font-display); font-size: 1.05rem; color: var(--ink-0); }
.route-card .rt-quote {
  font-family: var(--font-label);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--gold);
  white-space: nowrap;
}

/* ---------- Comparison ---------- */
.compare-wrap {
  border: 1px solid var(--hairline);
  border-radius: var(--radius-l);
  overflow: hidden;
}
.compare-table { width: 100%; border-collapse: collapse; }
.compare-table th, .compare-table td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid var(--hairline);
  font-size: 0.9rem;
}
.compare-table thead th {
  font-family: var(--font-label);
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-2);
  background: rgba(255,255,255,0.02);
}
.compare-table thead th.is-this { color: var(--gold); }
.compare-table tbody th {
  font-family: var(--font-label);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-2);
  font-weight: 400;
}
.compare-table td { color: var(--ink-1); }
.compare-table td.is-this { color: var(--ink-0); font-weight: 500; background: rgba(205,171,99,0.05); }
.compare-table tbody tr:last-child th,
.compare-table tbody tr:last-child td { border-bottom: none; }
.compare-table .cmp-link { color: var(--gold); }

/* ---------- Related fleet ---------- */
.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 18px;
}
.related-card {
  display: block;
  border: 1px solid var(--hairline);
  border-radius: var(--radius-l);
  overflow: hidden;
  background: var(--bg-2);
  transition: transform 0.3s var(--ease-out), border-color 0.3s;
}
.related-card:hover { transform: translateY(-4px); border-color: var(--gold-soft); }
.related-card .rc-img {
  aspect-ratio: 750 / 403;
  background: linear-gradient(180deg, #161619, #0c0c0e);
  overflow: hidden;
}
.related-card .rc-img img { width: 100%; height: 100%; object-fit: cover; }
.related-card .rc-body { padding: 18px 20px; }
.related-card .rc-type {
  font-family: var(--font-label);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.related-card h3 { font-size: 1.08rem; margin-bottom: 6px; }
.related-card .rc-cap { color: var(--ink-2); font-size: 0.82rem; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .veh-hero-inner,
  .veh-overview-grid,
  .capacity-grid { grid-template-columns: 1fr; }
  .veh-hero-inner .veh-stage { order: -1; max-width: 560px; }
}
@media (max-width: 640px) {
  .cfg-controls { grid-template-columns: 1fr; }
  .spec-table .spec-row,
  .entity-facts .ef-row { grid-template-columns: 1fr; gap: 4px; }
  .compare-table { font-size: 0.82rem; }
  .compare-table th, .compare-table td { padding: 12px 12px; }
}

/* ============================================================
   CONTACT / QUOTE FORM + RESERVATIONS EMBED
   ============================================================ */
.page-hero {
  position: relative;
  padding-top: calc(var(--header-h) + var(--space-4));
  padding-bottom: var(--space-4);
  overflow: hidden;
  isolation: isolate;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(1000px 520px at 70% 80%, rgba(224, 192, 120, 0.10), transparent 62%),
    radial-gradient(900px 560px at 12% 0%, rgba(205, 171, 99, 0.05), transparent 55%),
    linear-gradient(180deg, #0a0906 0%, var(--bg-0) 100%);
}
.page-hero .eyebrow { color: var(--gold); }
.page-hero h1 {
  font-size: clamp(2.6rem, 5.5vw, 4.4rem);
  line-height: 1.02;
  margin-bottom: var(--space-2);
  max-width: 18ch;
}
.page-hero .page-lead {
  font-size: var(--step-1);
  color: var(--ink-1);
  max-width: 56ch;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.75fr);
  gap: var(--space-4);
  align-items: start;
}

/* Quote form */
.quote-form {
  border: 1px solid var(--hairline-strong);
  border-radius: var(--radius-l);
  background:
    radial-gradient(700px 360px at 15% 0%, rgba(205,171,99,0.07), transparent 60%),
    var(--glass-strong);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  padding: clamp(24px, 4vw, 40px);
}
.quote-form h2 { font-size: 1.5rem; margin-bottom: 6px; }
.quote-form .qf-sub { color: var(--ink-2); font-size: 0.9rem; margin-bottom: var(--space-3); }
.qf-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.qf-field { display: flex; flex-direction: column; gap: 7px; }
.qf-field.qf-full { grid-column: 1 / -1; }
.qf-field label {
  font-family: var(--font-label);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-2);
}
.qf-field label .req { color: var(--gold); }
.qf-field input,
.qf-field select,
.qf-field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink-0);
  background: rgba(5,5,6,0.5);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-m);
  padding: 13px 15px;
  transition: border-color 0.2s, background 0.2s;
}
.qf-field input::placeholder,
.qf-field textarea::placeholder { color: var(--ink-2); opacity: 0.7; }
.qf-field input:focus,
.qf-field select:focus,
.qf-field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(5,5,6,0.7);
}
.qf-field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2385858e' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  padding-right: 38px;
}
.qf-field textarea { resize: vertical; min-height: 96px; }
.qf-submit { margin-top: var(--space-3); }
.qf-note {
  margin-top: var(--space-2);
  font-size: 0.8rem;
  color: var(--ink-2);
}

/* Contact aside */
.contact-aside .ci-card {
  border: 1px solid var(--hairline);
  border-radius: var(--radius-l);
  background: var(--bg-2);
  padding: 28px 26px;
  margin-bottom: 18px;
}
.contact-aside h3 { font-size: 1.05rem; margin-bottom: 14px; }
.contact-aside .ci-row { margin-bottom: 16px; }
.contact-aside .ci-row:last-child { margin-bottom: 0; }
.contact-aside .ci-label {
  display: block;
  font-family: var(--font-label);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-2);
  margin-bottom: 4px;
}
.contact-aside .ci-val { color: var(--ink-0); font-size: 0.98rem; }
.contact-aside .ci-val a { color: var(--gold); }
.contact-aside .ci-val a:hover { text-decoration: underline; }

/* Reservations embed */
.embed-wrap {
  border: 1px solid var(--hairline-strong);
  border-radius: var(--radius-l);
  overflow: hidden;
  background: var(--bg-1);
  box-shadow: var(--shadow-soft);
}
.embed-wrap iframe {
  display: block;
  width: 100%;
  min-height: 900px;
  border: 0;
  background: #fff;
}
.embed-fallback {
  padding: var(--space-3);
  text-align: center;
  color: var(--ink-1);
}

@media (max-width: 1024px) {
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .qf-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   HUB / INDEX PAGES (fleet, services, service-areas)
   ============================================================ */
.hub-intro { max-width: 60ch; }
.hub-intro .page-lead { margin-bottom: 0; }

/* Filter chips (fleet index) */
.hub-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: var(--space-4);
}
.hub-filter {
  font-family: var(--font-label);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-2);
  background: transparent;
  border: 1px solid var(--hairline);
  border-radius: 999px;
  padding: 9px 18px;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.hub-filter:hover { color: var(--ink-0); border-color: var(--hairline-strong); }
.hub-filter[aria-pressed="true"] {
  color: #131007;
  background: var(--gold);
  border-color: var(--gold);
}

/* Fleet grid (reuses related-card look, larger) */
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 22px;
}
.fleet-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--hairline);
  border-radius: var(--radius-l);
  overflow: hidden;
  background: var(--bg-2);
  transition: transform 0.3s var(--ease-out), border-color 0.3s;
}
.fleet-card:hover { transform: translateY(-5px); border-color: var(--gold-soft); }
.fleet-card .fc-img {
  aspect-ratio: 750 / 403;
  background: linear-gradient(180deg, #161619, #0c0c0e);
  overflow: hidden;
}
.fleet-card .fc-img img { width: 100%; height: 100%; object-fit: cover; }
.fleet-card .fc-body { padding: 22px 24px; display: flex; flex-direction: column; flex: 1; }
.fleet-card .fc-type {
  font-family: var(--font-label);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 7px;
}
.fleet-card h2, .fleet-card h3 { font-size: 1.25rem; margin-bottom: 10px; }
.fleet-card .fc-specs {
  display: flex;
  gap: 8px 18px;
  flex-wrap: wrap;
  margin-bottom: 14px;
  font-size: 0.82rem;
  color: var(--ink-2);
}
.fleet-card .fc-specs span { display: inline-flex; align-items: center; gap: 6px; }
.fleet-card .fc-specs span::before { content: ""; width: 4px; height: 4px; border-radius: 50%; background: var(--gold); }
.fleet-card .fc-desc { color: var(--ink-1); font-size: 0.9rem; margin-bottom: 18px; flex: 1; }
.fleet-card .fc-go {
  font-family: var(--font-label);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  color: var(--gold);
  margin-top: auto;
}
.fleet-card .fc-go::after { content: " \2192"; }
.fleet-card.is-hidden { display: none; }

/* Services grid */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.svc-card {
  display: block;
  border: 1px solid var(--hairline);
  border-radius: var(--radius-l);
  padding: 30px 28px;
  background: var(--bg-2);
  transition: transform 0.3s var(--ease-out), border-color 0.3s, background 0.3s;
}
.svc-card:hover { transform: translateY(-4px); border-color: var(--gold-soft); background: var(--bg-3, #17171b); }
.svc-card .sc-icon { width: 38px; height: 38px; color: var(--gold); margin-bottom: 18px; }
.svc-card h2, .svc-card h3 { font-size: 1.18rem; margin-bottom: 9px; }
.svc-card p { color: var(--ink-1); font-size: 0.9rem; margin: 0 0 16px; }
.svc-card .sc-go {
  font-family: var(--font-label);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  color: var(--gold);
}
.svc-card .sc-go::after { content: " \2192"; }
.svc-group-label {
  font-family: var(--font-label);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-2);
  margin: var(--space-4) 0 var(--space-2);
  padding-bottom: 10px;
  border-bottom: 1px solid var(--hairline);
}
.svc-group-label:first-of-type { margin-top: 0; }

/* Areas grid */
.areas-index-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 18px;
}
.area-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--hairline);
  border-radius: var(--radius-l);
  padding: 26px 26px;
  background: var(--bg-2);
  transition: transform 0.3s var(--ease-out), border-color 0.3s;
}
.area-card:hover { transform: translateY(-4px); border-color: var(--gold-soft); }
.area-card .ac-label {
  font-family: var(--font-label);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.area-card h2, .area-card h3 { font-size: 1.2rem; margin-bottom: 8px; }
.area-card p { color: var(--ink-1); font-size: 0.88rem; margin: 0 0 16px; flex: 1; }
.area-card .ac-go {
  font-family: var(--font-label);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  color: var(--gold);
  margin-top: auto;
}
.area-card .ac-go::after { content: " \2192"; }

/* Airports strip on areas index */
.airports-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: var(--space-4);
}
.airport-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid var(--hairline-strong);
  border-radius: var(--radius-l);
  padding: 26px 30px;
  background:
    radial-gradient(500px 200px at 20% 0%, rgba(205,171,99,0.08), transparent 60%),
    var(--bg-2);
  transition: border-color 0.3s, transform 0.3s var(--ease-out);
}
.airport-card:hover { border-color: var(--gold-soft); transform: translateY(-3px); }
.airport-card .ap-code {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 500;
  color: var(--gold);
  text-shadow: 0 0 18px rgba(205,171,99,0.3);
}
.airport-card .ap-name { font-size: 1.05rem; color: var(--ink-0); }
.airport-card .ap-sub { font-size: 0.82rem; color: var(--ink-2); }

@media (max-width: 640px) {
  .airports-strip { grid-template-columns: 1fr; }
}

/* ============================================================
   SERVICE PAGES (airport, corporate, weddings, etc.)
   ============================================================ */
.svc-hero .veh-hero-inner { grid-template-columns: 1fr; max-width: 900px; }
.svc-hero h1 { max-width: 20ch; }

/* Two-column prose + aside blocks reused from veh-overview-grid */

/* How-it-works numbered steps */
.howto-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  counter-reset: step;
}
.howto-step {
  position: relative;
  border: 1px solid var(--hairline);
  border-radius: var(--radius-l);
  background: var(--bg-2);
  padding: 30px 26px 26px;
}
.howto-step::before {
  counter-increment: step;
  content: counter(step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--gold);
  color: #131007;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 16px;
}
.howto-step h3 { font-size: 1.08rem; margin-bottom: 8px; }
.howto-step p { color: var(--ink-1); font-size: 0.9rem; margin: 0; }

/* Terminal cards */
.terminal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}
.terminal-card {
  border: 1px solid var(--hairline);
  border-radius: var(--radius-l);
  background: var(--bg-2);
  padding: 26px 26px;
}
.terminal-card .tc-head {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--hairline);
}
.terminal-card .tc-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}
.terminal-card .tc-label { font-size: 0.95rem; color: var(--ink-0); font-weight: 500; }
.terminal-card .tc-tag {
  display: inline-block;
  font-family: var(--font-label);
  font-size: 0.58rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold-soft);
  border-radius: 999px;
  padding: 3px 9px;
  margin-top: 6px;
}
.terminal-card ul { display: grid; gap: 8px; margin-top: 10px; }
.terminal-card li {
  font-size: 0.88rem;
  color: var(--ink-1);
  padding-left: 16px;
  position: relative;
}
.terminal-card li::before {
  content: "";
  position: absolute; left: 0; top: 8px;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold-soft);
}
.terminal-card .tc-note { font-size: 0.82rem; color: var(--ink-2); margin-top: 12px; }

/* Info table (facts at a glance) */
.info-table {
  border: 1px solid var(--hairline);
  border-radius: var(--radius-l);
  overflow: hidden;
}
.info-table .info-row {
  display: grid;
  grid-template-columns: minmax(140px, 0.8fr) 1.2fr;
  gap: 20px;
  padding: 15px 24px;
  border-bottom: 1px solid var(--hairline);
}
.info-table .info-row:last-child { border-bottom: none; }
.info-table .info-row:nth-child(odd) { background: rgba(255,255,255,0.015); }
.info-table dt {
  font-family: var(--font-label);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-2);
  align-self: center;
}
.info-table dd { margin: 0; color: var(--ink-0); font-size: 0.92rem; align-self: center; }

/* Directions / routes list */
.dir-list { display: grid; gap: 14px; }
.dir-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  border: 1px solid var(--hairline);
  border-radius: var(--radius-m);
  background: var(--bg-2);
  padding: 18px 22px;
}
.dir-item .dir-icon { flex: 0 0 24px; width: 24px; height: 24px; color: var(--gold); margin-top: 2px; }
.dir-item h3 { font-size: 1rem; margin-bottom: 4px; }
.dir-item p { color: var(--ink-1); font-size: 0.88rem; margin: 0; }

/* Vehicle mini-cards (which vehicles fit) reuses related-grid */

/* ============================================================
   SERVICE PAGE CHICAGO IMAGERY
   ============================================================ */
.svc-hero { position: relative; isolation: isolate; overflow: hidden; }
.svc-hero-skyline {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}
.svc-hero-skyline img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 62%;
  opacity: 0.28;
  -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.85) 40%, #000 100%);
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.85) 40%, #000 100%);
}
.svc-hero .veh-hero-bg {
  background:
    linear-gradient(90deg, rgba(5,5,6,0.92) 0%, rgba(5,5,6,0.6) 45%, rgba(5,5,6,0.35) 100%),
    radial-gradient(1000px 560px at 70% 80%, rgba(224, 192, 120, 0.12), transparent 62%),
    linear-gradient(180deg, #0a0906 0%, var(--bg-0) 100%);
}

/* Full-bleed skyline band (mid-page, like homepage chicago band) */
.svc-band {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-block: var(--space-5);
}
.svc-band-media { position: absolute; inset: 0; z-index: -2; }
.svc-band-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 35%;
}
.svc-band-overlay {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(90deg, rgba(5,5,6,0.93) 0%, rgba(5,5,6,0.72) 38%, rgba(5,5,6,0.4) 70%, rgba(5,5,6,0.6) 100%),
    linear-gradient(0deg, rgba(5,5,6,0.85), transparent 45%, transparent 70%, rgba(5,5,6,0.6));
}
.svc-band .svc-band-inner { max-width: 62ch; }
.svc-band h2 { margin-bottom: var(--space-2); }
.svc-band p { color: var(--ink-1); font-size: var(--step-1); }
.svc-band .svc-band-stats {
  display: flex; flex-wrap: wrap; gap: 18px 40px;
  margin-top: var(--space-3);
  padding-top: var(--space-3);
  border-top: 1px solid var(--hairline);
}
.svc-band .sb-stat { display: flex; flex-direction: column; gap: 4px; }
.svc-band .sb-num {
  font-family: var(--font-display);
  font-size: 2rem; font-weight: 500;
  color: var(--gold);
  text-shadow: 0 0 18px rgba(205,171,99,0.3);
}
.svc-band .sb-label {
  font-family: var(--font-label);
  font-size: 0.64rem; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--ink-2);
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-story { max-width: 74ch; margin: 0 auto; }
.about-story p {
  color: var(--ink-1);
  font-size: var(--step-1);
  line-height: 1.75;
  margin-bottom: var(--space-3);
}
.about-story p.about-lead {
  color: var(--ink-0);
  font-size: var(--step-2);
  line-height: 1.6;
  margin-bottom: var(--space-4);
}
.about-story h2 {
  margin-top: var(--space-5);
  margin-bottom: var(--space-3);
}
.about-story h3 {
  color: var(--gold-bright);
  font-family: var(--font-display);
  font-size: var(--step-1);
  margin-top: var(--space-4);
  margin-bottom: var(--space-2);
}
.about-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3);
  margin-top: var(--space-4);
}
@media (max-width: 900px) {
  .about-values-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .about-values-grid { grid-template-columns: 1fr; }
}
.about-value {
  background: var(--bg-1);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: var(--space-4);
}
.about-value svg { width: 30px; height: 30px; color: var(--gold); margin-bottom: 14px; }
.about-value h3 { color: var(--ink-0); font-family: var(--font-display); font-size: 1.2rem; margin: 0 0 8px; }
.about-value p { color: var(--ink-2); font-size: 0.95rem; line-height: 1.6; margin: 0; }

.about-stats {
  display: flex; flex-wrap: wrap; gap: 20px 48px;
  margin: var(--space-4) 0;
  padding: var(--space-4) 0;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.about-stat { display: flex; flex-direction: column; gap: 6px; }
.about-stat .as-num {
  font-family: var(--font-display); font-size: 2.4rem; font-weight: 500;
  color: var(--gold); text-shadow: 0 0 18px rgba(205,171,99,0.28);
}
.about-stat .as-label {
  font-family: var(--font-label); font-size: 0.64rem; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--ink-2);
}

/* ============================================================
   FAQ PAGE - category jump nav
   ============================================================ */
.faqp-nav {
  position: sticky; top: 0; z-index: 20;
  background: rgba(5,5,6,0.82);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--hairline);
  padding: 14px 0;
  margin-bottom: var(--space-4);
}
.faqp-nav-inner {
  display: flex; flex-wrap: wrap; gap: 10px;
  justify-content: center;
}
.faqp-nav a {
  font-family: var(--font-label);
  font-size: 0.66rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink-1);
  padding: 9px 16px;
  border: 1px solid var(--hairline);
  border-radius: 100px;
  text-decoration: none;
  transition: color .2s, border-color .2s, background .2s;
  white-space: nowrap;
}
.faqp-nav a:hover, .faqp-nav a:focus-visible {
  color: var(--bg-0); background: var(--gold); border-color: var(--gold);
}
.faqp-section { margin-bottom: var(--space-5); scroll-margin-top: 90px; }
.faqp-section > h2 {
  margin-bottom: var(--space-3);
  padding-bottom: var(--space-2);
  border-bottom: 1px solid var(--hairline);
}
.faqp-count {
  font-family: var(--font-label); font-size: 0.62rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--gold); margin-left: 12px;
}

/* ============================================================
   LEGAL PAGES (privacy, terms)
   ============================================================ */
.legal-body { max-width: 76ch; margin: 0 auto; }
.legal-body p, .legal-body li {
  color: var(--ink-1); font-size: 1rem; line-height: 1.75;
}
.legal-body p { margin-bottom: var(--space-3); }
.legal-body h2 {
  font-family: var(--font-display); font-size: 1.5rem; color: var(--ink-0);
  margin-top: var(--space-5); margin-bottom: var(--space-2);
}
.legal-body h3 {
  font-family: var(--font-display); font-size: 1.15rem; color: var(--gold-bright);
  margin-top: var(--space-3); margin-bottom: var(--space-2);
}
.legal-body ul { margin: 0 0 var(--space-3) 0; padding-left: 24px; }
.legal-body li { margin-bottom: 10px; }
.legal-body a { color: var(--gold-bright); }
.legal-updated {
  font-family: var(--font-label); font-size: 0.66rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--ink-2);
  margin-bottom: var(--space-4);
  padding-bottom: var(--space-3); border-bottom: 1px solid var(--hairline);
}

/* ============================================================
   RATES PAGE
   ============================================================ */
.rates-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
  gap: var(--space-3);
  margin-top: var(--space-4);
}
.rate-card {
  position: relative;
  background: var(--bg-1);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: var(--space-4);
  display: flex;
  flex-direction: column;
  transition: border-color .25s, transform .25s;
}
.rate-card:hover { border-color: var(--gold-soft); transform: translateY(-3px); }
.rate-card .rc-media {
  aspect-ratio: 16 / 9;
  border-radius: calc(var(--radius) - 4px);
  overflow: hidden;
  background: linear-gradient(180deg, #15151a, #0c0c0e);
  margin-bottom: var(--space-3);
}
.rate-card .rc-media img { width: 100%; height: 100%; object-fit: cover; }
.rate-card .rc-type {
  font-family: var(--font-label); font-size: 0.6rem; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--ink-2); margin-bottom: 4px;
}
.rate-card h3 {
  font-family: var(--font-display); font-size: 1.28rem; color: var(--ink-0);
  margin: 0 0 6px;
}
.rate-card .rc-cap {
  font-size: 0.85rem; color: var(--ink-2); margin-bottom: var(--space-3);
}
.rate-card .rc-price {
  display: flex; align-items: baseline; gap: 6px;
  padding-top: var(--space-3);
  margin-top: auto;
  border-top: 1px solid var(--hairline);
}
.rate-card .rc-from {
  font-family: var(--font-label); font-size: 0.58rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--ink-2);
}
.rate-card .rc-amt {
  font-family: var(--font-display); font-size: 2rem; font-weight: 500;
  color: var(--gold); text-shadow: 0 0 16px rgba(205,171,99,0.28);
}
.rate-card .rc-unit { font-size: 0.9rem; color: var(--ink-1); }
.rate-card .btn { margin-top: var(--space-3); width: 100%; }
.rates-note {
  max-width: 70ch; margin: var(--space-4) auto 0;
  padding: var(--space-3) var(--space-4);
  background: var(--bg-1); border: 1px solid var(--hairline);
  border-radius: var(--radius);
  font-size: 0.9rem; color: var(--ink-2); line-height: 1.7;
}
.rates-note strong { color: var(--ink-1); }

/* ============================================================
   BLOG
   ============================================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 320px), 1fr));
  gap: var(--space-3);
  margin-top: var(--space-4);
}
.blog-card {
  display: flex; flex-direction: column;
  background: var(--bg-1);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  transition: border-color .25s, transform .25s;
}
.blog-card:hover { border-color: var(--gold-soft); transform: translateY(-3px); }
.blog-card .bc-media { aspect-ratio: 16 / 9; overflow: hidden; }
.blog-card .bc-media img { width: 100%; height: 100%; object-fit: cover; }
.blog-card .bc-body { padding: var(--space-4); display: flex; flex-direction: column; flex: 1; }
.blog-card .bc-cat {
  font-family: var(--font-label); font-size: 0.6rem; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 8px;
}
.blog-card h3 { font-family: var(--font-display); font-size: 1.28rem; color: var(--ink-0); margin: 0 0 10px; line-height: 1.25; }
.blog-card p { font-size: 0.92rem; color: var(--ink-2); line-height: 1.6; margin: 0 0 var(--space-3); flex: 1; }
.blog-card .bc-more { font-family: var(--font-label); font-size: 0.66rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold-bright); }

/* Blog article */
.article-body { max-width: 72ch; margin: 0 auto; }
.article-body p { color: var(--ink-1); font-size: var(--step-1); line-height: 1.78; margin-bottom: var(--space-3); }
.article-body p.article-lead { color: var(--ink-0); font-size: var(--step-2); line-height: 1.6; margin-bottom: var(--space-4); }
.article-body h2 { font-family: var(--font-display); font-size: 1.6rem; color: var(--ink-0); margin-top: var(--space-5); margin-bottom: var(--space-2); }
.article-body h3 { font-family: var(--font-display); color: var(--gold-bright); font-size: 1.2rem; margin-top: var(--space-4); margin-bottom: var(--space-2); }
.article-body ul { margin: 0 0 var(--space-3); padding-left: 24px; }
.article-body li { color: var(--ink-1); font-size: 1rem; line-height: 1.7; margin-bottom: 10px; }
.article-body a { color: var(--gold-bright); }
.article-meta {
  font-family: var(--font-label); font-size: 0.66rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--ink-2);
  margin-bottom: var(--space-4); padding-bottom: var(--space-3);
  border-bottom: 1px solid var(--hairline);
}
.article-cta {
  margin-top: var(--space-5); padding: var(--space-4);
  background: var(--bg-1); border: 1px solid var(--gold-soft); border-radius: var(--radius);
  text-align: center;
}
.article-cta h3 { color: var(--ink-0); font-family: var(--font-display); font-size: 1.4rem; margin: 0 0 10px; }
.article-cta p { color: var(--ink-2); margin: 0 0 var(--space-3); }

/* ============================================================
   CHICAGO CONTENT IMAGERY - inline figures beside text/headings
   ============================================================ */

/* Standalone framed figure (duotone landmark + caption) */
.chi-figure {
  position: relative;
  margin: var(--space-4) 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--hairline);
  isolation: isolate;
}
.chi-figure img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.5s ease;
}
.chi-figure:hover img { transform: scale(1.04); }
.chi-figure::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 55%, rgba(5,5,6,0.55) 100%);
}
.chi-figure figcaption {
  position: absolute;
  left: 18px;
  bottom: 14px;
  z-index: 2;
  font-family: var(--font-label);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-1);
  text-shadow: 0 1px 8px rgba(0,0,0,0.8);
}
.chi-figure figcaption::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 1px;
  background: var(--gold);
  vertical-align: middle;
  margin-right: 8px;
}

/* Split layout: text on one side, duotone image on the other */
.chi-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
  align-items: center;
  margin: var(--space-4) 0;
}
.chi-split--reverse .chi-split-media { order: -1; }
.chi-split-media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--hairline);
  aspect-ratio: 4 / 3;
  isolation: isolate;
}
.chi-split-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.chi-split-media::after {
  content: "";
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: radial-gradient(80% 80% at 30% 20%, transparent, rgba(5,5,6,0.35));
}
.chi-split:hover .chi-split-media img { transform: scale(1.04); }
.chi-split-body h2, .chi-split-body h3 { margin-top: 0; }
.chi-split-body p { color: var(--ink-1); }
.chi-split-body p:last-child { margin-bottom: 0; }
@media (max-width: 820px) {
  .chi-split { grid-template-columns: 1fr; gap: var(--space-3); }
  .chi-split--reverse .chi-split-media { order: 0; }
  .chi-split-media { aspect-ratio: 16 / 9; }
}

/* A trio strip of small landmark thumbnails */
.chi-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-2);
  margin: var(--space-4) 0;
}
.chi-strip .chi-figure { margin: 0; aspect-ratio: 1 / 1; }
@media (max-width: 620px) {
  .chi-strip { grid-template-columns: 1fr; }
  .chi-strip .chi-figure { aspect-ratio: 16 / 9; }
}
