/*
  Hana Motors — design tokens.
  Feel: a Japanese export office. Documents, stamps, concrete yard, one person you can reach.
  Type: IBM Plex Sans Condensed (headlines — shipping-label voice), IBM Plex Sans (body), Plex Mono only inside document artefacts.
*/
:root {
  --brand: #d6336c;
  --brand-dark: #a8244f;
  --brand-soft: #fbe4ec;
  --stamp: #c81e4c;
  --ink: #1b1f2a;
  --ink-2: #3d4352;
  --ink-3: #6b7280;
  --line: #d9dee5;
  --line-soft: #e8ecf1;
  --bg: #ffffff;
  --bg-2: #eef1f4;          /* concrete */
  --bg-3: #f6f7f9;
  --paper: #fffdf7;         /* auction-sheet paper */
  --paper-line: #e2dccb;
  --whatsapp: #128c7e;
  --whatsapp-dark: #0f766a;
  --ok: #15803d;
  --err: #c2410c;

  --font: "IBM Plex Sans", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-display: "IBM Plex Sans Condensed", "IBM Plex Sans", ui-sans-serif, system-ui, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  --fs-1: clamp(2.5rem, 1.6rem + 4vw, 4.5rem);
  --fs-2: clamp(1.75rem, 1.3rem + 1.6vw, 2.5rem);
  --fs-3: 1.375rem;
  --fs-body: 1.0625rem;
  --fs-small: 0.9375rem;
  --fs-tiny: 0.8125rem;
  --lh: 1.55;

  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 1rem;
  --space-4: 1.5rem;
  --space-5: 2.5rem;
  --space-6: 4rem;
  --space-7: 6.5rem;

  --radius: 6px;
  --radius-sm: 4px;
  --radius-pill: 999px;
  --shadow: 0 1px 0 rgb(27 31 42 / 0.06), 0 12px 32px -12px rgb(27 31 42 / 0.18);

  --container: 74rem;
  --container-rail: 46rem;
  --gutter: 1.25rem;

  --dur: 180ms;
  --dur-slow: 600ms;
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: var(--fs-body);
  line-height: var(--lh);
  color: var(--ink);
  background: var(--bg);
  font-feature-settings: "ss01", "tnum";
}
img, svg { display: block; max-width: 100%; }
[hidden] { display: none !important; }
h1, h2, h3 { margin: 0 0 var(--space-3); font-family: var(--font-display); line-height: 1.05; letter-spacing: -0.005em; }
h1 { font-size: var(--fs-1); font-weight: 700; }
h2 { font-size: var(--fs-2); font-weight: 700; }
h3 { font-size: var(--fs-3); font-weight: 600; line-height: 1.2; }
p { margin: 0 0 var(--space-3); }
a { color: var(--brand-dark); text-underline-offset: 0.15em; }
:focus-visible { outline: 3px solid var(--brand); outline-offset: 2px; }
strong { font-weight: 600; }

.container { width: min(100% - 2 * var(--gutter), var(--container)); margin-inline: auto; }
.rail { width: min(100% - 2 * var(--gutter), var(--container-rail)); margin-inline: auto; }
.section { padding-block: var(--space-6); }
.section--tint { background: var(--bg-2); }
.section--paper { background: var(--bg-3); }
.section__heading { max-width: 22ch; }
.section__sub { color: var(--ink-2); max-width: 60ch; margin-bottom: var(--space-5); font-size: 1.125rem; }
.section__heading + .section__sub { margin-top: calc(-1 * var(--space-2)); }
.section__kicker { display: block; color: var(--brand-dark); font-weight: 600; font-size: var(--fs-small); margin-bottom: var(--space-2); }

.skip-link { position: absolute; left: -999px; top: 0; background: var(--ink); color: #fff; padding: var(--space-2) var(--space-3); z-index: 100; }
.skip-link:focus { left: var(--space-3); top: var(--space-3); }
.visually-hidden { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--space-2);
  padding: 0.85rem 1.4rem; border-radius: var(--radius); border: 2px solid transparent;
  font-family: var(--font-display); font-weight: 600; font-size: 1.0625rem; letter-spacing: 0.01em; text-decoration: none; cursor: pointer;
  transition: background-color var(--dur) var(--ease), border-color var(--dur) var(--ease), color var(--dur) var(--ease);
}
.btn--primary { background: var(--brand); color: #fff; }
.btn--primary:hover { background: var(--brand-dark); }
.btn--whatsapp { background: var(--whatsapp); color: #fff; }
.btn--whatsapp:hover { background: var(--whatsapp-dark); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: #fff; }
.btn--block { width: 100%; }

/* Stamp: the recurring mark of the site (grade, approved, sold). */
.stamp {
  display: inline-grid; place-items: center; text-align: center;
  font-family: var(--font-display); font-weight: 700; color: var(--stamp);
  border: 2.5px solid var(--stamp); border-radius: 50%;
  width: 4.25rem; height: 4.25rem; line-height: 1; letter-spacing: 0.02em;
  transform: rotate(-8deg); opacity: 0.92;
}
.stamp--rect { border-radius: var(--radius-sm); width: auto; height: auto; padding: 0.35rem 0.7rem; text-transform: uppercase; font-size: var(--fs-small); letter-spacing: 0.08em; }
.stamp__big { font-size: 1.5rem; }
.stamp__small { font-size: 0.6rem; text-transform: uppercase; letter-spacing: 0.08em; }

/* One orchestrated entrance on the hero only; everything else is still. */
.reveal { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}
.header { position: sticky; top: 0; z-index: 50; background: var(--bg); border-bottom: 1px solid var(--line); }
.header__inner { display: flex; align-items: center; gap: var(--space-4); min-height: 68px; position: relative; }
.header__brand { display: flex; align-items: center; gap: var(--space-2); text-decoration: none; color: var(--ink); margin-right: auto; }
.header__mark { width: 30px; height: 30px; }
.header__wordmark { font-family: var(--font-display); font-weight: 700; font-size: 1.25rem; letter-spacing: 0.01em; }
.header__nav { display: none; gap: var(--space-4); }
.header__link { color: var(--ink-2); text-decoration: none; font-weight: 500; font-size: var(--fs-small); padding: 0.4rem 0; border-bottom: 2px solid transparent; }
.header__link:hover { color: var(--ink); border-bottom-color: var(--brand); }
.header__wa { padding: 0.6rem 1rem; font-size: var(--fs-small); }
.header__toggle { display: inline-grid; place-items: center; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--bg); cursor: pointer; }
.header__toggle-bar { width: 20px; height: 2px; background: var(--ink); box-shadow: 0 -6px 0 var(--ink), 0 6px 0 var(--ink); }
.header__toggle[aria-expanded="true"] .header__toggle-bar { background: transparent; box-shadow: none; }
.header__toggle[aria-expanded="true"] .header__toggle-bar::before { content: '✕'; display: block; margin-top: -0.7rem; font-size: 1.1rem; color: var(--ink); }
.header--open .header__nav { display: flex; flex-direction: column; gap: 0; position: absolute; left: 0; right: 0; top: 100%; padding: var(--space-2) 0 var(--space-3); background: var(--bg); border-bottom: 1px solid var(--line); box-shadow: var(--shadow); }
.header--open .header__link { font-size: 1.0625rem; padding: var(--space-3) var(--gutter); border-bottom: 1px solid var(--line-soft); }
@media (min-width: 48rem) { .header__nav { display: flex; } .header__toggle { display: none; } }
.footer { background: var(--ink); color: rgb(255 255 255 / 0.85); padding-block: var(--space-6) var(--space-4); }
.footer a { color: #fff; text-decoration: none; }
.footer a:hover { text-decoration: underline; }
.footer__grid { display: grid; gap: var(--space-5) var(--space-4); grid-template-columns: 1fr 1fr; }
.footer__col { display: grid; gap: var(--space-2); align-content: start; }
.footer__col--brand { grid-column: 1 / -1; }
.footer__brand { display: inline-flex; align-items: center; gap: var(--space-2); font-family: var(--font-display); font-weight: 700; font-size: 1.25rem; margin-bottom: var(--space-2); }
.footer__heading { font-family: var(--font-display); font-size: 1rem; font-weight: 600; color: #fff; margin: 0 0 var(--space-1); }
.footer__line { margin: 0; font-size: var(--fs-small); max-width: 40ch; }
.footer__line--muted { color: rgb(255 255 255 / 0.6); }
.footer__bottom { margin-top: var(--space-5); padding-top: var(--space-3); border-top: 1px solid rgb(255 255 255 / 0.15); }
@media (min-width: 64rem) { .footer__grid { grid-template-columns: 1.6fr 1fr 1fr 1fr; } .footer__col--brand { grid-column: auto; } }
:root { --brand: #d6336c; --ink: #0f172a; --ink-2: #334155; --ink-3: #64748b; --line: #e2e8f0; --bg: #fff; --bg-2: #f8fafc; --ok: #16a34a; --err: #dc2626; --radius: 8px; }
* { box-sizing: border-box; }
body { margin: 0; font: 15px/1.5 ui-sans-serif, system-ui, sans-serif; color: var(--ink); background: var(--bg-2); }
a { color: var(--brand); }
.admin__bar { display: flex; align-items: center; gap: 1rem; padding: 0.75rem 1rem; background: var(--bg); border-bottom: 1px solid var(--line); }
.admin__bar-title { font-weight: 700; margin-right: auto; text-decoration: none; color: var(--ink); }
.admin__nav { display: flex; flex-wrap: wrap; gap: 0.25rem 1rem; }
.admin__nav a { text-decoration: none; color: var(--ink-2); font-weight: 500; }
.admin__nav a:hover { color: var(--brand); }
.admin__bar-user { color: var(--ink-3); font-size: 0.875rem; }
.admin__main { padding: 1rem; max-width: 80rem; margin-inline: auto; }
.admin__flash { padding: 0.6rem 0.9rem; border-radius: var(--radius); margin-bottom: 1rem; }
.admin__flash--ok { background: #dcfce7; color: #166534; }
.admin__flash--err { background: #fee2e2; color: #991b1b; }
.numbers { display: grid; grid-template-columns: repeat(auto-fit, minmax(9rem, 1fr)); gap: 0.75rem; margin-bottom: 1.5rem; }
.numbers__tile { background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius); padding: 0.75rem 1rem; }
.numbers__label { color: var(--ink-3); font-size: 0.8125rem; text-transform: uppercase; letter-spacing: 0.04em; }
.numbers__value { font-size: 1.75rem; font-weight: 700; }
.numbers__prev { color: var(--ink-3); font-size: 0.8125rem; }
.filters { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1rem; }
.filters__link { padding: 0.3rem 0.7rem; border-radius: 999px; border: 1px solid var(--line); background: var(--bg); text-decoration: none; color: var(--ink-2); font-size: 0.875rem; }
.filters__link--active { background: var(--ink); color: #fff; border-color: var(--ink); }
.table { width: 100%; border-collapse: collapse; background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.table th, .table td { text-align: left; padding: 0.6rem 0.75rem; border-bottom: 1px solid var(--line); vertical-align: top; }
.table th { background: var(--bg-2); font-size: 0.8125rem; color: var(--ink-3); text-transform: uppercase; letter-spacing: 0.04em; }
.table__row:hover { background: #fff7fa; }
.status { display: inline-block; padding: 0.1rem 0.55rem; border-radius: 999px; font-size: 0.8125rem; font-weight: 600; background: var(--line); }
.status--new { background: #fef3c7; color: #92400e; }
.status--contacted { background: #dbeafe; color: #1e40af; }
.status--qualified { background: #e0e7ff; color: #3730a3; }
.status--forwarded { background: #ede9fe; color: #5b21b6; }
.status--deposit { background: #ccfbf1; color: #115e59; }
.status--shipped { background: #d1fae5; color: #065f46; }
.status--paid { background: #bbf7d0; color: #14532d; }
.status--lost { background: #fee2e2; color: #991b1b; }
.status--pending { background: #fef3c7; color: #92400e; }
.status--available { background: #d1fae5; color: #065f46; }
.status--reserved { background: #dbeafe; color: #1e40af; }
.status--sold { background: var(--line); color: var(--ink-2); }
.status--hidden { background: #fee2e2; color: #991b1b; }
.status--active { background: #d1fae5; color: #065f46; }
.status--inactive { background: var(--line); color: var(--ink-2); }
.detail { display: grid; gap: 1rem; }
.card { background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius); padding: 1rem; }
.card h2 { margin: 0 0 0.75rem; font-size: 1.125rem; }
.kv { display: grid; grid-template-columns: 9rem 1fr; gap: 0.35rem 0.75rem; margin: 0; }
.kv dt { color: var(--ink-3); }
.kv dd { margin: 0; }
.form { display: grid; gap: 0.6rem; }
.form label { display: grid; gap: 0.25rem; font-size: 0.875rem; font-weight: 600; }
.form input, .form select, .form textarea { font: inherit; padding: 0.5rem 0.65rem; border: 1px solid var(--line); border-radius: var(--radius); width: 100%; }
.form__row { display: grid; gap: 0.6rem; }
@media (min-width: 40rem) { .form__row { grid-template-columns: 1fr 1fr; } .form__row--3 { grid-template-columns: 1fr 1fr 1fr; } }
.form__check { display: flex !important; align-items: center; gap: 0.5rem; }
.form__check input { width: auto; }
.btn-link { font: inherit; font-weight: 600; padding: 0.55rem 1rem; border-radius: 999px; background: var(--brand); color: #fff; text-decoration: none; display: inline-block; }
.btn-ghost { background: transparent; color: var(--ink-2); border: 1px solid var(--line); }
.toolbar { display: flex; flex-wrap: wrap; gap: 0.75rem; align-items: center; margin-bottom: 1rem; }
.toolbar form { display: flex; gap: 0.5rem; align-items: center; }
.toolbar input, .toolbar select { font: inherit; padding: 0.4rem 0.6rem; border: 1px solid var(--line); border-radius: var(--radius); }
.form button { font: inherit; font-weight: 600; padding: 0.55rem 1rem; border: 0; border-radius: 999px; background: var(--brand); color: #fff; cursor: pointer; justify-self: start; }
.timeline { list-style: none; padding: 0; margin: 0; }
.timeline li { padding: 0.4rem 0; border-bottom: 1px solid var(--line); font-size: 0.9375rem; }
.timeline time { color: var(--ink-3); font-size: 0.8125rem; margin-right: 0.5rem; }
.muted { color: var(--ink-3); }
@media (min-width: 60rem) { .detail { grid-template-columns: 1fr 1fr; } .detail__timeline { grid-column: 1 / -1; } }
.card--spaced { margin-top: 1rem; }
.thumb { width: 80px; height: 50px; object-fit: cover; border-radius: 4px; display: block; background: var(--line); }
.thumb--empty { display: block; }
.thumb-cell { width: 96px; }
.photos { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 0.75rem; margin-bottom: 1rem; }
.photos__item img { width: 100%; height: auto; border-radius: var(--radius); display: block; }
.photos__actions { display: flex; gap: 0.25rem; margin-top: 0.25rem; }
.photos__actions button { font: inherit; padding: 0.15rem 0.5rem; border: 1px solid var(--line); background: var(--bg); border-radius: 4px; cursor: pointer; }
.photos__delete { color: var(--err); }
.pager { display: flex; gap: 0.5rem; align-items: center; margin-top: 1rem; }
.lead-vehicle { display: flex; gap: 0.75rem; align-items: flex-start; }
/* Lot cards: photo with a price plate, spec strip, diagonal SOLD stamp. No drop shadows. */
.vgrid { display: grid; gap: var(--space-3); }
@media (min-width: 40rem) { .vgrid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 64rem) { .vgrid { grid-template-columns: repeat(3, 1fr); } }

.vcard { display: flex; flex-direction: column; background: var(--bg); border: 1px solid var(--line); overflow: hidden; transition: border-color var(--dur) var(--ease); }
.vcard:hover { border-color: var(--ink); }
.vcard__media { position: relative; display: block; aspect-ratio: 16 / 10; background: var(--bg-2); overflow: hidden; }
.vcard__img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 62%; }
.vcard__img--empty { display: block; background: var(--bg-2); }
.vcard__badge { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%) rotate(-14deg); border: 3px solid var(--stamp); color: var(--stamp); font-family: var(--font-display); font-weight: 700; font-size: 1.75rem; letter-spacing: 0.12em; text-transform: uppercase; padding: 0.15rem 0.9rem; background: rgb(255 255 255 / 0.75); }
.vcard__badge--reserved { font-size: 1.125rem; border-width: 2px; }
.vcard--sold .vcard__img { filter: grayscale(0.7); opacity: 0.8; }
.vcard__body { padding: var(--space-3); display: grid; gap: var(--space-1); }
.vcard__title { margin: 0; font-size: 1.125rem; }
.vcard__title a { color: var(--ink); text-decoration: none; }
.vcard__title a:hover { color: var(--brand-dark); }
.vcard__facts { margin: 0; color: var(--ink-3); font-size: var(--fs-small); }
.vcard__price { margin: var(--space-1) 0 0; padding-top: var(--space-2); border-top: 1px solid var(--line-soft); display: flex; align-items: baseline; justify-content: space-between; gap: var(--space-2); }
.vcard__amount { font-family: var(--font-display); font-weight: 700; font-size: 1.375rem; }
.vcard--sold .vcard__amount { text-decoration: line-through; color: var(--ink-3); }
.vcard__fob { color: var(--ink-3); font-size: var(--fs-tiny); }

.stock-list { padding-block: var(--space-5); }
.stock-list__head { margin-bottom: var(--space-4); }
.stock-list__sub { text-align: left; margin-inline: 0; }
.stock-list__count { color: var(--ink-3); margin: 0 0 var(--space-3); }
.stock-list__empty { padding: var(--space-5) var(--space-4); background: var(--paper); border: 1px solid var(--paper-line); max-width: 40rem; }

.sfilters { background: var(--bg-2); border: 1px solid var(--line); padding: var(--space-3); margin-bottom: var(--space-4); }
.sfilters__grid { display: grid; gap: var(--space-2); grid-template-columns: repeat(2, 1fr); }
@media (min-width: 48rem) { .sfilters__grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 64rem) { .sfilters__grid { grid-template-columns: repeat(5, 1fr); } }
.sfilters__field { display: grid; gap: 0.2rem; font-size: var(--fs-small); font-weight: 600; }
.sfilters__field select, .sfilters__field input { font: inherit; font-weight: 400; padding: 0.55rem 0.65rem; border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--bg); color: var(--ink); width: 100%; height: 2.9rem; }
.sfilters__actions { display: flex; flex-wrap: wrap; gap: var(--space-2); margin-top: var(--space-3); }
.sfilters__actions .btn { padding: 0.55rem 1.1rem; font-size: var(--fs-small); }
.sfilters__chips { list-style: none; padding: 0; margin: var(--space-3) 0 0; display: flex; flex-wrap: wrap; gap: var(--space-2); }
.chip { display: inline-flex; gap: 0.35rem; align-items: center; padding: 0.3rem 0.75rem; border-radius: var(--radius-sm); background: var(--bg); border: 1px solid var(--line); color: var(--ink-2); text-decoration: none; font-size: var(--fs-small); }
.chip:hover { border-color: var(--brand); color: var(--brand-dark); }

.pager { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: var(--space-3); margin-top: var(--space-5); }
.pager > :last-child { justify-self: end; }
.pager__label { color: var(--ink-3); font-size: var(--fs-small); text-align: center; }
@media (prefers-reduced-motion: reduce) { .vcard:hover { transform: none; } }

/* Vehicle page */
.vehicle { padding-block: var(--space-4) var(--space-6); }
.crumbs__list { list-style: none; padding: 0; margin: 0 0 var(--space-3); display: flex; flex-wrap: wrap; gap: var(--space-1); font-size: var(--fs-small); color: var(--ink-3); }
.crumbs__item + .crumbs__item::before { content: '›'; margin-right: var(--space-1); }
.crumbs__item a { color: var(--ink-2); text-decoration: none; }
.crumbs__item a:hover { color: var(--brand-dark); }
.vehicle__layout { display: grid; gap: var(--space-4); }
@media (min-width: 64rem) { .vehicle__layout { grid-template-columns: minmax(0, 1fr) 22rem; align-items: start; } .vehicle__side { position: sticky; top: 5rem; } }
.vehicle__title { font-size: var(--fs-2); margin-bottom: var(--space-3); }
.vehicle__ref { color: var(--ink-3); font-family: var(--font-mono); font-size: var(--fs-tiny); }
.vehicle__block { margin-top: var(--space-5); }
.vehicle__block h2 { font-size: var(--fs-3); }
.vehicle__list { padding-left: 1.2rem; color: var(--ink-2); }
.vehicle__list li { margin-bottom: var(--space-1); }
.vehicle__similar { margin-top: var(--space-6); }

.gallery__main { display: block; aspect-ratio: 16 / 10; background: var(--bg-2); overflow: hidden; border: 1px solid var(--line); }
.gallery__main--empty { background: linear-gradient(135deg, var(--bg-2), var(--line)); }
.gallery__img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gallery__thumbs { list-style: none; padding: 0; margin: var(--space-2) 0 0; display: flex; gap: var(--space-2); overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; }
.gallery__thumbs li { flex: 0 0 auto; scroll-snap-align: start; }
.gallery__thumb { display: block; overflow: hidden; border: 2px solid transparent; }
.gallery__thumb img { display: block; width: 120px; height: 75px; object-fit: cover; }
.gallery__thumb.is-active, .gallery__thumb:hover { border-color: var(--brand); }

.specs { margin: 0; display: grid; gap: 0; border-top: 2px solid var(--ink); }
.specs__row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-2); padding: 0.55rem var(--space-3); border-bottom: 1px solid var(--line); }
.specs__row:last-child { border-bottom: 0; }
.specs__row { padding-inline: 0; }
.specs dt { color: var(--ink-3); }
.specs dd { margin: 0; font-weight: 600; }

.price { position: relative; background: var(--paper); border: 1px solid var(--paper-line); padding: var(--space-4); margin-bottom: var(--space-3); }
.price__grade { position: absolute; top: var(--space-3); right: var(--space-3); }
.price__amount { margin: 0; display: flex; align-items: baseline; gap: var(--space-2); }
.price__value { font-family: var(--font-display); font-size: 2.5rem; font-weight: 700; }
.price--sold .price__value { text-decoration: line-through; color: var(--ink-3); }
.price__fob { color: var(--ink-3); }
.price__badge { display: inline-block; margin: var(--space-2) 0 0; border: 2px solid var(--stamp); color: var(--stamp); font-family: var(--font-display); font-weight: 700; padding: 0.1rem 0.6rem; font-size: var(--fs-small); letter-spacing: 0.08em; text-transform: uppercase; transform: rotate(-4deg); }
.price__badge--reserved { border-color: var(--ink); color: var(--ink); }
.price__cnf { color: var(--ink-2); font-size: var(--fs-small); margin: var(--space-2) 0 0; }
.price__ref { color: var(--ink-3); font-size: var(--fs-small); margin: var(--space-1) 0 0; }

.inquiry { background: var(--bg); border: 1px solid var(--line); padding: var(--space-4); }
.inquiry__heading { font-size: var(--fs-3); margin-bottom: var(--space-1); }
.inquiry__sub { color: var(--ink-3); font-size: var(--fs-small); }
.inquiry .lead-form__form { border: 0; box-shadow: none; padding: 0; }
.inquiry__wa { margin-top: var(--space-2); }
.inquiry--sold p { color: var(--ink-2); }

/* Make / model pages */
.stock-list__h2 { font-size: var(--fs-3); margin: var(--space-4) 0 var(--space-3); }
.model-links { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: var(--space-2); }
.model-intro { max-width: var(--container-rail); color: var(--ink-2); margin-top: var(--space-3); }
.model-faq { margin-top: var(--space-6); }
.stock-list__cta { display: flex; flex-wrap: wrap; gap: var(--space-2); margin-top: var(--space-5); }
.latest__cta { margin-top: var(--space-4); }

/* Mobile: filters collapsed behind a toggle */
.sfilters__toggle { display: none; width: 100%; margin-bottom: var(--space-2); }
@media (max-width: 47.99rem) {
  .sfilters__toggle { display: inline-flex; }
  .sfilters__grid, .sfilters__actions { display: none; }
  .sfilters--open .sfilters__grid { display: grid; }
  .sfilters--open .sfilters__actions { display: flex; }
}
.price__estimate { margin: var(--space-2) 0 0; font-weight: 600; color: var(--ink-2); }
/* Sticky price + WhatsApp bar on phones */
.sticky-cta { display: none; }
@media (max-width: 63.99rem) {
  .sticky-cta { position: fixed; left: 0; right: 0; bottom: 0; z-index: 40; display: flex; align-items: center; justify-content: space-between; gap: var(--space-3); padding: var(--space-2) var(--gutter); background: var(--bg); border-top: 1px solid var(--line); box-shadow: 0 -4px 16px rgb(15 23 42 / 0.08); }
  .sticky-cta__price { font-weight: 700; font-size: 1.125rem; white-space: nowrap; }
  .sticky-cta__price small { display: block; font-weight: 500; color: var(--ink-3); font-size: 0.75rem; }
  .sticky-cta__btn { padding: 0.6rem 1rem; font-size: var(--fs-small); white-space: nowrap; }
  .vehicle { padding-bottom: 5rem; }
}
/* Shared form controls: inputs, segmented (button) radios, checkbox pills, Tom Select skin */
.control { font: inherit; padding: 0.7rem 0.85rem; border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--bg); color: var(--ink); width: 100%; height: 2.9rem; }
textarea.control { height: auto; min-height: 2.9rem; }
.control:focus { border-color: var(--brand); outline: none; box-shadow: 0 0 0 3px var(--brand-soft); }
.control.is-invalid { border-color: var(--err); }

/* Segmented radio group: the inputs stay in the DOM (accessible, no-JS), the labels look like buttons. */
.seg { display: flex; flex-wrap: wrap; gap: var(--space-2); }
.seg__item { position: relative; }
.seg__item input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.seg__item span { display: inline-flex; align-items: center; min-height: 2.9rem; padding: 0.55rem 1rem; border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--bg); color: var(--ink-2); font-weight: 600; cursor: pointer; transition: background-color var(--dur) var(--ease), border-color var(--dur) var(--ease), color var(--dur) var(--ease); }
.seg__item input:checked + span { background: var(--ink); border-color: var(--ink); color: #fff; }
.seg__item input:focus-visible + span { outline: 3px solid var(--brand); outline-offset: 2px; }
.seg--small .seg__item span { min-height: 2.4rem; padding: 0.35rem 0.8rem; font-size: var(--fs-small); }

/* Checkbox pills */
.pills { display: flex; flex-wrap: wrap; gap: var(--space-2); }
.pill { position: relative; }
.pill input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.pill span { display: inline-flex; align-items: center; gap: 0.4rem; padding: 0.45rem 0.9rem; border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--bg); color: var(--ink-2); font-size: var(--fs-small); font-weight: 500; cursor: pointer; transition: background-color var(--dur) var(--ease), border-color var(--dur) var(--ease), color var(--dur) var(--ease); }
.pill span::before { content: ''; width: 0.9rem; height: 0.9rem; border-radius: 50%; border: 2px solid var(--line); background: var(--bg-2); flex: 0 0 auto; }
.pill input:checked + span { background: var(--brand-soft); border-color: var(--brand); color: var(--brand-dark); }
.pill input:checked + span::before { background: var(--brand); border-color: var(--brand); }
.pill input:focus-visible + span { outline: 3px solid var(--brand); outline-offset: 2px; }
.pills--small .pill span { padding: 0.35rem 0.75rem; }
.pill--white span::before { background: #fff; }
.pill--pearl span::before { background: linear-gradient(135deg, #fff, #e9e4d8); }
.pill--black span::before { background: #111; border-color: #111; }
.pill--silver span::before { background: #c7ccd4; border-color: #b4b9c1; }
.pill--grey span::before { background: #7a8290; border-color: #6b727e; }
.pill--blue span::before { background: #2f5fd1; border-color: #2f5fd1; }
.pill--red span::before { background: #c8302f; border-color: #c8302f; }
.pill--other span::before { background: conic-gradient(#c8302f, #f4b400, #2f9e44, #2f5fd1, #c8302f); border-color: var(--line); }

/* Tom Select skin on our tokens (base styles come from /vendor/tom-select.css) */
/* Tom Select copies the <select>'s classes onto its wrapper: neutralise `.control` there. */
.ts-wrapper.control { padding: 0; border: 0; height: auto; background: transparent; box-shadow: none; }
/* One line always: the selected item and the search caret share the row, so the box never grows on focus. */
.ts-wrapper.single .ts-control, .ts-wrapper.multi .ts-control { font: inherit; padding: 0 2.2rem 0 0.85rem; border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--bg); color: var(--ink); height: 2.9rem; min-height: 0; box-shadow: none; display: flex; align-items: center; flex-wrap: nowrap; overflow: hidden; }
.ts-wrapper.single .ts-control > .item { flex: 0 1 auto; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ts-wrapper.single .ts-control > input { flex: 1 1 0; min-width: 0 !important; width: auto !important; height: auto; margin: 0; padding: 0 0 0 0.25rem; }
.ts-wrapper.single.input-active .ts-control > .item { opacity: 0.55; }
.ts-wrapper.multi .ts-control { height: auto; min-height: 2.9rem; flex-wrap: wrap; padding-block: 0.3rem; }
.ts-wrapper.focus .ts-control { border-color: var(--brand); box-shadow: 0 0 0 3px var(--brand-soft); }
.ts-wrapper .ts-control input { font: inherit; color: var(--ink); }
.ts-dropdown { border: 1px solid var(--line); border-radius: var(--radius-sm); box-shadow: var(--shadow); font: inherit; margin-top: 4px; }
.ts-dropdown .option { padding: 0.55rem 0.85rem; }
.ts-dropdown .active { background: var(--brand-soft); color: var(--brand-dark); }
.ts-dropdown .option.selected { font-weight: 600; }
.ts-wrapper.single .ts-control::after { border-top-color: var(--ink-3); right: 0.9rem; }

/* Dropdown chevron — same mark on native selects and Tom Select controls */
:root { --chevron: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'><path d='M4 6l4 4 4-4' fill='none' stroke='%2364748b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>"); }
select.control, .sfilters__field select, .hero__field select { appearance: none; -webkit-appearance: none; background-image: var(--chevron); background-repeat: no-repeat; background-position: right 0.75rem center; background-size: 16px 16px; padding-right: 2.4rem; }
.ts-wrapper.single .ts-control,
.ts-wrapper.single.input-active .ts-control,
.ts-wrapper.single.dropdown-active .ts-control,
.ts-wrapper.single.focus .ts-control { background: var(--bg) var(--chevron) no-repeat right 0.75rem center / 16px 16px; }
.ts-wrapper.single .ts-control::after { display: none; }
.lead-form__form { display: grid; gap: var(--space-3); background: var(--bg); border: 1px solid var(--line); padding: var(--space-4); }
.lead-form__row { display: grid; gap: var(--space-3); align-items: start; }
.lead-form__field { display: grid; gap: var(--space-1); }
.lead-form__label { font-weight: 600; font-size: var(--fs-small); }
.lead-form__fieldset { border: 0; padding: 0; margin: 0; display: grid; gap: var(--space-2); }
.lead-form__choices { display: grid; gap: var(--space-2); }
.lead-form__choice { display: flex; align-items: center; gap: var(--space-2); }
.lead-form__hp { position: absolute; left: -9999px; }
.lead-form__error { color: var(--err); font-weight: 600; margin: 0; }
.lead-form__field-error { color: var(--err); font-size: var(--fs-small); }
.lead-form__thanks { background: var(--paper); border: 1px solid var(--paper-line); padding: var(--space-5) var(--space-4); }
@media (min-width: 40rem) {
  .lead-form__row { grid-template-columns: 1fr 1fr; }
  .lead-form__row--3 { grid-template-columns: 2fr 1fr 1fr; }
  .lead-form__choices { grid-template-columns: 1fr 1fr; }
}
.lead-form__note { grid-column: 1 / -1; margin: 0; color: var(--ink-3); font-size: var(--fs-small); }
.lead-form__more { justify-self: start; padding: 0.5rem 1rem; font-size: var(--fs-small); }
.lead-form__details { display: grid; gap: var(--space-3); }
.lead-form__dealer { display: grid; gap: var(--space-2); padding: var(--space-3); background: var(--bg-2); border-radius: var(--radius-sm); }
.lead-form__row--stack { grid-template-columns: 1fr !important; }
.faq__item { border-top: 1px solid var(--line); padding-block: var(--space-3); }
.faq__item:last-of-type { border-bottom: 1px solid var(--line); }
.faq__q { cursor: pointer; font-family: var(--font-display); font-weight: 600; font-size: 1.125rem; list-style: none; display: flex; justify-content: space-between; gap: var(--space-3); }
.faq__q::-webkit-details-marker { display: none; }
.faq__q::after { content: '+'; color: var(--brand); font-weight: 700; font-size: 1.5rem; line-height: 1; }
.faq__item[open] .faq__q::after { content: '−'; }
.faq__a { margin: var(--space-2) 0 0; color: var(--ink-2); max-width: 64ch; }
.models__grid { list-style: none; padding: 0; margin: 0; display: grid; gap: var(--space-3); }
.models__card { display: flex; flex-direction: column; background: var(--bg); border: 1px solid var(--line); overflow: hidden; }
.models__img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; object-position: 50% 60%; }
.models__img--placeholder { display: grid; place-items: center; background: var(--bg-2); }
.models__img--placeholder img { opacity: 0.5; }
.models__segment { margin: var(--space-3) var(--space-3) var(--space-1); color: var(--ink-3); font-size: var(--fs-tiny); }
.models__name { margin: 0 var(--space-3) var(--space-1); font-size: 1.125rem; }
.models__why { margin: 0 var(--space-3) var(--space-3); color: var(--ink-2); font-size: var(--fs-small); flex: 1; }
.models__cta { margin: 0 var(--space-3) var(--space-3); align-self: flex-start; padding: 0.5rem 0.9rem; font-size: var(--fs-small); }
.models__other { color: var(--ink-3); margin-top: var(--space-4); }
@media (min-width: 40rem) { .models__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 64rem) { .models__grid { grid-template-columns: repeat(4, 1fr); } }
.country { padding-block: var(--space-4) var(--space-6); }
.country__hero { padding-block: var(--space-4) var(--space-5); border-bottom: 2px solid var(--ink); margin-bottom: var(--space-2); }
.country__flag { font-size: 3rem; margin: 0; line-height: 1; }
.country__headline { max-width: 18ch; }
.country__sub { color: var(--ink-2); font-size: 1.125rem; max-width: 56ch; }
.country__actions { display: flex; flex-wrap: wrap; gap: var(--space-2); }
.country__block { margin-top: var(--space-6); }
.country__block h2 { font-size: var(--fs-2); }
.country__lead { color: var(--ink-2); max-width: var(--container-rail); }
.country__cards { display: grid; gap: var(--space-3); grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr)); }
.country__card { padding-top: var(--space-3); border-top: 2px solid var(--ink); }
.country__card h3 { margin-bottom: var(--space-1); color: var(--brand-dark); }
.country__card p { margin: 0; color: var(--ink-2); }
.country__disclaimer { color: var(--ink-3); font-size: var(--fs-small); margin-top: var(--space-3); }
.costs { width: 100%; border-collapse: collapse; background: var(--paper); border: 1px solid var(--paper-line); }
.costs th, .costs td { text-align: left; padding: 0.7rem var(--space-3); border-bottom: 1px solid var(--line); vertical-align: top; }
.costs th { font-family: var(--font-display); font-size: 1rem; color: var(--ink); border-bottom: 2px solid var(--ink); }
.costs__amount { font-weight: 600; white-space: nowrap; }
.costs__note { color: var(--ink-2); font-size: var(--fs-small); }
@media (max-width: 40rem) { .costs thead { display: none; } .costs tr { display: block; padding: var(--space-2) 0; } .costs td { display: block; border: 0; padding: 0.15rem var(--space-3); } .costs__amount { white-space: normal; } .costs tr + tr { border-top: 1px solid var(--line); } }
.country__timeline { counter-reset: step; list-style: none; padding: 0; margin: 0; display: grid; gap: var(--space-3); grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr)); }
.country__timeline li { border-top: 2px solid var(--ink); padding-top: var(--space-3); }
.country__timeline h3 { margin-bottom: var(--space-1); font-size: 1rem; }
.country__timeline p { margin: 0; color: var(--ink-2); font-size: var(--fs-small); }
.country__cta { margin-top: var(--space-6); background: var(--brand); color: #fff; padding: var(--space-5) var(--space-4); }
.country__cta .btn--primary { background: #fff; color: var(--brand-dark); }
.country__cta h2 { color: #fff; }
.country__cta p { color: rgb(255 255 255 / 0.9); max-width: 60ch; }
.hero { padding-block: var(--space-6) var(--space-5); background: var(--bg-2); border-bottom: 1px solid var(--line); }
.hero__inner { display: grid; gap: var(--space-5); align-items: center; }
.hero__headline { max-width: 14ch; }
.hero__sub { color: var(--ink-2); font-size: 1.125rem; max-width: 52ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: var(--space-2); margin-block: var(--space-4); }
.hero__trust { list-style: none; padding: 0; margin: 0; display: grid; gap: var(--space-1) var(--space-4); grid-template-columns: 1fr; justify-content: start; color: var(--ink-2); font-size: var(--fs-small); }
.hero__trust-item::before { content: ''; display: inline-block; width: 0.55em; height: 0.55em; background: var(--brand); margin-right: 0.5em; vertical-align: 0.05em; }
.hero__artefact { max-width: 26rem; width: 100%; justify-self: center; }
@media (prefers-reduced-motion: no-preference) {
  .hero__artefact { animation: sheet-in 700ms var(--ease) both; }
  @keyframes sheet-in { from { opacity: 0; transform: translateY(14px) rotate(-1deg); } to { opacity: 1; transform: none; } }
}
.hero__search { margin-top: var(--space-5); background: var(--bg); border: 1px solid var(--line); padding: var(--space-3) var(--space-4) var(--space-4); }
.hero__search-heading { margin: 0 0 var(--space-2); font-family: var(--font-display); font-weight: 600; font-size: 1.125rem; }
.hero__search-grid { display: grid; gap: var(--space-2); grid-template-columns: 1fr 1fr; align-items: start; }
.hero__search-btn { height: 2.9rem; align-self: end; grid-column: 1 / -1; }
.hero__field { display: grid; gap: 0.2rem; font-size: var(--fs-small); font-weight: 500; color: var(--ink-2); }
.hero__field select, .hero__field input { font: inherit; font-weight: 400; color: var(--ink); padding: 0.6rem 0.65rem; border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--bg); width: 100%; height: 2.9rem; }
.hero__all { display: inline-block; margin-top: var(--space-2); font-size: var(--fs-small); }
@media (min-width: 48rem) {
  .hero { padding-block: var(--space-7) var(--space-6); }
  .hero__search-grid { grid-template-columns: repeat(4, 1fr) auto; }
  .hero__search-btn { grid-column: auto; }
}
@media (min-width: 64rem) {
  .hero__inner { grid-template-columns: 1.15fr 1fr; gap: var(--space-6); }
  .hero__artefact { justify-self: end; }
}
/* Personal strip */
.person { background: var(--ink); color: #fff; }
.person__inner { display: grid; grid-template-columns: auto 1fr; gap: var(--space-3) var(--space-4); align-items: center; padding-block: var(--space-4); }
.person__avatar { width: 3.25rem; height: 3.25rem; border-radius: 50%; background: var(--brand); color: #fff; display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; font-size: 1.5rem; }
.person__name { margin: 0; font-family: var(--font-display); font-weight: 600; font-size: 1.125rem; }
.person__role { color: rgb(255 255 255 / 0.65); font-weight: 400; font-size: 1rem; }
.person__line { margin: 0.15rem 0 0; color: rgb(255 255 255 / 0.85); max-width: 60ch; }
.person__cta { grid-column: 1 / -1; justify-self: start; }
@media (min-width: 48rem) { .person__inner { grid-template-columns: auto 1fr auto; } .person__cta { grid-column: auto; } }
@media (min-width: 40rem) { .hero__trust { grid-template-columns: repeat(2, auto); } }
.sheet { margin: 0; position: relative; }
.sheet__paper {
  position: relative; background: var(--paper); color: var(--ink);
  border: 1px solid var(--paper-line); border-radius: 3px; padding: var(--space-4);
  box-shadow: 0 1px 0 rgb(27 31 42 / 0.08), 0 24px 40px -20px rgb(27 31 42 / 0.35);
  font-family: var(--font-mono); font-size: var(--fs-tiny); transform: rotate(1.2deg);
  background-image: repeating-linear-gradient(0deg, transparent 0 27px, rgb(27 31 42 / 0.05) 27px 28px);
  background-size: 100% 28px;
}
.sheet__head { display: flex; justify-content: space-between; align-items: baseline; border-bottom: 1.5px solid var(--ink); padding-bottom: var(--space-2); margin-bottom: var(--space-3); }
.sheet__title { font-family: var(--font-display); font-weight: 700; font-size: 1.125rem; letter-spacing: 0.02em; text-transform: uppercase; }
.sheet__lot { color: var(--ink-3); }
.sheet__car { display: flex; justify-content: space-between; gap: var(--space-3); margin-bottom: var(--space-3); }
.sheet__model { font-family: var(--font-display); font-weight: 600; font-size: 1.125rem; }
.sheet__meta { color: var(--ink-2); }
.sheet__body { display: grid; grid-template-columns: 1fr auto; gap: var(--space-3); align-items: center; border: 1px solid var(--paper-line); background: rgb(255 255 255 / 0.6); padding: var(--space-3); }
.sheet__diagram { width: 100%; height: auto; color: var(--ink-2); }
.sheet__marks circle { fill: var(--stamp); }
.sheet__marks text { fill: #fff; }
.sheet__grades { margin: 0; display: grid; gap: var(--space-2); text-align: center; }
.sheet__grades div { border: 1px solid var(--paper-line); padding: 0.4rem 0.8rem; background: #fff; }
.sheet__grades dt { color: var(--ink-3); font-size: 0.6875rem; text-transform: uppercase; letter-spacing: 0.06em; }
.sheet__grades dd { margin: 0; font-family: var(--font-display); font-weight: 700; font-size: 1.375rem; }
.sheet__grade { color: var(--stamp); font-size: 2rem !important; }
.sheet__notes { margin: var(--space-3) 0 0; padding: 0 1.1rem 3.25rem 1.1rem; color: var(--ink-2); line-height: 1.75; }
.sheet__stamp { position: absolute; right: var(--space-4); bottom: var(--space-3); transform: rotate(-10deg); font-size: 0.8125rem; background: rgb(255 255 255 / 0.7); }
.sheet__caption { margin-top: var(--space-4); color: var(--ink-2); font-size: var(--fs-small); max-width: 42ch; }
@media (prefers-reduced-motion: no-preference) {
  .sheet__stamp { animation: stamp-in var(--dur-slow) var(--ease) 500ms both; }
  @keyframes stamp-in { from { opacity: 0; transform: rotate(-10deg) scale(1.6); } to { opacity: 0.92; transform: rotate(-10deg) scale(1); } }
}
@media (min-width: 40rem) { .sheet__notes { padding: 0 9rem 0.5rem 1.1rem; } }
/* A shipment timeline: three stops joined by a rail, like a tracking sheet. */
.steps__list { list-style: none; padding: 0; margin: 0; display: grid; gap: var(--space-4); position: relative; counter-reset: step; }
.steps__item { position: relative; padding-left: 3.25rem; counter-increment: step; }
.steps__item::before { content: counter(step); position: absolute; left: 0; top: 0; width: 2.25rem; height: 2.25rem; border-radius: 50%; background: var(--ink); color: #fff; display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; font-size: 1.125rem; }
.steps__item::after { content: ''; position: absolute; left: 1.05rem; top: 2.5rem; bottom: -1.25rem; width: 2px; background: var(--line); }
.steps__item:last-child::after { display: none; }
.steps__title { margin-bottom: var(--space-1); }
.steps__body { margin: 0; color: var(--ink-2); max-width: 44ch; }
@media (min-width: 48rem) {
  .steps__list { grid-template-columns: repeat(3, 1fr); gap: var(--space-5); }
  .steps__item { padding-left: 0; padding-top: 3.25rem; }
  .steps__item::after { left: 2.5rem; right: -2.5rem; top: 1.1rem; bottom: auto; width: auto; height: 2px; }
}
/* Prose, not a card kit: a two-column argument with a rule between. */
.why__grid { list-style: none; padding: 0; margin: 0; display: grid; gap: var(--space-4) var(--space-6); }
.why__item { padding-top: var(--space-3); border-top: 2px solid var(--ink); }
.why__title { margin-bottom: var(--space-2); }
.why__body { margin: 0; color: var(--ink-2); max-width: 46ch; }
@media (min-width: 48rem) { .why__grid { grid-template-columns: repeat(2, 1fr); } }
.dealers { background: var(--brand); color: #fff; }
.dealers__inner { display: grid; gap: var(--space-3); align-items: center; }
.dealers__heading { color: #fff; margin: 0; }
.dealers__body { color: rgb(255 255 255 / 0.9); margin: 0; max-width: 60ch; }
.dealers .btn--primary { background: #fff; color: var(--brand-dark); }
.dealers .btn--primary:hover { background: var(--ink); color: #fff; }
@media (min-width: 64rem) { .dealers__inner { grid-template-columns: auto 1fr auto; gap: var(--space-5); } }
.gallery-home__grid { list-style: none; padding: 0; margin: 0; display: grid; gap: var(--space-3); grid-template-columns: repeat(2, 1fr); }
.gallery-home__item img { width: 100%; height: auto; aspect-ratio: 16 / 10; object-fit: cover; }
.gallery-home__caption { margin: var(--space-1) 0 0; color: var(--ink-3); font-size: var(--fs-small); }
@media (min-width: 64rem) { .gallery-home__grid { grid-template-columns: repeat(3, 1fr); gap: var(--space-4); } }
.countries__grid { list-style: none; padding: 0; margin: 0; display: grid; gap: var(--space-3); grid-template-columns: repeat(auto-fill, minmax(16rem, 1fr)); }
.countries__card { background: var(--bg); border: 1px solid var(--line); padding: var(--space-4); display: grid; grid-template-columns: auto 1fr; gap: var(--space-1) var(--space-3); align-items: center; }
.countries__flag { font-size: 2rem; line-height: 1; grid-row: span 3; }
.countries__name { margin: 0; font-size: 1.25rem; }
.countries__ports { margin: 0; color: var(--ink-3); font-size: var(--fs-small); }
.countries__cta { justify-self: start; margin-top: var(--space-2); padding: 0.5rem 0.9rem; font-size: var(--fs-small); }
/* "How you pay" reads like the invoice it describes. */
.payment__steps { list-style: none; padding: 0; margin: 0; background: var(--paper); border: 1px solid var(--paper-line); max-width: 46rem; }
.payment__step { display: grid; grid-template-columns: 2.5rem 1fr; grid-template-areas: 'n title' 'n body'; gap: 0 var(--space-3); padding: var(--space-3) var(--space-4); border-bottom: 1px dashed var(--paper-line); counter-increment: pay; }
.payment__step::before { grid-area: n; }
.payment__title { grid-area: title; }
.payment__body { grid-area: body; }
.payment__step:last-child { border-bottom: 0; }
.payment__step::before { content: counter(pay, decimal-leading-zero); font-family: var(--font-mono); color: var(--ink-3); padding-top: 0.2rem; }
.payment__steps { counter-reset: pay; }
.payment__title { font-size: 1.125rem; margin-bottom: var(--space-1); }
.payment__body { margin: 0; color: var(--ink-2); }
.payment__note { margin-top: var(--space-4); max-width: 46rem; color: var(--ink-2); display: flex; gap: var(--space-3); align-items: flex-start; }
.payment__note::before { content: ''; flex: 0 0 auto; width: 0.6rem; height: 0.6rem; margin-top: 0.5rem; background: var(--brand); }
.documents__grid { list-style: none; padding: 0; margin: 0; display: grid; gap: var(--space-3); grid-template-columns: repeat(auto-fill, minmax(13rem, 1fr)); }
.documents__item { position: relative; background: var(--bg); border: 1px solid var(--line); padding: var(--space-4) var(--space-3) var(--space-3); min-height: 11rem; }
.documents__item::before { content: ''; position: absolute; top: -1px; right: -1px; width: 1.4rem; height: 1.4rem; background: linear-gradient(225deg, var(--bg-2) 50%, var(--line) 50%); border-left: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.documents__title { font-size: 1.0625rem; margin-bottom: var(--space-1); }
.documents__body { margin: 0; color: var(--ink-2); font-size: var(--fs-small); }
/*$vite$:1*/