/* Ready merged redesign — Patagonia expedition look */
:root {
  --ink: #0c1614;
  --muted: #4a5e58;
  --paper: #e6ecea;
  --paper-2: #d5e0dc;
  --snow: #f7faf8;
  --lake: #134e45;
  --lake-deep: #0a2e28;
  --ember: #c45a1a;
  --ember-deep: #9a3f10;
  --glacier: #6eb8c9;
  --glacier-deep: #2a6f82;
  --lenga: #8b5a3c;
  --basalt: #15201c;
  --line: rgba(12, 22, 20, 0.14);
  --ok: #0e6b57;
  --warn: #b45309;
  --mp: #009ee3;
  --shadow: 0 22px 60px rgba(10, 30, 26, 0.22);
  --nav-h: 72px;
  --font-display: "Bricolage Grotesque", "Segoe UI", sans-serif;
  --font-ui: "Figtree", system-ui, sans-serif;
  --radius: 12px;
  --radius-lg: 18px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-ui);
  color: var(--ink);
  background-color: var(--paper);
  background-image:
    radial-gradient(1200px 600px at 8% -10%, rgba(110, 184, 201, 0.22), transparent 55%),
    radial-gradient(900px 500px at 100% 0%, rgba(19, 78, 69, 0.12), transparent 50%),
    linear-gradient(180deg, #eef3f1 0%, var(--paper) 40%, #dde8e4 100%);
  line-height: 1.5;
  position: relative;
}
body::before {
  content: "";
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 0;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
body > * { position: relative; z-index: 1; }

img { max-width: 100%; display: block; }
a { color: var(--lake); }
.skip {
  position: absolute; left: -999px; top: 0; z-index: 100;
  background: var(--ember); color: #fff; padding: 8px 12px;
}
.skip:focus { left: 12px; top: 12px; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border: 0; cursor: pointer; text-decoration: none; font: inherit; font-weight: 650;
  border-radius: 10px; padding: 11px 18px;
  letter-spacing: 0.01em;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-sm { padding: 8px 14px; font-size: .9rem; }
.btn-lg { padding: 14px 22px; }
.btn-solid { background: var(--lake); color: var(--snow); }
.btn-solid:hover { background: var(--lake-deep); }
.btn-ember {
  background: linear-gradient(135deg, var(--ember) 0%, #db6a22 100%);
  color: #fff;
  box-shadow: 0 8px 24px rgba(196, 90, 26, 0.28);
}
.btn-ember:hover { background: var(--ember-deep); }
.btn-ghost { background: transparent; border: 1px solid var(--line); color: var(--ink); }
.btn-ghost-light {
  background: rgba(255,255,255,.1);
  color: #fff;
  border: 1px solid rgba(255,255,255,.4);
  backdrop-filter: blur(6px);
}
.btn-mp { background: var(--mp); color: #fff; border-radius: 10px; }

.site-header {
  position: sticky; top: 0; z-index: 50;
  min-height: var(--nav-h);
  display: flex; align-items: center; gap: 12px;
  padding: 10px 20px;
  padding-top: max(10px, env(safe-area-inset-top));
  background: rgba(230, 236, 234, 0.88);
  backdrop-filter: blur(14px) saturate(1.2);
  border-bottom: 1px solid var(--line);
}
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: inherit; flex-shrink: 0; }
.brand-mark {
  height: 40px;
  width: 40px;
  object-fit: contain;
  border-radius: 8px;
  background: #0a0a0a;
  flex-shrink: 0;
}
.brand-wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
  gap: 1px;
}
.brand-ready {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}
.brand-rest {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ember);
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.nav-links { display: flex; gap: 14px; margin-left: 8px; flex-wrap: wrap; }
.nav-links a {
  text-decoration: none; color: var(--muted); font-weight: 550; font-size: .9rem;
}
.nav-links a:hover, .nav-links a.is-active { color: var(--ink); }
.nav-actions {
  margin-left: auto; display: flex; align-items: center; gap: 8px; flex-shrink: 0;
}
.lang-switch {
  display: flex; border: 1px solid var(--line); border-radius: 999px; overflow: hidden; background: var(--snow);
}
.lang-switch button {
  border: 0; background: transparent; padding: 7px 10px; font: inherit; font-weight: 700;
  font-size: .75rem; cursor: pointer; color: var(--muted);
}
.lang-switch button.is-active { background: var(--lake); color: #fff; }
.menu-toggle {
  display: none; border: 1px solid var(--line); background: var(--snow);
  border-radius: 10px; padding: 8px 10px; font: inherit; cursor: pointer;
}
.nav-actions .btn-header-quote { white-space: nowrap; }

.page { max-width: 1180px; margin: 0 auto; padding: 36px 20px 80px; }
.page-narrow { max-width: 820px; }
.eyebrow {
  text-transform: uppercase; letter-spacing: .14em; font-size: .72rem;
  font-weight: 700; color: var(--glacier-deep); margin: 0 0 10px;
}
h1, h2, h3 {
  font-family: var(--font-display);
  line-height: 1.12;
  letter-spacing: -0.025em;
}
h1 { font-size: clamp(2rem, 4vw, 3rem); margin: 0 0 12px; }
h2 { font-size: clamp(1.55rem, 3vw, 2.2rem); margin: 0 0 10px; }
h3 { font-size: 1.25rem; margin: 0 0 8px; }
.lede { color: var(--muted); max-width: 58ch; margin: 0 0 24px; font-size: 1.05rem; }

.hero {
  position: relative;
  min-height: min(82svh, 820px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
  overflow: hidden;
  padding: 56px 24px 96px;
}
.hero-media {
  position: absolute; inset: 0;
  background:
    url("https://images.unsplash.com/photo-1464822759023-fed622ff2c3b?auto=format&fit=crop&w=2200&q=85") center/cover;
  transform: scale(1.05);
  animation: drift 32s ease-in-out infinite alternate;
  z-index: 0;
}
.hero-veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 30, 28, 0.25) 0%, rgba(10, 30, 28, 0.08) 35%, rgba(8, 18, 16, 0.88) 100%),
    linear-gradient(105deg, rgba(8, 22, 20, 0.72) 0%, rgba(8, 22, 20, 0.2) 48%, transparent 70%),
    radial-gradient(ellipse 80% 50% at 70% 20%, rgba(110, 184, 201, 0.18), transparent 55%);
  z-index: 1;
}
.hero::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 120px;
  z-index: 1;
  background: linear-gradient(180deg, transparent, rgba(230, 236, 234, 0.35));
  pointer-events: none;
}
@keyframes drift {
  from { transform: scale(1.05) translate3d(0, 0, 0); }
  to { transform: scale(1.1) translate3d(-1.8%, -1.2%, 0); }
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 740px;
  animation: rise .95s cubic-bezier(.2,.7,.2,1) both;
}
@keyframes rise {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero .eyebrow {
  color: rgba(190, 230, 236, 0.95);
  text-shadow: 0 1px 12px rgba(0,0,0,.35);
}
.hero-brand {
  margin: 0 0 18px;
  max-width: min(520px, 92vw);
}
.hero-logo {
  display: block;
  width: min(520px, 92vw);
  height: auto;
  /* Knock out the logo's baked-in black so the mark sits on the Patagonia hero */
  mix-blend-mode: screen;
  filter: drop-shadow(0 12px 36px rgba(0, 0, 0, 0.45));
}
.hero .lede {
  color: rgba(255,255,255,.93);
  max-width: 38ch;
  font-size: clamp(1.08rem, 2vw, 1.28rem);
  margin: 0;
  text-shadow: 0 2px 16px rgba(0,0,0,.35);
}

.search-dock {
  position: relative;
  z-index: 6;
  max-width: 1228px;
  margin: -64px auto 0;
  padding: 0 24px;
}
.search-dock-spacer { height: 0; }
.search-float {
  position: relative;
  width: 100%;
  color: var(--ink);
  animation: rise 1s .12s ease both;
}
.search-float.is-pinned {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 16px;
  width: calc(100% - 48px);
  max-width: 1180px;
  z-index: 45;
  margin: 0;
  animation: none;
}
.search-shell {
  background: rgba(247, 250, 248, 0.97);
  border: 1px solid rgba(19, 78, 69, 0.12);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
  padding: 14px;
}
.search-bar,
.search-bar.has-drop {
  display: grid;
  grid-template-columns: minmax(140px, 1.1fr) minmax(140px, 1.1fr) minmax(130px, 1fr) minmax(130px, 1fr) auto;
  gap: 10px;
  align-items: end;
}
.search-bar .btn-search {
  height: 46px;
  min-width: 110px;
  padding-inline: 18px;
  white-space: nowrap;
  border-radius: 10px;
  justify-self: stretch;
  align-self: end;
}
.search-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  align-items: center;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-size: .88rem;
}
.search-meta .check { color: var(--ink); }
.search-meta .check input { accent-color: var(--ember); }
.search-chip {
  display: none;
  align-items: center;
  gap: 6px;
  background: rgba(110, 184, 201, 0.18);
  color: var(--glacier-deep);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: .78rem;
  font-weight: 650;
}
.search-chip.is-on { display: inline-flex; }
.search-chip.winter { background: rgba(110, 184, 201, 0.22); color: #1a4a5c; }
.drop-inline,
.drop-inline.is-on { display: flex; flex-direction: column; }

.field { display: flex; flex-direction: column; gap: 4px; }
.field label {
  font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--muted);
}
.field select, .field input, .field textarea {
  border: 1px solid var(--line); border-radius: 10px; padding: 11px 12px;
  font: inherit; background: #fff; color: var(--ink); width: 100%;
}
.field select:focus, .field input:focus, .field textarea:focus {
  outline: 2px solid var(--glacier); outline-offset: 1px;
}
.check { display: inline-flex; align-items: center; gap: 8px; font-size: .9rem; font-weight: 500; }

.strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  overflow: visible;
  max-width: 1180px;
  margin: 36px auto 0;
  position: relative;
  z-index: 1;
  padding: 0 4px;
}
.strip > div {
  background: transparent;
  padding: 18px 20px;
  border-left: 3px solid var(--glacier);
  position: relative;
}
.strip > div:first-child { border-left-color: var(--lake); }
.strip > div:nth-child(2) { border-left-color: var(--glacier); }
.strip > div:nth-child(3) { border-left-color: var(--ember); }
.strip > div:nth-child(4) { border-left-color: var(--lenga); }
.strip strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  line-height: 1.25;
}
.strip span {
  color: var(--muted);
  font-size: .88rem;
  line-height: 1.4;
}

.pay-methods { display: grid; gap: 10px; margin: 14px 0 18px; }
.pay-option {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px;
  cursor: pointer;
  background: var(--snow);
}
.pay-option:has(input:checked) {
  border-color: var(--lake);
  background: rgba(19, 78, 69, 0.06);
}
.pay-option input { margin: 0; }
.pay-brand {
  display: flex; align-items: center; gap: 10px; font-weight: 700;
}
.pay-logo {
  width: 42px; height: 28px; border-radius: 6px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: .65rem; font-weight: 800; letter-spacing: .02em; color: #fff;
}
.pay-logo.mp { background: #009ee3; }
.pay-logo.stripe { background: #635bff; }
.pay-desc { margin: 2px 0 0; color: var(--muted); font-size: .82rem; font-weight: 500; }
.pay-badge {
  font-size: .68rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: .04em; background: #e4ebe8; color: var(--muted);
  border-radius: 999px; padding: 4px 8px;
}
.pay-badge.hot { background: #fff1e8; color: var(--ember-deep); }

.section { padding: 72px 20px; max-width: 1180px; margin: 0 auto; }
.section-muted {
  background:
    linear-gradient(180deg, rgba(19, 78, 69, 0.06), rgba(110, 184, 201, 0.08)),
    var(--paper-2);
  max-width: none;
  border-block: 1px solid rgba(19, 78, 69, 0.08);
}
.section-muted > .inner, .section > .inner { max-width: 1180px; margin: 0 auto; }
.section-head { max-width: 560px; margin-bottom: 28px; }
.section-head p { margin: 0; color: var(--muted); }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }

.card {
  background: var(--snow);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(12, 22, 20, 0.04);
}
.card-body { padding: 18px; }
.card-media {
  aspect-ratio: 16/10; background-size: cover; background-position: center; background-color: #c5d2cc;
}
.card-media.fleet-photo,
.thumb.fleet-photo {
  background-size: contain;
  background-repeat: no-repeat;
  background-color: #eef3f1;
}
.route-card {
  min-height: 260px;
  border-radius: var(--radius-lg);
  padding: 24px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  transition: transform .35s ease, box-shadow .35s ease;
  box-shadow: 0 16px 40px rgba(8, 20, 18, 0.18);
}
.route-card:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 22px 50px rgba(8, 20, 18, 0.28);
}
.route-card::before {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, transparent 20%, rgba(8, 18, 16, 0.88)),
    linear-gradient(90deg, rgba(10, 40, 36, 0.35), transparent 60%);
  transition: opacity .35s ease;
}
.route-card:hover::before { opacity: 0.92; }
.route-card > * { position: relative; z-index: 1; }
.route-card h3 {
  font-size: 1.45rem;
  margin: 0 0 6px;
  letter-spacing: -0.02em;
}
.route-card p { margin: 0 0 12px; opacity: .92; }
.chip {
  align-self: flex-start; border-radius: 999px; padding: 5px 10px;
  font-size: .78rem; font-weight: 700;
  background: rgba(110, 184, 201, 0.22); border: 1px solid rgba(255,255,255,.28);
  backdrop-filter: blur(4px);
}
.chip-dark {
  display: inline-flex; border-radius: 999px; padding: 5px 10px;
  font-size: .75rem; font-weight: 700; background: #e4ebe8; color: var(--muted);
}

.trust-mp {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px;
  margin: 24px 20px; max-width: 1180px; margin-inline: auto;
  padding: 26px 28px; border-radius: var(--radius-lg);
  background:
    radial-gradient(600px 200px at 90% 0%, rgba(110, 184, 201, 0.35), transparent 55%),
    linear-gradient(120deg, #0a2e28, #134e45 50%, #0d5f78 85%, #009ee3);
  color: #fff;
  box-shadow: var(--shadow);
}
.trust-mp p { margin: 6px 0 0; opacity: .92; max-width: 52ch; }
.mp-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.28);
  border-radius: 999px; padding: 8px 14px; font-weight: 700; font-size: .85rem;
}

.fleet-filters { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
.fleet-filters button {
  border: 1px solid var(--line); background: var(--snow); border-radius: 999px;
  padding: 8px 14px; font: inherit; font-weight: 600; cursor: pointer; color: var(--muted);
}
.fleet-filters button.is-active { background: var(--lake); color: #fff; border-color: var(--lake); }
.fleet-card .specs { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; padding: 0; margin: 10px 0; color: var(--muted); font-size: .85rem; }
.fleet-foot { display: flex; justify-content: space-between; align-items: center; gap: 10px; margin-top: 8px; }
.price-hint { color: var(--muted); font-size: .88rem; }
.badge-new {
  display: inline-block; background: var(--ember); color: #fff;
  font-size: .68rem; font-weight: 800; letter-spacing: .04em; text-transform: uppercase;
  border-radius: 999px; padding: 3px 8px; margin-left: 6px;
}

.station-card {
  text-decoration: none; color: inherit; padding: 18px;
  border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--snow);
  display: flex; flex-direction: column; gap: 4px;
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.station-card:hover {
  border-color: var(--glacier-deep);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(12, 22, 20, 0.08);
}
.station-card span { color: var(--muted); font-size: .9rem; }

.faq details {
  background: var(--snow); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 12px 16px; margin-bottom: 8px;
}
.faq summary { cursor: pointer; font-weight: 600; }
.faq p { margin: 8px 0 0; color: var(--muted); }

.extra-card {
  background: var(--snow);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 100%;
  transition: transform .25s ease, border-color .25s ease;
}
.extra-card:hover {
  transform: translateY(-2px);
  border-color: rgba(19, 78, 69, 0.35);
}
.extra-card .extra-icon {
  width: 72px; height: 72px; border-radius: 14px;
  background: #eef3f1;
  display: grid; place-items: center; overflow: hidden;
  border: 1px solid var(--line);
}
.extra-card .extra-photo,
.extra-row .extra-photo {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.extra-card .extra-emoji,
.extra-row .extra-emoji {
  font-size: 1.35rem; line-height: 1;
}
.extra-card h3 { margin: 0; font-size: 1.05rem; }
.extra-card p { margin: 0; color: var(--muted); font-size: .9rem; flex: 1; }
.extra-card .extra-meta {
  display: flex; justify-content: space-between; align-items: center; gap: 8px;
  margin-top: 4px; font-size: .88rem; font-weight: 600;
}
.extra-card .tag-season {
  font-size: .68rem; font-weight: 800; letter-spacing: .04em; text-transform: uppercase;
  color: var(--glacier-deep); background: rgba(110, 184, 201, 0.2); border-radius: 999px; padding: 3px 8px;
}
.extras-picker { display: grid; gap: 10px; }
.extra-row {
  display: grid; grid-template-columns: 56px 1fr auto; gap: 12px; align-items: center;
  border: 1px solid var(--line); border-radius: var(--radius); padding: 12px 14px; background: #fff;
}
.extra-row.is-on { border-color: var(--lake); background: rgba(19, 78, 69, 0.05); }
.extra-row .extra-icon {
  width: 56px; height: 56px; border-radius: 12px;
  background: #eef3f1; overflow: hidden;
  display: grid; place-items: center;
  border: 1px solid var(--line);
}
.extra-row h4 { margin: 0; font-size: .95rem; }
.extra-row p { margin: 2px 0 0; color: var(--muted); font-size: .82rem; }
.extra-qty {
  display: flex; align-items: center; gap: 8px;
}
.extra-qty label { font-size: .75rem; color: var(--muted); font-weight: 600; }
.extra-qty select {
  font: inherit; border: 1px solid var(--line); border-radius: 8px; padding: 6px 8px; min-width: 64px;
}
.summary-extras { margin: 8px 0 0; padding: 0; list-style: none; font-size: .85rem; color: var(--ink); }
.summary-extras li { display: flex; justify-content: space-between; gap: 8px; padding: 2px 0; }
.summary-extras li span:last-child { font-weight: 600; white-space: nowrap; }

/* Coverage comparison matrix */
.cover-matrix { margin: 0 0 20px; }
.cover-head { margin: 0 0 12px; }
.cover-head h3 { margin: 0 0 4px; font-family: var(--font-display); font-size: 1.15rem; }
.cover-head p { margin: 0; color: var(--muted); font-size: .9rem; }
.cover-flag {
  display: inline-block; margin-top: 8px; font-size: .68rem; font-weight: 800;
  letter-spacing: .04em; text-transform: uppercase;
  color: var(--glacier-deep); background: rgba(110, 184, 201, 0.22);
  border-radius: 999px; padding: 3px 8px;
}
.cover-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.cover-card {
  display: flex; flex-direction: column; gap: 10px;
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 12px; background: #fff; cursor: pointer;
  transition: border-color .15s ease, box-shadow .15s ease, background .15s ease;
}
.cover-card input { position: absolute; opacity: 0; pointer-events: none; }
.cover-card:hover { border-color: var(--lake); }
.cover-card.is-selected {
  border-color: var(--lake);
  background: rgba(19, 78, 69, 0.06);
  box-shadow: 0 0 0 1px var(--lake);
}
.cover-card-top strong { display: block; font-size: .95rem; }
.cover-hint { display: block; font-size: .75rem; color: var(--muted); margin-top: 2px; }
.cover-price {
  margin-top: 8px; font-weight: 800; font-size: 1rem; color: var(--lake-deep);
}
.cover-features { list-style: none; margin: 0; padding: 0; display: grid; gap: 4px; flex: 1; }
.cover-features li {
  display: grid; grid-template-columns: 1rem 1fr; gap: 6px; align-items: start;
  font-size: .78rem; color: var(--ink);
}
.cover-features li.is-no { color: var(--muted); }
.cover-features li.is-yes span { color: var(--ok); font-weight: 700; }
.cover-money {
  display: grid; gap: 4px; font-size: .75rem;
  border-top: 1px solid var(--line); padding-top: 8px;
}
.cover-money div { display: flex; justify-content: space-between; gap: 8px; }
.cover-money span { color: var(--muted); }
.cover-cta {
  display: block; text-align: center; font-size: .78rem; font-weight: 700;
  padding: 7px 8px; border-radius: 8px; background: #e4ebe8; color: var(--ink);
}
.cover-card.is-selected .cover-cta {
  background: var(--lake); color: var(--snow);
}

.quote-layout {
  display: grid; grid-template-columns: 1.25fr .85fr; gap: 24px; align-items: start;
}
.quote-panel {
  background: var(--snow);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 22px 24px;
  box-shadow: 0 18px 48px rgba(12, 22, 20, 0.08);
}
.quote-panel-main {
  position: relative;
  overflow: hidden;
}
.quote-panel-main::before {
  content: "";
  position: absolute; left: 0; top: 0; bottom: 0; width: 4px;
  background: linear-gradient(180deg, var(--ember), var(--lake));
}
.quote-panel-head {
  display: flex; gap: 14px; align-items: flex-start;
  margin: 0 0 20px; padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.quote-panel-idx {
  font-family: var(--font-display);
  font-size: 1.6rem; font-weight: 800; line-height: 1;
  color: var(--ember); letter-spacing: -0.04em;
}
.quote-panel-title {
  margin: 0 0 4px; font-size: 1.35rem;
}
.quote-panel-sub {
  margin: 0; color: var(--muted); font-size: .92rem;
}
.field-error {
  margin: 0 0 12px; padding: 10px 12px; border-radius: 10px;
  background: rgba(180, 83, 9, 0.12); color: var(--warn); font-size: .9rem; font-weight: 600;
}
.quote-actions {
  display: flex; gap: 10px; justify-content: flex-end; flex-wrap: wrap; margin-top: 20px;
}
.quote-fwd {
  position: relative;
  padding-right: 2.6rem;
}
.quote-fwd::after {
  content: "";
  position: absolute; right: 14px; top: 50%; transform: translateY(-50%);
  width: 18px; height: 12px;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 56 32'%3E%3Cpath fill='black' d='M2 2h10l16 14L12 30H2l16-14L2 2zm22 0h10l16 14L34 30H24l16-14L24 2z'/%3E%3C/svg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 56 32'%3E%3Cpath fill='black' d='M2 2h10l16 14L12 30H2l16-14L2 2zm22 0h10l16 14L34 30H24l16-14L24 2z'/%3E%3C/svg%3E") center/contain no-repeat;
  opacity: .95;
}
.page-quote {
  padding: 0 0 100px;
  max-width: none;
}
.quote-body {
  max-width: 1240px;
  margin: -56px auto 0;
  padding: 0 20px 40px;
  position: relative;
  z-index: 3;
}

/* Cinematic quote masthead */
.quote-stage {
  position: relative;
  min-height: min(52svh, 520px);
  color: #fff;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.quote-stage-media {
  position: absolute; inset: 0;
  background: center/cover no-repeat;
  transform: scale(1.06);
  animation: quoteDrift 28s ease-in-out infinite alternate;
  transition: opacity .45s ease;
  z-index: 0;
}
.quote-stage[data-step="1"] .quote-stage-media {
  background-image: url("https://images.unsplash.com/photo-1464822759023-fed622ff2c3b?auto=format&fit=crop&w=2200&q=85");
}
.quote-stage[data-step="2"] .quote-stage-media {
  /* Fixed cinematic: vehicle on the road, El Calafate / Patagonia Andes.
     Balance sky/mountains (upper) with road/vehicle (lower). */
  background-image: url("https://images.unsplash.com/photo-1736390739668-0547022f10af?auto=format&fit=crop&w=2200&q=85");
  background-position: center 69%;
  background-size: cover;
  transform: scale(1.06);
  animation: quoteDriftLow 32s ease-in-out infinite alternate;
}
.quote-stage[data-step="2"].is-shifting .quote-stage-media {
  animation: quoteDriftLow 32s ease-in-out infinite alternate, quoteFlash .55s ease;
}
@keyframes quoteDriftLow {
  from { transform: scale(1.06) translate3d(0, 0, 0); }
  to { transform: scale(1.1) translate3d(-0.8%, 0.6%, 0); }
}
.quote-stage[data-step="3"] .quote-stage-media {
  background-image: url("https://images.unsplash.com/photo-1483728642387-6c3bdd17bb6b?auto=format&fit=crop&w=2200&q=85");
}
.quote-stage[data-step="4"] .quote-stage-media {
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=2200&q=85");
}
.quote-stage[data-step="5"] .quote-stage-media {
  background-image: url("https://images.unsplash.com/photo-1449965408869-eaa3f722e40d?auto=format&fit=crop&w=2200&q=85");
}
.quote-stage.is-shifting .quote-stage-media {
  animation: quoteDrift 28s ease-in-out infinite alternate, quoteFlash .55s ease;
}
@keyframes quoteFlash {
  from { opacity: .55; filter: saturate(.7); }
  to { opacity: 1; filter: none; }
}
.quote-stage-veil {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(8, 18, 16, 0.35) 0%, rgba(8, 18, 16, 0.15) 40%, rgba(8, 18, 16, 0.88) 100%),
    linear-gradient(105deg, rgba(8, 22, 20, 0.75) 0%, rgba(8, 22, 20, 0.25) 50%, transparent 72%),
    radial-gradient(ellipse 70% 50% at 80% 20%, rgba(196, 90, 26, 0.28), transparent 55%);
}
.quote-stage-grain {
  position: absolute; inset: 0; z-index: 1; pointer-events: none; opacity: .07;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.quote-stage-inner {
  position: relative; z-index: 2;
  width: min(1240px, 100%);
  margin: 0 auto;
  padding: 48px 20px 88px;
  display: grid;
  gap: 28px;
}
.quote-stage-copy { max-width: 640px; animation: rise .8s cubic-bezier(.2,.7,.2,1) both; }
.quote-stage-eyebrow { color: rgba(255, 210, 180, 0.92) !important; }
.quote-stage h1 {
  color: #fff;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  margin: 0 0 10px;
  text-shadow: 0 10px 40px rgba(0,0,0,.35);
}
.quote-stage .lede {
  color: rgba(247, 250, 248, 0.88);
  margin: 0 0 10px;
  max-width: 48ch;
}
.quote-stage-kicker {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  letter-spacing: -0.02em;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.quote-stage-kicker::before {
  content: "";
  width: 28px; height: 16px;
  background: var(--ember);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 56 32'%3E%3Cpath fill='black' d='M2 2h10l16 14L12 30H2l16-14L2 2zm22 0h10l16 14L34 30H24l16-14L24 2z'/%3E%3C/svg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 56 32'%3E%3Cpath fill='black' d='M2 2h10l16 14L12 30H2l16-14L2 2zm22 0h10l16 14L34 30H24l16-14L24 2z'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* Ready-chevron progress trail */
.quote-trail {
  display: grid;
  gap: 14px;
  animation: rise .95s .08s cubic-bezier(.2,.7,.2,1) both;
}
.trail-rail {
  height: 3px;
  border-radius: 999px;
  background: rgba(255,255,255,.18);
  overflow: hidden;
}
.trail-rail-fill {
  height: 100%;
  width: 12%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--ember), #f0a060 70%, #fff);
  box-shadow: 0 0 18px rgba(196, 90, 26, 0.55);
  transition: width .55s cubic-bezier(.2,.7,.2,1);
}
.trail-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
}
.trail-step {
  width: 100%;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: center;
  text-align: left;
  font: inherit;
  color: rgba(247, 250, 248, 0.55);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  padding: 12px 12px 12px 10px;
  cursor: pointer;
  transition: background .2s, border-color .2s, color .2s, transform .2s, box-shadow .2s;
}
.trail-step:hover:not(:disabled) {
  color: #fff;
  border-color: rgba(255,255,255,.35);
  transform: translateY(-2px);
}
.trail-step:disabled {
  opacity: .42;
  cursor: not-allowed;
}
.trail-step.is-done {
  color: rgba(247, 250, 248, 0.9);
  background: rgba(19, 78, 69, 0.35);
  border-color: rgba(110, 184, 201, 0.35);
}
.trail-step.is-active {
  color: #fff;
  background: rgba(196, 90, 26, 0.28);
  border-color: rgba(196, 90, 26, 0.75);
  box-shadow: 0 12px 32px rgba(196, 90, 26, 0.28);
}
.trail-mark {
  width: 36px; height: 28px;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.ready-chevs {
  width: 32px; height: 18px;
  fill: currentColor;
  display: block;
}
.trail-step.is-active .ready-chevs {
  color: var(--ember);
  animation: chevPulse 1.25s ease-in-out infinite;
  filter: drop-shadow(0 0 8px rgba(196, 90, 26, 0.55));
}
.trail-step.is-done .ready-chevs { color: var(--glacier); }
@keyframes chevPulse {
  0%, 100% { transform: translateX(0); opacity: 1; }
  50% { transform: translateX(3px); opacity: .85; }
}
.trail-text { display: grid; gap: 1px; min-width: 0; }
.trail-idx {
  font-size: .68rem; font-weight: 800; letter-spacing: .12em;
  text-transform: uppercase; opacity: .7;
}
.trail-label {
  font-family: var(--font-display);
  font-weight: 700; font-size: .95rem; letter-spacing: -0.02em;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.trail-progress {
  margin: 0;
  font-size: .8rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  color: rgba(247, 250, 248, 0.7);
}

.quote-aside-top {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 12px;
}
.quote-aside-mark {
  color: var(--ember);
  width: 28px; height: 18px;
  display: grid; place-items: center;
}
.quote-aside-mark .ready-chevs { width: 26px; height: 15px; }
.quote-aside {
  position: sticky; top: calc(var(--nav-h) + 16px);
  background:
    linear-gradient(165deg, rgba(19, 78, 69, 0.08), transparent 40%),
    var(--snow);
}

.quote-sticky {
  position: fixed; left: 12px; right: 12px; bottom: 12px; bottom: max(12px, env(safe-area-inset-bottom));
  z-index: 40; display: none; align-items: center; justify-content: space-between; gap: 12px;
  padding: 12px 14px; border-radius: 14px;
  background: rgba(247, 250, 248, 0.96); border: 1px solid var(--line);
  box-shadow: 0 16px 40px rgba(12, 22, 20, 0.18); backdrop-filter: blur(8px);
}
.quote-sticky-sum { display: grid; gap: 2px; font-size: .78rem; color: var(--muted); }
.quote-sticky-sum strong { font-size: 1.05rem; color: var(--ink); }
@media (max-width: 960px) {
  .quote-sticky { display: flex; }
  .quote-aside { display: none; }
  .quote-layout { grid-template-columns: 1fr; }
  .quote-stage { min-height: 44svh; }
  .quote-stage-inner { padding-bottom: 72px; }
  .quote-body { margin-top: -40px; }
  .trail-steps { grid-template-columns: repeat(5, minmax(64px, 1fr)); overflow-x: auto; }
  .trail-label { font-size: .78rem; }
  .trail-step { padding: 10px 8px; gap: 6px; grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .trail-text { justify-items: center; }
  .trail-mark { width: 28px; height: 22px; }
}
.car-option {
  cursor: pointer; border: 1px solid var(--line); border-radius: var(--radius);
  transition: border-color .15s ease, background .15s ease, box-shadow .15s ease;
}
.car-option.is-selected {
  border-color: var(--lake); background: rgba(19, 78, 69, 0.05);
  box-shadow: 0 0 0 1px var(--lake);
}
.car-option input { position: absolute; opacity: 0; pointer-events: none; }
.car-option-price { text-align: right; display: grid; gap: 6px; justify-items: end; align-content: center; }
.car-pick {
  width: 22px; height: 22px; border-radius: 999px; border: 1px solid var(--line);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: .75rem; font-weight: 800; color: var(--lake);
}
.car-option.is-selected .car-pick { background: var(--lake); color: #fff; border-color: var(--lake); }
.extra-row.extra-toggle {
  width: 100%; text-align: left; font: inherit; cursor: pointer;
  appearance: none; -webkit-appearance: none;
}
.extra-copy h4 { margin: 0; font-size: .95rem; }
.extra-copy p { margin: 2px 0 0; color: var(--muted); font-size: .82rem; }
.extra-toggle-state {
  font-size: .78rem; font-weight: 700; padding: 7px 10px; border-radius: 8px;
  background: #e4ebe8; color: var(--ink); white-space: nowrap;
}
.extra-row.is-on .extra-toggle-state,
.extra-toggle.is-on .extra-toggle-state {
  background: var(--lake); color: var(--snow);
}
.qty-stepper {
  display: inline-flex; align-items: center; gap: 6px;
  border: 1px solid var(--line); border-radius: 999px; padding: 4px;
  background: #fff;
}
.qty-btn {
  width: 32px; height: 32px; border: 0; border-radius: 999px; cursor: pointer;
  background: #e4ebe8; color: var(--ink); font: inherit; font-weight: 800; font-size: 1rem;
}
.qty-btn:hover { background: rgba(19, 78, 69, 0.16); }
.qty-val {
  min-width: 1.5rem; text-align: center; font-weight: 700; font-variant-numeric: tabular-nums;
}
.cover-simple { margin: 0 0 20px; }
.cover-simple-grid {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px;
}
@media (max-width: 960px) {
  .cover-simple-grid { grid-template-columns: 1fr; }
}
.summary-box {
  background: linear-gradient(180deg, #eef3f1, #e2ebe7);
  border-radius: var(--radius);
  padding: 16px;
  margin-top: 12px;
  border: 1px solid rgba(19, 78, 69, 0.08);
}
.summary-box dl { margin: 0; display: grid; gap: 8px; }
.summary-box dt { color: var(--muted); font-size: .8rem; }
.summary-box dd { margin: 0; font-weight: 600; }
.result-row {
  display: grid; grid-template-columns: 160px 1fr auto; gap: 14px; align-items: center;
  background: var(--snow); border: 1px solid var(--line); border-radius: var(--radius); padding: 12px; margin-bottom: 10px;
}
.result-row .thumb {
  height: 100px; border-radius: 10px; background-size: cover; background-position: center;
}
.line-items { font-size: .88rem; color: var(--muted); margin: 6px 0 0; }
.line-items li { margin-bottom: 2px; }

.site-footer {
  border-top: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(10, 46, 40, 0.04), transparent 40%),
    var(--basalt);
  color: rgba(247, 250, 248, 0.88);
  padding: 40px 20px 110px;
}
.site-footer .brand { color: #fff; }
.site-footer .brand strong { color: #fff; }
.site-footer .footer-tag {
  color: rgba(247, 250, 248, 0.55);
  font-size: .85rem;
}
.footer-grid {
  max-width: 1180px; margin: 0 auto;
  display: grid; grid-template-columns: 1.2fr 1fr 1fr 1fr; gap: 24px;
}
.footer-grid h4 {
  margin: 0 0 10px; font-size: .8rem; text-transform: uppercase; letter-spacing: .08em;
  color: var(--glacier);
}
.footer-grid a, .footer-grid p { color: rgba(247, 250, 248, 0.72); text-decoration: none; font-size: .92rem; }
.footer-grid a:hover { color: #fff; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.fineprint {
  max-width: 1180px; margin: 28px auto 0; color: rgba(247, 250, 248, 0.45); font-size: .8rem;
}
.site-footer .int-pill {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.14);
  color: rgba(247, 250, 248, 0.75);
}

.sticky-cta {
  position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 60;
  display: none; align-items: center; justify-content: space-between; gap: 12px;
  background: var(--basalt); color: #fff; border-radius: var(--radius); padding: 12px 14px;
  box-shadow: 0 12px 40px rgba(0,0,0,.3);
  border: 1px solid rgba(110, 184, 201, 0.25);
}
.sticky-cta.is-on { display: flex; }
.sticky-cta span { display: block; color: rgba(255,255,255,.7); font-size: .8rem; }

.integrations {
  display: flex; flex-wrap: wrap; gap: 10px; margin-top: 12px;
}
.int-pill {
  border: 1px solid var(--line); background: var(--snow); border-radius: 999px;
  padding: 8px 12px; font-size: .8rem; font-weight: 600; color: var(--muted);
}
button.engine-toggle {
  cursor: pointer;
  font: inherit;
}
button.engine-toggle:hover {
  color: var(--ink);
  border-color: var(--lake);
}

@media (max-width: 1100px) {
  .search-bar,
  .search-bar.has-drop {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
  .search-bar .btn-search {
    grid-column: 1 / -1;
    width: 100%;
  }
  .strip { grid-template-columns: 1fr 1fr; margin-left: 24px; margin-right: 24px; }
}

@media (max-width: 960px) {
  .site-header {
    gap: 8px;
    padding: 10px 12px;
    padding-top: max(10px, env(safe-area-inset-top));
  }
  .nav-links { display: none; }
  .nav-links.is-open {
    display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(230, 236, 234, 0.98); padding: 16px 20px; border-bottom: 1px solid var(--line);
    z-index: 60;
  }
  .menu-toggle { display: inline-flex; margin-left: auto; }
  .nav-actions { gap: 6px; }
  .nav-actions .btn-ghost,
  .nav-actions .btn-header-quote { display: none; }
  .lang-switch button { padding: 6px 8px; }
  .grid-2, .grid-3, .grid-4, .quote-layout, .footer-grid, .result-row, .cover-grid {
    grid-template-columns: 1fr;
  }
  .hero {
    min-height: 66svh;
    padding: 28px 16px 72px;
  }
  .hero-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }
  .hero-logo { width: min(360px, 88vw); }
  .brand-rest { display: none; }
  .search-dock {
    margin-top: -48px;
    padding: 0 16px;
  }
  .search-float.is-pinned {
    width: calc(100% - 24px);
    bottom: 12px;
    bottom: max(12px, env(safe-area-inset-bottom));
  }
  .search-bar,
  .search-bar.has-drop {
    grid-template-columns: 1fr;
  }
  .search-bar .btn-search {
    grid-column: auto;
    width: 100%;
  }
  .strip {
    grid-template-columns: 1fr;
    margin: 24px 16px 0;
  }
  .brand-mark { height: 36px; width: 36px; }
  .route-card { min-height: 220px; }
}
