/* ==========================================================================
   JE AUTO — light theme, "Forecourt"
   Clean and simple: white ground, black type, amber as a FILL colour.

   CONTRAST RULE (do not break):
     amber #f8a800 on white = 2.0:1  -> NEVER amber text on white.
     black on amber          = 10.5:1 -> amber is a fill, text on it is black.
   Amber therefore appears only as: buttons, badges, rules, bars, fills.
   ========================================================================== */

/* ---------- 1. Tokens ---------------------------------------------------- */
:root {
  /* ground */
  --paper:    #ffffff;
  --paper-2:  #f6f6f3;   /* alternating band */
  --paper-3:  #eeeeea;   /* image placeholder / inset */

  /* ink */
  --ink:      #111113;   /* headings      18.9:1 */
  --ink-2:    #4c4c4a;   /* body           8.6:1 */
  --ink-3:    #6e6e70;   /* muted / labels 5.1:1 */
  --line:     #e4e4df;
  --line-2:   #d3d3cd;

  /* signal — sampled from the JE mark */
  --amber:    #f8a800;
  --amber-hi: #ffbb1f;

  --wa:       #25d366;

  /* type */
  --display: "Archivo", "Helvetica Neue", Arial, sans-serif;
  --body:    "Barlow", ui-sans-serif, system-ui, "Helvetica Neue", sans-serif;

  /* metrics */
  --header-h: 74px;
  --hero-max: 820px;      /* baseline §5 — desktop cap on the 100vh hero */
  --maxw: 1240px;
  --gutter: clamp(20px, 5vw, 60px);
  --r: 4px;

  --ease: cubic-bezier(.22, .61, .36, 1);
}
@media (max-width: 767px) { :root { --header-h: 62px; } }

/* ---------- 2. Reset ----------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body, h1, h2, h3, h4, p, figure, blockquote, dl, dd, ul, ol { margin: 0; }
ul, ol { list-style: none; padding: 0; }
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
button, input, select, textarea { font: inherit; color: inherit; }

body {
  background: var(--paper);
  color: var(--ink-2);
  font-family: var(--body);
  font-size: clamp(1rem, .97rem + .16vw, 1.0625rem);
  line-height: 1.68;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
::selection { background: var(--amber); color: #000; }

/* ---------- 3. Type ------------------------------------------------------ */
h1, h2, h3, h4 {
  font-family: var(--display);
  color: var(--ink);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -.028em;
}
h1 { font-size: clamp(2.4rem, 1.4rem + 3.9vw, 4.35rem); }
h2 { font-size: clamp(1.85rem, 1.25rem + 2.3vw, 3.1rem); }
h3 { font-size: clamp(1.15rem, 1.02rem + .6vw, 1.45rem); line-height: 1.12; }
h4 { font-size: 1.0625rem; letter-spacing: -.015em; }

a { color: inherit; }
strong { color: var(--ink); font-weight: 600; }

/* small machine label — ink text, amber dash. Never amber text on white. */
.plate {
  display: flex; align-items: center; gap: .7em;
  font-size: .6875rem; font-weight: 600; letter-spacing: .18em;
  text-transform: uppercase; color: var(--ink-3);
}
.plate::before { content: ""; width: 20px; height: 3px; background: var(--amber); flex: none; }
.plate--plain::before { display: none; }
.plate--on { color: rgba(0,0,0,.62); }
.plate--on::before { background: #000; }

.lede { font-size: clamp(1.06rem, 1rem + .4vw, 1.22rem); color: var(--ink-2); max-width: 46ch; }
.muted { color: var(--ink-3); }

/* ---------- 4. Layout ---------------------------------------------------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(60px, 8vw, 116px); }
.section--tight { padding-block: clamp(44px, 5.5vw, 80px); }
.band { background: var(--paper-2); }
.rule { border: 0; border-top: 1px solid var(--line); margin: 0; }

.skip {
  position: absolute; left: 8px; top: -60px; z-index: 200;
  background: var(--amber); color: #000; padding: 10px 18px; border-radius: var(--r);
  font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  font-size: .75rem; text-decoration: none; transition: top .2s;
}
.skip:focus { top: 8px; }

:where(a, button, input, select, textarea, [tabindex]):focus-visible {
  outline: 2px solid var(--ink); outline-offset: 3px;
}

/* ---------- 5. Buttons --------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6em;
  padding: 13px 24px; border: 1px solid transparent; border-radius: var(--r);
  background: var(--amber); color: #000;
  font-weight: 700; font-size: .8125rem; letter-spacing: .09em;
  text-transform: uppercase; text-decoration: none; cursor: pointer;
  transition: background .18s var(--ease), border-color .18s, color .18s, transform .18s var(--ease);
}
.btn:hover { background: var(--amber-hi); transform: translateY(-1px); }
.btn svg { width: 16px; height: 16px; flex: none; }

.btn--dark { background: var(--ink); color: #fff; }
.btn--dark:hover { background: #2b2b2e; }

.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line-2); }
.btn--ghost:hover { background: transparent; border-color: var(--ink); }

/* on the dark footer / dark CTA */
.on-dark .btn--ghost { color: #fff; border-color: rgba(255,255,255,.28); }
.on-dark .btn--ghost:hover { border-color: #fff; }

.arrow {
  display: inline-flex; align-items: center; gap: .5em;
  font-weight: 600; font-size: .8125rem; letter-spacing: .09em;
  text-transform: uppercase; text-decoration: none; color: var(--ink);
  padding-bottom: 4px; border-bottom: 2px solid var(--amber);
  transition: gap .2s var(--ease);
}
.arrow:hover { gap: .85em; }
.arrow svg { width: 15px; height: 15px; }

/* ---------- 6. Header ---------------------------------------------------- */
.hdr {
  position: sticky; top: 0; z-index: 90;
  height: var(--header-h);
  display: flex; align-items: center;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.hdr__in {
  width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter);
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.brand { display: flex; align-items: center; text-decoration: none; flex: none; }
.brand img { width: auto; height: clamp(34px, 4vw, 40px); border-radius: 3px; }

.nav { display: flex; align-items: center; gap: clamp(16px, 2.1vw, 32px); }
.nav a {
  position: relative; padding-block: 8px;
  font-size: .8125rem; font-weight: 600; letter-spacing: .09em;
  text-transform: uppercase; text-decoration: none; color: var(--ink-3);
  transition: color .18s;
}
.nav a:hover { color: var(--ink); }
.nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 3px;
  background: var(--amber); transform: scaleX(0); transform-origin: left;
  transition: transform .24s var(--ease);
}
.nav a:hover::after { transform: scaleX(.45); }
.nav a[aria-current="page"] { color: var(--ink); }
.nav a[aria-current="page"]::after { transform: scaleX(1); }

.hdr__cta { display: flex; align-items: center; gap: 12px; }

.burger {
  display: none; width: 42px; height: 42px; padding: 0; place-items: center;
  background: none; border: 1px solid var(--line-2); border-radius: var(--r); cursor: pointer;
}
.burger span { display: block; width: 17px; height: 2px; background: var(--ink); margin: 3px auto;
  transition: transform .25s var(--ease), opacity .2s; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

.drawer {
  position: fixed; inset: var(--header-h) 0 0; z-index: 88;
  background: var(--paper); padding: 26px var(--gutter) 36px;
  display: flex; flex-direction: column;
  opacity: 0; visibility: hidden; transform: translateY(-6px); pointer-events: none;
  transition: opacity .22s var(--ease), transform .22s var(--ease), visibility .22s;
  overflow-y: auto;
}
.drawer[data-open="true"] { opacity: 1; visibility: visible; transform: none; pointer-events: auto; }
.drawer a {
  font-family: var(--display); font-weight: 800; letter-spacing: -.02em;
  font-size: clamp(1.6rem, 7vw, 2.1rem); color: var(--ink); text-decoration: none;
  padding: 15px 0; border-bottom: 1px solid var(--line);
}
.drawer a[aria-current="page"] { color: var(--ink); box-shadow: inset 0 -3px 0 var(--amber); }
.drawer .btn { margin-top: 24px; }

@media (max-width: 1023px) { .nav, .hdr__cta .btn { display: none; } .burger { display: grid; } }

/* ---------- 7. Hero (home only) ------------------------------------------ */
.hero {
  position: relative;
  /* baseline §5: header + hero = 100vh, capped so huge screens stay composed.
     --header-real is measured by JS; --header-h is the CSS fallback. */
  min-height: min(calc(100svh - var(--header-real, var(--header-h))), var(--hero-max));
  display: flex; align-items: center;
  overflow: hidden;
}
.hero__media { position: absolute; right: 0; top: 0; bottom: 0; width: 44%; background: var(--paper-3); overflow: hidden; }
/* absolute fill: the photo is portrait, so it must never drive the hero's height */
.hero__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero__in { position: relative; z-index: 1; width: 100%; }
.hero__txt { max-width: 38rem; padding-block: clamp(28px, 4vh, 48px); }
.hero h1 { margin: 16px 0 0; }
.hero h1 mark { background: none; color: inherit; box-shadow: inset 0 -.16em 0 var(--amber); }
.hero__lede { margin-top: 18px; max-width: 40ch; }
.hero__acts { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }

.rail { display: flex; flex-wrap: wrap; gap: clamp(20px, 3vw, 44px); margin-top: clamp(26px, 4vh, 44px);
        padding-top: 22px; border-top: 1px solid var(--line); }
/* column-reverse keeps valid dt-before-dd source order with the figure on top */
.rail > div { display: flex; flex-direction: column-reverse; }
.rail dd { margin: 0; font-family: var(--display); font-weight: 800; letter-spacing: -.03em;
           font-size: clamp(1.45rem, 2.6vw, 1.95rem); color: var(--ink); line-height: 1; }
.rail dt { font-size: .6875rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-3); font-weight: 600; }

@media (max-width: 899px) {
  .hero { flex-direction: column; align-items: stretch; }
  .hero__in { order: 1; }
  .hero__txt { max-width: none; padding-block: clamp(22px, 3.4vh, 36px) clamp(18px, 2.6vh, 28px); }
  /* flex-basis 0 so the photo absorbs whatever height the copy leaves over,
     keeping header + hero inside 100svh (baseline §5) */
  .hero__media { position: relative; order: 2; width: 100%; flex: 1 1 0; min-height: 150px; }
  .rail { margin-top: clamp(16px, 2.6vh, 26px); padding-top: 14px; gap: 18px; }
  .rail b { font-size: 1.4rem; }
  .rail span { font-size: .625rem; letter-spacing: .09em; }
}

/* ---------- 8. Inner page header — full-bleed photo banner ---------------- */
.phead {
  position: relative; isolation: isolate; overflow: hidden;
  /* baseline §5: inner pages get a banner, never a full-screen hero.
     The vw term keeps every page the same height — without it a one-line h1
     (e.g. "Buy, sell or trade") renders a visibly shorter banner than a
     two-line one. The 420px cap still holds on large screens. */
  min-height: clamp(264px, max(38vh, 28vw), 420px);
  display: flex; align-items: flex-end;
  background: var(--ink);           /* paints before the photo decodes */
}
.phead__media { position: absolute; inset: 0; z-index: -2; }
/* the gradients alone can't tame a blown-out showroom wall behind 11px text,
   so knock the whole photo down first — measured worst-pixel contrast drives this */
.phead__media img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.76); }

/* baseline §6: dark scrim so the overlaid copy clears AA on any photo.
   Two stacked gradients — vertical for the copy band, horizontal so the
   left column stays readable while the right of the image keeps its detail. */
.phead::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(17,17,19,.28) 0%, rgba(17,17,19,.48) 44%, rgba(17,17,19,.78) 100%),
    linear-gradient(90deg,  rgba(17,17,19,.58) 0%, rgba(17,17,19,.24) 62%, rgba(17,17,19,.08) 100%);
}

.phead__in {
  width: 100%; max-width: var(--maxw); margin-inline: auto;
  padding-inline: var(--gutter); padding-block: clamp(34px, 4.6vw, 56px);
}
.phead h1 { color: #fff; max-width: 17ch; text-wrap: balance; }
.phead p { margin-top: 14px; max-width: 50ch; color: rgba(255,255,255,.88); }

/* opaque white: at 11px this counts as body text, so it needs the full 4.5:1 */
.crumb { font-size: .6875rem; letter-spacing: .14em; text-transform: uppercase;
         color: #fff; font-weight: 600; margin-bottom: 12px; }
.crumb a { color: #fff; text-decoration: none; }
.crumb a:hover { color: #fff; text-decoration: underline; }
.phead :where(a):focus-visible { outline-color: #fff; }

/* ---------- 9. Buy / Sell / Trade band ----------------------------------- */
.trio { background: var(--amber); color: #000; }
.trio__grid {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
  padding-block: clamp(34px, 4.5vw, 58px);
}
.trio__grid > * { padding-inline: clamp(18px, 2.6vw, 40px); border-left: 1px solid rgba(0,0,0,.17); }
.trio__grid > *:first-child { border-left: 0; padding-left: 0; }
.trio__grid > *:last-child { padding-right: 0; }
.trio svg { width: 26px; height: 26px; color: #000; margin-bottom: 16px; }
.trio h3 { font-size: clamp(1.5rem, 2.6vw, 2rem); color: #000; margin-bottom: 8px; }
.trio p { font-size: .9375rem; color: rgba(0,0,0,.72); max-width: 26ch; }
.trio a {
  display: inline-flex; align-items: center; gap: .5em; margin-top: 16px;
  font-size: .75rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: #000; text-decoration: none; border-bottom: 2px solid rgba(0,0,0,.35);
  padding-bottom: 3px; transition: border-color .2s;
}
.trio a:hover { border-color: #000; }
.trio a svg { width: 14px; height: 14px; margin: 0; }
@media (max-width: 767px) {
  .trio__grid { grid-template-columns: 1fr; gap: 26px; }
  .trio__grid > * { border-left: 0; padding-inline: 0; padding-top: 26px; border-top: 1px solid rgba(0,0,0,.17); }
  .trio__grid > *:first-child { padding-top: 0; border-top: 0; }
}

/* ---------- 10. Section head --------------------------------------------- */
.shead { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap;
         margin-bottom: clamp(26px, 3.4vw, 44px); }
.shead h2 { margin-top: 12px; }

/* ---------- 11. Vehicle card --------------------------------------------- */
.grid-veh { display: grid; gap: clamp(16px, 1.8vw, 24px); grid-template-columns: repeat(3, minmax(0, 1fr)); }
@media (max-width: 1023px) { .grid-veh { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 599px)  { .grid-veh { grid-template-columns: 1fr; } }

.veh {
  position: relative; display: flex; flex-direction: column;
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r);
  overflow: hidden;
  transition: border-color .22s var(--ease), box-shadow .22s var(--ease), transform .22s var(--ease);
}
.veh:hover { border-color: var(--line-2); box-shadow: 0 10px 30px rgba(17,17,19,.09); transform: translateY(-3px); }
.veh__fig { position: relative; margin: 0; aspect-ratio: 4 / 3; overflow: hidden; background: var(--paper-3); }
.veh__fig img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s var(--ease); }
.veh:hover .veh__fig img { transform: scale(1.04); }
.veh__tag {
  position: absolute; z-index: 2; top: 10px; left: 10px;
  background: var(--amber); color: #000; border-radius: 2px;
  font-size: .625rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: 5px 9px;
}
.veh__tag--dark { background: var(--ink); color: #fff; }
.veh__body { padding: 16px 18px 18px; display: flex; flex-direction: column; gap: 9px; flex: 1; }
.veh__make { font-size: .6875rem; letter-spacing: .13em; text-transform: uppercase; color: var(--ink-3); font-weight: 600; }
.veh__name { font-family: var(--display); font-weight: 800; letter-spacing: -.02em; font-size: 1.15rem; color: var(--ink); line-height: 1.15; }
.veh__specs { display: flex; flex-wrap: wrap; gap: 6px; margin-top: auto; padding-top: 4px; }
.veh__specs li { font-size: .6875rem; letter-spacing: .04em; text-transform: uppercase; color: var(--ink-3);
                 border: 1px solid var(--line); border-radius: 2px; padding: 3px 8px; }
.veh__foot { display: flex; align-items: center; justify-content: space-between; gap: 12px;
             border-top: 1px solid var(--line); padding-top: 12px; margin-top: 4px; }
.veh__price { font-family: var(--display); font-weight: 800; letter-spacing: -.025em; font-size: 1.2rem; color: var(--ink); line-height: 1.1; }
.veh__price small { display: block; font-family: var(--body); font-weight: 600; font-size: .625rem;
                    letter-spacing: .12em; text-transform: uppercase; color: var(--ink-3); }
.veh__btn {
  background: none; border: 0; padding: 0; cursor: pointer;
  font-size: .6875rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--ink);
  display: inline-flex; align-items: center; gap: 6px;
}
.veh__btn svg { width: 13px; height: 13px; transition: transform .2s; }
.veh__btn:hover svg { transform: translateX(3px); }
.veh__btn::before { content: ""; position: absolute; inset: 0; }   /* whole card clickable */
.veh[hidden] { display: none; }

/* ---------- 12. Sell-your-car (steps) ------------------------------------ */
.sell { display: grid; grid-template-columns: minmax(0, .95fr) minmax(0, 1fr);
        gap: clamp(30px, 5vw, 72px); align-items: center; }
.sell__fig { margin: 0; border-radius: var(--r); overflow: hidden; }
.sell__fig img { width: 100%; }
.steps { counter-reset: s; margin-top: 26px; }
.steps li { counter-increment: s; display: grid; grid-template-columns: 40px minmax(0, 1fr); gap: 16px;
            padding-block: 16px; border-top: 1px solid var(--line); align-items: start; }
.steps li:last-child { border-bottom: 1px solid var(--line); }
.steps li::before {
  content: counter(s, decimal-leading-zero);
  font-family: var(--display); font-weight: 800; font-size: .875rem; letter-spacing: -.01em;
  color: #000; background: var(--amber); border-radius: 2px;
  width: 34px; height: 26px; display: grid; place-items: center;
}
.steps h3 { font-size: 1.0625rem; letter-spacing: -.015em; line-height: 1.2; margin-bottom: 3px; }
.steps p { font-size: .9375rem; color: var(--ink-3); }
@media (max-width: 899px) { .sell { grid-template-columns: 1fr; } }

/* ---------- 13. Assurance (wide photo + point row) ----------------------- */
.assure__fig { margin: 0; border-radius: var(--r); overflow: hidden; aspect-ratio: 21 / 8; }
.assure__fig img { width: 100%; height: 100%; object-fit: cover; }
.points { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr));
          gap: clamp(20px, 3vw, 44px); margin-top: clamp(28px, 3.6vw, 48px); }
.points > div { border-top: 3px solid var(--amber); padding-top: 16px; }
.points h3 { font-size: 1.0625rem; letter-spacing: -.015em; line-height: 1.2; margin-bottom: 6px; }
.points p { font-size: .9375rem; color: var(--ink-3); }
@media (max-width: 899px) { .points { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 479px) { .points { grid-template-columns: 1fr; } }

/* ---------- 14. Quote ---------------------------------------------------- */
.quote { max-width: 800px; margin-inline: auto; text-align: center; }
.quote blockquote p {
  font-family: var(--display); font-weight: 700; letter-spacing: -.028em;
  font-size: clamp(1.35rem, 1rem + 1.9vw, 2.15rem); line-height: 1.2; color: var(--ink);
}
.quote figcaption { margin-top: 24px; display: flex; align-items: center; justify-content: center; gap: 12px; }
.quote figcaption img { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; object-position: 50% 30%; flex: none; }
.quote cite { font-style: normal; font-weight: 600; color: var(--ink); display: block; font-size: .9375rem; }
.quote figcaption span span { font-size: .75rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-3); }

/* ---------- 15. CTA ------------------------------------------------------ */
.cta { background: var(--ink); color: #fff; }
.cta__grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, .82fr);
             gap: clamp(30px, 5vw, 70px); align-items: center; padding-block: clamp(48px, 6vw, 86px); }
.cta h2 { color: #fff; max-width: 15ch; }
.cta p { margin-top: 16px; max-width: 42ch; color: rgba(255,255,255,.72); }
.cta__acts { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.cta__fig { margin: 0; border-radius: var(--r); overflow: hidden; aspect-ratio: 16 / 10; }
.cta__fig img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 899px) { .cta__grid { grid-template-columns: 1fr; } }

/* ---------- 16. Footer (the one dark anchor) ----------------------------- */
.ftr { background: var(--ink); color: rgba(255,255,255,.66); padding-top: clamp(46px, 5.5vw, 72px); }
.ftr__grid { display: grid; gap: clamp(28px, 4vw, 52px);
             grid-template-columns: minmax(0, 1.5fr) repeat(3, minmax(0, 1fr)); }
.ftr__brand img { height: 84px; width: auto; border-radius: var(--r); margin-bottom: 16px; }
.ftr__brand p { font-size: .875rem; max-width: 34ch; }
.ftr h2 { font-size: .6875rem; letter-spacing: .16em; text-transform: uppercase; color: #fff;
          font-weight: 600; font-family: var(--body); letter-spacing: .16em; margin-bottom: 15px; }
.ftr ul { display: flex; flex-direction: column; gap: 9px; }
.ftr li, .ftr address { font-size: .875rem; font-style: normal; line-height: 1.6; }
.ftr a { color: rgba(255,255,255,.66); text-decoration: none; transition: color .18s; }
.ftr a:hover { color: var(--amber); }
.ftr__bot { margin-top: clamp(36px, 4.5vw, 56px); border-top: 1px solid rgba(255,255,255,.14);
            padding-block: 20px 24px; display: flex; justify-content: space-between; align-items: center;
            gap: 14px; flex-wrap: wrap; font-size: .75rem; }
.ftr__bot a { color: rgba(255,255,255,.86); text-decoration: underline; text-underline-offset: 3px; }
.ftr__bot a:hover { color: var(--amber); }
@media (max-width: 899px) { .ftr__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } .ftr__brand { grid-column: 1 / -1; } }
@media (max-width: 479px) { .ftr__grid { grid-template-columns: 1fr; } }

/* ---------- 17. Floating WhatsApp ---------------------------------------- */
.wa-float {
  position: fixed; right: clamp(14px, 2.2vw, 24px); bottom: clamp(14px, 2.2vw, 24px); z-index: 95;
  width: 54px; height: 54px; border-radius: 50%;
  background: var(--wa); color: #fff; display: grid; place-items: center;
  box-shadow: 0 8px 24px rgba(17,17,19,.22);
  transition: transform .2s var(--ease);
}
.wa-float:hover { transform: scale(1.07); }
.wa-float svg { width: 28px; height: 28px; }
.wa-float::before {
  content: ""; position: absolute; inset: 0; border-radius: 50%; background: var(--wa); z-index: -1;
  animation: pulse 2.6s ease-out infinite;
}
@keyframes pulse {
  0% { transform: scale(1); opacity: .5; }
  70%, 100% { transform: scale(1.65); opacity: 0; }
}

/* ---------- 18. Reveal --------------------------------------------------- */
.js .reveal { opacity: 0; transform: translateY(16px); }
.js .reveal.in {
  opacity: 1; transform: none;
  transition: opacity .6s var(--ease), transform .6s var(--ease);
  transition-delay: var(--d, 0ms);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important; animation-iteration-count: 1 !important;
    transition-duration: .001ms !important; scroll-behavior: auto !important;
  }
  .js .reveal { opacity: 1; transform: none; }
  .wa-float::before { animation: none; }
}

/* ==========================================================================
   PAGE MODULES
   ========================================================================== */

/* ---------- 19. Inventory filters ---------------------------------------- */
.filters {
  display: grid; gap: 14px;
  padding-block: 18px 20px;
  border-bottom: 1px solid var(--line);
}
.chips { display: flex; gap: 8px; flex-wrap: wrap; }
.chip {
  background: var(--paper); border: 1px solid var(--line-2); border-radius: 100px; color: var(--ink-3);
  cursor: pointer; font-size: .75rem; font-weight: 600; letter-spacing: .07em; text-transform: uppercase;
  padding: 8px 16px; transition: color .18s, border-color .18s, background .18s;
}
.chip:hover { color: var(--ink); border-color: var(--ink-3); }
.chip[aria-pressed="true"] { background: var(--ink); border-color: var(--ink); color: #fff; }
.filters__meta { font-size: .75rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-3); font-weight: 600; }
.filters__meta b { color: var(--ink); font-weight: 700; }
.noresult { padding: 56px 0; text-align: center; color: var(--ink-3); }

/* sourcing band */
.source { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, .85fr);
          gap: clamp(28px, 5vw, 64px); align-items: center; }
.source__fig { margin: 0; border-radius: var(--r); overflow: hidden; }
.source__fig img { width: 100%; }
@media (max-width: 899px) { .source { grid-template-columns: 1fr; } }

/* ---------- 20. Lightbox ------------------------------------------------- */
.lb {
  position: fixed; inset: 0; z-index: 120; display: none; place-items: center;
  background: rgba(17,17,19,.62); backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
  padding: clamp(12px, 3vw, 36px);
}
.lb.is-open { display: grid; }
.lb__panel {
  position: relative; width: min(1040px, 100%); max-height: calc(100dvh - 40px);
  background: var(--paper); border-radius: var(--r); overflow: hidden;
  display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  box-shadow: 0 30px 70px rgba(0,0,0,.3);
}
.lb__fig { margin: 0; position: relative; background: var(--paper-3); aspect-ratio: 4 / 3; }
.lb__fig img { width: 100%; height: 100%; object-fit: cover; }
.lb__info { padding: clamp(20px, 2.6vw, 32px); overflow-y: auto; display: flex; flex-direction: column; gap: 14px; }
.lb__count { font-size: .6875rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-3); font-weight: 600; }
.lb__price { font-family: var(--display); font-weight: 800; letter-spacing: -.03em; font-size: 1.85rem; color: var(--ink); line-height: 1.05; }
.lb__price small { display: block; font-family: var(--body); font-weight: 600; font-size: .625rem;
                   letter-spacing: .12em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 3px; }
.lb__tbl { width: 100%; border-collapse: collapse; font-size: .8125rem; }
.lb__tbl th, .lb__tbl td { text-align: left; padding: 9px 0; border-bottom: 1px solid var(--line); }
.lb__tbl th { color: var(--ink-3); font-weight: 500; letter-spacing: .08em; text-transform: uppercase; font-size: .6875rem; width: 46%; }
.lb__tbl td { color: var(--ink); font-weight: 600; }
.lb__info .btn { margin-top: auto; }

.lb__x, .lb__nav {
  position: absolute; z-index: 3; width: 40px; height: 40px; display: grid; place-items: center;
  background: rgba(255,255,255,.94); color: var(--ink);
  border: 1px solid var(--line-2); border-radius: var(--r); cursor: pointer;
  transition: background .18s, color .18s, border-color .18s;
}
.lb__x:hover, .lb__nav:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.lb__x { top: 10px; right: 10px; }
.lb__x svg, .lb__nav svg { width: 18px; height: 18px; }
.lb__prev { left: 10px; top: 50%; transform: translateY(-50%); }
.lb__next { left: 58px; top: 50%; transform: translateY(-50%); }
@media (max-width: 859px) {
  .lb__panel { grid-template-columns: 1fr; max-height: calc(100dvh - 24px); overflow-y: auto; }
  .lb__fig { aspect-ratio: 16 / 10; }
  .lb__next { left: auto; right: 10px; }
}

/* ---------- 21. Services ------------------------------------------------- */
.svc { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
       gap: clamp(30px, 5vw, 72px); align-items: center; }
.svc--flip .svc__fig { order: 2; }
.svc__fig { margin: 0; border-radius: var(--r); overflow: hidden; }
.svc__fig img { width: 100%; }
.svc h2 { margin: 12px 0 16px; }
.svc__list { margin-top: 22px; border-top: 1px solid var(--line); }
.svc__list li { display: flex; gap: 11px; align-items: flex-start; padding-block: 12px;
                border-bottom: 1px solid var(--line); font-size: .9375rem; color: var(--ink-2); }
.svc__list svg { width: 16px; height: 16px; color: var(--ink); flex: none; margin-top: 4px; }
@media (max-width: 899px) { .svc { grid-template-columns: 1fr; } .svc--flip .svc__fig { order: 0; } }

/* three-image band */
.strip { display: grid; grid-template-columns: 1.4fr 1fr 1.15fr; gap: 10px; }
.strip figure { margin: 0; position: relative; overflow: hidden; border-radius: var(--r);
                height: clamp(170px, 23vw, 310px); }
.strip img { width: 100%; height: 100%; object-fit: cover; }
.strip figcaption { position: absolute; left: 10px; bottom: 10px; background: rgba(255,255,255,.94);
                    color: var(--ink); border-radius: 2px; font-size: .625rem; font-weight: 700;
                    letter-spacing: .12em; text-transform: uppercase; padding: 6px 10px; }
@media (max-width: 767px) { .strip { grid-template-columns: 1fr; } .strip figure { height: 200px; } }

/* grouped checklist */
.groups { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: clamp(20px, 3vw, 40px); }
.groups h3 { font-size: 1.0625rem; letter-spacing: -.015em; margin-bottom: 12px; padding-bottom: 12px; border-bottom: 3px solid var(--amber); }
.groups li { font-size: .8125rem; color: var(--ink-3); padding-block: 7px; display: flex; gap: 10px; align-items: flex-start; }
.groups li::before { content: ""; width: 8px; height: 1px; background: var(--line-2); flex: none; margin-top: 11px; }
@media (max-width: 1023px) { .groups { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 479px)  { .groups { grid-template-columns: 1fr; } }

/* loan estimator */
.calc { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
        border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; }
.calc__form { padding: clamp(22px, 3vw, 36px); display: grid; gap: 20px; }
.calc__field label { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; margin-bottom: 8px; }
.calc__field span:first-child { font-size: .6875rem; letter-spacing: .13em; text-transform: uppercase; color: var(--ink-3); font-weight: 600; }
.calc__field output { font-family: var(--display); font-weight: 800; font-size: 1.05rem; color: var(--ink); letter-spacing: -.02em; }
.calc input[type="range"] { width: 100%; accent-color: var(--ink); height: 22px; background: transparent; cursor: pointer; }
.calc__out { background: var(--paper-2); border-left: 1px solid var(--line);
             padding: clamp(22px, 3vw, 36px); display: flex; flex-direction: column; justify-content: center; }
.calc__big { font-family: var(--display); font-weight: 800; letter-spacing: -.035em;
             font-size: clamp(2.2rem, 5vw, 3.1rem); color: var(--ink); line-height: 1; margin-top: 6px;
             box-shadow: inset 0 -.14em 0 var(--amber); display: inline-block; }
.calc__rows { margin-top: 20px; display: grid; gap: 8px; }
.calc__rows div { display: flex; justify-content: space-between; gap: 12px; font-size: .8125rem;
                  border-bottom: 1px solid var(--line); padding-bottom: 8px; }
.calc__rows dt { color: var(--ink-3); }
.calc__rows dd { margin: 0; font-weight: 600; color: var(--ink); }
.calc__note { font-size: .75rem; color: var(--ink-3); margin-top: 16px; line-height: 1.5; }
@media (max-width: 899px) { .calc { grid-template-columns: 1fr; } .calc__out { border-left: 0; border-top: 1px solid var(--line); } }

/* FAQ */
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  list-style: none; cursor: pointer; position: relative;
  padding: 20px 44px 20px 0;
  font-family: var(--display); font-weight: 700; letter-spacing: -.02em;
  font-size: clamp(1.02rem, 1.8vw, 1.25rem); color: var(--ink); line-height: 1.25;
  transition: color .18s;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--ink-3); }
.faq summary::after {
  content: ""; position: absolute; right: 8px; top: 50%; width: 11px; height: 11px; margin-top: -8px;
  border-right: 2px solid var(--ink); border-bottom: 2px solid var(--ink);
  transform: rotate(45deg); transition: transform .25s var(--ease);
}
.faq details[open] summary::after { transform: rotate(-135deg) translate(-3px, -3px); }
.faq p { padding-bottom: 22px; max-width: 68ch; color: var(--ink-3); font-size: .9375rem; }

/* ---------- 22. About ---------------------------------------------------- */
.story { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, .7fr);
         gap: clamp(30px, 5vw, 70px); align-items: center; }
.story__lead { font-size: clamp(1.15rem, 1rem + .8vw, 1.5rem); color: var(--ink); font-weight: 500; margin-bottom: 20px; }
.story p + p { margin-top: 15px; }
.story__col { display: grid; gap: 14px; }
/* fixed ratio keeps the image column from towering over the copy */
.story__col img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--r); }
@media (max-width: 899px) { .story { grid-template-columns: 1fr; } }

.numbers { background: var(--amber); color: #000; }
.numbers__grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr));
                 gap: clamp(18px, 3vw, 40px); padding-block: clamp(34px, 4.5vw, 56px); }
.numbers__grid > div { display: flex; flex-direction: column-reverse; }
.numbers dd { margin: 0; font-family: var(--display); font-weight: 800; letter-spacing: -.035em;
              font-size: clamp(2rem, 4.4vw, 3.1rem); line-height: 1; color: #000; }
.numbers dt { font-size: .6875rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; color: rgba(0,0,0,.7); }
@media (max-width: 767px) { .numbers__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }

.tl { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: clamp(20px, 3vw, 40px); }
.tl__item { border-top: 1px solid var(--line); padding-top: 18px; position: relative; }
.tl__item::before { content: ""; position: absolute; top: -4px; left: 0; width: 8px; height: 8px;
                    background: var(--amber); border-radius: 50%; }
.tl__yr { font-family: var(--display); font-weight: 800; letter-spacing: -.03em; font-size: 1.5rem; color: var(--ink); line-height: 1; }
.tl__item h3 { font-size: 1.0625rem; letter-spacing: -.015em; line-height: 1.2; margin: 10px 0 6px; }
.tl__item p { font-size: .9375rem; color: var(--ink-3); }
@media (max-width: 899px) { .tl { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 479px) { .tl { grid-template-columns: 1fr; } }

.duo { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
       gap: clamp(24px, 4vw, 52px); align-items: center; }
.duo figure { margin: 0; border-radius: var(--r); overflow: hidden; }
.duo img { width: 100%; }
@media (max-width: 899px) { .duo { grid-template-columns: 1fr; } }

/* ---------- 23. Contact -------------------------------------------------- */
.contact { display: grid; grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
           gap: clamp(32px, 5vw, 68px); align-items: start; }
@media (max-width: 899px) { .contact { grid-template-columns: 1fr; } }

.deets { margin-top: 24px; border-top: 1px solid var(--line); }
.deets > div { display: grid; grid-template-columns: 108px minmax(0, 1fr); gap: 18px;
               padding-block: 15px; border-bottom: 1px solid var(--line); align-items: baseline; }
.deets dt { font-size: .6875rem; letter-spacing: .13em; text-transform: uppercase; color: var(--ink-3); font-weight: 600; }
.deets dd { margin: 0; font-size: .9375rem; color: var(--ink); line-height: 1.55; }
.deets a { color: var(--ink); text-decoration: none; box-shadow: inset 0 -2px 0 var(--amber); }
.deets a:hover { box-shadow: inset 0 -6px 0 var(--amber); }
@media (max-width: 479px) { .deets > div { grid-template-columns: 1fr; gap: 4px; } }

.form { background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--r);
        padding: clamp(22px, 3.2vw, 40px); display: grid; gap: 16px; }
.form__row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
@media (max-width: 599px) { .form__row { grid-template-columns: 1fr; } }
.field label { display: block; font-size: .6875rem; letter-spacing: .13em; text-transform: uppercase;
               color: var(--ink-3); font-weight: 600; margin-bottom: 7px; }
.field input, .field select, .field textarea {
  width: 100%; background: var(--paper); border: 1px solid var(--line-2); border-radius: var(--r);
  padding: 11px 13px; color: var(--ink); font-size: .9375rem; transition: border-color .18s;
}
.field input::placeholder, .field textarea::placeholder { color: #9c9c9a; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--ink); }
.field textarea { resize: vertical; min-height: 112px; }
.form__note { font-size: .75rem; color: var(--ink-3); }
.formok { border: 1px solid var(--ink); background: var(--paper); border-radius: var(--r);
          padding: 13px 15px; font-size: .875rem; color: var(--ink); }

.locgrid { display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
           gap: clamp(26px, 4vw, 54px); align-items: start; }
@media (max-width: 899px) { .locgrid { grid-template-columns: 1fr; } }
.loc { border-radius: var(--r); overflow: hidden; border: 1px solid var(--line); background: var(--paper); }
.loc__map {
  display: block; width: 100%; border: 0;
  height: clamp(280px, 34vw, 420px);
  background: var(--paper-3);
}
/* stand-in shown until the map scrolls into range and JS mounts the iframe */
.loc__mapholder {
  display: grid; place-content: center; justify-items: center; gap: 10px;
  /* --ink-3 on --paper-3 is only 4.4:1 — one step darker to clear AA */
  color: var(--ink-2); font-size: .8125rem; letter-spacing: .04em;
}
.loc__mapholder svg { width: 26px; height: 26px; }
.loc__plate { padding: clamp(16px, 2.2vw, 24px); background: var(--paper-2);
              border-top: 1px solid var(--line);
              display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap; }
.loc__plate p { font-size: .9375rem; line-height: 1.5; }

.hours { width: 100%; border-collapse: collapse; }
.hours caption { text-align: left; font-size: .6875rem; letter-spacing: .16em; text-transform: uppercase;
                 color: var(--ink-3); font-weight: 600; padding-bottom: 12px; }
.hours th, .hours td { text-align: left; padding: 11px 0; border-bottom: 1px solid var(--line); font-size: .9375rem; }
.hours th { font-weight: 500; color: var(--ink-3); }
.hours td { text-align: right; font-weight: 600; color: var(--ink); }
.hours tr[data-today] th, .hours tr[data-today] td {
  color: var(--ink); font-weight: 600;
  box-shadow: inset 0 -3px 0 var(--amber);
}

.visually-hidden {
  position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap; border: 0;
}

/* three-column variant of the point row (services process) */
.points--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
@media (max-width: 767px) { .points--3 { grid-template-columns: 1fr; } }

/* sell block mirrored: steps left, photo right */
.sell--flip .sell__fig { order: 2; }
@media (max-width: 899px) { .sell--flip .sell__fig { order: 0; } }

/* ---------- 24. Inventory facets ----------------------------------------- */
.filters__top { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.filters__facets {
  display: flex; align-items: center; gap: clamp(14px, 2vw, 28px); flex-wrap: wrap;
  padding-top: 14px; border-top: 1px solid var(--line);
}
.facet { display: flex; align-items: center; gap: 9px; }
.facet > label {
  font-size: .6875rem; font-weight: 600; letter-spacing: .13em;
  text-transform: uppercase; color: var(--ink-3); white-space: nowrap;
}
.facet select {
  appearance: none; -webkit-appearance: none;
  border: 1px solid var(--line-2); border-radius: 100px; background: var(--paper);
  padding: 8px 32px 8px 14px; font-size: .8125rem; font-weight: 500; color: var(--ink);
  cursor: pointer; max-width: 15rem;
  background-image: linear-gradient(45deg, transparent 50%, var(--ink) 50%),
                    linear-gradient(135deg, var(--ink) 50%, transparent 50%);
  background-position: right 15px center, right 10px center;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  transition: border-color .18s;
}
.facet select:hover { border-color: var(--ink-3); }
.facet--range { min-width: min(280px, 100%); flex: 1 1 220px; }
.facet--range input[type="range"] { flex: 1; min-width: 90px; accent-color: var(--ink); height: 22px; cursor: pointer; background: transparent; }
.facet output { font-size: .8125rem; font-weight: 600; color: var(--ink); white-space: nowrap; min-width: 6.5em; }
.freset {
  background: none; border: 0; padding: 6px 0; cursor: pointer; margin-left: auto;
  font-size: .6875rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--ink); border-bottom: 2px solid var(--amber);
}
.freset[hidden] { display: none; }
@media (max-width: 767px) {
  .facet { width: 100%; justify-content: space-between; }
  .facet select { flex: 1; max-width: none; margin-left: 12px; }
  .freset { margin-left: 0; align-self: flex-start; }
}

/* ---------- 25. Handover gallery ----------------------------------------- */
.gal { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: clamp(10px, 1.3vw, 18px); }
.gal figure { margin: 0; }
.gal button {
  display: block; width: 100%; padding: 0; border: 0; background: none; cursor: zoom-in;
  border-radius: var(--r); overflow: hidden; position: relative;
}
.gal img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform .5s var(--ease); }
.gal button:hover img, .gal button:focus-visible img { transform: scale(1.05); }
.gal button::after {
  content: ""; position: absolute; inset: 0;
  background: rgba(17,17,19,.14); opacity: 0; transition: opacity .25s;
}
.gal button:hover::after, .gal button:focus-visible::after { opacity: 1; }
.gal figcaption { margin-top: 9px; font-size: .75rem; color: var(--ink-3); line-height: 1.45; }
.gal figcaption b { display: block; color: var(--ink); font-weight: 600; font-size: .8125rem; }
@media (max-width: 899px) { .gal { grid-template-columns: repeat(2, minmax(0, 1fr)); } }

.galhead { max-width: 62ch; margin-bottom: clamp(26px, 3.4vw, 42px); }
.galhead blockquote {
  margin-top: 18px; padding-left: 18px; border-left: 3px solid var(--amber);
  font-family: var(--display); font-weight: 700; letter-spacing: -.024em;
  font-size: clamp(1.1rem, 1rem + .8vw, 1.5rem); line-height: 1.25; color: var(--ink);
}
.galhead cite { display: block; margin-top: 10px; font-style: normal;
  font-family: var(--body); font-size: .75rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase; color: var(--ink-3); }

/* lightbox in gallery mode: no spec panel, caption only */
.lb__panel--wide { grid-template-columns: minmax(0, 1fr); max-width: 940px; }
.lb__panel--wide .lb__fig { aspect-ratio: 3 / 2; }
.lb__cap { padding: 18px clamp(20px, 2.6vw, 28px) 22px; display: flex; align-items: baseline;
           justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.lb__cap p { font-size: .9375rem; color: var(--ink-2); }
.lb__cap b { color: var(--ink); }
[data-lb-mode="vehicle"] .lb__cap { display: none; }
[data-lb-mode="gallery"] .lb__info { display: none; }

/* ---------- 26. Service hub cards ---------------------------------------- */
.svc-cards { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(16px, 2vw, 26px); }
.svc-card {
  position: relative; display: flex; flex-direction: column; background: var(--paper);
  border: 1px solid var(--line); border-radius: var(--r); overflow: hidden;
  transition: border-color .22s var(--ease), box-shadow .22s var(--ease), transform .22s var(--ease);
}
.svc-card:hover { border-color: var(--line-2); box-shadow: 0 10px 30px rgba(17,17,19,.09); transform: translateY(-3px); }
.svc-card__fig { margin: 0; aspect-ratio: 16 / 10; overflow: hidden; background: var(--paper-3); }
.svc-card__fig img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.svc-card:hover .svc-card__fig img { transform: scale(1.04); }
.svc-card__body { padding: 20px 20px 22px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.svc-card__n { font-size: .6875rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase;
               color: #000; background: var(--amber); border-radius: 2px; padding: 4px 8px; align-self: flex-start; }
.svc-card p { font-size: .9375rem; color: var(--ink-3); }
.svc-card .arrow { margin-top: auto; align-self: flex-start; }
.svc-card .arrow::after { content: ""; position: absolute; inset: 0; }
@media (max-width: 899px) { .svc-cards { grid-template-columns: 1fr; } }
