/* =========================================================
   ROCK SOLID CARGO — shared site CSS
   Vibe: rugged premium / workwear-brand / industrial
   Palette: forest #1c211f · bone #e9e3d3 · sage #7a8d6a · clay (red) #c43a3a
   Type: Archivo (all-sans, multi-weight)
   ========================================================= */

/* ── Type ──────────────────────────────────────────────────
   Self-hosted rather than loaded from Google Fonts. Three reasons, in order
   of how much they mattered:

   1. Layout shift. The home page failed CLS on mobile at 0.182, and an A/B
      with fonts.g* blocked put it at exactly 0.0000 on every page. It was
      pure font-swap reflow: Archivo replaced the fallback, metrics changed,
      the hero stack moved. font-display: optional means the swap never
      happens mid-load, so the shift cannot occur.
   2. Privacy. Google logged every visitor's IP on 11 of 12 pages. The site
      claims no third-party analytics and now has no third party at all.
   3. Render blocking. The stylesheet cost ~828ms on the home page's LCP.

   Both files are the variable latin subset, which is all an English-only
   site needs: 35 KB covers Archivo 400-900, 31 KB covers JetBrains Mono
   400-600. Preloading Archivo means it almost always wins the race that
   `optional` sets up, so visitors get the real face and no shift. */
@font-face {
  font-family: 'Archivo';
  font-style: normal;
  font-weight: 400 900;
  font-display: optional;
  src: url('assets/fonts/archivo-latin-var.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'JetBrains Mono';
  font-style: normal;
  font-weight: 400 600;
  font-display: optional;
  src: url('assets/fonts/jetbrains-mono-latin-var.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --bg:        #1c211f;
  --bg-2:      #232a27;
  --bg-3:      #2a3330;
  --bg-deep:   #14181a;
  --bone:      #e9e3d3;
  --bone-2:    #d4ccb4;
  --bone-dim:  rgba(233,227,211,0.55);
  --bone-faint:rgba(233,227,211,0.18);
  --bone-line: rgba(233,227,211,0.14);
  --sage:      #7a8d6a;
  --clay:      #c43a3a;
  --clay-hover:#a82d2d;
  --clay-deep: #1c1010;

  /* Accessible variant of the brand red.
     Every ratio names the background it was measured against, because that is
     where this block previously went wrong: the numbers were all computed on
     --bg, while the accents are also used on --bg-2, which is lighter. That
     single assumption accounted for most of the site's contrast failures.

     --clay       3.12:1 on --bg, 3.41:1 on --bg-deep, 2.80:1 on --bg-2.
                  Fills, and large display text on the two darker surfaces
                  (WCAG wants 3:1 at 24px+ / 18.66px+ bold). Never as text on
                  --bg-2, where it is under even the large-text floor.
     --clay-text  5.35:1 on --bg, 5.86:1 on --bg-deep, 4.81:1 on --bg-2.
                  Everything else. Deliberately chosen to clear 4.5:1 on all
                  three surfaces so it is never the wrong choice. It was
                  #da6565, which was 4.21:1 on --bg-2 and quietly failed. */
  --clay-text: #e57070;
  /* Button ink on a --clay fill: 4.93:1. Plain --bone would be 4.08:1 and fail. */
  --btn-ink:   #faf8f2;
  /* Form control borders need 3:1 as UI boundaries (WCAG 1.4.11). This is 3.52:1
     on --bg-2, where --bone-faint was only 1.65:1. */
  --field-line:rgba(233,227,211,0.45);

  /* Height of the utility bar, used as the sticky header's negative offset so
     the bar scrolls away and the nav lands flush at top: 0. The 20px
     line-height on .util .row makes the row exactly 10 + 20 + 10; the extra
     1px is that bar's bottom border, which counts toward the offset. */
  --util-h: 41px;
}
* { box-sizing: border-box; }

/* ── Skip link ─────────────────────────────────────────────
   First focusable element on every page. Off-screen until focused. */
.skip-link {
  position: absolute;
  left: -9999px; top: 0;
  z-index: 10000;
  background: var(--bone); color: var(--bg);
  font-size: 12px; font-weight: 800;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 14px 20px;
  border: 2px solid var(--bg);
}
.skip-link:focus { left: 8px; top: 8px; }

/* ── Focus visibility ──────────────────────────────────────
   Bone clears the 3:1 that WCAG 1.4.11 wants of a focus indicator on every
   DARK surface (11.45:1 on --bg-2), and the offset keeps it legible over
   photos and clay fills.

   It does not clear anything on a light surface. .dealer-band is
   background: var(--bone), so a bone ring there is bone on bone: 1.00:1,
   literally zero pixels of change on ten primary CTAs across five pages.
   That is what the override below fixes. Forest on bone is 12.74:1. */
:focus-visible {
  outline: 2px solid var(--bone);
  outline-offset: 3px;
}
.dealer-band :focus-visible { outline-color: var(--bg); }
/* The Leaflet widget is the site's other light surface, and it was missed when
   .dealer-band got the override above: a bone ring on the white map controls
   measured 1.10-1.28:1, which is no visible ring at all. Same treatment. */
.leaflet-container :focus-visible,
.leaflet-control :focus-visible,
.leaflet-popup :focus-visible { outline-color: var(--bg); }
/* Anything that sets its own background needs the ring to sit outside it. */
.btn:focus-visible,
.skip-link:focus-visible { outline-offset: 2px; }
/* Scroll targets clear the sticky nav, which is 73-87px tall depending on
   breakpoint. Dead code until the header was made to actually stick.
   [id] alone was not enough: it only covers elements that happen to carry an
   id, and the 319 dealer-card controls on /dealers carry none, so tabbing
   parked 60 of 379 stops at the top of the viewport with the sticky nav
   painted over them (WCAG 2.4.11). The /contact phone link had the same bug.
   Focusable elements need the margin whether or not they are link targets. */
[id],
a, button, input, select, textarea, summary, [tabindex] {
  scroll-margin-top: 96px;
}
html, body {
  margin: 0; padding: 0;
  background: var(--bg);
  color: var(--bone);
  font-family: 'Archivo', system-ui, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }
.wrap { max-width: 1280px; margin: 0 auto; padding: 0 40px; }

/* ── Typography primitives ─────────────────────────────── */
.eyebrow {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bone-dim);
}
.eyebrow .accent { color: var(--clay-text); }
.label-mono {
  font-size: 10.5px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  font-feature-settings: "tnum";
  color: var(--bone-dim);
}
.display {
  font-weight: 900; letter-spacing: -0.035em;
  line-height: 0.92; text-transform: uppercase;
}
.section-h {
  font-weight: 900;
  font-size: 56px;
  letter-spacing: -0.025em;
  line-height: 0.95;
  text-transform: uppercase;
  margin: 0;
}
.section-h .clay { color: var(--clay); }
.section-h .outline {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--bone);
}
.lede {
  font-size: 17px;
  color: var(--bone-dim);
  max-width: 56ch;
  line-height: 1.55;
}
.rule { height: 1px; background: var(--bone-line); border: 0; margin: 0; }
.rule-bone { background: var(--bone); height: 2px; }

/* ── Buttons ───────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--clay); color: var(--btn-ink);
  font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.14em; font-size: 12px;
  padding: 13px 20px 12px;
  border: 1.5px solid var(--clay);
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.18s, color 0.18s, transform 0.15s;
}
.btn:hover { background: var(--clay-hover); border-color: var(--clay-hover); }
.btn .arrow { transition: transform 0.2s; }
.btn:hover .arrow { transform: translateX(2px); }
.btn-ghost {
  background: transparent; color: var(--bone);
  border: 1.5px solid var(--bone);
}
.btn-ghost:hover { background: var(--bone); color: var(--bg); }
.btn-bone {
  background: var(--bone); color: var(--bg);
  border-color: var(--bone);
}
.btn-bone:hover { background: #fff; border-color: #fff; }

/* ── Site header ───────────────────────────────────────────
   The sticky lives here, not on nav.main. nav.main was the sticky element
   for a long time, but its containing block is this header, which wraps only
   the utility bar and the nav and is therefore exactly nav-height tall. A
   sticky element cannot travel outside its containing block, so there was no
   room to travel: the nav scrolled away 1:1 on every page, in every engine,
   at every width. backdrop-filter, z-index and scroll-margin-top were all
   dead code as a result.

   Sticking the wrapper instead, offset upward by the utility bar's height,
   keeps the original intent: the utility bar scrolls out of view and the nav
   comes to rest flush against the top of the viewport. */
.site-header {
  position: sticky;
  top: calc(-1 * var(--util-h));
  z-index: 50;
}

/* ── Utility bar (top) ─────────────────────────────────── */
.util {
  background: var(--bg-deep);
  border-bottom: 1px solid var(--bone-line);
  color: var(--bone-dim);
  font-size: 12px;
}
.util .row {
  display: flex; align-items: center; gap: 28px;
  padding: 10px 40px;
  /* Pins the bar to exactly 40px so --util-h is an exact offset rather than
     a fractional magic number. Without this it measures 39.59px. */
  line-height: 20px;
  max-width: 1280px; margin: 0 auto;
  position: relative;
}
.util .item { display: inline-flex; align-items: center; gap: 8px; white-space: nowrap; }
.util .item svg { width: 14px; height: 14px; }
.util .item:hover { color: var(--bone); }
.util .notice {
  position: absolute; left: 50%; transform: translateX(-50%);
  color: var(--bone);
  font-weight: 500;
  letter-spacing: 0.03em;
  white-space: nowrap;
  pointer-events: none;
}
.util .notice .dot {
  width: 6px; height: 6px; background: var(--sage); border-radius: 50%;
  display: inline-block; margin-right: 10px; vertical-align: middle;
}
.util .spacer { flex: 1; }
.util .phone { font-weight: 700; color: var(--bone); letter-spacing: 0.04em; white-space: nowrap; }

/* ── Main nav ──────────────────────────────────────────── */
nav.main {
  /* Sticky lives on .site-header, not here. See the note there. */
  background: rgba(28,33,31,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--bone-line);
}
nav.main .row {
  display: grid; grid-template-columns: auto 1fr auto;
  align-items: center; gap: 48px;
  padding: 20px 40px;
  max-width: 1280px; margin: 0 auto;
}
.logo { display: inline-flex; align-items: center; gap: 12px; }
.logo .logo-img { height: 40px; width: auto; display: block; }
.logo .mark {
  width: 40px; height: 40px;
  background: var(--bone);
  color: var(--bg);
  display: grid; place-items: center;
  font-weight: 900;
  border-radius: 2px;
  position: relative;
}
.logo .mark svg { width: 22px; height: 22px; }
.logo .word { line-height: 1; }
.logo .word .name {
  display: block;
  font-weight: 900;
  font-size: 16px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.logo .word .sub {
  display: block;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.24em;
  color: var(--bone-dim);
  margin-top: 4px;
  text-transform: uppercase;
}
nav.main ul {
  list-style: none; margin: 0; padding: 0;
  display: flex; gap: 36px; justify-content: center;
}
nav.main ul a {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--bone);
  padding: 8px 0;
  position: relative;
  transition: color 0.15s;
}
nav.main ul a:hover { color: var(--clay-text); }
nav.main ul a.active { color: var(--bone); }
nav.main ul a.active::after {
  content: ''; position: absolute; left: -2px; right: -2px; bottom: -4px;
  height: 2px; background: var(--clay);
}
nav.main .right { display: flex; align-items: center; gap: 18px; }

/* ── Marquee value strip ───────────────────────────────── */
.marquee {
  background: var(--clay);
  color: var(--btn-ink);
  overflow: hidden;
  border-bottom: 1px solid var(--bg);
  position: relative;
}
.marquee .track {
  /* No gap here on purpose. The track holds two identical spans and the
     keyframe translates -50%, so one span must measure exactly half the
     track. A track-level gap would make the total 2W + gap while -50%
     moves only W + gap/2, which is what caused the visible jump each
     loop. The seam spacing now lives in the span's own padding-right,
     so each span is W + 56 and -50% lands exactly on the repeat. */
  display: flex; gap: 0;
  padding: 16px 0;
  animation: scroll 36s linear infinite;
  white-space: nowrap;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.marquee .track > span {
  display: inline-flex; align-items: center; gap: 56px;
  padding-right: 56px;
}
.marquee .star { color: var(--clay-deep); }
@keyframes scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
/* WCAG 2.2.2 — moving content over 5s needs a way to stop it. */
.marquee.paused .track { animation-play-state: paused; }
.marquee-toggle {
  position: absolute; top: 0; right: 0; bottom: 0;
  display: inline-flex; align-items: center; justify-content: center;
  width: 54px;
  /* Opaque, and full-height, so the scrolling track passes behind it cleanly
     instead of colliding with the glyph. */
  background: var(--clay);
  border: 0;
  border-left: 1px solid rgba(28,16,16,0.35);
  box-shadow: -14px 0 18px -6px var(--clay);
  color: var(--btn-ink);
  cursor: pointer;
  padding: 0;
}
.marquee-toggle svg { width: 12px; height: 12px; fill: currentColor; }
.marquee-toggle .icon-play { display: none; }
.marquee.paused .marquee-toggle .icon-play { display: block; }
.marquee.paused .marquee-toggle .icon-pause { display: none; }

/* ── Section base ──────────────────────────────────────── */
section.s { padding: 96px 0; position: relative; }
section.s + section.s { border-top: 1px solid var(--bone-line); }
.s-head {
  display: grid; grid-template-columns: auto 1fr auto;
  align-items: end; gap: 40px;
  margin-bottom: 56px;
}
.s-num {
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.22em; color: var(--bone-dim);
  border-left: 1px solid var(--bone-line);
  padding-left: 14px;
}
.s-head .l { display: grid; gap: 16px; }
.s-head .r { color: var(--bone-dim); max-width: 32ch; line-height: 1.5; padding-bottom: 4px; }

/* ── Registration marks (used around heroes / important blocks) ── */
.corner {
  position: absolute;
  width: 28px; height: 28px;
  border: 1.5px solid var(--bone);
  z-index: 3;
  opacity: 0.5;
  /* Registration marks are decoration. Without this, .corner.br sits on top
     of the hero's video pause button (same z-index, later in the DOM) and
     wins the hit test, making the WCAG 2.2.2 stop control for an autoplaying
     video completely unclickable with a mouse or a desktop trackpad. */
  pointer-events: none;
}
.corner.tl { top: 24px; left: 24px; border-right: 0; border-bottom: 0; }
.corner.tr { top: 24px; right: 24px; border-left: 0; border-bottom: 0; }
.corner.bl { bottom: 24px; left: 24px; border-right: 0; border-top: 0; }
.corner.br { bottom: 24px; right: 24px; border-left: 0; border-top: 0; }
@media (max-width: 600px) {
  /* The hero's content padding drops to 40px 20px at this width; the marks
     must shrink with it or their 24-52px band lands on the text. 16px inset
     + 20px box = 36px extent, keeping the same 4px clearance as desktop. */
  .corner { width: 20px; height: 20px; }
  .corner.tl { top: 16px; left: 16px; }
  .corner.tr { top: 16px; right: 16px; }
  .corner.bl { bottom: 16px; left: 16px; }
  .corner.br { bottom: 16px; right: 16px; }
}


/* ── Dealer band (reusable CTA strip on bone bg) ──────── */
.dealer-band {
  background: var(--bone);
  color: var(--bg);
  padding: 80px 0;
  border-top: 2px solid var(--bg);
  border-bottom: 2px solid var(--bg);
}
.dealer-band .row {
  display: grid; grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: center;
}
.dealer-band h2 {
  font-size: 72px; font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 0.94;
  text-transform: uppercase;
  margin: 0;
  color: var(--bg);
}
.dealer-band h2 .clay { color: var(--clay); }
.dealer-band .lede { color: rgba(28,33,31,0.7); font-size: 17px; max-width: 48ch; margin-top: 18px; }
.dealer-band .ctas { display: flex; gap: 10px; margin-top: 24px; flex-wrap: wrap; }
.dealer-band .btn { background: var(--bg); color: var(--bone); border-color: var(--bg); }
.dealer-band .btn:hover { background: #000; border-color: #000; }
.dealer-band .btn-ghost {
  background: transparent; color: var(--bg); border-color: var(--bg);
}
.dealer-band .btn-ghost:hover { background: var(--bg); color: var(--bone); }
.dealer-band .stat-stack {
  display: grid; gap: 24px;
  border-left: 2px solid var(--bg);
  padding-left: 32px;
}
.dealer-band .stat .n {
  font-weight: 900; font-size: 56px; line-height: 0.95;
  letter-spacing: -0.03em;
}
/* The "+" on the 80+/38+ stats. There is no generic .clay rule, so this needs
   scoping or the span just inherits the dark ink. 56px counts as large text,
   where clay-on-bone (4.08:1) clears the 3:1 threshold. */
.dealer-band .stat .n .clay { color: var(--clay); }
.dealer-band .stat .l {
  text-transform: uppercase; letter-spacing: 0.2em; font-weight: 700;
  font-size: 12px; margin-top: 4px;
  color: rgba(28,33,31,0.65);
}

/* ── Footer ────────────────────────────────────────────── */
footer.site {
  background: var(--bg-deep);
  color: var(--bone);
  padding: 80px 0 28px;
  border-top: 1px solid var(--bone-line);
}
footer .grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--bone-line);
}
footer .h {
  font-size: 11px; font-weight: 700; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--bone-dim);
  margin-bottom: 16px;
}
footer .item { font-size: 14px; color: var(--bone); padding: 4px 0; }
footer .item a:hover { color: var(--clay-text); }
footer .brand-block { max-width: 360px; }
footer .wordmark {
  font-weight: 900; font-size: 28px;
  text-transform: uppercase; letter-spacing: 0.01em;
  line-height: 0.95;
}
footer .wordmark .clay { color: var(--clay); }
footer .tag {
  color: var(--bone-dim); margin-top: 14px; font-size: 14px; line-height: 1.5;
}
footer .bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 22px;
  color: var(--bone-dim);
  font-size: 12px; letter-spacing: 0.04em;
}
footer .bottom .links { display: flex; gap: 22px; }

/* ── Reveal on scroll ──────────────────────────────────────
   Visible by default. The hidden starting state is scoped to html.js,
   which the inline head script sets before first paint, so a browser
   with JS off or a script that fails still renders every section
   instead of leaving the page blank. */
.reveal { opacity: 1; transform: none; }
html.js .reveal {
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.8s cubic-bezier(.2,.7,.2,1), transform 0.8s cubic-bezier(.2,.7,.2,1);
}
html.js .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal, html.js .reveal { opacity: 1; transform: none; transition: none; }
  .marquee .track { animation: none; }
  .btn .arrow, .btn:hover .arrow { transition: none; transform: none; }
}

/* ── Hamburger button (hidden on desktop) ────────────── */
.nav-toggle {
  display: none;
  flex-direction: column; justify-content: center; align-items: center;
  gap: 5px;
  width: 36px; height: 36px;
  background: none; border: none; cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--bone);
  border-radius: 1px;
  transition: transform 0.2s, opacity 0.2s;
  transform-origin: center;
}
nav.main.open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
nav.main.open .nav-toggle span:nth-child(2) { opacity: 0; transform: scaleX(0); }
nav.main.open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile drawer ───────────────────────────────────── */
/* Only ever visible while the nav is actually collapsed. Unscoped, an open
   drawer survived a resize past the breakpoint and rendered alongside the
   desktop links with the hamburger gone. */
@media (max-width: 1060px) {
  nav.main.open .mobile-drawer {
    display: flex;
  }
}
.mobile-drawer {
  display: none;
  flex-direction: column;
  background: rgba(28,33,31,0.98);
  border-top: 1px solid var(--bone-line);
  padding: 24px 40px 28px;
}
.mobile-drawer a {
  font-size: 15px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--bone);
  padding: 12px 0;
  border-bottom: 1px solid var(--bone-line);
  transition: color 0.15s;
}
.mobile-drawer > a:last-of-type { border-bottom: none; }
.mobile-drawer a:hover,
.mobile-drawer a.active { color: var(--clay-text); }

/* ── Mobile drawer utility section ──────────────────── */
.drawer-util {
  margin-top: 8px;
  padding-top: 16px;
  border-top: 1px solid var(--bone-line);
  display: flex;
  flex-direction: column;
}
.drawer-util a {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--bone-dim);
  padding: 10px 0;
  border-bottom: 1px solid var(--bone-line);
  transition: color 0.15s;
}
.drawer-util a:last-child { border-bottom: none; }
.drawer-util a:hover { color: var(--bone); }
.drawer-util a svg { width: 14px; height: 14px; flex-shrink: 0; }
.drawer-util .notice {
  font-size: 12px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--bone-dim);
  padding: 10px 0;
  border-bottom: 1px solid var(--bone-line);
  display: flex; align-items: center;
}
.drawer-util .notice .dot {
  width: 6px; height: 6px; background: var(--sage); border-radius: 50%;
  flex-shrink: 0; margin-right: 8px;
}

/* ── Nav collapse ─────────────────────────────────────────
   The full nav row (logo + six links + CTA) needs ~1010px. It used to collapse
   only at 980px, so 981–1010px pushed the page ~8px sideways on every page.
   Collapsing the nav slightly earlier than the rest of the layout fixes it. */
@media (max-width: 1060px) {
  nav.main .row { display: flex; align-items: center; gap: 12px; padding: 16px 20px; }
  nav.main ul { display: none; }
  nav.main .right { margin-left: auto; }
  .nav-toggle { display: flex; }
}

/* ── Small-screen guard (preview is desktop-first) ────── */
@media (max-width: 980px) {
  .util { display: none; }
  /* No utility bar to scroll past, so the header sticks flush at the top. */
  :root { --util-h: 0px; }
  .s-head { grid-template-columns: 1fr; }
  .dealer-band .row { grid-template-columns: 1fr; }
  footer .grid { grid-template-columns: 1fr 1fr; }
  nav.main .row { display: flex; align-items: center; gap: 12px; padding: 16px 20px; }
  nav.main ul { display: none; }
  nav.main .right { margin-left: auto; }
  .nav-toggle { display: flex; }
}

/* ── Phones ───────────────────────────────────────────────
   There was no breakpoint below 600px, so everything from 599px down was
   still rendering the 980px rules. The 40px .wrap gutter alone pushed every
   content block 19px past a 375px viewport, and the fixed display sizes
   (72px dealer band, 56px section heads) overflowed well beyond that. */
@media (max-width: 600px) {
  /* Match the nav row's 20px so the logo lines up with the content below it. */
  .wrap { padding: 0 20px; }

  /* Safety net: these are 900-weight uppercase display headings, so a single
     long word ("PHOTOGRAPHED", "QUESTIONS") can outrun the viewport no matter
     how the size is tuned. Let them break rather than push the page sideways. */
  h1, h2 { overflow-wrap: break-word; }

  .section-h { font-size: clamp(30px, 8.5vw, 40px); }
  .dealer-band h2 { font-size: clamp(34px, 11vw, 48px); }
  .dealer-band .ctas { flex-wrap: wrap; }

  /* Long CTA labels may wrap rather than force the page wider... */
  .btn { white-space: normal; }
  /* ...except in the nav bar, where wrapping turns the CTA into a three-line
     block that crowds the logo. Shrink it and keep it on one line instead. */
  nav.main .right .btn {
    white-space: nowrap;
    font-size: 10px;
    letter-spacing: 0.1em;
    padding: 10px 12px;
  }
  nav.main .right .btn .arrow { display: none; }
  /* The "Est. Douglas, GA" strapline has no room next to the CTA on a phone. */
  nav.main .logo .word { display: none; }

  footer .grid { grid-template-columns: 1fr; }
  footer .bottom { flex-direction: column; align-items: flex-start; gap: 12px; }
  footer .bottom .links { flex-wrap: wrap; gap: 14px; }

  .marquee .track { font-size: 12px; }
  .marquee-toggle { width: 44px; }
}
