/* ============================================================
   VISA INFINITE TIERS — ATLAS
   One stylesheet. Reads tokens.css and nothing else.
   No box-shadow anywhere: depth is surface stepping and
   atmosphere, never elevation.
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
:root[data-motion="none"] html { scroll-behavior: auto; }
body {
  margin: 0; background: var(--void); color: var(--ink);
  font-family: var(--font-body); font-size: var(--text-body-lg);
  line-height: var(--leading-body-lg); font-weight: var(--fw-regular);
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
::selection { background: var(--copper); color: var(--paper); }
:focus-visible { outline: 2px solid var(--copper-lift); outline-offset: 3px; }

.skip {
  position: absolute; left: -9999px; top: 8px; z-index: 200;
  background: var(--copper); color: var(--paper);
  padding: 12px 20px; border-radius: var(--radius-button); font-size: var(--text-body);
}
.skip:focus { left: 16px; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ---------- 1. Layout ------------------------------------- */
.wrap    { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.measure { width: 100%; max-width: var(--measure); margin-inline: auto; }
.section { padding-block: var(--section-y); position: relative; }
.rule    { height: 1px; background: var(--line); border: 0; margin: 0; }

/* ---------- 2. Type --------------------------------------- */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: var(--fw-bold); margin: 0; }
h1 { font-size: var(--text-hero); line-height: 1.02; letter-spacing: -0.03em; }
h2 { font-size: var(--text-display); line-height: 1.1; letter-spacing: var(--tracking-display); }
h3 { font-size: var(--text-heading); line-height: var(--leading-heading); letter-spacing: -0.014em; }
h4 { font-size: var(--text-body-lg); line-height: 1.3; letter-spacing: -0.008em; }

.lede {
  font-size: var(--text-subheading); line-height: var(--leading-subheading);
  color: var(--ink); font-weight: var(--fw-regular); margin: 0;
}
.body  { font-size: var(--text-body-lg); line-height: 1.6; color: var(--frost); margin: 0; }
.muted { color: var(--ash); }

/* the monospaced second voice — annotations only, never headings */
.mono {
  font-family: var(--font-mono); font-weight: var(--fw-regular);
  font-size: var(--text-micro); line-height: var(--leading-micro);
  color: var(--ash); letter-spacing: .02em;
}
.mono--caption { font-size: var(--text-caption); }
.eyebrow {
  font-family: var(--font-mono); font-size: var(--text-micro); line-height: 1.5;
  letter-spacing: .18em; text-transform: uppercase; color: var(--ash);
  margin: 0 0 var(--s-24);
}
.eyebrow b { color: var(--copper-lift); font-weight: var(--fw-regular); }

/* centred narrative — the Atlas reading rhythm */
.narrative { text-align: center; display: grid; gap: var(--s-32); justify-items: center; }
.narrative h2 { max-width: 18ch; }
.narrative .lede { max-width: 42ch; }
.narrative .body { max-width: 56ch; }

/* ---------- 3. Buttons ------------------------------------ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-body); font-size: var(--text-body-lg); line-height: 1.24;
  font-weight: var(--fw-regular); text-decoration: none; cursor: pointer;
  padding: 16px 32px; border-radius: var(--radius-button); border: 1px solid transparent;
  transition: background var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease),
              color var(--dur-fast) var(--ease);
}
.btn--primary { background: var(--copper); color: var(--accent-ink); }
.btn--primary:hover { background: var(--copper-deep); }
.btn--ghost { background: transparent; color: var(--paper); border-color: var(--ash); }
.btn--ghost:hover { border-color: var(--paper); background: var(--surface); }
.btn--block { width: 100%; }
.btn .arw { transition: transform var(--dur-fast) var(--ease); }
.btn:hover .arw { transform: translateX(3px); }

/* ---------- 4. Navigation --------------------------------- */
/* No bar over the hero — it fades in once the hero is behind you. */
.nav {
  position: fixed; inset-inline: 0; top: 0; z-index: 80;
  display: flex; align-items: center; justify-content: space-between; gap: var(--s-16);
  padding: var(--s-16) var(--gutter);
  opacity: 0; pointer-events: none;
  background: color-mix(in srgb, var(--void) 82%, transparent);
  backdrop-filter: blur(20px) saturate(1.2);
  border-bottom: 1px solid var(--line);
  transition: opacity var(--dur) var(--ease);
}
.nav.is-stuck { opacity: 1; pointer-events: auto; }
.nav__links { display: flex; align-items: center; gap: 2px; }
.nav__links a {
  font-size: var(--text-body); color: var(--ash); text-decoration: none;
  padding: 8px 14px; border-radius: var(--radius-button);
  transition: color var(--dur-fast), background var(--dur-fast);
}
.nav__links a:hover { color: var(--paper); background: var(--surface); }
.nav__links a.nav__cta {
  margin-left: var(--s-8); padding: 10px 22px; font-size: var(--text-body);
  background: var(--copper); color: var(--accent-ink);
}
.nav__links a.nav__cta:hover { background: var(--copper-deep); color: var(--accent-ink); }
@media (max-width: 1040px) {
  .nav { flex-wrap: wrap; row-gap: 6px; padding-block: 12px 8px; }
  .nav__links {
    order: 3; width: 100%; overflow-x: auto; scrollbar-width: none;
    margin-inline: calc(var(--gutter) * -1); padding-inline: var(--gutter);
  }
  .nav__links::-webkit-scrollbar { display: none; }
  .nav__links a { white-space: nowrap; font-size: var(--text-micro); padding: 6px 11px; }
  .nav__cta { display: none; }
}

/* ---------- 5. Brand marks -------------------------------- */
.vmark { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; color: inherit; }
.vmark svg { height: 17px; width: auto; fill: var(--paper); display: block; }
.vmark__sub {
  font-family: var(--font-mono); font-size: var(--text-caption); letter-spacing: .24em;
  text-transform: uppercase; color: var(--ash);
  padding-left: 12px; border-left: 1px solid var(--line-strong); line-height: 1;
}

/* ---------- 6. Hero --------------------------------------- */
.hero {
  position: relative; min-height: 100svh; display: grid;
  grid-template-rows: 1fr auto; isolation: isolate; overflow: hidden;
  padding-block: var(--s-32) var(--s-48);
}
.hero__plate { position: absolute; inset: 0; z-index: 0; }
.hero__plate img { width: 100%; height: 100%; object-fit: cover; will-change: transform; }
/* atmosphere in, hard cut never: the void eats the plate at both edges */
.hero__plate::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(to bottom, rgb(0 0 0 / .62) 0%, rgb(0 0 0 / .25) 26%,
                    rgb(0 0 0 / .35) 58%, #141414 88%, var(--void) 100%),
    radial-gradient(72% 52% at 50% 46%, transparent 0%, rgb(0 0 0 / .5) 100%);
}
.hero > *:not(.hero__plate) { position: relative; z-index: 2; }
.hero__mid {
  display: grid; justify-items: center; align-content: center; gap: var(--s-32);
  text-align: center; padding-inline: var(--gutter);
}
.hero__card { width: clamp(212px, 26vw, 352px); max-width: calc(34svh * 1.586); }
.hero__title { max-width: 16ch; }
.hero__sub { max-width: 40ch; color: var(--frost); font-size: var(--text-subheading);
  line-height: var(--leading-subheading); margin: 0; }
.hero__bot { display: grid; justify-items: center; gap: var(--s-24); padding-inline: var(--gutter); }
.hero__tiers { display: flex; flex-wrap: wrap; gap: var(--s-8); justify-content: center; }
.scroll-line { width: 52px; height: 1px; background: var(--frost); opacity: .55; }

/* a halo, not a shadow — atmosphere is allowed, elevation is not */
.hero__card { position: relative; }
.hero__card::before {
  content: ""; position: absolute; inset: -22% -14%; z-index: -1;
  background: radial-gradient(52% 52% at 50% 50%, rgb(201 132 86 / .28) 0%, transparent 72%);
  filter: blur(26px);
}

/* ---------- 7. Tags ---------------------------------------- */
.tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: var(--text-micro); line-height: 1;
  letter-spacing: .14em; text-transform: uppercase;
  padding: 10px 18px; border-radius: var(--radius-pill);
  border: 1px solid var(--line-strong); color: var(--frost);
  text-decoration: none; white-space: nowrap;
  transition: border-color var(--dur-fast), color var(--dur-fast), background var(--dur-fast);
}
.tag:hover { border-color: var(--paper); color: var(--paper); }
.tag i { width: 5px; height: 5px; border-radius: 50%; background: currentColor; }
.tag--accent { border-color: var(--copper-lift); color: var(--copper-lift); }
.tag--accent:hover { background: var(--accent-soft); border-color: var(--copper-lift); color: var(--paper); }

/* ---------- 8. Card art ------------------------------------ */
/* The supplied card photography, used exactly as given. Nothing is
   recoloured and no lockup is drawn — the branding lives in the art.
   A card whose file is missing removes itself rather than showing a
   broken image or an invented stand-in.                            */
.vcard {
  position: relative; width: 100%; margin: 0; display: block;
  transition: transform .9s var(--ease-expo);
}
.vcard > img { width: 100%; height: auto; display: block; }
.vcard[data-missing] { display: none; }
.tier:hover .vcard, .hero__card:hover .vcard { transform: translateY(-5px); }

/* an angled cut-out needs air around it; a flat plate does not */
.vcard.is-angled { margin-block: calc(var(--s-16) * -1); }
/* a flat, trimmed plate carries no transparent padding, so it needs a smaller
   box than the angled cut-outs to read at the same physical size */
.hero__card:has(.is-plate) { width: clamp(228px, 26vw, 358px); max-width: calc(34svh * 1.586); }
/* every supplied render is an angled cut-out carrying ~15% transparent padding,
   so the visible card is smaller than its box — widen the box to compensate */
.cardshow { width: min(500px, 80vw); }
.hero__card { width: clamp(250px, 31vw, 420px); max-width: calc(40svh * 1.586); }

/* ---------- 8b. The hero card, in metal --------------------
   The supplied art is a transparent PNG, so the light has to be
   masked to the card's own alpha or it paints a rectangle over
   the sky. JS hands us the exact stamped URL the <img> already
   loaded (same cache entry, no second request) and only then
   adds .has-sheen — no JS, no sheen, card untouched.

   --sheen-mask MUST hold an absolute URL. A relative one inside a
   custom property resolves against the sheet that substitutes it
   — atlas.css — so Chrome asks for /css/assets/card-hero.png, the
   mask 404s, and a failed mask renders the element fully
   transparent rather than unmasked. The card simply disappears.

   One mask on the figure clips both layers; the figure's box is
   exactly the image's box, so the card art passes through
   untouched.

   Two layers: a fixed bevel so it reads as metal while still,
   and a rare raking sweep so it catches the light.            */
.vcard.has-sheen {
  isolation: isolate;
  -webkit-mask-image: var(--sheen-mask); mask-image: var(--sheen-mask);
  -webkit-mask-size: 100% 100%;         mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;       mask-repeat: no-repeat;
}
.vcard.has-sheen::before,
.vcard.has-sheen::after {
  content: ""; position: absolute; inset: 0; z-index: 2; pointer-events: none;
}
/* the bevel — a brushed plate lit from the upper left */
.vcard.has-sheen::before {
  background: linear-gradient(142deg,
    rgb(255 255 255 / .13) 0%, rgb(255 255 255 / .04) 22%,
    transparent 44%, transparent 62%,
    rgb(224 163 119 / .07) 80%, rgb(0 0 0 / .20) 100%);
  mix-blend-mode: overlay;
}
/* the sweep — narrow hot core with a warm edge and a thin second
   glint trailing it. One wide soft band reads as haze on the art;
   two tight ones read as light crossing a milled surface.      */
.vcard.has-sheen::after {
  background: linear-gradient(104deg,
    transparent 0%, transparent 40.5%,
    rgb(224 163 119 / .10) 44.5%,
    rgb(255 255 255 / .38) 47.6%,
    rgb(224 163 119 / .10) 50.7%,
    transparent 54.5%, transparent 57%,
    rgb(255 255 255 / .13) 59%,
    transparent 61.5%, transparent 100%);
  background-size: 300% 100%;
  background-repeat: no-repeat;
  mix-blend-mode: screen;
  /* NOT --ease-expo: an ease-out fires the band across in ~150ms and
     reads as a flicker. A near-symmetric curve rakes it. ~1.8s of
     travel, then ~2.7s of nothing — the pause is what keeps it a
     glint rather than a strobe.                                   */
  animation: sheen 4.5s cubic-bezier(.62, .06, .36, 1) 1.1s infinite;
}
@keyframes sheen {
  0%   { background-position: 128% 0; }
  40%  { background-position: -34% 0; }
  100% { background-position: -34% 0; }
}
/* nothing to catch the light if nobody is looking at it */
.vcard.has-sheen.is-away::after { animation-play-state: paused; }

/* A filament of light running the card's edge, in step with the sweep.
   It lives on .hero__card, NOT inside .vcard — the figure carries the
   alpha mask, which would clip the outer half of the stroke and chew
   the corners wherever the rect's radius missed the art's by a pixel.
   rx 22 is measured off the PNG's own alpha (the corner arc spans 22px
   of a 714x450 plate), and pathLength=100 normalises the perimeter so
   the dash is a flat 4% however the card is scaled.                  */
.vcard__trace {
  position: absolute; inset: 0; width: 100%; height: 100%;
  z-index: 3; pointer-events: none; overflow: visible;
}
.vcard__trace rect {
  fill: none; stroke: var(--white); stroke-width: 1.4;
  vector-effect: non-scaling-stroke; stroke-linecap: round;
  stroke-dasharray: 1.7 98.3; stroke-dashoffset: 0; opacity: 0;
  filter: drop-shadow(0 0 2.5px rgb(255 255 255 / .9))
          drop-shadow(0 0 7px rgb(224 163 119 / .8));
  animation: trace 4.5s cubic-bezier(.62, .06, .36, 1) 1.1s infinite;
}
@keyframes trace {
  0%   { stroke-dashoffset: 0;    opacity: 0; }
  5%   { opacity: 1; }
  34%  { opacity: 1; }
  40%  { stroke-dashoffset: -100; opacity: 0; }
  100% { stroke-dashoffset: -100; opacity: 0; }
}
.hero__card:has(.vcard.is-away) .vcard__trace rect { animation-play-state: paused; }
@media (prefers-reduced-motion: reduce) { .vcard__trace { display: none; } }

@media (prefers-reduced-motion: reduce) {
  .vcard.has-sheen::after { animation: none; background-position: -34% 0; }
}

/* ---------- 9. Section heads ------------------------------- */
.head { display: grid; justify-items: center; text-align: center; gap: var(--s-24);
  margin-bottom: clamp(40px, 6vw, 72px); }
.head h2 { max-width: 20ch; }
.head .lede { max-width: 54ch; color: var(--frost); }

/* ---------- 10. Tier panels -------------------------------- */
.tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-16); }
@media (max-width: 940px) { .tiers { grid-template-columns: 1fr; max-width: 520px; margin-inline: auto; } }
.tier {
  background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius-card);
  padding: var(--s-24); display: flex; flex-direction: column; gap: var(--s-16);
  transition: background var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease);
}
.tier:hover { background: var(--bg-3); border-color: var(--line-strong); }
.tier--feature { border-color: color-mix(in srgb, var(--copper) 44%, transparent); }
.tier__no { font-family: var(--font-mono); font-size: var(--text-caption); letter-spacing: .22em;
  text-transform: uppercase; color: var(--ash); }
.tier--feature .tier__no { color: var(--copper-lift); }
.tier__name { font-size: var(--text-heading); line-height: 1.1; letter-spacing: -.02em; }
.tier__lede { font-size: var(--text-body); line-height: 1.6; color: var(--frost); margin: 0; }
.tier__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.tier__list li { position: relative; padding-left: 20px; font-size: var(--text-body);
  line-height: 1.55; color: var(--ash); }
.tier__list li::before { content: ""; position: absolute; left: 0; top: .6em;
  width: 9px; height: 1px; background: var(--ink-ghost); }
.tier--feature .tier__list li::before { background: var(--copper-lift); }
.tier__foot { margin-top: auto; padding-top: var(--s-8); display: grid; gap: var(--s-8); }
.tier__fee { font-family: var(--font-mono); font-size: var(--text-caption);
  line-height: var(--leading-caption); color: var(--ash); text-align: center; }

/* ---------- 11. Benefit categories ------------------------- */
.cats { display: grid; gap: var(--s-16); }
.cat {
  background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius-card);
  padding: var(--s-24); display: grid; grid-template-columns: minmax(0, 240px) minmax(0, 1fr);
  gap: var(--s-24) var(--s-32);
}
@media (max-width: 860px) { .cat { grid-template-columns: 1fr; } }
.cat__aside { display: grid; gap: var(--s-8); align-content: start; }
.cat__ico { display: grid; place-items: center; width: 40px; height: 40px;
  border-radius: var(--radius-input); color: var(--copper-lift);
  background: var(--accent-soft); margin-bottom: var(--s-8); }
.cat__title { font-size: var(--text-subheading); line-height: 1.2; letter-spacing: -.016em; }
.cat__note { font-family: var(--font-mono); font-size: var(--text-micro);
  line-height: var(--leading-body); color: var(--ash); margin: 0; }
.cat__items { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: var(--s-16); }
@media (max-width: 640px) { .cat__items { grid-template-columns: 1fr; } }
.ben { display: grid; gap: 6px; align-content: start; padding-top: var(--s-16);
  border-top: 1px solid var(--line); }
.ben h4 { color: var(--paper); }
.ben p { font-size: var(--text-body); line-height: 1.6; color: var(--ash); margin: 0; }
.ben b { color: var(--frost); font-weight: var(--fw-bold); }

/* ---------- 12. Destinations ------------------------------- */
.cities { display: grid; grid-template-columns: repeat(5, 1fr); gap: var(--s-8);
  margin-top: clamp(32px, 4vw, 56px); }
@media (max-width: 900px) { .cities { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 540px) { .cities { grid-template-columns: repeat(2, 1fr); } }
.city {
  position: relative; aspect-ratio: 1; margin: 0; padding: 0; border: 0;
  background: none; cursor: pointer; perspective: 1000px; font: inherit; color: inherit;
  -webkit-tap-highlight-color: transparent;
}
.city__inner {
  position: absolute; inset: 0; transform-style: preserve-3d;
  transition: transform calc(.85s * var(--motion)) var(--ease-expo);
}
.city.is-flipped .city__inner { transform: rotateY(180deg); }
.city__face {
  position: absolute; inset: 0; overflow: hidden;
  border-radius: var(--radius-input); background: var(--bg-2);
  -webkit-backface-visibility: hidden; backface-visibility: hidden;
}
.city__front img {
  width: 100%; height: 100%; object-fit: cover; opacity: .82;
  transition: transform 1.2s var(--ease-expo), opacity var(--dur) var(--ease);
}
.city:hover .city__front img { transform: scale(1.06); opacity: 1; }
.city__cap {
  position: absolute; inset: auto 0 0 0; padding: var(--s-24) 14px 12px; text-align: left;
  background: linear-gradient(transparent, rgb(7 12 24 / .92));
}
.city__cap b { display: block; font-size: var(--text-body); font-weight: var(--fw-bold);
  letter-spacing: -.012em; color: var(--pearl); }
.city__cap em { display: block; font-family: var(--font-mono); font-style: normal;
  font-size: var(--text-caption); letter-spacing: .04em; color: var(--ash); margin-top: 4px; }

/* the back */
.city__back {
  transform: rotateY(180deg);
  background: linear-gradient(155deg, color-mix(in srgb, var(--copper) 13%, var(--bg-3)) 0%, var(--bg-2) 62%);
  border: 1px solid color-mix(in srgb, var(--copper) 34%, transparent);
  display: flex; flex-direction: column; gap: 8px;
  padding: 12px; text-align: left;
}
.city__title { font-size: var(--text-body); font-weight: var(--fw-bold);
  letter-spacing: -.012em; color: var(--pearl); }
.city__rows { display: grid; gap: 5px; }
.city__row {
  display: block; font-family: var(--font-mono); font-size: var(--text-caption);
  line-height: 1.35; color: var(--frost);
}
.city__row i { display: block; font-style: normal; letter-spacing: .14em;
  text-transform: uppercase; color: var(--copper-lift); margin-bottom: 1px; font-size: .92em; }

.city__hint {
  position: absolute; top: 10px; right: 10px;
  font-family: var(--font-mono); font-size: var(--text-caption); letter-spacing: .14em;
  text-transform: uppercase; color: var(--pearl);
  background: rgb(7 12 24 / .6); border: 1px solid rgb(244 242 239 / .22);
  border-radius: var(--radius-pill); padding: 3px 9px;
  opacity: 0; transition: opacity var(--dur-fast) var(--ease);
}
.city:hover .city__hint, .city:focus-visible .city__hint { opacity: 1; }
.city__back .city__hint { opacity: .55; }

@media (prefers-reduced-motion: reduce) {
  .city__inner { transition: none; transform: none !important; }
  .city__back { opacity: 0; transition: opacity .2s; }
  .city.is-flipped .city__back { opacity: 1; transform: rotateY(0deg); }
  .city.is-flipped .city__front { opacity: 0; }
}

/* ---------- 12b. Essentialist feature ---------------------- */
.essent {
  margin-top: clamp(28px, 3.6vw, 52px);
  display: grid; grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
  gap: 0; align-items: stretch;
  background: linear-gradient(150deg, color-mix(in srgb, var(--copper) 9%, var(--bg-2)) 0%, var(--bg-2) 58%);
  border: 1px solid color-mix(in srgb, var(--copper) 30%, transparent);
  border-radius: var(--radius-card); overflow: hidden;
}
@media (max-width: 900px) { .essent { grid-template-columns: 1fr; } }

.essent__media { position: relative; margin: 0; min-height: 300px; overflow: hidden; }
.essent__media img { width: 100%; height: 100%; object-fit: cover; opacity: .9; display: block;
  /* cut close to the column's own aspect, so cover trims only the sides
     and the figure stays centred */
  object-position: 50% 50%; }
.essent__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(105deg, transparent 38%, var(--bg-2) 99%);
}
@media (max-width: 900px) {
  .essent__media { min-height: 0; aspect-ratio: 16/9; }
  .essent__media::after { background: linear-gradient(transparent 42%, var(--bg-2) 99%); }
}
.essent__stamp {
  position: absolute; left: var(--s-24); top: var(--s-24); z-index: 2;
  font-family: var(--font-mono); font-size: var(--text-caption); letter-spacing: .12em;
  text-transform: uppercase; color: var(--copper-lift);
  border: 1px solid color-mix(in srgb, var(--copper) 46%, transparent);
  border-radius: var(--radius-pill); padding: 5px 11px;
  background: rgb(7 12 24 / .58);
}
/* 44 tracked-out characters fill a 375px panel edge to edge — let it
   take two lines rather than kiss the border */
@media (max-width: 560px) {
  .essent__stamp { max-width: calc(100% - 48px); white-space: normal;
    line-height: 1.55; letter-spacing: .08em; border-radius: var(--radius-card); }
}

.essent__body { padding: clamp(28px, 3.4vw, 52px); display: grid; gap: var(--s-24); align-content: start; }
.essent__title { font-size: var(--text-subheading); line-height: 1.18; letter-spacing: -.02em;
  color: var(--pearl); max-width: 26ch; margin: 0; }
.essent__lede { font-size: var(--text-body); line-height: 1.65; color: var(--frost); margin: 0; max-width: 62ch; }
.essent__lede b { color: var(--pearl); font-weight: var(--fw-bold); }

.essent__story { padding-left: var(--s-24); border-left: 2px solid var(--copper); display: grid; gap: 12px; }
.essent__storyhead {
  font-family: var(--font-mono); font-size: var(--text-caption); letter-spacing: .14em;
  text-transform: uppercase; color: var(--copper-lift); margin: 0;
}
.essent__story p { font-size: var(--text-body); line-height: 1.7; color: var(--ash); margin: 0; max-width: 62ch; }
.essent__storyalt { color: var(--ghost); }
.essent__storyalt i { font-style: italic; color: var(--ash); }

.essent__rows { list-style: none; margin: 0; padding: 0; display: grid; gap: 0; }
.essent__rows li {
  display: grid; grid-template-columns: 5.6em minmax(0, 1fr); gap: var(--s-16);
  padding: 11px 0; border-top: 1px solid var(--line);
  font-size: var(--text-body); line-height: 1.5;
}
.essent__rows li:last-child { border-bottom: 1px solid var(--line); }
.essent__rows i {
  font-style: normal; font-family: var(--font-mono); font-size: var(--text-caption);
  letter-spacing: .14em; text-transform: uppercase; color: var(--copper-lift);
  padding-top: .18em;
}
.essent__rows span { color: var(--frost); }
@media (max-width: 560px) {
  .essent__rows li { grid-template-columns: 1fr; gap: 4px; }
}

.essent__foot {
  font-family: var(--font-mono); font-size: var(--text-caption); letter-spacing: .04em;
  color: var(--ash); margin: 0; line-height: 1.7;
}
.essent__foot b { color: var(--frost); font-weight: 400; }

/* ---------- 13. Couture builder ---------------------------- */
.builder { display: grid; grid-template-columns: minmax(0,1fr) 336px; gap: var(--s-32); align-items: start; }
@media (max-width: 1040px) { .builder { display: flex; flex-direction: column; } }
.modgroup + .modgroup { margin-top: var(--s-48); }
.modgroup__head { display: flex; align-items: baseline; justify-content: space-between;
  gap: var(--s-16); padding-bottom: var(--s-16); border-bottom: 1px solid var(--line-strong); }
.modgroup__head h3 { font-size: var(--text-subheading); letter-spacing: -.018em; }
.modgroup__head span { font-family: var(--font-mono); font-size: var(--text-caption);
  letter-spacing: .16em; text-transform: uppercase; color: var(--ash); }
@media (max-width: 620px) { .modgroup__head { flex-direction: column; gap: 6px; } }

.mod {
  display: grid; grid-template-columns: 22px minmax(0,1fr) auto; gap: 6px var(--s-16);
  align-items: start; padding: var(--s-24) var(--s-16); border-bottom: 1px solid var(--line);
  cursor: pointer; border-radius: var(--radius-input);
  transition: background var(--dur-fast) var(--ease);
}
.mod:hover { background: var(--surface); }
.mod input { position: absolute; opacity: 0; pointer-events: none; }
.mod__box { width: 20px; height: 20px; margin-top: 3px; border: 1px solid var(--ink-ghost);
  border-radius: var(--radius-tag); display: grid; place-items: center;
  transition: all var(--dur-fast) var(--ease); }
.mod__box svg { width: 12px; height: 12px; stroke: var(--accent-ink); opacity: 0; transform: scale(.5);
  transition: all var(--dur-fast) var(--ease-expo); }
.mod input:checked ~ .mod__box { background: var(--copper); border-color: var(--copper); }
.mod input:checked ~ .mod__box svg { opacity: 1; transform: none; }
.mod input:focus-visible ~ .mod__box { outline: 2px solid var(--copper-lift); outline-offset: 3px; }
.mod:has(input:checked) { background: color-mix(in srgb, var(--copper) 9%, transparent); }
.mod__body h4 { margin: 0 0 6px; color: var(--paper); }
.mod__body p { font-size: var(--text-body); line-height: 1.6; color: var(--ash); margin: 0; }
.mod__meta { display: block; margin-top: 10px; font-family: var(--font-mono);
  font-size: var(--text-caption); letter-spacing: .04em; color: var(--ink-ghost); }
.mod__meta b { color: var(--ash); font-weight: 400; }
.mod__why { display: block; margin-top: 10px; padding-left: 12px;
  border-left: 1px solid color-mix(in srgb, var(--copper) 55%, transparent);
  font-family: var(--font-mono); font-size: var(--text-caption);
  line-height: var(--leading-body); color: var(--ash); }
.mod__atcost { display: inline-block; margin-top: 10px; font-family: var(--font-mono);
  font-size: var(--text-caption); letter-spacing: .14em; text-transform: uppercase;
  color: var(--copper-lift); }
.mod__price { text-align: right; white-space: nowrap; }
.mod__price b { display: block; font-family: var(--font-display); font-weight: var(--fw-bold);
  font-size: var(--text-subheading); letter-spacing: -.02em; font-variant-numeric: tabular-nums;
  color: var(--paper); }
.mod__price em { display: block; font-family: var(--font-mono); font-style: normal;
  font-size: var(--text-caption); letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink-ghost); margin-top: 4px; }
.mod:has(input:checked) .mod__price b { color: var(--copper-lift); }
.mod__econ { display: grid; gap: 3px; margin-top: 12px; padding-top: 10px;
  border-top: 1px solid var(--line); font-family: var(--font-mono);
  font-size: var(--text-caption); letter-spacing: .04em; }
.mod__econ > span { display: flex; align-items: baseline; justify-content: flex-end; gap: 10px;
  color: var(--ink-ghost); font-variant-numeric: tabular-nums; }
.mod__econ i { font-style: normal; }
.mod__econ em { font-style: normal; color: var(--ash); min-width: 4.6em; text-align: right;
  font-size: var(--text-caption); letter-spacing: .04em; text-transform: none; margin: 0; }
.mod__econ .is-retail em { text-decoration: line-through; }
@media (max-width: 620px) {
  .mod { grid-template-columns: 20px minmax(0,1fr); row-gap: var(--s-16); }
  .mod__price { grid-column: 2; text-align: left; }
  .mod__price b, .mod__price em { display: inline; margin: 0; }
  .mod__price em { margin-left: 8px; }
  .mod__econ > span { justify-content: flex-start; }
  .mod__econ em { min-width: 0; text-align: left; }
}

/* summary rail */
.summary { position: sticky; top: 96px; background: var(--bg-2);
  border: 1px solid var(--line-strong); border-radius: var(--radius-card); overflow: hidden; }
@media (max-width: 1040px) { .summary { position: static; order: -1; width: 100%; } }
.summary__top { padding: var(--s-24) var(--s-24) var(--s-16);
  background: linear-gradient(160deg, color-mix(in srgb, var(--copper) 30%, var(--bg-3)) 0%, var(--bg-2) 100%);
  border-bottom: 1px solid var(--line); }
.summary__label { font-family: var(--font-mono); font-size: var(--text-caption);
  letter-spacing: .2em; text-transform: uppercase; color: var(--frost); margin: 0 0 12px; }
.odo { display: flex; align-items: baseline; font-family: var(--font-display);
  font-weight: var(--fw-bold); font-size: clamp(34px, 2rem + 1.4vw, 46px); letter-spacing: -.035em;
  line-height: 1; font-variant-numeric: tabular-nums; color: var(--paper); }
.odo__cur { font-size: .46em; opacity: .6; margin-right: .16em; align-self: flex-start; padding-top: .3em; }
.odo__wheel { height: 1em; overflow: hidden; }
.odo__col { display: flex; flex-direction: column; transition: transform .9s var(--ease-expo); }
.odo__digit { height: 1em; line-height: 1; }
.odo__sep { opacity: .5; }
.summary__sub { font-family: var(--font-mono); font-size: var(--text-caption);
  line-height: var(--leading-body); color: var(--frost); margin: 14px 0 0; }
.summary__body { padding: var(--s-24); display: grid; gap: var(--s-16); }
.qbtns { display: flex; flex-wrap: wrap; gap: 6px; }
.qbtn { font-family: var(--font-mono); font-size: var(--text-caption); letter-spacing: .08em;
  text-transform: uppercase; padding: 8px 14px; border-radius: var(--radius-pill);
  border: 1px solid var(--line-strong); background: transparent; color: var(--ash); cursor: pointer;
  transition: all var(--dur-fast) var(--ease); }
.qbtn:hover { border-color: var(--paper); color: var(--paper); }
.summary__rows { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px;
  max-height: 220px; overflow-y: auto; }
.summary__rows li { display: flex; justify-content: space-between; gap: var(--s-16);
  font-size: var(--text-body); color: var(--ash); padding-bottom: 10px; border-bottom: 1px solid var(--line); }
.summary__rows li span:last-child { color: var(--paper); font-variant-numeric: tabular-nums; }
.summary__empty { font-family: var(--font-mono); font-size: var(--text-caption);
  line-height: var(--leading-body); color: var(--ash); margin: 0; }
.summary__calc { display: grid; gap: 8px; border-top: 1px solid var(--line-strong); padding-top: var(--s-16); }
.summary__calc div { display: flex; justify-content: space-between; gap: var(--s-16);
  font-size: var(--text-body); color: var(--ash); }
.summary__calc div b { color: var(--frost); font-weight: var(--fw-regular); font-variant-numeric: tabular-nums; }
.summary__calc .is-rule { padding-top: 10px; border-top: 1px solid var(--line); }
.summary__calc .is-total b { font-family: var(--font-display); font-weight: var(--fw-bold);
  font-size: var(--text-body-lg); color: var(--paper); }
.summary__calc .is-save, .summary__calc .is-save b { color: var(--copper-lift); }
.summary__calc .is-quiet, .summary__calc .is-quiet b { font-family: var(--font-mono);
  font-size: var(--text-caption); color: var(--ink-ghost); }
.summary__note { font-family: var(--font-mono); font-size: var(--text-caption);
  line-height: var(--leading-body); color: var(--ink-ghost); margin: 0; }
.summary__note b { color: var(--ash); font-weight: 400; }

/* mobile total bar */
.totalbar {
  position: fixed; inset: auto 0 0 0; z-index: 90; display: none;
  align-items: center; justify-content: space-between; gap: var(--s-16);
  padding: 14px var(--gutter) calc(14px + env(safe-area-inset-bottom));
  background: var(--copper); color: var(--paper);
  transform: translateY(102%); transition: transform .45s var(--ease-expo);
}
.totalbar.is-up { transform: none; }
.totalbar span { font-family: var(--font-mono); font-size: var(--text-caption);
  letter-spacing: .16em; text-transform: uppercase; opacity: .78; }
.totalbar b { font-family: var(--font-display); font-weight: var(--fw-bold);
  font-size: var(--text-subheading); letter-spacing: -.028em; font-variant-numeric: tabular-nums; }
@media (max-width: 1040px) { .totalbar { display: flex; } }

/* ---------- 14. Methodology -------------------------------- */
.method__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-16);
  margin-top: clamp(32px, 4vw, 48px); }
@media (max-width: 900px) { .method__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px) { .method__grid { grid-template-columns: 1fr; } }
.method__grid article { background: var(--bg-2); border: 1px solid var(--line);
  border-radius: var(--radius-card); padding: var(--s-24); display: grid; gap: 10px; align-content: start; }
.method__grid h4 { padding-bottom: 12px;
  border-bottom: 1px solid color-mix(in srgb, var(--copper) 46%, transparent); }
.method__grid p { font-size: var(--text-body); line-height: 1.6; color: var(--ash); margin: 0; }
.method__grid b { color: var(--frost); font-weight: var(--fw-bold); font-variant-numeric: tabular-nums; }

/* ---------- 14b. Packaged starting points ------------------ */
.packs__head { margin-top: clamp(56px, 7vw, 96px); padding-top: clamp(40px, 5vw, 64px);
  border-top: 1px solid var(--line-strong); display: grid; gap: var(--s-16);
  text-align: center; justify-items: center; }
.packs__head h3 { font-size: var(--text-subheading); line-height: 1.2;
  letter-spacing: -.02em; color: var(--pearl); max-width: 22ch; }
.packs__head p:not(.eyebrow) { font-size: var(--text-body); line-height: 1.65;
  color: var(--ash); margin: 0; max-width: 62ch; }

.packs { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-16);
  margin-top: clamp(32px, 4vw, 48px); align-items: stretch; }
@media (max-width: 980px) { .packs { grid-template-columns: 1fr; } }

.pack {
  /* flex column, not grid: align-content:start would defeat the
     margin-top:auto that bottom-aligns the three Apply buttons */
  display: flex; flex-direction: column; gap: var(--s-16);
  background: var(--bg-2); border: 1px solid var(--line);
  border-radius: var(--radius-card); padding: var(--s-24);
  transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.pack.is-on {
  border-color: color-mix(in srgb, var(--copper) 52%, transparent);
  background: linear-gradient(158deg, color-mix(in srgb, var(--copper) 8%, var(--bg-2)) 0%, var(--bg-2) 62%);
}
.pack__top { display: grid; gap: 8px; }
.pack__who { font-family: var(--font-mono); font-size: var(--text-caption);
  letter-spacing: .12em; text-transform: uppercase; color: var(--copper-lift); margin: 0;
  /* two lines' worth, so a descriptor that wraps doesn't drop its card's
     name out of line with the other two */
  line-height: 1.5; }
@media (min-width: 981px) { .pack__who { min-height: 3em; } }
.pack__name { font-size: var(--text-heading); line-height: 1.1; letter-spacing: -.024em;
  color: var(--pearl); margin: 0; }
.pack__quote { font-size: var(--text-body); line-height: 1.5; color: var(--frost);
  font-style: italic; margin: 0; }
.pack__note, .pack__why { font-size: var(--text-body); line-height: 1.6;
  color: var(--ash); margin: 0; }
.pack__why { padding-left: var(--s-16); border-left: 2px solid var(--copper); }

.pack__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 0; }
.pack__list li { display: flex; justify-content: space-between; gap: var(--s-16);
  padding: 9px 0; border-top: 1px solid var(--line);
  font-size: var(--text-body); line-height: 1.4; color: var(--frost); }
.pack__list li:last-child { border-bottom: 1px solid var(--line); }
.pack__list li span:last-child { color: var(--ash); font-family: var(--font-mono);
  font-size: var(--text-caption); font-variant-numeric: tabular-nums; white-space: nowrap;
  padding-top: .2em; }

.pack__foot { font-family: var(--font-mono); font-size: var(--text-caption);
  line-height: 1.6; color: var(--ghost); margin: 0; }

.pack__end { margin-top: auto; display: grid; gap: var(--s-16); }
.pack__total { display: flex; align-items: baseline; justify-content: space-between;
  gap: var(--s-16); padding-top: var(--s-16); border-top: 1px solid var(--line-strong);
  margin: 0; }
.pack__total span { font-family: var(--font-mono); font-size: var(--text-caption);
  letter-spacing: .12em; text-transform: uppercase; color: var(--ash); }
.pack__total b { font-family: var(--font-display); font-weight: var(--fw-bold);
  font-size: var(--text-subheading); letter-spacing: -.03em; color: var(--pearl);
  font-variant-numeric: tabular-nums; }

/* ---------- 15. Comparison table --------------------------- */
.cmp-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch;
  border: 1px solid var(--line); border-radius: var(--radius-card); background: var(--bg-2); }
.cmp { width: 100%; min-width: 840px; border-collapse: collapse; table-layout: fixed;
  font-size: var(--text-body); }
.cmp colgroup col:first-child { width: 27%; }
.cmp colgroup col:not(:first-child) { width: 24.33%; }
.cmp th, .cmp td { padding: 14px var(--s-16); text-align: left; vertical-align: top;
  border-bottom: 1px solid var(--line); }
.cmp thead th { position: sticky; top: 0; z-index: 2; background: var(--bg-3);
  border-bottom: 1px solid var(--line-strong);
  font-family: var(--font-display); font-weight: var(--fw-bold); font-size: var(--text-body-lg);
  letter-spacing: -.014em; color: var(--paper); }
.cmp thead th small { display: block; font-family: var(--font-mono); font-weight: 400;
  font-size: var(--text-caption); letter-spacing: .06em; color: var(--ash); margin-top: 5px; }
.cmp tbody th { font-weight: var(--fw-regular); color: var(--frost); }
.cmp td { color: var(--ash); }
.cmp .yes { color: var(--frost); }
.cmp .add { color: var(--copper-lift); }
.cmp .no  { color: var(--ink-ghost); }
.cmp tr.grp th { font-family: var(--font-mono); font-size: var(--text-caption);
  letter-spacing: .2em; text-transform: uppercase; color: var(--ash);
  padding-top: var(--s-32); border-bottom-color: var(--line-strong); }
.cmp col.is-accent { background: color-mix(in srgb, var(--copper) 10%, transparent); }

/* ---------- 17. Stats -------------------------------------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s-16); }
@media (max-width: 760px) { .stats { grid-template-columns: repeat(2, 1fr); } }
.stat { display: grid; gap: 10px; padding-top: var(--s-24); border-top: 1px solid var(--line-strong); }
.stat b { font-family: var(--font-display); font-weight: var(--fw-bold); letter-spacing: -.035em;
  font-size: clamp(30px, 1.4rem + 1.8vw, 44px); line-height: 1; color: var(--paper);
  font-variant-numeric: tabular-nums; }
.stat span { font-family: var(--font-mono); font-size: var(--text-caption);
  line-height: var(--leading-body); color: var(--ash); }

/* ---------- 18. Full-bleed plates -------------------------- */
.plate { position: relative; width: 100%; overflow: hidden; background: var(--void); }
.plate img { width: 100%; height: 100%; object-fit: cover; opacity: .82; }
.plate--tall { aspect-ratio: 21/9; }
@media (max-width: 720px) { .plate--tall { aspect-ratio: 4/3; } }
.plate::after { content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(56% 46% at 50% 52%, rgb(0 0 0 / .62) 0%, rgb(0 0 0 / .1) 100%),
    linear-gradient(to bottom, var(--void) 0%, transparent 20%,
              transparent 54%, #141414 86%, var(--void) 100%); }
.plate__body { position: absolute; inset: 0; z-index: 2; display: grid; align-content: center;
  justify-items: center; text-align: center; gap: var(--s-16); padding: var(--gutter); }
.plate__body h3 { font-size: var(--text-display); line-height: 1.08;
  letter-spacing: var(--tracking-display); max-width: 16ch; }
.plate__body p { font-size: var(--text-body-lg); line-height: 1.55; color: var(--frost);
  max-width: 48ch; margin: 0; }

/* ---------- 19. FAQ ---------------------------------------- */
.faq { display: grid; gap: 0; border-top: 1px solid var(--line); }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q { display: flex; align-items: center; gap: var(--s-16); padding: var(--s-24) 0;
  cursor: pointer; list-style: none; font-size: var(--text-body-lg); color: var(--paper);
  transition: color var(--dur-fast); }
.faq__q::-webkit-details-marker { display: none; }
.faq__q:hover { color: var(--copper-lift); }
.faq__n { font-family: var(--font-mono); font-size: var(--text-caption); letter-spacing: .1em;
  color: var(--ink-ghost); min-width: 2.4em; }
.faq__ic { margin-left: auto; position: relative; width: 12px; height: 12px; flex: 0 0 auto; }
.faq__ic::before, .faq__ic::after { content: ""; position: absolute; background: var(--ash);
  transition: transform var(--dur-fast) var(--ease), background var(--dur-fast); }
.faq__ic::before { inset: 5.5px 0 auto 0; height: 1px; }
.faq__ic::after  { inset: 0 auto 0 5.5px; width: 1px; }
.faq__item[open] .faq__ic::after { transform: scaleY(0); }
.faq__item[open] .faq__ic::before { background: var(--copper-lift); }
.faq__a { padding: 0 0 var(--s-24) calc(2.4em + var(--s-16)); }
.faq__a p { font-size: var(--text-body); line-height: 1.7; color: var(--ash); margin: 0; max-width: 72ch; }

/* ---------- 20. Footer ------------------------------------- */
.vfoot { border-top: 1px solid var(--line); padding-block: clamp(48px, 7vw, 88px) var(--s-32); }
.vfoot__grid { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: var(--s-48) var(--s-32);
  padding-bottom: var(--s-48); }
@media (max-width: 860px) { .vfoot__grid { grid-template-columns: 1fr 1fr; } }
.vfoot h5 { font-family: var(--font-mono); font-size: var(--text-caption); font-weight: 400;
  letter-spacing: .2em; text-transform: uppercase; color: var(--ink-ghost); margin: 0 0 var(--s-16); }
.vfoot ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.vfoot a { color: var(--ash); text-decoration: none; font-size: var(--text-body); }
.vfoot a:hover { color: var(--paper); }
.vfoot__lede { font-size: var(--text-body); line-height: 1.6; color: var(--ash);
  max-width: 34ch; margin: var(--s-16) 0 0; }
.vfoot__legal { padding-top: var(--s-32); border-top: 1px solid var(--line); display: grid; gap: var(--s-16); }
.vfoot__legal p { font-family: var(--font-mono); font-size: var(--text-caption);
  line-height: var(--leading-body); color: var(--ink-ghost); margin: 0; max-width: 100ch; }
.vfoot__legal b { color: var(--ash); font-weight: 400; }

/* ---------- 21. Reveals ------------------------------------ */
.word { display: inline-block; overflow: hidden; vertical-align: top; }
.word > span {
  display: inline-block; transform: translateY(105%); opacity: 0;
  transition: transform calc(.85s * var(--motion)) var(--ease-expo),
              opacity calc(.6s * var(--motion)) ease;
  transition-delay: calc(var(--i, 0) * var(--stagger));
}
.is-in .word > span { transform: none; opacity: 1; }
[data-reveal] {
  opacity: 0; transform: translateY(calc(18px * var(--motion)));
  transition: opacity calc(.8s * var(--motion)) var(--ease),
              transform calc(.9s * var(--motion)) var(--ease-expo);
  transition-delay: calc(var(--d, 0) * 1ms * var(--motion));
}
[data-reveal].is-in { opacity: 1; transform: none; }
:root[data-motion="none"] .word > span,
:root[data-motion="none"] [data-reveal] { opacity: 1 !important; transform: none !important; }

[hidden] { display: none !important; }

/* ============================================================
   22. TRIP DESK
   ============================================================ */
.trip {
  display: grid; grid-template-columns: 1fr auto 1fr auto; gap: var(--s-16);
  align-items: end; max-width: 880px; margin: 0 auto;
  padding: var(--s-24); background: var(--bg-2);
  border: 1px solid var(--line-strong); border-radius: var(--radius-card);
}
@media (max-width: 860px) {
  .trip { grid-template-columns: 1fr; }
  .trip__arrow { display: none; }
  .trip__go { width: 100%; }
}
.trip__field { display: grid; gap: 8px; min-width: 0; }
.trip__field label {
  font-family: var(--font-mono); font-size: var(--text-caption); letter-spacing: .18em;
  text-transform: uppercase; color: var(--ash);
}
.trip__field input {
  width: 100%; font-family: var(--font-display); font-size: var(--text-subheading);
  font-weight: var(--fw-bold); letter-spacing: -.018em; color: var(--pearl);
  background: transparent; border: 0; border-bottom: 1px solid var(--line-strong);
  border-radius: 0; padding: 6px 0; outline: none;
  transition: border-color var(--dur-fast) var(--ease);
}
.trip__field input::placeholder { color: var(--ghost); font-weight: var(--fw-regular); }
.trip__field input:focus { border-bottom-color: var(--copper); }
.trip__arrow { color: var(--ash); font-size: var(--text-subheading); padding-bottom: 8px; }
.trip__go { white-space: nowrap; }

.trip__summary {
  display: flex; flex-wrap: wrap; align-items: baseline; justify-content: space-between;
  gap: var(--s-16); max-width: 880px; margin: var(--s-32) auto 0;
  padding-bottom: var(--s-16); border-bottom: 1px solid var(--line-strong);
}
.trip__route {
  font-family: var(--font-display); font-weight: var(--fw-bold);
  font-size: var(--text-heading); letter-spacing: -.024em; color: var(--pearl); margin: 0;
}
.trip__route em { font-style: normal; color: var(--copper-lift); padding-inline: 6px; }
.trip__tally { display: flex; flex-wrap: wrap; gap: var(--s-16); }
.trip__tally span {
  font-family: var(--font-mono); font-size: var(--text-caption); letter-spacing: .1em;
  text-transform: uppercase; color: var(--ash);
}
.trip__tally b { color: var(--pearl); font-weight: var(--fw-regular); font-size: var(--text-body-lg); }
.trip__tally .is-e b { color: var(--copper-lift); }
.trip__unknown {
  max-width: 880px; margin: var(--s-16) auto 0; font-family: var(--font-mono);
  font-size: var(--text-caption); line-height: var(--leading-body); color: var(--ash);
}

.trip__groups { display: grid; gap: var(--s-32); margin-top: var(--s-32); }
.trip__group { display: grid; gap: var(--s-16); }
.trip__group > h3 {
  font-family: var(--font-mono); font-weight: var(--fw-regular);
  font-size: var(--text-caption); letter-spacing: .2em; text-transform: uppercase;
  color: var(--ash); padding-bottom: 12px; border-bottom: 1px solid var(--line);
}
.trip__items { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-16); }
@media (max-width: 900px) { .trip__items { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px) { .trip__items { grid-template-columns: 1fr; } }
.trip__item {
  background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius-card);
  padding: var(--s-24); display: grid; gap: 10px; align-content: start;
  transition: background var(--dur-fast), border-color var(--dur-fast);
}
.trip__item:hover { background: var(--bg-3); border-color: var(--line-strong); }
.trip__item h4 { color: var(--pearl); }
.trip__item p { font-size: var(--text-body); line-height: 1.6; color: var(--ash); margin: 0; }
.trip__tier {
  justify-self: start; margin-top: 4px;
  font-family: var(--font-mono); font-size: var(--text-caption); letter-spacing: .14em;
  text-transform: uppercase; padding: 5px 12px; border-radius: var(--radius-pill);
  border: 1px solid var(--line-strong); color: var(--ash);
}
.trip__item[data-tier="1"] { border-color: color-mix(in srgb, var(--copper) 40%, transparent); }
.trip__item[data-tier="1"] .trip__tier { border-color: var(--copper); color: var(--copper-lift); }
.trip__item[data-tier="2"] .trip__tier { border-color: var(--frost); color: var(--frost); }
.trip__cta { display: grid; justify-items: center; gap: var(--s-16); margin-top: var(--s-32); }

/* ============================================================
   23. SECTION CARD
   The supplied card art standing alone in its own tier section.
   ============================================================ */
.cardshow {
  position: relative; margin: 0 auto clamp(40px, 6vw, 72px);
  width: min(430px, 72vw); display: block;
}
.cardshow::before {
  content: ""; position: absolute; inset: -18% -12%; z-index: -1;
  background: radial-gradient(52% 52% at 50% 52%, rgb(201 132 86 / .22) 0%, transparent 72%);
  filter: blur(30px);
}
.cardshow .vcard { transition: transform 1s var(--ease-expo); }
.cardshow:hover .vcard { transform: translateY(-6px); }
/* if the art is not there, the slot takes no space at all */
.cardshow:has(.vcard[data-missing]) { display: none; }
.trip__tip {
  max-width: 880px; margin: var(--s-16) auto 0; padding: var(--s-16) var(--s-24);
  background: var(--bg-2); border-left: 2px solid var(--copper);
  border-radius: 0 var(--radius-input) var(--radius-input) 0;
  font-size: var(--text-body); line-height: 1.6; color: var(--frost);
}
.trip__item p b { color: var(--pearl); font-weight: var(--fw-bold); }

/* ============================================================
   24. TIER COST LEDGER
   ============================================================ */
.ledger {
  margin-top: clamp(32px, 5vw, 56px);
  border: 1px solid var(--line-strong); border-radius: var(--radius-card);
  background: var(--bg-2); overflow: hidden;
}
.ledger__head {
  padding: var(--s-24); border-bottom: 1px solid var(--line-strong);
  background: linear-gradient(160deg, color-mix(in srgb, var(--copper) 16%, var(--bg-3)) 0%, var(--bg-2) 100%);
  display: grid; gap: 10px;
}
.ledger__head h3 { font-size: var(--text-heading); letter-spacing: -.024em; color: var(--pearl); }
.ledger__head .mono { max-width: 70ch; color: var(--frost); }
.ledger__rows { list-style: none; margin: 0; padding: 0; counter-reset: l; }
.ledger__rows li {
  display: grid; grid-template-columns: minmax(0, 260px) 84px minmax(0, 1fr);
  gap: var(--s-16); align-items: baseline;
  padding: 14px var(--s-24); border-bottom: 1px solid var(--line);
}
.ledger__rows li:last-child { border-bottom: 0; }
.ledger__rows li:nth-child(odd) { background: rgb(255 255 255 / .014); }
.ledger__rows b { font-size: var(--text-body); font-weight: var(--fw-regular); color: var(--pearl); }
.ledger__rows .amt {
  font-family: var(--font-display); font-weight: var(--fw-bold); font-size: var(--text-body-lg);
  letter-spacing: -.02em; font-variant-numeric: tabular-nums; color: var(--copper-lift);
  text-align: right;
}
.ledger__rows .why { font-family: var(--font-mono); font-size: var(--text-caption);
  line-height: var(--leading-body); color: var(--ash); }
.ledger__rows li.is-total { background: var(--bg-3); border-top: 1px solid var(--line-strong); }
.ledger__rows li.is-total b, .ledger__rows li.is-total .amt { color: var(--pearl); }
.ledger__rows li.is-total .amt { font-size: var(--text-subheading); }
.ledger__foot { padding: var(--s-24); border-top: 1px solid var(--line); }
@media (max-width: 760px) {
  .ledger__rows li { grid-template-columns: 1fr auto; gap: 6px var(--s-16); }
  .ledger__rows .why { grid-column: 1 / -1; }
}

/* ============================================================
   25. DESTINATION COLLAGE
   ============================================================ */
.collage {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s-8);
  max-width: 880px; margin: var(--s-24) auto 0;
}
@media (max-width: 720px) { .collage { grid-template-columns: repeat(2, 1fr); } }
.collage__tile {
  position: relative; margin: 0; aspect-ratio: 1; overflow: hidden;
  border-radius: var(--radius-input); background: var(--bg-2);
}
.collage__tile img {
  width: 100%; height: 100%; object-fit: cover; opacity: .8;
  transition: transform 1.2s var(--ease-expo), opacity var(--dur) var(--ease);
}
.collage__tile:hover img { transform: scale(1.06); opacity: 1; }
.collage__tile figcaption {
  position: absolute; inset: auto 0 0 0; padding: var(--s-24) 12px 12px;
  background: linear-gradient(transparent, rgb(7 12 24 / .92));
}
.collage__tile b {
  display: block; font-size: var(--text-body); font-weight: var(--fw-bold);
  letter-spacing: -.012em; color: var(--pearl); line-height: 1.25;
}
.collage__tile em {
  display: block; font-family: var(--font-mono); font-style: normal;
  font-size: var(--text-caption); line-height: 1.45; color: var(--ash); margin-top: 4px;
}

/* benefits that come with any Infinite card and need no election */
.ben__std {
  display: inline-block; margin-left: 8px; vertical-align: 2px;
  font-family: var(--font-mono); font-size: var(--text-caption); font-weight: var(--fw-regular);
  letter-spacing: .14em; text-transform: uppercase; color: var(--copper-lift);
  border: 1px solid color-mix(in srgb, var(--copper) 45%, transparent);
  border-radius: var(--radius-tag); padding: 2px 7px;
}
.ben[data-std] { border-top-color: color-mix(in srgb, var(--copper) 34%, transparent); }

/* reaches the cardholder through Visa Offers + Perks — deliberately quieter
   than the Standard chip, which carries the louder distinction */
.ben__op {
  display: inline-block; margin-left: 6px; vertical-align: 2px; cursor: help;
  font-family: var(--font-mono); font-size: 9px; font-weight: var(--fw-regular);
  letter-spacing: .12em; color: var(--ink-ghost);
  border-bottom: 1px dotted var(--ink-ghost); padding-bottom: 1px;
}
.ben__op:hover { color: var(--ash); border-bottom-color: var(--ash); }
