  /* ==========================================================================
     Sun Valley Motors — one stylesheet, no build step.
     Tokens, base, chrome (dark header + footer), home sections, page templates,
     inventory (grid, filters, detail, photo viewer), forms, responsive.
     Palette: black / white / gray with a deep navy accent (owner's brief).
     ========================================================================== */
  :root {
    --blue: #1b3f75;            /* navy accent: buttons, links, active states */
    --blue-hover: #12305c;
    --blue-active: #0c2242;
    --navy: #12305c;
    --steel: #3b5a86;           /* the building's blue */
    --ink: #0b1220;
    --text: #4b5563;
    --muted: #6b7280;
    --icon-muted: #8a94a6;
    --line: #e5e7eb;
    --line-strong: #c9cfd8;
    --bg: #f3f4f6;
    --white: #ffffff;
    --sky: #b9cdf0;             /* light navy: links and eyebrows on dark surfaces */
    --sky-weak: #e9eef8;
    --amber: #f5b301;
    --green: #0f8a4b;
    --green-weak: #e9f8f0;
    --red: #d63131;
    --header: #0f141b;
    --footer: #0b0f15;
    --overlay-strong: #111827;
    --r-sm: 8px;
    --r-md: 12px;
    --r-lg: 20px;             /* one restrained scale: inputs 8, panels 12, large surfaces 20 (TC is 8/12/16 + pills) */
    --r-btn: 10px;            /* buttons and chips: softly rounded rectangles, never pills */
    --container: 1272px;
    --gutter: 24px;
    --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --shadow-card: 0px 1px 2px rgba(17, 24, 39, 0.04), 0px 12px 32px -12px rgba(17, 24, 39, 0.10);
    --shadow-float: 0px 24px 48px -16px rgba(17, 24, 39, 0.18), 0px 4px 12px rgba(17, 24, 39, 0.06);
    --ease: cubic-bezier(.2, .7, .2, 1);
  }

  * { box-sizing: border-box; }
  html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
  @media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
  body {
    margin: 0;
    font-family: var(--font);
    font-size: 16px;
    line-height: 24px;
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
  h1, h2, h3, h4, p { margin: 0; }
  a { color: var(--blue); text-decoration: none; }
  a:hover { color: var(--blue-hover); }
  img, svg { display: block; }
  button { font: inherit; color: inherit; cursor: pointer; }
  input, select, textarea { font: inherit; color: inherit; }
  ul { list-style: none; margin: 0; padding: 0; }
  :focus-visible { outline: 3px solid rgba(27, 63, 117, 0.55); outline-offset: 2px; border-radius: 4px; }
  [hidden] { display: none !important; }
  .visually-hidden { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

  /* ---------- type scale ---------- */
  .t-heading-2xl { font-size: 28px; line-height: 32px; font-weight: 600; letter-spacing: -0.56px; color: var(--ink); }
  .t-heading-xl { font-size: 24px; line-height: 28px; font-weight: 600; letter-spacing: -0.24px; color: var(--ink); }
  .t-heading-lg { font-size: 20px; line-height: 26px; font-weight: 600; letter-spacing: -0.2px; color: var(--ink); }
  .t-heading-sm { font-size: 16px; line-height: 20px; font-weight: 600; color: var(--ink); }
  .t-body { font-size: 16px; line-height: 24px; }
  .t-body-sm { font-size: 14px; line-height: 20px; }

  /* ---------- buttons ---------- */
  .btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    border: 0; border-radius: var(--r-btn); padding: 12px 24px; height: 48px;
    font-size: 16px; line-height: 24px; font-weight: 500; white-space: nowrap;
    text-decoration: none; transition: background-color .15s, color .15s, box-shadow .15s, transform .15s;
  }
  .btn svg { width: 20px; height: 20px; flex: none; }
  .btn-sm { height: 40px; padding: 10px 16px; font-size: 14px; line-height: 20px; }
  .btn-primary { background: var(--blue); color: #fff; }
  .btn-primary:hover { background: var(--blue-hover); color: #fff; }
  .btn-primary:active { background: var(--blue-active); }
  .btn-primary-inverted { background: #fff; color: var(--ink); }
  .btn-primary-inverted:hover { background: var(--sky-weak); color: var(--blue-hover); }
  .btn-secondary { background: transparent; color: var(--blue); box-shadow: inset 0 0 0 2px var(--blue); }
  .btn-secondary:hover { background: var(--sky-weak); color: var(--blue-hover); }
  .btn-secondary-inverted { background: transparent; color: #fff; box-shadow: inset 0 0 0 2px #fff; }
  .btn-secondary-inverted:hover { background: rgba(255, 255, 255, 0.12); color: #fff; }
  .btn-dark { background: var(--ink); color: #fff; }
  .btn-dark:hover { background: #1f2937; color: #fff; }
  .btn-muted { background: var(--line); color: var(--muted); }
  .btn-muted:hover { background: var(--line-strong); color: var(--ink); }
  .btn:hover { transform: translateY(-1px); }
  .btn:disabled { opacity: .6; cursor: default; transform: none; }

  .link-inverse { color: #fff; font-weight: 500; text-decoration: underline; text-underline-offset: 3px; }
  .link-inverse:hover { color: var(--sky); }

  /* ---------- layout ---------- */
  .container { width: 100%; max-width: calc(var(--container) + var(--gutter) * 2); margin: 0 auto; padding: 0 var(--gutter); }
  .page { overflow-x: clip; }
  main { display: flex; flex-direction: column; }

  /* ---------- header (dark) ---------- */
  .site-header {
    position: sticky; top: 0; z-index: 100; background: var(--header); min-height: 79px; color: #fff;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .25);
  }
  .header-inner {
    height: 79px; display: flex; align-items: center; gap: 8px;
    max-width: calc(var(--container) + var(--gutter) * 2); margin: 0 auto; padding: 0 var(--gutter);
  }
  .header-inner .nav { margin-left: auto; }
  .brand { display: inline-flex; align-items: center; height: 44px; color: #fff; }
  /* brand mark: the winged-wheel logo as an image, sized by height. --logo-h is the rendered height. */
  .logo { display: inline-flex; align-items: center; --logo-h: 40px; height: var(--logo-h); }
  .logo img { height: var(--logo-h); width: auto; }
  .logo--sm { --logo-h: 26px; }
  .logo--lg { --logo-h: 56px; }
  .logo--xl { --logo-h: 72px; }
  .nav { display: flex; align-items: center; gap: 2px; }
  .nav a, .nav button {
    position: relative; display: inline-flex; align-items: center; gap: 8px; height: 44px; padding: 0 14px;
    border-radius: 12px; background: transparent; border: 0; font-weight: 600; font-size: 15px; color: rgba(255, 255, 255, .82);
    transition: color .15s, background-color .15s;
  }
  .nav a::after { content: ""; position: absolute; left: 14px; right: 14px; bottom: 6px; height: 2px; background: var(--sky); transform: scaleX(0); transform-origin: left; transition: transform .25s var(--ease); }
  .nav a:hover, .nav button:hover { color: #fff; }
  .nav a:hover::after { transform: scaleX(1); }
  .nav a[aria-current="page"] { color: #fff; }
  .nav a[aria-current="page"]::after { transform: scaleX(1); }
  .nav svg { width: 20px; height: 20px; }
  .header-actions { display: flex; align-items: center; gap: 8px; margin-left: 8px; }
  .header-phone { display: inline-flex; align-items: center; gap: 8px; height: 44px; padding: 0 14px; border-radius: var(--r-btn); font-weight: 600; color: #fff; font-size: 15px; }
  .header-phone:hover { background: rgba(255, 255, 255, .08); color: #fff; }
  .header-phone svg { width: 18px; height: 18px; color: var(--sky); }
  .header-cta { flex: none; background: #fff; color: var(--ink); }
  .header-cta:hover { background: var(--sky-weak); color: var(--blue-hover); }
  .header-cta__short { display: none; }
  .icon-btn {
    display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px;
    padding: 10px; border: 0; background: transparent; border-radius: var(--r-btn); color: var(--navy);
  }
  .icon-btn:hover { background: var(--bg); color: var(--blue); }
  .icon-btn svg { width: 24px; height: 24px; }
  .menu-pill {
    display: none; align-items: center; justify-content: center; width: 44px; height: 44px; padding: 0;
    border: 1px solid rgba(255, 255, 255, .22); border-radius: var(--r-btn); background: transparent; color: #fff;
    transition: box-shadow .15s, background-color .15s;
  }
  .menu-pill:hover { background: rgba(255, 255, 255, .08); }
  .menu-pill > svg { width: 22px; height: 22px; }

  /* ---------- drawer ---------- */
  .drawer-backdrop { position: fixed; inset: 0; background: rgba(11, 18, 32, 0.55); z-index: 60; opacity: 0; pointer-events: none; transition: opacity .25s; }
  .drawer {
    position: fixed; top: 0; right: 0; bottom: 0; width: min(400px, 92vw); background: #fff; z-index: 61;
    transform: translateX(100%); transition: transform .3s var(--ease); display: flex; flex-direction: column;
    box-shadow: -8px 0 40px rgba(11, 18, 32, 0.18);
  }
  body.drawer-open .drawer-backdrop { opacity: 1; pointer-events: auto; }
  body.drawer-open .drawer { transform: translateX(0); }
  body.drawer-open { overflow: hidden; }
  .drawer-head { display: flex; align-items: center; justify-content: space-between; padding: 16px 16px 16px 24px; border-bottom: 1px solid var(--line); }
  .drawer-body { padding: 8px 8px 24px; overflow-y: auto; flex: 1; }
  .drawer-body a.row { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 14px 16px; border-radius: var(--r-md); font-weight: 600; color: var(--ink); font-size: 16px; }
  .drawer-body a.row:hover { background: var(--bg); }
  .drawer-body a.row > span { display: inline-flex; align-items: center; gap: 10px; }
  .drawer-body a.row svg { width: 20px; height: 20px; color: var(--icon-muted); }
  .drawer-body a.row > span svg { color: var(--ink); }
  .drawer-body a.row[aria-current="page"] { background: var(--sky-weak); color: var(--blue); }
  .drawer-body a.row[aria-current="page"] > span svg { color: var(--blue); }
  .drawer-section { padding: 16px 16px 8px; font-size: 12px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
  .drawer-foot { padding: 16px 24px 24px; border-top: 1px solid var(--line); display: grid; gap: 10px; }
  .drawer-foot .btn { width: 100%; }
  .drawer-hours { font-size: 14px; line-height: 20px; color: var(--text); }

  /* ---------- hero ---------- */
  .hero { position: relative; z-index: 3; isolation: isolate; min-height: 620px; background: var(--ink); color: #fff; display: flex; align-items: flex-end; }
  .hero-bg { position: absolute; inset: 0; overflow: hidden; z-index: 0; }
  .hero-photo { position: absolute; left: 0; right: 0; bottom: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 58%; }
  .hero-tint {
    position: absolute; inset: 0;
    background: linear-gradient(90deg, rgba(11, 18, 32, 0.78) 0%, rgba(11, 18, 32, 0.55) 34%, rgba(11, 18, 32, 0.18) 62%, rgba(11, 18, 32, 0.05) 80%),
                linear-gradient(180deg, rgba(11, 18, 32, 0.45) 0%, rgba(11, 18, 32, 0.05) 30%, rgba(11, 18, 32, 0) 60%, rgba(11, 18, 32, 0.6) 100%);
  }
  .hero-inner {
    position: relative; z-index: 1; width: 100%; max-width: calc(var(--container) + var(--gutter) * 2); margin: 0 auto;
    padding: 160px var(--gutter) 88px; display: grid; grid-template-columns: minmax(0, 1fr); gap: 72px;
  }
  .hero-top { position: relative; z-index: 2; display: flex; flex-direction: column; gap: 24px; }
  .hero-kicker { display: inline-flex; align-items: center; gap: 10px; width: fit-content; padding: 6px 14px 6px 8px; border-radius: var(--r-btn); background: rgba(255, 255, 255, .12); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .18); font-size: 13px; font-weight: 600; letter-spacing: .02em; }
  .hero-kicker .dot { width: 8px; height: 8px; border-radius: 50%; background: #34d399; box-shadow: 0 0 10px rgba(52, 211, 153, .9); }
  .hero-kicker.is-closed .dot { background: #f87171; box-shadow: 0 0 10px rgba(248, 113, 113, .8); }
  .hero-kicker .sep { opacity: .5; }
  .hero h1 {
    font-size: 60px; line-height: 56px; font-weight: 900; letter-spacing: -1.4px; text-transform: uppercase; color: #fff;
    text-shadow: 0 2px 28px rgba(0, 0, 0, 0.4); max-width: 820px;
  }
  .hero h1 span { display: block; }
  .hero h1 .accent { color: var(--sky); }
  .hero-sub { font-size: 18px; line-height: 28px; color: rgba(255, 255, 255, .92); max-width: 560px; text-shadow: 0 1px 12px rgba(0, 0, 0, .35); }
  .search {
    position: relative; width: 520px; max-width: 100%; height: 56px; background: #fff; border: 1px solid var(--icon-muted);
    border-radius: var(--r-md); display: flex; align-items: center; color: var(--ink);
    transition: box-shadow .15s, border-color .15s;
  }
  .search:focus-within { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(27, 63, 117, 0.35); }
  .search > svg { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); width: 20px; height: 20px; color: var(--ink); pointer-events: none; }
  .search input {
    width: 100%; height: 54px; border: 0; border-radius: var(--r-sm); background: transparent;
    padding: 0 16px 0 40px; font-size: 16px; line-height: 24px; color: var(--ink);
  }
  .search:focus-within input, .search.has-value input { padding-right: 56px; }
  .search input::placeholder { color: var(--muted); opacity: 1; }
  .search input:focus { outline: none; }
  .search-go {
    position: absolute; right: 6px; top: 50%; transform: translateY(-50%); width: 42px; height: 42px; border-radius: 50%;
    background: var(--blue); color: #fff; border: 0; display: grid; place-items: center; opacity: 0; transition: opacity .15s, background-color .15s;
  }
  .search:focus-within .search-go, .search.has-value .search-go { opacity: 1; }
  .search-go:hover { background: var(--blue-hover); }
  .search-go svg { width: 20px; height: 20px; }
  .search-menu {
    position: absolute; left: -1px; right: -1px; top: calc(100% + 6px); background: #fff; border-radius: var(--r-md);
    box-shadow: var(--shadow-float); padding: 8px; display: none; z-index: 5; color: var(--ink);
    max-height: min(64vh, 560px); overflow-y: auto; overscroll-behavior: contain;
  }
  .search:focus-within .search-menu, .search-menu.is-open { display: block; }
  .search-menu p { font-size: 12px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); padding: 8px 12px 4px; }
  .search-menu button {
    width: 100%; display: flex; align-items: center; gap: 12px; padding: 10px 12px; border: 0; background: transparent;
    border-radius: var(--r-sm); text-align: left; font-size: 15px; color: var(--ink);
  }
  .search-menu button:hover, .search-menu button:focus-visible { background: var(--bg); outline: none; }
  .search-menu button svg { width: 18px; height: 18px; color: var(--icon-muted); flex: none; }
  .search-menu .opt { align-items: flex-start; }
  .search-menu .opt > svg { margin-top: 2px; }
  .search-menu .opt__text { display: grid; gap: 1px; min-width: 0; flex: 1; }
  .search-menu .opt__text b { font-weight: 600; font-size: 15px; line-height: 20px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .search-menu .opt__text small { font-size: 13px; line-height: 18px; color: var(--text); }
  .search-menu .opt__tag { flex: none; align-self: center; font-style: normal; font-size: 11px; line-height: 14px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--blue); background: var(--sky-weak); border-radius: var(--r-btn); padding: 3px 8px; }
  .search-menu .opt.is-active { background: var(--bg); }
  .search-menu .opt--go > svg, .search-menu .opt--go .opt__text b { color: var(--blue); }
  .hero-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
  .hero-card {
    position: relative; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 24px;
    padding: 24px; border-radius: var(--r-md); min-height: 100px; color: #fff;
    background: rgba(11, 18, 32, 0.62); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
  }
  .hero-card h2 { color: #fff; }
  .hero-card p { color: rgba(255, 255, 255, .9); margin-top: 4px; }
  .hero-card .hc-short { display: none; align-items: center; gap: 6px; }
  .hero-card .hc-short svg { width: 18px; height: 18px; }

  /* ---------- bands, sections, carousels ---------- */
  .band { padding: 64px 0; }
  .band--white { background: #fff; }
  .band--gray { background: var(--bg); }
  .band--dark { background: var(--ink); color: #fff; }
  .section-head { display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-bottom: 20px; }
  .section-head h2 { margin-bottom: 4px; }
  .carousel-nav { display: flex; gap: 12px; flex: none; }
  .carousel-btn {
    width: 40px; height: 40px; border-radius: var(--r-btn); border: 2px solid var(--line-strong); background: var(--bg);
    color: var(--line-strong); display: flex; align-items: center; justify-content: center; padding: 0;
    transition: color .15s, border-color .15s, background-color .15s;
  }
  .carousel-btn.is-active { color: var(--blue); border-color: var(--blue); }
  .carousel-btn.is-active:hover { background: var(--sky-weak); }
  .carousel-btn svg { width: 18px; height: 18px; }
  .track {
    display: flex; gap: 24px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none;
    padding: 2px 0 8px; margin: -2px 0 -8px; overscroll-behavior-x: contain;
  }
  .track::-webkit-scrollbar { display: none; }
  .track > * { scroll-snap-align: start; flex: none; }
  .bleed { margin-left: calc(var(--gutter) * -1); margin-right: calc(var(--gutter) * -1); padding-left: var(--gutter); padding-right: var(--gutter); scroll-padding-left: var(--gutter); }

  /* body-style tiles (home "Shop by body style"): name above, studio photo of the body style below */
  .tile-row { display: grid; grid-template-columns: repeat(6, 1fr); gap: 8px; }
  .tile { display: flex; flex-direction: column; align-items: center; gap: 6px; padding: 12px 6px 8px; color: var(--ink); }
  .tile p { font-size: 15px; line-height: 20px; font-weight: 600; color: var(--ink); text-align: center; transition: color .2s; }
  .tile .frame { width: 100%; max-width: 200px; display: block; }
  .tile img { width: 100%; height: auto; display: block; transition: transform .35s var(--ease); }
  .tile:hover { color: var(--ink); }
  .tile:hover p { color: var(--blue); }
  .tile:hover img { transform: translateY(-3px) scale(1.04); }

  /* explore cards */
  .explore-card {
    display: flex; flex-direction: column; justify-content: space-between; width: 300px; height: 365px;
    border-radius: var(--r-lg); padding: 24px; overflow: hidden; position: relative; color: var(--ink);
    transition: box-shadow .2s;
  }
  .explore-card:hover { box-shadow: var(--shadow-float); }
  .explore-card .copy { display: flex; flex-direction: column; gap: 12px; position: relative; z-index: 1; }
  .explore-card .copy p { font-size: 14px; line-height: 20px; color: var(--text); }
  .explore-card .art { flex: 1; min-height: 0; position: relative; margin: 12px 0; display: grid; place-items: center; }
  .explore-card .btn { position: relative; z-index: 1; width: 100%; }
  .explore-card.sky { background: #dbe4f1; }
  .explore-card.gray { background: var(--line); }
  .explore-card.navy { background: var(--navy); background-image: radial-gradient(circle at 20% 15%, rgba(59, 90, 134, 0.95) 0%, rgba(18, 48, 92, 0) 55%), radial-gradient(circle at 90% 110%, rgba(11, 18, 32, 1) 0%, rgba(18, 48, 92, 0) 50%); }
  .explore-card.black { background: var(--overlay-strong); }
  .explore-card.navy, .explore-card.black { color: #fff; }
  .explore-card.navy h2, .explore-card.black h2, .explore-card.navy .copy p, .explore-card.black .copy p { color: #fff; }
  .explore-card.navy .copy p, .explore-card.black .copy p { color: rgba(255, 255, 255, .85); }
  .art-photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; border-radius: var(--r-md); box-shadow: 0 10px 24px rgba(11, 18, 32, 0.18); }
  /* typographic art: a big figure with a caption, for cards that have no photo */
  .art-big { display: grid; justify-items: center; gap: 2px; text-align: center; }
  .art-big b { font-size: 84px; line-height: 1; font-weight: 900; letter-spacing: -3px; color: var(--ink); }
  .art-big small { font-size: 13px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--text); }
  .navy .art-big b, .black .art-big b { color: #fff; }
  .navy .art-big small, .black .art-big small { color: rgba(255, 255, 255, .75); }
  .art-icon { width: 140px; height: 140px; color: var(--ink); }
  /* explore-card art animations: play once when the card scrolls into view, replay on hover */
  .explore-card .art { perspective: 600px; }
  .art-big b { font-variant-numeric: tabular-nums; }
  [data-anim] { will-change: transform; transform-origin: 50% 50%; backface-visibility: visible; }
  [data-anim="spin"].is-playing { animation: art-spin 1.3s cubic-bezier(.3, .1, .2, 1) both; }
  [data-anim="rise"].is-playing { animation: art-rise 1.1s cubic-bezier(.2, .8, .2, 1) both; }
  [data-anim="turn"].is-playing { animation: art-turn 1.2s cubic-bezier(.3, .1, .2, 1) both; }
  @keyframes art-spin { from { transform: rotateY(0deg); } to { transform: rotateY(360deg); } }
  @keyframes art-rise { 0% { transform: translateY(70px); opacity: 0; } 55% { transform: translateY(-14px); opacity: 1; } 78% { transform: translateY(6px); } 100% { transform: translateY(0); } }
  @keyframes art-turn { 0% { transform: rotate(0deg); } 45% { transform: rotate(-70deg); } 72% { transform: rotate(8deg); } 100% { transform: rotate(0deg); } }
  @media (prefers-reduced-motion: reduce) { [data-anim].is-playing { animation: none; } }
  .navy .art-icon, .black .art-icon { color: rgba(255, 255, 255, .92); }

  /* financing banner + the "your deal" card */
  .banner {
    margin-top: 48px; display: flex; overflow: hidden; border-radius: var(--r-lg);
    background-color: var(--navy);
    background-image: radial-gradient(circle at -3% 117%, var(--ink) 0px, rgba(0, 0, 0, 0) 50%), radial-gradient(circle at 75% 50%, var(--ink) 0px, rgba(0, 0, 0, 0) 40%), linear-gradient(90deg, #12305c, #0b1220);
  }
  .banner-inner { display: grid; grid-template-columns: 1.15fr 1fr; align-items: center; gap: 40px; width: 100%; padding: 56px 56px 56px 64px; }
  .banner-copy { display: flex; flex-direction: column; align-items: flex-start; gap: 14px; max-width: 560px; }
  .banner-copy .eyebrow { color: var(--sky); }
  .banner-copy h2 { color: #fff; }
  .banner-copy p { color: rgba(255, 255, 255, .82); font-size: 16px; line-height: 24px; }
  .banner-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 12px 24px; margin-top: 6px; }
  .banner-art { position: relative; align-self: stretch; min-height: 330px; }
  .banner-sign { position: absolute; right: -8px; top: 50%; transform: translateY(-50%) rotate(4deg); width: 300px; height: 300px; object-fit: cover; border-radius: var(--r-lg); box-shadow: 0 24px 48px rgba(0, 0, 0, .4); }
  .deal { position: absolute; left: 0; top: 50%; transform: translateY(-50%) rotate(-3deg); width: 280px; background: #fff; border-radius: var(--r-md); box-shadow: 0 24px 48px rgba(0, 0, 0, .35); color: var(--ink); overflow: hidden; }
  .deal__head { display: flex; align-items: center; justify-content: space-between; padding: 14px 16px; border-bottom: 1px solid var(--line); }
  .deal__tag { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
  .deal__lines { padding: 6px 16px; }
  .deal__lines li { display: flex; justify-content: space-between; align-items: center; padding: 9px 0; font-size: 13px; line-height: 18px; color: var(--text); border-bottom: 1px dashed var(--line); }
  .deal__lines li:last-child { border-bottom: 0; }
  .deal__lines b { font-weight: 600; color: var(--ink); font-size: 12px; background: var(--sky-weak); padding: 2px 8px; border-radius: var(--r-btn); }
  .deal__lines b.zero { background: var(--green-weak); color: var(--green); }
  .deal__foot { display: flex; align-items: center; gap: 12px; padding: 14px 16px; background: var(--green-weak); }
  .deal__foot b { display: block; font-size: 14px; line-height: 18px; font-weight: 600; color: var(--ink); }
  .deal__foot small { font-size: 12px; line-height: 16px; color: var(--text); }
  .deal__check { flex: none; width: 32px; height: 32px; border-radius: 50%; background: var(--green); color: #fff; display: grid; place-items: center; }
  .deal__check svg { width: 16px; height: 16px; }

  /* marketing carousel */
  .marketing { --slide-w: clamp(640px, 55vw, 1032px); --slide-gap: 28px; padding: 72px 0; position: relative; background: #fff; }
  .marketing .track { gap: var(--slide-gap); padding: 0 max(var(--gutter), calc((100% - var(--slide-w)) / 2)) 8px; margin: 0; }
  .marketing .track > * { scroll-snap-align: center; }
  .slide {
    position: relative; width: var(--slide-w); max-width: calc(100vw - var(--gutter) * 2); height: 580px; border-radius: var(--r-lg); overflow: hidden;
    display: flex; flex-direction: column; justify-content: flex-end; color: #fff; background: var(--ink);
  }
  .marketing .slide { transition: opacity .25s ease-out; }
  .marketing .slide:not(.is-active) { opacity: .28; }
  .slide .media { position: absolute; inset: 0; }
  .slide .media img { width: 100%; height: 100%; object-fit: cover; }
  .slide .media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(11, 18, 32, 0) 30%, rgba(11, 18, 32, 0.55) 65%, rgba(11, 18, 32, 0.92) 100%); }
  .slide--type { background: var(--navy); background-image: radial-gradient(circle at 15% 10%, rgba(59, 90, 134, .9) 0%, rgba(18, 48, 92, 0) 55%), radial-gradient(circle at 95% 100%, rgba(11, 18, 32, 1) 0%, rgba(18, 48, 92, 0) 50%); justify-content: space-between; }
  .slide--type .slide-big { position: relative; z-index: 1; padding: 40px 24px 0; font-size: clamp(72px, 12vw, 160px); line-height: .9; font-weight: 900; letter-spacing: -.04em; color: #fff; text-transform: uppercase; }
  .slide--type .slide-big small { display: block; font-size: clamp(18px, 2.4vw, 28px); letter-spacing: .12em; font-weight: 700; color: var(--sky); margin-top: 12px; }
  .slide .slide-copy { position: relative; z-index: 1; display: flex; flex-direction: column; gap: 12px; padding: 0 24px 24px; max-width: 760px; }
  .slide h2 { color: #fff; }
  .slide p { color: #fff; }
  .slide .btn { align-self: flex-start; margin-top: 12px; }
  .marketing-arrows { position: absolute; left: 0; right: 0; top: calc(72px + 290px); transform: translateY(-50%); pointer-events: none; display: flex; justify-content: space-between; padding: 0 max(24px, calc((100% - var(--slide-w)) / 2 - 120px)); }
  .marketing-arrows button {
    pointer-events: auto; width: 56px; height: 56px; border-radius: 50%; background: rgba(255, 255, 255, .92); color: var(--navy);
    border: 0; box-shadow: var(--shadow-float); display: grid; place-items: center; transition: transform .15s, background-color .15s;
  }
  .marketing-arrows button:hover { background: #fff; }
  .marketing-arrows button svg { width: 22px; height: 22px; }

  /* schedule + hours */
  .schedule { padding-top: 80px; }
  .schedule-grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: 24px; align-items: start; }
  .schedule-grid--even { grid-template-columns: 1fr 1.25fr; align-items: stretch; }
  .card.card--map { padding: 0; overflow: hidden; min-height: 420px; display: grid; }
  .card--map .map--fill { position: relative; height: auto; min-height: 420px; border-radius: 0; }
  .card--map .map--fill iframe { position: absolute; inset: 0; width: 100%; height: 100%; }
  .card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); box-shadow: var(--shadow-card); padding: 32px; }
  .card h3 { margin-bottom: 16px; }
  .form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .field { display: flex; flex-direction: column; gap: 6px; }
  .field.full { grid-column: 1 / -1; }
  .field label { font-size: 14px; line-height: 20px; font-weight: 500; color: var(--ink); }
  .field label .optional { color: var(--muted); font-weight: 400; }
  .field input, .field select, .field textarea {
    width: 100%; height: 56px; border: 1px solid var(--icon-muted); border-radius: var(--r-sm); background: #fff; padding: 0 16px;
    font-size: 16px; color: var(--ink); transition: border-color .15s, box-shadow .15s;
  }
  .field textarea { height: 120px; padding: 14px 16px; resize: vertical; line-height: 22px; }
  .field select { appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230b1220' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; background-size: 20px; padding-right: 44px; }
  .field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(27, 63, 117, 0.3); }
  .field input::placeholder, .field textarea::placeholder { color: var(--muted); opacity: 1; }
  .field-hint { font-size: 13px; line-height: 18px; color: var(--muted); }
  .honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
  .form-actions { grid-column: 1 / -1; display: flex; flex-direction: column; gap: 12px; }
  .form-actions .btn { align-self: flex-start; min-width: 200px; }
  .form-note { font-size: 13px; line-height: 18px; color: var(--muted); }
  .form-message { display: none; padding: 12px 16px; border-radius: var(--r-sm); font-size: 14px; line-height: 20px; }
  .form-message.is-visible { display: block; }
  .form-message.error { background: #fff5f5; color: #b02525; }
  .form-message.info { background: var(--sky-weak); color: var(--navy); }
  .form-message:focus { outline: none; }
  .form-fail { display: grid; gap: 10px; color: var(--ink); }
  .form-fail > b { font-size: 16px; line-height: 22px; font-weight: 600; color: #b02525; }
  .form-fail > p { font-size: 14px; line-height: 20px; color: var(--text); }
  .form-fail__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 10px 14px; }
  .form-fail__actions .btn svg { width: 18px; height: 18px; }
  .form-fail > small { font-size: 13px; line-height: 18px; color: var(--muted); }
  .form-fallback { margin-top: 16px; padding: 16px 18px; border-radius: var(--r-sm); background: #fff5f5; color: var(--ink); }
  .form-fallback b { display: block; color: #b02525; font-weight: 600; margin-bottom: 4px; }
  .form-fallback p { font-size: 14px; line-height: 20px; color: var(--text); }
  .success { display: none; text-align: center; }
  .success.is-visible { display: block; }
  .success svg { width: 56px; height: 56px; margin: 0 auto 12px; color: var(--green); }
  .success h3 { margin-bottom: 8px; }
  .steps { display: grid; gap: 14px; margin: 20px 0 0; padding: 0; counter-reset: step; }
  .steps li { display: flex; gap: 14px; align-items: flex-start; }
  .steps li::before { counter-increment: step; content: counter(step); flex: none; width: 32px; height: 32px; border-radius: 50%; background: var(--sky-weak); color: var(--blue); font-weight: 700; display: grid; place-items: center; font-size: 14px; }
  .steps strong { display: block; color: var(--ink); font-weight: 600; }
  .steps span { font-size: 14px; line-height: 20px; color: var(--text); }
  .status { display: inline-flex; align-items: center; gap: 8px; padding: 6px 12px 6px 8px; border-radius: var(--r-btn); font-size: 14px; font-weight: 600; width: fit-content; }
  .status .dot { width: 10px; height: 10px; border-radius: 50%; background: currentColor; box-shadow: 0 0 0 4px rgba(255, 255, 255, .6); }
  .status.is-open { background: var(--green-weak); color: var(--green); }
  .status.is-closed { background: #fff5f5; color: #b02525; }
  .status .detail { font-weight: 400; color: var(--text); }
  .hours { width: 100%; border-collapse: collapse; }
  .hours td { padding: 9px 0; border-bottom: 1px solid var(--line); font-size: 15px; color: var(--ink); }
  .hours td:last-child { text-align: right; color: var(--text); }
  .hours td.closed { color: var(--muted); }
  .hours tr.today td { font-weight: 600; color: var(--blue); }
  .hours tr:last-child td { border-bottom: 0; }
  .hours-note { font-size: 13px; line-height: 18px; color: var(--muted); }
  .address { font-style: normal; color: var(--ink); line-height: 24px; }
  .contact-links { display: flex; flex-wrap: wrap; gap: 8px 20px; font-weight: 500; }
  .map { border-radius: var(--r-md); overflow: hidden; height: 220px; background: var(--line); }
  .map iframe { width: 100%; height: 100%; border: 0; display: block; }

  /* statement: big editorial type */
  .statement { padding: 120px 0 56px; }
  .statement__inner { display: grid; grid-template-columns: 1.4fr 1fr; gap: 48px; align-items: end; }
  .statement h2 { font-size: 88px; line-height: .98; font-weight: 800; letter-spacing: -3.5px; color: var(--ink); }
  .statement h2 span { display: block; }
  .statement h2 .accent { color: var(--blue); }
  .statement__aside { padding-bottom: 10px; max-width: 380px; }
  .statement__aside p { font-size: 18px; line-height: 28px; color: var(--text); margin-bottom: 16px; }

  /* brand moment / story banner */
  .moment-inner { position: relative; width: 100%; max-width: var(--container); }
  .moment-badge {
    position: absolute; left: 32px; bottom: 32px; background: rgba(255, 255, 255, .96); color: var(--ink); border-radius: var(--r-md);
    padding: 16px 20px; display: flex; gap: 14px; align-items: center; box-shadow: var(--shadow-float); max-width: 440px;
  }
  .moment-badge .logo { flex: none; }
  .moment-badge strong { display: block; font-weight: 600; }
  .moment-badge span { font-size: 14px; color: var(--text); }
  .story-banner { margin-bottom: 36px; }
  .story-banner img { width: 100%; height: 560px; object-fit: cover; object-position: 50% 60%; border-radius: var(--r-lg); box-shadow: var(--shadow-float); display: block; }
  .story-pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .pillar { background: #fff; border-radius: var(--r-lg); padding: 28px; box-shadow: var(--shadow-card); display: flex; flex-direction: column; gap: 12px; }
  .pillar__icon { width: 44px; height: 44px; border-radius: var(--r-md); background: var(--sky-weak); color: var(--blue); display: grid; place-items: center; }
  .pillar__icon svg { width: 22px; height: 22px; fill: none; }
  .pillar__icon .star { fill: currentColor; }
  .pillar h3 { font-size: 18px; line-height: 24px; font-weight: 600; letter-spacing: -.2px; color: var(--ink); }
  .pillar p { font-size: 15px; line-height: 24px; color: var(--text); }
  .pillar p strong { color: var(--ink); font-weight: 600; }

  /* browse by: segmented control + cross-fading panels */
  .browse { padding: 0; }
  .seg { position: relative; display: flex; width: fit-content; max-width: 100%; margin: 0 auto 36px; padding: 4px; background: #e3e6eb; border-radius: var(--r-btn); }
  .seg button { position: relative; z-index: 1; border: 0; background: transparent; padding: 10px 22px; border-radius: var(--r-btn); font-size: 15px; font-weight: 600; color: var(--text); white-space: nowrap; transition: color .35s cubic-bezier(.2, .8, .2, 1); }
  .seg button[aria-selected="true"] { color: var(--ink); }
  .seg button:focus-visible { outline: 3px solid rgba(27, 63, 117, .5); outline-offset: -3px; }
  .seg__pill { position: absolute; top: 4px; left: 0; height: calc(100% - 8px); width: 0; background: #fff; border-radius: var(--r-btn); box-shadow: 0 1px 2px rgba(11, 18, 32, .12), 0 4px 12px rgba(11, 18, 32, .08); transition: transform .45s cubic-bezier(.2, .8, .2, 1), width .45s cubic-bezier(.2, .8, .2, 1); }
  .browse-panels { display: grid; }
  .browse-panel { grid-area: 1 / 1; display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; opacity: 0; transform: translateY(10px) scale(.995); pointer-events: none; visibility: hidden; transition: opacity .4s cubic-bezier(.2, .8, .2, 1), transform .45s cubic-bezier(.2, .8, .2, 1), visibility 0s linear .45s; }
  .browse-panel.is-active { opacity: 1; transform: none; pointer-events: auto; visibility: visible; transition-delay: 0s, 0s, 0s; }
  .browse-panel[hidden] { display: grid; }
  .browse-item { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 4px 12px; padding: 14px 16px; background: #fff; border-radius: var(--r-md); box-shadow: var(--shadow-card); color: var(--ink); transition: box-shadow .2s, transform .35s cubic-bezier(.2, .8, .2, 1); }
  .browse-item:hover { box-shadow: var(--shadow-float); transform: translateY(-2px); color: var(--ink); }
  .browse-item b { font-weight: 600; font-size: 15px; line-height: 20px; }
  .browse-item .t-short { display: none; }
  .browse-item small { grid-column: 1; font-size: 13px; line-height: 18px; color: var(--text); }
  .browse-item svg { grid-column: 2; grid-row: 1 / span 2; width: 18px; height: 18px; color: var(--icon-muted); }
  .browse-item:hover svg { color: var(--blue); }
  @media (prefers-reduced-motion: reduce) { .seg button, .seg__pill, .browse-panel, .browse-item { transition: none; } }

  /* footer */
  .site-footer { position: relative; margin: 96px 0 0; background: var(--footer); color: #fff; border-radius: 28px 28px 0 0; padding: 72px var(--gutter) 40px; overflow: hidden; box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08); }
  .footer-grid { display: grid; grid-template-columns: 1fr repeat(4, 196px); gap: 24px; max-width: 1272px; margin: 0 auto; }
  .footer-brand { display: flex; flex-direction: column; gap: 20px; align-items: flex-start; }
  .footer-brand .mark { display: inline-flex; }
  .footer-brand p { font-size: 14px; line-height: 20px; color: rgba(255, 255, 255, .8); max-width: 300px; }
  .footer-brand a { color: #fff; font-weight: 500; font-size: 14px; }
  .footer-brand a:hover { color: var(--sky); }
  .footer-lang { display: inline-flex; align-items: center; gap: 8px; padding: 6px 12px; border-radius: var(--r-btn); background: rgba(255, 255, 255, .08); font-size: 13px; font-weight: 600; color: #fff; }
  .footer-lang svg { width: 16px; height: 16px; color: var(--sky); }
  .footer-col h3 { font-size: 16px; line-height: 20px; font-weight: 600; color: #fff; margin: 0 0 18px; }
  .fgroup + .fgroup { margin-top: 32px; }
  .fgroup__head { display: flex; align-items: center; justify-content: space-between; width: 100%; padding: 0; border: 0; background: transparent; color: #fff; text-align: left; cursor: default; pointer-events: none; }
  .fgroup__head > svg { display: none; width: 20px; height: 20px; color: rgba(255, 255, 255, .6); transition: transform .35s cubic-bezier(.2, .8, .2, 1); }
  .fgroup__body { display: block; }
  .footer-col ul { display: grid; gap: 12px; }
  .footer-col a, .footer-col button { display: inline-flex; align-items: center; gap: 8px; color: #fff; font-size: 14px; line-height: 20px; font-weight: 500; background: transparent; border: 0; padding: 0; }
  .footer-col a:hover { color: var(--sky); text-decoration: underline; text-underline-offset: 3px; }
  .footer-col a svg { width: 16px; height: 16px; }
  .footer-muted { font-size: 14px; line-height: 20px; color: rgba(255, 255, 255, .8); }
  .footer-bottom { max-width: 1272px; margin: 56px auto 0; }
  .footer-social { display: flex; flex-wrap: wrap; gap: 20px; }
  .footer-social a { color: #fff; display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 500; }
  .footer-social a:hover { color: var(--sky); }
  .footer-social svg { width: 20px; height: 20px; }
  .footer-rule { height: 1px; background: rgba(255, 255, 255, .2); margin: 0 0 24px; }
  .footer-legal { display: grid; grid-template-columns: 1fr auto; grid-template-areas: "copy social" "lic social"; gap: 6px 24px; align-items: center; font-size: 14px; line-height: 20px; color: rgba(255, 255, 255, .85); }
  .footer-legal > span { grid-area: copy; }
  .footer-legal > small { grid-area: lic; font-size: 13px; color: rgba(255, 255, 255, .6); }
  .footer-legal .footer-social { grid-area: social; justify-self: end; }

  /* floating call button */
  .fab {
    position: fixed; right: 16px; bottom: 16px; z-index: 40; width: 56px; height: 56px; border-radius: 50%;
    background: var(--ink); color: #fff; display: grid; place-items: center; box-shadow: 0 10px 30px rgba(11, 18, 32, 0.35);
    transition: transform .15s, background-color .15s;
  }
  .fab:hover { background: var(--navy); color: #fff; }
  .fab svg { width: 26px; height: 26px; }

  @media (prefers-reduced-motion: reduce) { * { transition: none !important; } }

  /* ==========================================================================
     Page templates (all pages except the home hero sections)
     ========================================================================== */
  .link-plain { display: inline-flex; align-items: center; gap: 8px; font-weight: 500; color: var(--blue); }
  .link-plain svg { width: 18px; height: 18px; }
  .link-arrow { display: inline-flex; align-items: center; gap: 6px; font-weight: 500; color: var(--blue); }
  .link-arrow svg { width: 18px; height: 18px; }
  .eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; line-height: 16px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--blue); }
  .eyebrow::before { content: ""; width: 18px; height: 2px; background: currentColor; flex: none; }
  .section-head--center .eyebrow::after { content: ""; width: 18px; height: 2px; background: currentColor; flex: none; }
  .muted { color: var(--muted); }
  .chip { display: inline-flex; align-items: center; gap: 6px; height: 24px; padding: 0 10px; border-radius: var(--r-btn); background: var(--sky-weak); color: var(--navy); font-size: 12px; font-weight: 600; }
  .chip--dark { background: var(--ink); color: #fff; }
  .chip--green { background: var(--green-weak); color: var(--green); }
  .chip--amber { background: #fff7db; color: #8a5a00; }
  .chip svg { width: 14px; height: 14px; }

  .section--pad { padding: 64px 0; scroll-margin-top: 79px; }
  .section--tight { padding: 40px 0; }
  .section--white { background: #fff; }
  .section--dark { background: var(--ink); color: #fff; }
  .section--dark .eyebrow { color: var(--sky); }
  .section--dark h2, .section--dark h3 { color: #fff; }
  .section--dark p { color: rgba(255, 255, 255, .85); }
  .section-head--stack { display: block; margin-bottom: 28px; }
  .section-head--stack .eyebrow { margin-bottom: 8px; }
  .section-head--stack h2 { margin-bottom: 8px; }
  .section-head--stack p { max-width: 640px; }
  .section-head--center { text-align: center; }
  .section-head--center p { margin: 0 auto; }

  .crumbs { display: flex; flex-wrap: wrap; align-items: center; gap: 6px; font-size: 14px; line-height: 20px; color: var(--muted); margin-bottom: 16px; }
  .crumbs a { color: var(--muted); }
  .crumbs a:hover { color: var(--blue); }
  .crumbs .sep { opacity: .6; }

  /* page hero — light */
  .page-hero { background: #fff; border-bottom: 1px solid var(--line); }
  .page-hero__inner { display: grid; grid-template-columns: 1.1fr 1fr; gap: 48px; align-items: center; padding: 56px var(--gutter) 64px; max-width: calc(var(--container) + var(--gutter) * 2); margin: 0 auto; }
  .page-hero__inner.is-single { grid-template-columns: 1fr; }
  .page-hero__inner.is-single .page-hero__copy { max-width: 760px; }
  .page-hero h1 { font-size: 44px; line-height: 48px; font-weight: 700; letter-spacing: -1.2px; color: var(--ink); margin: 10px 0 14px; }
  .page-hero__sub { font-size: 18px; line-height: 28px; color: var(--text); max-width: 600px; }
  .page-hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
  .page-hero__trust { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 16px; margin-top: 20px; font-size: 14px; color: var(--text); }
  .page-hero__trust .stars { display: inline-flex; gap: 2px; }
  .page-hero__trust .stars svg { width: 18px; height: 18px; fill: var(--amber); }
  .page-hero__media { position: relative; }
  .page-hero__media img { width: 100%; height: 400px; object-fit: cover; border-radius: var(--r-lg); box-shadow: var(--shadow-float); }
  .page-hero__badge { position: absolute; left: 20px; bottom: 20px; background: rgba(255, 255, 255, .96); color: var(--ink); border-radius: var(--r-md); padding: 12px 16px; display: flex; align-items: center; gap: 10px; font-weight: 600; font-size: 14px; box-shadow: var(--shadow-card); }
  .page-hero__badge .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--green); }

  /* page hero — photo */
  .page-hero--photo { position: relative; min-height: 460px; background: var(--ink); color: #fff; display: flex; align-items: flex-end; overflow: hidden; border: 0; }
  .page-hero--photo .hero-photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
  .page-hero--photo .hero-tint { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(11, 18, 32, .82) 0%, rgba(11, 18, 32, .5) 45%, rgba(11, 18, 32, .15) 80%), linear-gradient(180deg, rgba(11, 18, 32, .3) 0%, rgba(11, 18, 32, 0) 40%, rgba(11, 18, 32, .6) 100%); }
  .page-hero--photo .page-hero__inner { position: relative; z-index: 1; grid-template-columns: 1fr; padding: 120px var(--gutter) 56px; }
  .page-hero--photo .crumbs, .page-hero--photo .crumbs a { color: rgba(255, 255, 255, .8); }
  .page-hero--photo .eyebrow { color: var(--sky); }
  .page-hero--photo h1 { font-size: 56px; line-height: 52px; font-weight: 900; letter-spacing: -1.12px; text-transform: uppercase; color: #fff; text-shadow: 0 2px 28px rgba(0, 0, 0, .35); max-width: 760px; }
  .page-hero--photo .page-hero__sub { color: #fff; }
  .page-hero--photo .page-hero__trust { color: #fff; }

  /* page hero — dark (no photo) */
  .page-hero--dark { background: var(--ink); color: #fff; border: 0; background-image: radial-gradient(circle at 12% 0%, rgba(59, 90, 134, .55) 0%, rgba(11, 18, 32, 0) 50%), radial-gradient(circle at 100% 100%, rgba(18, 48, 92, .7) 0%, rgba(11, 18, 32, 0) 45%); }
  .page-hero--dark .crumbs, .page-hero--dark .crumbs a { color: rgba(255, 255, 255, .7); }
  .page-hero--dark .eyebrow { color: var(--sky); }
  .page-hero--dark h1 { color: #fff; }
  .page-hero--dark .page-hero__sub { color: rgba(255, 255, 255, .88); }
  .page-hero--dark .page-hero__trust { color: rgba(255, 255, 255, .88); }
  .page-hero--dark a:not(.btn) { color: var(--sky); }

  /* promises / value rows */
  .promise-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .promise-row--4 { grid-template-columns: repeat(4, 1fr); }
  .promise { background: #fff; border-radius: var(--r-lg); padding: 24px; box-shadow: var(--shadow-card); display: flex; gap: 16px; align-items: flex-start; }
  .promise .ico { flex: none; width: 44px; height: 44px; border-radius: var(--r-md); background: var(--sky-weak); color: var(--blue); display: grid; place-items: center; }
  .promise .ico svg { width: 22px; height: 22px; }
  .promise b { display: block; color: var(--ink); font-weight: 600; margin-bottom: 4px; }
  .promise p { font-size: 14px; line-height: 20px; color: var(--text); }

  /* info cards + stats + steps */
  .info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
  .info-grid--3 { grid-template-columns: repeat(3, 1fr); }
  .info-grid--4 { grid-template-columns: repeat(4, 1fr); }
  .info-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 24px; box-shadow: var(--shadow-card); }
  .info-card h3 { display: flex; align-items: center; gap: 10px; font-size: 16px; line-height: 20px; font-weight: 600; color: var(--ink); margin-bottom: 8px; }
  .info-card h3 svg { width: 20px; height: 20px; color: var(--blue); flex: none; }
  .info-card p, .info-card li { font-size: 14px; line-height: 20px; color: var(--text); }
  .info-card p + p { margin-top: 8px; }
  .info-card--accent { background: var(--sky-weak); border-color: transparent; box-shadow: none; }
  .info-card--navy { background: var(--navy); border-color: transparent; color: #fff; box-shadow: none; }
  .info-card--navy h3, .info-card--navy p, .info-card--navy li { color: #fff; }
  .info-card--navy h3 svg { color: var(--sky); }
  .info-card--navy a { color: var(--sky); }
  .info-card--navy .btn-primary-inverted { color: var(--ink); }
  .info-card--navy .steps strong { color: #fff; }
  .info-card--navy .steps span { color: rgba(255, 255, 255, .82); }
  .info-card--navy .steps li::before { background: rgba(255, 255, 255, .14); color: #fff; }
  .contact-list { display: grid; gap: 10px; }
  .contact-list li { display: flex; align-items: center; gap: 10px; }
  .contact-list svg { width: 18px; height: 18px; color: var(--icon-muted); flex: none; }
  .contact-list a { font-weight: 500; }
  .stat-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
  .stat { background: #fff; border-radius: var(--r-lg); padding: 24px; box-shadow: var(--shadow-card); }
  .stat__num { font-size: 40px; line-height: 44px; font-weight: 700; letter-spacing: -1.5px; color: var(--ink); }
  .stat__num .u { font-size: 20px; letter-spacing: 0; color: var(--blue); margin-left: 2px; }
  .stat__label { display: block; margin-top: 4px; font-size: 14px; line-height: 20px; color: var(--text); }
  .step-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; counter-reset: st; }
  .step-row--3 { grid-template-columns: repeat(3, 1fr); }
  .step { position: relative; background: #fff; border-radius: var(--r-lg); padding: 24px; box-shadow: var(--shadow-card); }
  .step::before { counter-increment: st; content: counter(st); display: grid; place-items: center; width: 36px; height: 36px; border-radius: 50%; background: var(--blue); color: #fff; font-weight: 700; margin-bottom: 14px; }
  .step b { display: block; color: var(--ink); font-weight: 600; margin-bottom: 4px; }
  .step p { font-size: 14px; line-height: 20px; color: var(--text); }

  /* checklist */
  .checklist { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 16px; }
  .checklist--1 { grid-template-columns: 1fr; }
  .checklist li { display: flex; gap: 8px; align-items: flex-start; font-size: 14px; line-height: 20px; color: var(--ink); }
  .checklist svg { flex: none; width: 18px; height: 18px; color: var(--green); margin-top: 1px; }
  .checklist--lg li { font-size: 16px; line-height: 24px; }
  .checklist--lg svg { width: 20px; height: 20px; margin-top: 2px; }

  /* prose + story */
  .story-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 48px; align-items: center; }
  .story-media { position: relative; }
  .story-media img { width: 100%; height: 440px; object-fit: cover; border-radius: var(--r-lg); box-shadow: var(--shadow-float); }
  .prose h2 { margin: 8px 0 12px; }
  .prose p { color: var(--text); margin-bottom: 14px; }
  .prose p:last-child { margin-bottom: 0; }
  .prose strong { color: var(--ink); font-weight: 600; }
  .prose ul { display: grid; gap: 6px; margin-bottom: 14px; padding-left: 20px; list-style: disc; }
  .prose--lg p { font-size: 17px; line-height: 27px; }

  /* honesty box */
  .notice { display: grid; grid-template-columns: auto 1fr; gap: 16px; background: #fff; border: 1px solid var(--line); border-left: 4px solid var(--amber); border-radius: var(--r-lg); padding: 20px 24px; }
  .notice svg { width: 22px; height: 22px; color: var(--amber); margin-top: 2px; }
  .notice b { display: block; color: var(--ink); font-weight: 600; margin-bottom: 4px; }
  .notice p, .notice li { font-size: 14px; line-height: 20px; color: var(--text); }
  .notice ul { display: grid; gap: 4px; margin-top: 6px; }
  .notice li { display: flex; gap: 8px; }
  .notice li::before { content: "•"; color: var(--icon-muted); }
  .notice--navy { border-left-color: var(--blue); }
  .notice--navy svg { color: var(--blue); }

  /* awards */
  .award-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
  .award { display: flex; gap: 18px; align-items: center; background: #fff; border-radius: var(--r-lg); padding: 24px; box-shadow: var(--shadow-card); }
  .award__ico { flex: none; width: 56px; height: 56px; display: grid; place-items: center; }
  .award__ico svg { width: 52px; height: 52px; filter: drop-shadow(0 2px 2px rgba(120, 75, 0, .28)); }
  .award b { display: block; font-size: 18px; line-height: 24px; font-weight: 600; color: var(--ink); }
  .award span { display: block; font-size: 14px; line-height: 20px; color: var(--text); }

  /* faq */
  .faq-list { display: grid; gap: 12px; max-width: 860px; margin: 0 auto; }
  .faq { background: #fff; border-radius: var(--r-md); box-shadow: var(--shadow-card); padding: 0 20px; }
  .faq summary { list-style: none; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 18px 0; font-weight: 600; color: var(--ink); cursor: pointer; }
  .faq summary::-webkit-details-marker { display: none; }
  .faq summary svg { width: 20px; height: 20px; color: var(--icon-muted); flex: none; transition: transform .2s; }
  .faq[open] summary svg { transform: rotate(180deg); }
  .faq p { padding: 0 0 18px; font-size: 15px; line-height: 22px; color: var(--text); }

  /* cta band */
  .cta-band { margin: 0; border-radius: var(--r-lg); background-color: var(--navy); background-image: radial-gradient(circle at -3% 117%, var(--ink) 0px, rgba(0, 0, 0, 0) 50%), radial-gradient(circle at 75% 50%, var(--ink) 0px, rgba(0, 0, 0, 0) 40%), linear-gradient(90deg, #12305c, #0b1220); color: #fff; padding: 40px 48px; display: flex; align-items: center; justify-content: space-between; gap: 32px; }
  .cta-band h2 { color: #fff; margin-bottom: 6px; }
  .cta-band p { color: rgba(255, 255, 255, .85); }
  .cta-band__btns { display: flex; flex-wrap: wrap; gap: 12px; flex: none; }

  /* hours + map page */
  .split { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: start; }
  .map--tall { height: 360px; }
  .method-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .method { display: flex; gap: 14px; align-items: flex-start; background: #fff; border-radius: var(--r-lg); padding: 20px; box-shadow: var(--shadow-card); }
  .method__icon { flex: none; width: 44px; height: 44px; border-radius: var(--r-md); background: var(--sky-weak); color: var(--blue); display: grid; place-items: center; }
  .method__icon svg { width: 22px; height: 22px; }
  .method b { display: block; color: var(--ink); font-weight: 600; }
  .method .val { display: block; font-weight: 500; margin: 2px 0; color: var(--blue); }
  .method span.val { color: var(--ink); }
  .method small { font-size: 13px; line-height: 18px; color: var(--muted); }
  .area-list { display: flex; flex-wrap: wrap; gap: 8px; }
  .area-list li { padding: 8px 14px; border-radius: var(--r-btn); background: #fff; box-shadow: var(--shadow-card); font-size: 14px; font-weight: 500; color: var(--ink); }

  /* forms: layout, wizard, picks */
  .form-layout { display: grid; grid-template-columns: 1.4fr .8fr; gap: 24px; align-items: start; }
  .form-aside { display: grid; gap: 16px; position: sticky; top: 96px; }
  .form-legend { font-size: 20px; line-height: 26px; font-weight: 600; letter-spacing: -.2px; color: var(--ink); margin-bottom: 4px; }
  .form-sub { color: var(--text); margin-bottom: 20px; }
  .field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .field-row--3 { grid-template-columns: repeat(3, 1fr); }
  .wiz-bar { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin: 0 0 28px; padding: 0; }
  .wiz-dot { display: flex; flex-direction: column; align-items: center; gap: 8px; position: relative; }
  .wiz-dot::before { content: ""; position: absolute; top: 16px; left: -50%; right: 50%; height: 2px; background: var(--line); z-index: 0; }
  .wiz-dot:first-child::before { display: none; }
  .wiz-dot.is-done::before, .wiz-dot.is-current::before { background: var(--blue); }
  .wiz-dot button { position: relative; z-index: 1; width: 34px; height: 34px; border-radius: 50%; border: 2px solid var(--line-strong); background: #fff; color: var(--muted); font-weight: 700; font-size: 14px; display: grid; place-items: center; padding: 0; }
  .wiz-dot.is-current button { border-color: var(--blue); background: var(--blue); color: #fff; }
  .wiz-dot.is-done button { border-color: var(--blue); color: var(--blue); }
  .wiz-dot__label { font-size: 13px; font-weight: 600; color: var(--muted); }
  .wiz-dot.is-current .wiz-dot__label { color: var(--ink); }
  .wiz-step[hidden] { display: none; }
  /* vehicle picker cards on the visit form */
  .veh-pick-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .veh-pick { position: relative; display: grid; gap: 8px; padding: 10px 10px 12px; border: 1.5px solid var(--line); border-radius: var(--r-md); background: #fff; text-align: left; font-size: 14px; color: var(--ink); transition: border-color .15s, box-shadow .15s, background-color .15s; }
  .veh-pick img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--r-sm); background: var(--bg); }
  .veh-pick b { display: block; font-weight: 600; line-height: 18px; }
  .veh-pick small { display: block; color: var(--text); font-size: 13px; }
  .veh-pick:hover { border-color: var(--line-strong); box-shadow: var(--shadow-card); }
  .veh-pick.is-on { border-color: var(--blue); background: var(--sky-weak); box-shadow: inset 0 0 0 1px var(--blue); }
  .veh-pick.is-on::after { content: ""; position: absolute; top: 8px; right: 8px; width: 20px; height: 20px; border-radius: 50%; background: var(--blue) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12.5l4.5 4.5L19 7'/%3E%3C/svg%3E") center / 12px no-repeat; }
  .svc-other { display: inline-flex; align-items: center; gap: 10px; margin-top: 12px; padding: 10px 14px; border: 1.5px solid var(--line); border-radius: var(--r-btn); background: #fff; font-weight: 600; font-size: 14px; color: var(--ink); }
  .svc-other.is-on { border-color: var(--blue); background: var(--sky-weak); }
  .svc-other .box { width: 18px; height: 18px; border-radius: 4px; border: 2px solid var(--line-strong); }
  .svc-other.is-on .box { border-color: var(--blue); background: var(--blue) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12.5l4.5 4.5L19 7'/%3E%3C/svg%3E") center / 13px no-repeat; }
  .form-actions.wiz-nav { display: flex; flex-direction: row; flex-wrap: wrap; align-items: center; gap: 12px; margin-top: 24px; }
  .wiz-nav .form-message { flex-basis: 100%; }
  .wiz-nav .btn { align-self: auto; min-width: 0; }
  .wiz-nav .form-note { flex-basis: 100%; }
  .wiz-summary { background: var(--bg); border-radius: var(--r-sm); padding: 14px 16px; font-size: 14px; line-height: 22px; color: var(--text); margin-top: 8px; }
  .wiz-summary b { color: var(--ink); font-weight: 600; }
  .req { color: var(--red); }
  .radio-row { display: flex; flex-wrap: wrap; gap: 8px; }
  .radio-row label { display: inline-flex; align-items: center; gap: 8px; padding: 10px 14px; border: 1.5px solid var(--line); border-radius: var(--r-btn); background: #fff; font-size: 14px; font-weight: 500; color: var(--ink); cursor: pointer; }
  .radio-row label:has(input:checked) { border-color: var(--blue); background: var(--sky-weak); color: var(--blue); }
  .radio-row input { position: absolute; opacity: 0; width: 1px; height: 1px; }
  .radio-row label:has(input:focus-visible) { outline: 3px solid rgba(27, 63, 117, .45); outline-offset: 2px; }

  /* make / model comboboxes */
  .combo { position: relative; }
  .combo input { padding-right: 40px; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238a94a6' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; background-size: 18px; }
  .combo-menu { position: absolute; left: 0; right: 0; top: calc(100% + 6px); z-index: 20; background: #fff; border-radius: var(--r-md); box-shadow: var(--shadow-float); padding: 6px; max-height: 264px; overflow-y: auto; overscroll-behavior: contain; }
  .combo-menu[hidden] { display: none; }
  .combo-opt { display: block; width: 100%; text-align: left; border: 0; background: transparent; border-radius: var(--r-sm); padding: 10px 12px; font-size: 15px; line-height: 20px; color: var(--ink); }
  .combo-opt:hover, .combo-opt.is-active { background: var(--bg); }
  .combo-opt.is-selected { color: var(--blue); font-weight: 600; }
  .combo-opt b { font-weight: 700; color: var(--blue); }

  /* visit-time picker: month grid limited to open days, 30-minute times within business hours */
  .picker { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr); gap: 22px; background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 20px; }
  .picker__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
  .picker__month { font-size: 15px; font-weight: 600; color: var(--ink); }
  .picker__nav { width: 36px; height: 36px; border-radius: 50%; border: 1.5px solid var(--line); background: #fff; color: var(--ink); display: grid; place-items: center; padding: 0; transition: border-color .15s, color .15s; }
  .picker__nav svg { width: 18px; height: 18px; }
  .picker__nav:hover:not(:disabled) { border-color: var(--blue); color: var(--blue); }
  .picker__nav:disabled { opacity: .35; cursor: default; }
  .picker__grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
  .picker__wd { text-align: center; font-size: 12px; font-weight: 600; color: var(--muted); padding: 2px 0 6px; }
  .picker__day { aspect-ratio: 1; border: 0; border-radius: 50%; background: transparent; font-size: 14px; font-weight: 500; color: var(--ink); display: grid; place-items: center; padding: 0; transition: background-color .15s, color .15s; }
  .picker__day:hover:not(:disabled) { background: var(--sky-weak); color: var(--blue); }
  .picker__day:disabled { color: var(--line-strong); cursor: default; }
  .picker__day.is-today { box-shadow: inset 0 0 0 1.5px var(--line-strong); }
  .picker__day.is-selected, .picker__day.is-selected:hover { background: var(--blue); color: #fff; box-shadow: none; }
  .picker__hint { margin-top: 10px; font-size: 12px; line-height: 16px; color: var(--muted); }
  .picker__times { display: flex; flex-direction: column; gap: 12px; border-left: 1px solid var(--line); padding-left: 22px; min-height: 100%; }
  .picker__times-title { font-size: 14px; line-height: 20px; font-weight: 600; color: var(--ink); }
  .picker__slots { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .picker__slot { height: 38px; border-radius: var(--r-btn); border: 1.5px solid var(--line); background: #fff; font-size: 13px; font-weight: 600; color: var(--ink); padding: 0; transition: border-color .15s, color .15s, background-color .15s; }
  .picker__slot:hover { border-color: var(--blue); color: var(--blue); }
  .picker__slot.is-selected, .picker__slot.is-selected:hover { background: var(--blue); border-color: var(--blue); color: #fff; }
  /* The chosen time: a confirmation card pinned to the bottom of the times column, with the no-preference option under it. */
  .picker__choice { margin-top: auto; display: flex; align-items: center; gap: 12px; padding: 12px 14px; border-radius: var(--r-md); background: var(--sky-weak); border: 1px solid #cddcf3; font-size: 14px; line-height: 20px; color: var(--text); }
  .picker__choice-icon { flex: none; width: 28px; height: 28px; border-radius: 50%; background: var(--blue); color: #fff; font-size: 14px; font-weight: 700; display: grid; place-items: center; }
  .picker__choice-text { display: flex; flex-direction: column; gap: 1px; min-width: 0; flex: 1; }
  .picker__choice-text small { font-size: 11px; line-height: 14px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--blue); }
  .picker__choice b { color: var(--ink); font-weight: 600; font-size: 14px; line-height: 19px; }
  .picker__clear { flex: none; height: 30px; padding: 0 12px; border: 1.5px solid var(--line-strong); border-radius: var(--r-btn); background: #fff; color: var(--ink); font-size: 13px; font-weight: 600; line-height: 1; transition: border-color .15s, color .15s; }
  .picker__clear:hover { border-color: var(--blue); color: var(--blue); }
  .picker__choice[hidden] + .picker__skip { margin-top: auto; }
  .picker__skip { align-self: stretch; text-align: center; height: 40px; border: 1.5px dashed var(--line-strong); border-radius: var(--r-btn); background: transparent; padding: 0 14px; font-size: 13px; font-weight: 600; color: var(--blue); transition: border-color .15s, background-color .15s; }
  .picker__skip:hover { border-color: var(--blue); background: var(--sky-weak); }
  .picker__empty { font-size: 13px; line-height: 18px; color: var(--muted); }

  /* ==========================================================================
     Inventory: filter bar, vehicle cards, empty state, detail page, photo viewer
     ========================================================================== */
  .inv-layout { display: grid; gap: 24px; }
  .filters { display: flex; flex-wrap: wrap; align-items: flex-end; gap: 12px 16px; background: #fff; border-radius: var(--r-lg); padding: 16px 20px; box-shadow: var(--shadow-card); position: relative; z-index: 5; }
  .filters .field { min-width: 160px; flex: 1 1 160px; }
  .filters .field input, .filters .field select { height: 44px; font-size: 15px; }
  .filters .field label { font-size: 12px; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); font-weight: 600; }
  .filters__count { flex: 1 1 100%; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 8px 16px; font-size: 14px; color: var(--text); }
  .filters__count b { color: var(--ink); font-weight: 600; }
  .filters__reset { border: 0; background: transparent; padding: 0; color: var(--blue); font-weight: 500; font-size: 14px; text-decoration: underline; text-underline-offset: 3px; }
  .body-chips { display: flex; flex-wrap: wrap; gap: 8px; }
  .body-chips button { display: inline-flex; align-items: center; gap: 8px; height: 40px; padding: 0 14px; border-radius: var(--r-btn); border: 1.5px solid var(--line); background: #fff; font-size: 14px; font-weight: 500; color: var(--ink); transition: border-color .15s, background-color .15s, color .15s; }
  .body-chips button svg { width: 34px; height: 15px; }
  .body-chips button:hover { border-color: var(--line-strong); }
  .body-chips button[aria-pressed="true"] { border-color: var(--blue); background: var(--sky-weak); color: var(--blue); }

  .veh-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .veh-card { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-card); color: var(--ink); transition: box-shadow .2s, transform .35s var(--ease); }
  .veh-card:hover { box-shadow: var(--shadow-float); transform: translateY(-3px); color: var(--ink); }
  .veh-card__media { position: relative; aspect-ratio: 4 / 3; background: var(--bg); overflow: hidden; }
  .veh-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
  .veh-card:hover .veh-card__media img { transform: scale(1.03); }
  .veh-card__media .nophoto { position: absolute; inset: 0; display: grid; place-items: center; color: var(--icon-muted); }
  .veh-card__media .nophoto svg { width: 120px; height: 80px; }
  .veh-card__badges { position: absolute; left: 12px; top: 12px; display: flex; flex-wrap: wrap; gap: 6px; }
  .veh-card__badges .chip { background: rgba(11, 18, 32, .82); color: #fff; backdrop-filter: blur(6px); }
  .veh-card__badges .chip--sold { background: var(--red); }
  .veh-card__badges .chip--pending { background: var(--amber); color: var(--ink); }
  .veh-card__body { display: flex; flex-direction: column; gap: 6px; padding: 16px 18px 18px; }
  .veh-card__title { font-size: 17px; line-height: 22px; font-weight: 600; color: var(--ink); letter-spacing: -.2px; }
  .veh-card__title small { display: block; font-size: 13px; line-height: 18px; font-weight: 400; color: var(--text); }
  .veh-card__specs { display: flex; flex-wrap: wrap; gap: 4px 12px; font-size: 13px; line-height: 18px; color: var(--text); }
  .veh-card__specs li { display: inline-flex; align-items: center; gap: 4px; }
  .veh-card__price { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; margin-top: 8px; padding-top: 12px; border-top: 1px solid var(--line); }
  .veh-card__price b { font-size: 22px; line-height: 26px; font-weight: 700; letter-spacing: -.5px; color: var(--ink); }
  .veh-card__price small { font-size: 12px; line-height: 16px; color: var(--green); font-weight: 600; text-align: right; }
  .veh-card--sold { opacity: .7; }

  .empty { display: grid; grid-template-columns: 1.1fr 1fr; gap: 32px; align-items: center; background: #fff; border-radius: var(--r-lg); padding: 40px; box-shadow: var(--shadow-card); }
  .empty--stack { grid-template-columns: 1fr; text-align: center; justify-items: center; padding: 48px 40px; }
  .empty h2 { margin-bottom: 8px; }
  .empty p { color: var(--text); max-width: 560px; }
  .empty .actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 20px; }
  .empty__art { display: grid; place-items: center; color: var(--line-strong); }
  .empty__art svg { width: 260px; height: 160px; }

  /* vehicle detail */
  .veh-hero { background: #fff; border-bottom: 1px solid var(--line); }
  .veh-hero__inner { display: grid; grid-template-columns: 1.35fr 1fr; gap: 32px; align-items: start; padding: 32px var(--gutter) 48px; max-width: calc(var(--container) + var(--gutter) * 2); margin: 0 auto; }
  .veh-gallery { display: grid; gap: 10px; }
  .veh-gallery__main { position: relative; aspect-ratio: 4 / 3; border-radius: var(--r-lg); overflow: hidden; background: var(--bg); box-shadow: var(--shadow-card); display: block; }
  .veh-gallery__main img { width: 100%; height: 100%; object-fit: cover; }
  .veh-gallery__main .nophoto { position: absolute; inset: 0; display: grid; place-items: center; gap: 8px; color: var(--icon-muted); text-align: center; }
  .veh-gallery__main .nophoto svg { width: 160px; height: 100px; }
  .veh-gallery__main .count { position: absolute; right: 12px; bottom: 12px; padding: 6px 10px; border-radius: var(--r-btn); background: rgba(11, 18, 32, .78); color: #fff; font-size: 12px; font-weight: 600; }
  .veh-thumbs { display: grid; grid-template-columns: repeat(6, 1fr); gap: 8px; }
  .veh-thumbs button { aspect-ratio: 4 / 3; border: 2px solid transparent; border-radius: var(--r-sm); overflow: hidden; padding: 0; background: var(--bg); transition: border-color .15s; }
  .veh-thumbs button img { width: 100%; height: 100%; object-fit: cover; }
  .veh-thumbs button.is-active { border-color: var(--blue); }
  .veh-summary { display: grid; gap: 16px; position: sticky; top: 96px; }
  .veh-summary h1 { font-size: 32px; line-height: 36px; font-weight: 700; letter-spacing: -.8px; color: var(--ink); }
  .veh-summary h1 small { display: block; font-size: 16px; line-height: 22px; font-weight: 500; color: var(--text); letter-spacing: 0; margin-top: 4px; }
  .veh-summary .badges { display: flex; flex-wrap: wrap; gap: 6px; }
  .price-box { background: var(--bg); border-radius: var(--r-md); padding: 18px 20px; display: grid; gap: 10px; }
  .price-box__main { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; }
  .price-box__main b { font-size: 36px; line-height: 40px; font-weight: 800; letter-spacing: -1px; color: var(--ink); }
  .price-box__main span { font-size: 13px; color: var(--text); }
  .price-box__lines { display: grid; gap: 6px; font-size: 14px; line-height: 20px; color: var(--text); }
  .price-box__lines li { display: flex; justify-content: space-between; gap: 12px; }
  .price-box__lines b { color: var(--ink); font-weight: 600; }
  .price-box__lines .zero { color: var(--green); }
  .veh-actions { display: grid; gap: 10px; }
  .veh-actions .btn { width: 100%; }
  .veh-actions__row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
  .spec-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
  .spec { background: #fff; border-radius: var(--r-md); padding: 16px 18px; box-shadow: var(--shadow-card); }
  .spec small { display: block; font-size: 12px; line-height: 16px; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); font-weight: 600; margin-bottom: 4px; }
  .spec b { display: block; font-size: 16px; line-height: 22px; font-weight: 600; color: var(--ink); word-break: break-word; }
  .spec--wide { grid-column: span 2; }
  .vin { font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; letter-spacing: .04em; }
  .copy-btn { display: inline-flex; align-items: center; gap: 6px; border: 0; background: transparent; padding: 0; color: var(--blue); font-size: 13px; font-weight: 500; }
  .copy-btn svg { width: 14px; height: 14px; }

  /* payment estimator */
  .estimator { background: #fff; border-radius: var(--r-lg); box-shadow: var(--shadow-card); padding: 24px; display: grid; gap: 18px; }
  .estimator--navy { background: var(--navy); color: #fff; box-shadow: none; background-image: radial-gradient(circle at 100% 0%, rgba(59, 90, 134, .8) 0%, rgba(18, 48, 92, 0) 50%); }
  .estimator h3 { font-size: 18px; line-height: 24px; font-weight: 600; color: var(--ink); }
  .estimator--navy h3, .estimator--navy label, .estimator--navy .est__out small { color: #fff; }
  .estimator--navy .est__out b { color: #fff; }
  .estimator--navy .field-hint, .estimator--navy .est__note { color: rgba(255, 255, 255, .78); }
  .est__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .est__row--3 { grid-template-columns: repeat(3, 1fr); }
  .est__field { display: grid; gap: 6px; }
  .est__field label { font-size: 13px; line-height: 18px; font-weight: 600; color: var(--ink); display: flex; justify-content: space-between; gap: 8px; }
  .est__field label output { font-weight: 600; color: var(--blue); }
  .estimator--navy .est__field label output { color: var(--sky); }
  .est__money { position: relative; }
  .est__money::before { content: "$"; position: absolute; left: 14px; top: 50%; transform: translateY(-50%); color: var(--muted); font-weight: 500; }
  .est__money input { width: 100%; height: 48px; border: 1px solid var(--icon-muted); border-radius: var(--r-sm); padding: 0 14px 0 30px; font-size: 16px; font-weight: 600; color: var(--ink); background: #fff; }
  .est__money input:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(27, 63, 117, .3); }
  .est__field select { height: 48px; border: 1px solid var(--icon-muted); border-radius: var(--r-sm); background: #fff; padding: 0 40px 0 14px; font-size: 16px; font-weight: 600; color: var(--ink); appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230b1220' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; background-size: 18px; }
  .est__field input[type="range"] { width: 100%; accent-color: var(--blue); }
  .estimator--navy .est__field input[type="range"] { accent-color: #fff; }
  .est__out { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .est__out > div { background: var(--bg); border-radius: var(--r-md); padding: 14px 16px; }
  .estimator--navy .est__out > div { background: rgba(255, 255, 255, .1); }
  .est__out small { display: block; font-size: 12px; line-height: 16px; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); font-weight: 600; margin-bottom: 4px; }
  .est__out b { display: block; font-size: 26px; line-height: 30px; font-weight: 800; letter-spacing: -.6px; color: var(--ink); }
  .est__out .zero { color: var(--green); }
  .estimator--navy .est__out .zero { color: #6ee7b7; }
  .est__out b .per { font-size: 13px; font-weight: 500; letter-spacing: 0; color: var(--text); }
  .estimator--navy .est__out b .per { color: rgba(255, 255, 255, .7); }
  .est__note { font-size: 13px; line-height: 18px; color: var(--muted); }

  /* photo viewer: native <dialog> */
  .lb { border: 0; padding: 0; margin: 0; width: 100vw; height: 100vh; height: 100dvh; max-width: none; max-height: none; background: transparent; color: #fff; display: none; }
  .lb[open] { display: grid; place-items: center; animation: lb-in .2s var(--ease); }
  .lb::backdrop { background: rgba(11, 18, 32, .94); }
  .lb[open]::backdrop { animation: lb-in .25s ease; }
  @keyframes lb-in { from { opacity: 0; } to { opacity: 1; } }
  .lb__fig { margin: 0; display: grid; gap: 12px; justify-items: center; max-width: min(92vw, 1400px); touch-action: pan-y; }
  .lb__img { max-width: 100%; max-height: 78vh; max-height: 78dvh; width: auto; height: auto; border-radius: var(--r-md); box-shadow: 0 24px 80px rgba(0, 0, 0, .5); user-select: none; -webkit-user-drag: none; }
  .lb figcaption { text-align: center; display: grid; gap: 2px; padding: 0 16px; }
  .lb figcaption b { font-weight: 600; }
  .lb figcaption small { font-size: 12px; color: rgba(255, 255, 255, .55); margin-top: 4px; }
  .lb__close, .lb__nav { position: fixed; z-index: 1; width: 48px; height: 48px; border-radius: 50%; border: 0; padding: 0; background: rgba(255, 255, 255, .12); color: #fff; display: grid; place-items: center; transition: background-color .15s; }
  .lb__close:hover, .lb__nav:hover { background: rgba(255, 255, 255, .26); }
  .lb__close:focus-visible, .lb__nav:focus-visible { outline: 3px solid var(--sky); outline-offset: 2px; }
  .lb__close { top: 20px; right: 20px; }
  .lb__nav { top: 50%; transform: translateY(-50%); }
  .lb__nav--prev { left: 20px; }
  .lb__nav--next { right: 20px; }
  .lb__close svg, .lb__nav svg { width: 22px; height: 22px; }
  .lb-open { overflow: hidden; }
  @media (prefers-reduced-motion: reduce) { .lb[open], .lb[open]::backdrop { animation: none; } .veh-card, .veh-card img { transition: none; } }

  /* Spanish block */
  .es-block { display: grid; grid-template-columns: 1.1fr 1fr; gap: 40px; align-items: center; }
  .es-block .prose h2 { color: #fff; }
  .es-block .prose p { color: rgba(255, 255, 255, .88); }
  .es-block .checklist li { color: #fff; }
  .es-block .checklist svg { color: #6ee7b7; }
  .es-card { background: rgba(255, 255, 255, .06); border: 1px solid rgba(255, 255, 255, .12); border-radius: var(--r-lg); padding: 28px; display: grid; gap: 16px; }
  .es-card b { font-size: 20px; line-height: 26px; font-weight: 600; color: #fff; }
  .es-card p { color: rgba(255, 255, 255, .85); font-size: 15px; line-height: 22px; }
  .es-card .btn { width: fit-content; }

  /* ---------- responsive ---------- */
  @media (max-width: 1180px) {
    .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; }
    .banner-inner { grid-template-columns: 1fr 1fr; }
    .banner-sign { width: 250px; height: 250px; }
  }
  @media (max-width: 1100px) {
    .tile-row { grid-template-columns: repeat(3, 1fr); }
    .veh-grid { grid-template-columns: 1fr 1fr; }
    .spec-grid { grid-template-columns: repeat(3, 1fr); }
  }
  @media (max-width: 1024px) {
    .browse-panel { grid-template-columns: 1fr 1fr; }
    .statement h2 { font-size: 64px; letter-spacing: -2.4px; }
    .header-inner { padding: 0 24px; }
    .header-actions { margin-left: auto; margin-right: 0; }
    .nav { display: none; }
    .header-phone { display: none; }
    .menu-pill { display: inline-flex; }
    .schedule-grid { grid-template-columns: 1fr; }
    .card--map { min-height: 320px; }
    .site-footer { padding: 56px var(--gutter) 32px; margin: 72px 0 0; border-radius: 24px 24px 0 0; }
    .page-hero__inner { grid-template-columns: 1fr; gap: 28px; padding: 40px var(--gutter) 48px; }
    .page-hero__media img { height: 300px; }
    .promise-row, .promise-row--4, .info-grid--3, .info-grid--4, .step-row, .method-grid { grid-template-columns: 1fr 1fr; }
    .stat-row { grid-template-columns: 1fr 1fr; }
    .form-layout { grid-template-columns: 1fr; }
    .form-aside { position: static; }
    .story-grid { grid-template-columns: 1fr; gap: 28px; }
    .story-pillars { grid-template-columns: 1fr; gap: 16px; }
    .story-banner img { height: 300px; }
    .story-banner .moment-badge { position: static; margin-top: 12px; max-width: none; box-shadow: var(--shadow-card); }
    .story-media img { height: 320px; }
    .veh-hero__inner { grid-template-columns: 1fr; }
    .veh-summary { position: static; }
    .es-block { grid-template-columns: 1fr; }
  }
  @media (max-width: 860px) {
    .hero { min-height: 500px; align-items: stretch; }
    .hero-inner { display: flex; flex-direction: column; justify-content: flex-end; padding: 48px var(--gutter) 40px; gap: 20px; }
    .hero-cards { margin-top: auto; }
    .hero-card--call { display: none; }
    .hero h1 { font-size: 40px; line-height: 40px; letter-spacing: -0.8px; }
    .hero-sub { font-size: 16px; line-height: 24px; }
    .hero-photo { object-position: 0% 50%; }
    .slide .media img.media-desk { object-position: 22% 50%; }
    .hero-tint { background: linear-gradient(180deg, rgba(11, 18, 32, 0.62) 0%, rgba(11, 18, 32, 0.35) 34%, rgba(11, 18, 32, 0.15) 60%, rgba(11, 18, 32, 0.78) 100%); }
    .hero-cards { grid-template-columns: 1fr; gap: 0; border-radius: var(--r-md); overflow: hidden; background: rgba(11, 18, 32, 0.72); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12); }
    .hero-card { grid-template-columns: 1fr auto; gap: 14px; align-items: center; padding: 14px 14px 14px 18px; min-height: 0; border-radius: 0; background: transparent; backdrop-filter: none; -webkit-backdrop-filter: none; box-shadow: none; }
    .hero-card + .hero-card { border-top: 1px solid rgba(255, 255, 255, 0.12); }
    .hero-card h2 { font-size: 17px; line-height: 22px; letter-spacing: -.1px; }
    .hero-card p { font-size: 13px; line-height: 18px; margin-top: 2px; }
    .hero-card .btn { justify-self: end; height: 40px; padding: 0 16px; }
    .hero-card .hc-long { display: none; }
    .hero-card .hc-short { display: inline-flex; }
    .band { padding: 48px 0; }
    .carousel-nav { display: none; }
    .banner { margin-top: 40px; }
    .banner-inner { grid-template-columns: 1fr; padding: 28px 20px 24px; gap: 22px; }
    .banner-copy h2 { font-size: 24px; line-height: 30px; letter-spacing: -0.3px; }
    .banner-copy p { font-size: 15px; line-height: 23px; }
    /* Phones: no collage. The deal card sits flat, full width, inside the banner; the keys photo is dropped. */
    .banner-art { min-height: 0; align-self: auto; }
    .banner-sign { display: none; }
    .deal { position: static; transform: none; width: 100%; max-width: 440px; margin: 0 auto; box-shadow: 0 18px 40px rgba(0, 0, 0, .35); }
    .deal__lines li { font-size: 14px; padding: 11px 0; }
    .deal__lines b { font-size: 13px; padding: 3px 10px; }
    .deal__head, .deal__lines, .deal__foot { padding-left: 18px; padding-right: 18px; }
    .marketing { --slide-w: calc(100vw - 48px); --slide-gap: 16px; padding: 48px 0; }
    .marketing .slide:not(.is-active) { opacity: .5; }
    .marketing .track { padding-left: var(--gutter); padding-right: var(--gutter); padding-bottom: 8px; }
    .slide { height: 480px; }
    .marketing-arrows { display: none; }
    .schedule { padding-top: 56px; }
    .card { padding: 24px; }
    .form-grid { grid-template-columns: 1fr; }
    .statement { padding: 64px 0 40px; }
    .statement__inner { grid-template-columns: 1fr; gap: 24px; }
    .statement h2 { font-size: 48px; letter-spacing: -1.8px; }
    .browse-panel { grid-template-columns: 1fr 1fr; gap: 8px; }
    .browse-item { grid-template-columns: 1fr auto; padding: 12px 12px 12px 14px; border-radius: 10px; }
    .browse-item b { font-size: 14px; line-height: 18px; }
    .browse-item .t-full { display: none; }
    .browse-item .t-short { display: block; }
    .browse-item small { display: none; }
    .browse-item svg { grid-row: 1; width: 16px; height: 16px; }
    .browse-panel--qa { grid-template-columns: 1fr; }
    .browse-panel--qa .browse-item .t-full { display: block; }
    .browse-panel--qa .browse-item .t-short { display: none; }
    .browse-panel--qa .browse-item small { display: block; }
    .browse-panel--qa .browse-item svg { grid-row: 1 / span 2; }
    .seg { width: 100%; margin-bottom: 24px; }
    .seg button { flex: 1; padding: 10px 8px; font-size: 14px; }
    .footer-grid { grid-template-columns: 1fr; gap: 0; }
    .footer-brand { padding-bottom: 24px; border-bottom: 1px solid rgba(255, 255, 255, .12); margin-bottom: 4px; align-items: center; text-align: center; }
    .footer-brand p { max-width: none; }
    .footer-col { display: contents; }
    .fgroup { border-bottom: 1px solid rgba(255, 255, 255, .12); }
    .footer-col:last-child .fgroup:last-child { border-bottom: 0; }
    .fgroup + .fgroup { margin-top: 0; }
    .fgroup__head { pointer-events: auto; cursor: pointer; padding: 18px 0; min-height: 56px; }
    .fgroup__head h3 { margin: 0; }
    .fgroup__head > svg { display: block; }
    .fgroup.is-open .fgroup__head > svg { transform: rotate(180deg); }
    .fgroup__body { display: grid; grid-template-rows: 0fr; overflow: hidden; transition: grid-template-rows .4s cubic-bezier(.2, .8, .2, 1); }
    .fgroup__body > ul { min-height: 0; padding-bottom: 0; transition: padding .4s cubic-bezier(.2, .8, .2, 1); }
    .fgroup.is-open .fgroup__body { grid-template-rows: 1fr; }
    .fgroup.is-open .fgroup__body > ul { padding-bottom: 20px; }
    .footer-col ul { gap: 14px; }
    .footer-col a { font-size: 15px; }
    .footer-bottom { margin-top: 32px; }
    .footer-legal { grid-template-columns: 1fr; grid-template-areas: "social" "copy" "lic"; text-align: center; justify-items: center; }
    .footer-legal .footer-social { justify-self: center; margin-bottom: 8px; justify-content: center; }
    .footer-social a { min-height: 44px; }
    .page-hero h1 { font-size: 34px; line-height: 38px; letter-spacing: -.8px; }
    .page-hero--photo { min-height: 380px; }
    .page-hero--photo .page-hero__inner { padding: 96px var(--gutter) 40px; }
    .page-hero--photo h1 { font-size: 40px; line-height: 40px; }
    .page-hero__sub { font-size: 16px; line-height: 24px; }
    .section--pad { padding: 48px 0; scroll-margin-top: 118px; }
    .promise-row, .promise-row--4, .info-grid, .info-grid--3, .info-grid--4, .step-row, .method-grid, .split, .award-row { grid-template-columns: 1fr; }
    .checklist { grid-template-columns: 1fr; }
    .cta-band { flex-direction: column; align-items: flex-start; padding: 28px 24px; }
    .field-row, .field-row--3 { grid-template-columns: 1fr; }
    .veh-pick-grid { grid-template-columns: 1fr 1fr; }
    .wiz-dot__label { font-size: 12px; }
    .picker { grid-template-columns: 1fr; gap: 16px; padding: 14px; }
    .picker__times { border-left: 0; padding-left: 0; border-top: 1px solid var(--line); padding-top: 14px; }
    .map--tall { height: 260px; }
    .veh-grid { grid-template-columns: 1fr; }
    .filters { padding: 14px 16px; }
    .filters .field { min-width: calc(50% - 8px); flex-basis: calc(50% - 8px); }
    .empty { grid-template-columns: 1fr; padding: 28px 24px; }
    .empty__art svg { width: 200px; height: 120px; }
    .spec-grid { grid-template-columns: 1fr 1fr; }
    .veh-thumbs { grid-template-columns: repeat(5, 1fr); }
    .veh-summary h1 { font-size: 26px; line-height: 30px; }
    .est__row, .est__row--3 { grid-template-columns: 1fr; }
    .est__out { grid-template-columns: 1fr; }
    .lb__close { top: 12px; right: 12px; width: 44px; height: 44px; }
    .lb__nav { top: auto; bottom: 16px; transform: none; width: 44px; height: 44px; }
    .lb__nav--prev { left: 16px; }
    .lb__nav--next { right: 16px; }
    .lb__img { max-height: 70vh; max-height: 70dvh; }
    .fab { bottom: 16px; }
  }
  @media (max-width: 480px) {
    .site-header { min-height: 68px; }
    .header-inner { height: 68px; padding: 0 var(--gutter); }
    .logo { --logo-h: 34px; }
    .hero-inner { padding-top: 40px; }
    .hero h1 { font-size: 34px; line-height: 34px; }
    .explore-card { width: 280px; }
    .tile-row { grid-template-columns: repeat(2, 1fr); gap: 4px; }
    .tile { padding: 10px 6px 6px; }
    .tile .frame { max-width: 170px; }
    .tile p { font-size: 14px; }
    .site-footer { padding: 48px var(--gutter) 24px; margin: 56px 0 0; border-radius: 20px 20px 0 0; }
    .stat-row { grid-template-columns: 1fr; }
    .header-cta { height: 36px; padding: 0 14px; font-size: 14px; }
    .header-cta__long { display: none; }
    .header-cta__short { display: inline; }
    .filters .field { min-width: 100%; flex-basis: 100%; }
    .veh-actions__row { grid-template-columns: 1fr; }
    .spec--wide { grid-column: span 2; }
  }
  @media (max-width: 380px) {
    .header-actions { gap: 6px; }
    .header-cta { padding: 0 11px; font-size: 13px; }
    .hero-card h2 { font-size: 16px; line-height: 20px; }
    .hero-card { gap: 10px; padding: 14px 12px 14px 16px; }
  }

  /* ==========================================================================
     Gallery mosaic + wizard pick cards (TC Garage structure)
     ========================================================================== */
  .gallery { display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-rows: 250px; gap: 16px; }
  .g-tile { position: relative; display: block; grid-column: span 4; border-radius: var(--r-lg); overflow: hidden; background: var(--line); box-shadow: var(--shadow-card); color: #fff; isolation: isolate; transition: box-shadow .25s var(--ease), transform .35s var(--ease); }
  .g-tile--lead { grid-column: span 8; grid-row: span 2; }
  .g-tile--tall { grid-row: span 2; }
  .g-tile--wide { grid-column: span 8; }
  .g-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
  .g-tile:hover { transform: translateY(-2px); box-shadow: var(--shadow-float); color: #fff; }
  .g-tile:hover img { transform: scale(1.03); }
  .g-tile:focus-visible { outline: 3px solid var(--blue); outline-offset: 3px; }
  .g-cap { position: absolute; left: 0; right: 0; bottom: 0; padding: 56px 18px 16px; display: grid; gap: 2px; background: linear-gradient(180deg, rgba(11, 18, 32, 0) 0%, rgba(11, 18, 32, .55) 55%, rgba(11, 18, 32, .8) 100%); }
  .g-cap b { font-size: 16px; line-height: 20px; font-weight: 600; }
  .g-cap small { font-size: 13px; line-height: 18px; color: rgba(255, 255, 255, .86); }
  .g-tile--lead .g-cap { padding: 72px 24px 20px; }
  .g-tile--lead .g-cap b { font-size: 22px; line-height: 26px; letter-spacing: -.2px; }
  .g-tile--lead .g-cap small { font-size: 14px; line-height: 20px; }
  .g-card { position: relative; grid-column: span 4; overflow: hidden; border-radius: var(--r-lg); padding: 24px; color: #fff; box-shadow: var(--shadow-card); background-color: var(--navy); background-image: radial-gradient(circle at 85% 115%, #3b5a86 0, rgba(0, 0, 0, 0) 55%), linear-gradient(135deg, #12305c, #0b1220); display: flex; }
  .g-card__copy { position: relative; z-index: 1; display: grid; gap: 12px; align-content: end; }
  .g-card__copy b { font-size: 20px; line-height: 24px; font-weight: 600; letter-spacing: -.2px; }
  .g-card__copy p { font-size: 14px; line-height: 20px; color: rgba(255, 255, 255, .85); }
  @media (prefers-reduced-motion: reduce) { .g-tile, .g-tile img { transition: none; } }
  @media (max-width: 1024px) {
    .gallery { grid-template-columns: 1fr 1fr; grid-auto-rows: 230px; }
    .g-tile, .g-card { grid-column: span 1; }
    .g-tile--lead, .g-tile--wide { grid-column: span 2; }
    .g-tile--lead, .g-tile--tall { grid-row: span 2; }
  }
  @media (max-width: 600px) {
    .gallery { grid-auto-rows: 150px; gap: 10px; }
    .g-cap { padding: 32px 12px 10px; }
    .g-cap b { font-size: 14px; line-height: 18px; }
    .g-cap small { display: none; }
    .g-tile--lead .g-cap { padding: 48px 14px 12px; }
    .g-tile--lead .g-cap b { font-size: 17px; line-height: 21px; }
    .g-tile--lead .g-cap small { display: block; font-size: 12px; line-height: 16px; }
    .g-card { grid-column: span 2; padding: 16px; }
    .g-card__copy b { font-size: 16px; line-height: 20px; }
  }

  /* body-style pick cards on the request wizard */
  .svc-pick-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .svc-pick { position: relative; display: grid; justify-items: center; gap: 6px; padding: 18px 10px; border: 1.5px solid var(--line); border-radius: var(--r-md); background: #fff; text-align: center; font-size: 14px; font-weight: 600; color: var(--ink); transition: border-color .15s, box-shadow .15s, background-color .15s; }
  .svc-pick img { width: 100%; max-width: 170px; height: auto; display: block; mix-blend-mode: multiply; }
  .svc-pick:hover { border-color: var(--line-strong); box-shadow: var(--shadow-card); }
  .svc-pick.is-on { border-color: var(--blue); background: var(--sky-weak); box-shadow: inset 0 0 0 1px var(--blue); }
  .svc-pick.is-on svg { color: var(--blue); }
  .svc-pick.is-on::after { content: ""; position: absolute; top: 8px; right: 8px; width: 18px; height: 18px; border-radius: 50%; background: var(--blue) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12.5l4.5 4.5L19 7'/%3E%3C/svg%3E") center / 12px no-repeat; }
  .wiz-bar--4 { grid-template-columns: repeat(4, 1fr); }
  @media (max-width: 860px) { .svc-pick-grid { grid-template-columns: 1fr 1fr; } .svc-pick svg { width: 94px; height: 40px; } }

  /* ==========================================================================
     Make a payment (pay.html) — Square card form + receipt state
     ========================================================================== */
  .pay-amount { position: relative; }
  .pay-amount > span { position: absolute; left: 16px; top: 50%; transform: translateY(-50%); font-size: 18px; font-weight: 600; color: var(--muted); pointer-events: none; }
  .pay-amount input { padding-left: 34px; font-size: 18px; font-weight: 600; letter-spacing: -.2px; }
  .pay-card-box { min-height: 56px; }
  /* Square reserves a message line under its card frame; collapse it while it is empty so the box hugs the fields. */
  .pay-card-box .sq-card-message { margin: 0; }
  .pay-card-box .sq-card-message:empty { display: none; }
  .pay-loading { display: flex; align-items: center; gap: 10px; min-height: 56px; padding: 0 16px; border: 1px dashed var(--line-strong); border-radius: var(--r-sm); background: var(--bg); font-size: 14px; color: var(--muted); }
  .spin { width: 16px; height: 16px; flex: none; border-radius: 50%; border: 2px solid var(--line-strong); border-top-color: var(--blue); animation: spin .8s linear infinite; }
  @keyframes spin { to { transform: rotate(360deg); } }
  .field-error { font-size: 14px; line-height: 20px; color: #b02525; }
  .pay-secure { display: flex; align-items: flex-start; gap: 8px; margin: -2px 0 4px; font-size: 13px; line-height: 18px; color: var(--muted); }
  .pay-secure svg { width: 16px; height: 16px; flex: none; margin-top: 1px; color: var(--green); }
  .pay-mode { margin-bottom: 20px; padding: 10px 14px; border-radius: var(--r-sm); background: #fff7e0; color: #7a5200; font-size: 14px; line-height: 20px; }
  .pay-mode b { color: inherit; }
  .pay-off { padding: 8px 0; }
  .pay-off h3 { margin-bottom: 8px; }
  .pay-off p { font-size: 15px; line-height: 22px; color: var(--text); }
  .pay-off p + p, .pay-off .btn-row + p { margin-top: 12px; }
  .pay-off .muted { font-size: 14px; color: var(--muted); }
  .btn-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }
  .success .btn-row { justify-content: center; }
  .success .pay-total { font-size: 36px; line-height: 40px; font-weight: 800; letter-spacing: -.8px; color: var(--ink); margin: 4px 0 2px; }
  .success .pay-receipt { max-width: 420px; margin: 18px auto 0; text-align: left; border: 1px solid var(--line); border-radius: var(--r-md); overflow: hidden; }
  .success .pay-receipt > div { display: flex; justify-content: space-between; gap: 12px; padding: 10px 14px; font-size: 14px; line-height: 20px; border-bottom: 1px solid var(--line); }
  .success .pay-receipt > div:last-child { border-bottom: 0; }
  .success .pay-receipt span { color: var(--muted); flex: none; }
  .success .pay-receipt b { color: var(--ink); font-weight: 600; text-align: right; overflow-wrap: anywhere; }
  .success .pay-receipt .mono { font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; font-size: 13px; }
  .success > p + p { margin-top: 10px; }
  .success .muted { font-size: 14px; color: var(--muted); margin-top: 14px; }
  .success:focus { outline: none; }
  @media (prefers-reduced-motion: reduce) { .spin { animation: none; border-top-color: var(--line-strong); } }
  /* Purchase Vehicle → pay.html?vehicle=<id>: the listing at the top of the checkout */
  .pay-vehicle { display: grid; grid-template-columns: 220px 1fr; gap: 22px; margin-bottom: 24px; padding: 16px; border: 1px solid var(--line); border-radius: var(--r-md); background: var(--bg); align-items: stretch; }
  .pay-vehicle img { width: 100%; height: 100%; min-height: 200px; object-fit: cover; border-radius: var(--r-sm); background: #e5e7eb; }
  .pay-vehicle__body { display: grid; gap: 10px; align-content: space-between; min-width: 0; }
  .pay-vehicle__body .eyebrow { margin-bottom: 0; }
  .pay-vehicle__name { font-size: 24px; line-height: 30px; font-weight: 700; letter-spacing: -.4px; color: var(--ink); }
  .deal-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; margin: 4px 0 2px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r-sm); overflow: hidden; }
  .deal-grid > div { display: grid; gap: 4px; padding: 14px 16px; background: #fff; }
  .deal-grid dt { font-size: 12px; line-height: 16px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); }
  .deal-grid dd { margin: 0; font-size: 22px; line-height: 26px; font-weight: 700; letter-spacing: -.3px; color: var(--ink); }
  .pay-vehicle__note { font-size: 14px; line-height: 20px; color: var(--muted); }
  .pay-vehicle--gone { display: block; }
  .pay-vehicle--gone p { font-size: 15px; line-height: 22px; color: var(--text); }
  @media (max-width: 640px) { .pay-vehicle { grid-template-columns: 1fr; gap: 14px; } .pay-vehicle img { height: auto; aspect-ratio: 4 / 3; min-height: 0; } .pay-vehicle__name { font-size: 20px; line-height: 26px; } .deal-grid dd { font-size: 19px; } .deal-grid, .pay-options { grid-template-columns: 1fr; } }

  /* Payment steps: 1) what you're paying (option cards) 2) details + card */
  .pay-step { border: 0; padding: 0; margin: 0 0 28px; min-width: 0; }
  .pay-step__head { display: flex; align-items: center; gap: 12px; margin-bottom: 4px; }
  .pay-step__head .form-legend { margin-bottom: 0; }
  .pay-step__num { flex: none; width: 28px; height: 28px; border-radius: 50%; background: var(--ink); color: #fff; font-size: 13px; font-weight: 700; display: grid; place-items: center; }
  .pay-step .form-sub { margin: 6px 0 16px; }
  .pay-options { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
  .pay-option { position: relative; display: block; cursor: pointer; border: 1.5px solid var(--line-strong); border-radius: var(--r-md); background: #fff; padding: 18px 18px 18px 20px; transition: border-color .15s, box-shadow .15s, background-color .15s; }
  .pay-option input { position: absolute; opacity: 0; width: 1px; height: 1px; margin: 0; }
  .pay-option__body { display: grid; gap: 4px; padding-right: 30px; }
  .pay-option__title { font-size: 16px; line-height: 22px; font-weight: 600; color: var(--ink); }
  .pay-option__amount { font-size: 24px; line-height: 28px; font-weight: 800; letter-spacing: -.5px; color: var(--ink); }
  .pay-option__desc { font-size: 13px; line-height: 18px; color: var(--text); margin-top: 4px; }
  .pay-option::after { content: ""; position: absolute; top: 16px; right: 16px; width: 22px; height: 22px; border-radius: 50%; border: 1.5px solid var(--line-strong); background: #fff; transition: border-color .15s, background-color .15s; }
  .pay-option:hover { border-color: var(--blue); }
  .pay-option.is-on { border-color: var(--blue); background: var(--sky-weak); box-shadow: inset 0 0 0 1px var(--blue); }
  .pay-option.is-on::after { border-color: var(--blue); background: var(--blue) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12.5l4.5 4.5L19 7'/%3E%3C/svg%3E") center / 13px no-repeat; }
  .pay-option:focus-within { outline: 3px solid rgba(27, 63, 117, .45); outline-offset: 2px; }
  .pay-vehicle { margin-bottom: 28px; }
  @media (max-width: 640px) { .pay-options { grid-template-columns: 1fr; gap: 10px; } .pay-option__amount { font-size: 22px; } }

  /* Inventory: in-house financing section */
  .fin-stats { margin-top: 8px; }
  .fin-steps { margin-top: 24px; }
  .fin-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 24px; margin-top: 24px; align-items: stretch; }
  .fin-card { display: flex; flex-direction: column; gap: 22px; }
  .fin-card > div:first-child, .fin-card > div:nth-child(2) { display: grid; gap: 6px; }
  .fin-card h3 { margin-bottom: 0; }
  .fin-card .btn-row { margin-top: auto; padding-top: 4px; }
  @media (max-width: 960px) { .fin-grid { grid-template-columns: 1fr; } }

  /* Inventory: rebuilt-titles section */
  /* Rebuilt titles: two matched cards with a shared rhythm — a checklist on the left, a numbered timeline on the right. */
  .rb-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 8px; align-items: stretch; }
  .rb-card { display: flex; flex-direction: column; gap: 0; padding: 36px 36px 32px; }
  .rb-card > h3 { display: flex; align-items: center; gap: 12px; font-size: 22px; line-height: 28px; letter-spacing: -.2px; margin: 0 0 8px; }
  .rb-card > h3 svg { flex: none; width: 22px; height: 22px; color: var(--blue); }
  .info-card--navy.rb-card > h3 svg { color: var(--sky); }
  .rb-card > p { font-size: 15px; line-height: 23px; color: var(--text); margin: 0 0 22px; }
  .rb-list { gap: 0; margin: 0; padding: 0; }
  .rb-list li { gap: 14px; padding: 13px 0; border-top: 1px solid var(--line); font-size: 15px; line-height: 23px; color: var(--text); }
  .rb-list li:last-child { border-bottom: 1px solid var(--line); }
  .rb-list li b { color: var(--ink); font-weight: 600; }
  .rb-list li svg { width: 22px; height: 22px; flex: none; margin-top: 1px; padding: 4px; border-radius: 50%; background: #e6f6ee; color: var(--green); box-sizing: border-box; }
  .rb-sub { display: flex; align-items: center; gap: 10px; font-size: 12px; line-height: 16px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; color: var(--blue); margin: 26px 0 14px; }
  .rb-sub::before { content: ""; width: 18px; height: 2px; background: var(--blue); border-radius: 2px; }
  .rb-card .steps { margin: 0; gap: 0; position: relative; }
  .rb-card .steps li { position: relative; gap: 16px; padding: 0 0 20px; }
  .rb-card .steps li:last-child { padding-bottom: 0; }
  .rb-card .steps li::before { width: 34px; height: 34px; font-size: 14px; background: var(--blue); color: #fff; box-shadow: 0 0 0 4px #fff; position: relative; z-index: 1; }
  .rb-card .steps li::after { content: ""; position: absolute; left: 16px; top: 34px; bottom: 0; width: 2px; background: var(--line); }
  .rb-card .steps li:last-child::after { display: none; }
  .rb-card .steps li > div { padding-top: 6px; }
  .rb-card .steps strong { font-size: 15px; line-height: 22px; margin-bottom: 2px; }
  .rb-steps-list li span, .rb-card .steps li span { font-size: 14px; line-height: 21px; }
  .rb-card .rb-foot { margin-top: auto; padding-top: 22px; border-top: 1px solid var(--line); font-size: 14px; line-height: 21px; color: var(--text); }
  .info-card--navy.rb-card { padding: 36px 36px 32px; }
  .info-card--navy.rb-card > p { color: rgba(255, 255, 255, .8); }
  .info-card--navy.rb-card .steps { gap: 0; }
  .info-card--navy.rb-card .steps { flex: 1; align-content: space-between; }
  .info-card--navy.rb-card .steps li { padding-bottom: 28px; }
  .info-card--navy.rb-card .rb-foot { margin-top: 8px; }
  .info-card--navy.rb-card .steps li::before { background: #fff; color: var(--blue); box-shadow: 0 0 0 4px var(--blue); }
  .info-card--navy.rb-card .steps li::after { background: rgba(255, 255, 255, .22); }
  .info-card--navy.rb-card .rb-foot { border-top-color: rgba(255, 255, 255, .16); color: rgba(255, 255, 255, .85); }
  .info-card--navy.rb-card .rb-foot a { color: #fff; }
  @media (max-width: 960px) { .rb-grid { grid-template-columns: 1fr; gap: 20px; } }
  @media (max-width: 560px) { .rb-card, .info-card--navy.rb-card { padding: 26px 20px 24px; } .rb-card > h3 { font-size: 20px; line-height: 26px; } }
  /* Payment estimator: sits on white sections, so it gets a hairline and a shadow on every side */
  .estimator:not(.estimator--navy) { border: 1px solid var(--line); box-shadow: 0 2px 6px rgba(17, 24, 39, .06), 0 12px 32px rgba(17, 24, 39, .14), 0 -4px 16px rgba(17, 24, 39, .05); }
  /* Down-payment slider on the checkout */
  .pay-slider { grid-column: 1 / -1; display: grid; gap: 4px; margin-top: -4px; padding: 12px 16px 12px; border: 1px solid var(--line); border-radius: var(--r-sm); background: var(--bg); }
  .pay-slider[hidden] { display: none; }
  .pay-slider input[type="range"] { width: 100%; height: 36px; margin: 0; accent-color: var(--blue); cursor: pointer; }
  .pay-slider__scale { display: flex; justify-content: space-between; gap: 10px; font-size: 12px; line-height: 16px; color: var(--muted); }
  .pay-slider__scale span:first-child, .pay-slider__scale span:last-child { font-weight: 600; color: var(--text); }
  .pay-slider__balance { font-size: 13px; line-height: 18px; color: var(--text); margin-top: 4px; }
  .pay-slider__balance b { color: var(--ink); font-weight: 600; }
  /* ID photo upload on the checkout */
  .pay-upload { display: grid; gap: 10px; }
  /* The native file input is invisible but covers the whole box (so it is clickable, keyboard-reachable and opens the phone camera);
     the visible face is the button + text underneath, centred in one row in every browser. */
  .pay-upload__box { position: relative; display: flex; align-items: center; gap: 14px; min-height: 58px; padding: 9px 14px; border: 1.5px dashed var(--line-strong); border-radius: var(--r-sm); background: var(--bg); cursor: pointer; transition: border-color .15s, background-color .15s; }
  .pay-upload__box:hover { border-color: var(--blue); background: var(--sky-weak); }
  .pay-upload__box:focus-within { outline: 3px solid rgba(27, 63, 117, .45); outline-offset: 2px; }
  .pay-upload__box input[type="file"] { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0; cursor: pointer; font-size: 0; }
  .pay-upload__btn { flex: none; display: inline-flex; align-items: center; height: 38px; padding: 0 16px; border-radius: var(--r-btn); background: var(--blue); color: #fff; font-size: 14px; font-weight: 600; line-height: 1; pointer-events: none; }
  .pay-upload__text { font-size: 15px; line-height: 20px; color: var(--text); pointer-events: none; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .pay-upload.has-file .pay-upload__text { color: var(--ink); font-weight: 600; }
  .pay-upload__preview { display: flex; align-items: center; gap: 12px; font-size: 14px; color: var(--text); }
  .pay-upload__preview img { width: 96px; height: 64px; object-fit: cover; border-radius: 6px; border: 1px solid var(--line); background: #fff; }
  .pay-upload__preview .link-plain { border: 0; background: none; color: var(--blue); font: inherit; font-weight: 600; cursor: pointer; padding: 0; }
  /* Checkout action block: rule, full-width Pay button, centred note */
  #pay-form .form-actions { border-top: 1px solid var(--line); margin-top: 4px; padding-top: 22px; gap: 14px; }
  #pay-form .form-actions .btn { align-self: stretch; width: 100%; height: 56px; font-size: 17px; }
  #pay-form .form-note { text-align: center; }
  #pay-form input.is-locked { background: var(--bg); color: var(--ink); }
