/* The Flooring Guys — components. Semantic tokens only: no raw hex here.
   Verify with:  grep -nE '#[0-9A-Fa-f]{3,6}\b' components.css  → no matches. */

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
/* The page must never pan sideways on a phone. `clip` (not `hidden`) so the
   sticky header keeps working. Belt-and-braces on top of per-element fixes. */
html, body { overflow-x: clip; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  margin: 0; font-family: var(--font-body); font-size: var(--fs-base);
  line-height: var(--lh-body); color: var(--color-text-body);
  background: var(--color-bg-page);
}
img { max-width: 100%; height: auto; display: block; }
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading); color: var(--color-text-heading);
  line-height: var(--lh-tight); margin: 0 0 var(--sp-4);
}
h1 { font-size: var(--fs-3xl); } h2 { font-size: var(--fs-2xl); }
h3 { font-size: var(--fs-xl); } h4 { font-size: var(--fs-lg); }
p { margin: 0 0 var(--sp-4); }
a { color: var(--color-text-link); }
a:hover { color: var(--color-text-link-hover); }
:focus-visible { outline: 3px solid var(--color-focus-ring); outline-offset: 2px; }
.on-dark :focus-visible, .site-header :focus-visible, .site-footer :focus-visible,
.hero :focus-visible, .cta-band :focus-visible, .mobile-bar :focus-visible {
  outline-color: var(--color-focus-ring-inverse);
}

.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--sp-4); }
.section { padding: var(--sp-7) 0; }
.section--alt { background: var(--color-bg-alt); }
.section-kicker {
  color: var(--color-text-accent); font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; font-size: var(--fs-xs); margin: 0 0 var(--sp-2);
}

/* ---------- skip link ---------- */
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--color-bg-page); color: var(--color-text-link);
  padding: var(--sp-3) var(--sp-4); border-radius: var(--radius-sm);
}
.skip-link:focus { left: var(--sp-2); }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: var(--z-header);
  background: var(--color-bg-header); color: var(--color-text-inverse);
}
.site-header .container {
  display: flex; align-items: center; gap: var(--sp-4);
  min-height: 64px;
}
.brand { display: flex; align-items: center; gap: var(--sp-3); text-decoration: none; flex-shrink: 0; }
.brand img { width: 55px; height: 48px; }
.brand-name {
  font-family: var(--font-heading); font-weight: 700;
  color: var(--color-text-inverse); font-size: var(--fs-lg); line-height: 1.1;
  white-space: nowrap;
}
.site-nav { margin-left: auto; }
.site-nav ul { list-style: none; display: flex; gap: var(--sp-2); margin: 0; padding: 0; }
.site-nav a {
  color: var(--color-nav-link); text-decoration: none; font-size: var(--fs-sm);
  padding: var(--sp-2) var(--sp-1); display: inline-block; white-space: nowrap;
}
.site-nav a:hover, .site-nav a[aria-current="page"] { text-decoration: underline; color: var(--color-nav-link); }
.header-phone {
  color: var(--color-text-inverse); text-decoration: none; font-weight: 700;
  font-size: var(--fs-sm); white-space: nowrap; flex-shrink: 0;
}
.site-header .header-cta { flex-shrink: 0; }
.site-header .header-cta { background: var(--color-bg-page); color: var(--color-text-accent); }
.site-header .header-cta:hover { background: var(--color-bg-alt); color: var(--color-text-accent); }
.header-phone:hover { text-decoration: underline; color: var(--color-text-inverse); }

/* buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: var(--touch-target-min); padding: var(--sp-2) var(--sp-5);
  background: var(--color-cta-bg); color: var(--color-cta-text);
  border: 0; border-radius: var(--radius); font-weight: 700;
  font-size: var(--fs-sm); text-decoration: none; cursor: pointer;
  transition: background var(--motion-fast); white-space: nowrap;
}
.btn:hover { background: var(--color-cta-bg-hover); color: var(--color-cta-text); }
.btn--ghost {
  background: transparent; color: var(--color-text-inverse);
  box-shadow: inset 0 0 0 2px var(--color-text-inverse);
}
.btn--ghost:hover { background: rgba(255,255,255,.12); }
.btn--lg { font-size: var(--fs-base); padding: var(--sp-3) var(--sp-6); }

/* mobile nav */
.nav-toggle {
  display: none; background: none; border: 0; color: var(--color-text-inverse);
  min-width: var(--touch-target-min); min-height: var(--touch-target-min);
  font-size: 1.6rem; cursor: pointer; margin-left: auto;
}
@media (max-width: 1151px) {
  .site-nav { display: none; }
  .site-nav.open {
    display: block; position: fixed; inset: 64px 0 0 0;
    background: var(--color-bg-header); z-index: var(--z-nav-panel);
    overflow-y: auto; padding: var(--sp-5);
  }
  .site-nav.open ul { flex-direction: column; gap: 0; }
  .site-nav.open a {
    font-size: var(--fs-lg); padding: var(--sp-3) var(--sp-2); display: block;
  }
  .nav-toggle { display: block; }
  /* Phone + Text + Quote live in the sticky bottom bar on mobile; keeping
     them in the header too overflowed it 160px past the viewport. */
  .header-cta, .site-header .header-phone { display: none; }
}

/* mobile sticky bottom bar */
.mobile-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: var(--z-mobile-bar);
  display: flex; flex-direction: column; background: var(--color-bg-footer); /* stays navy: its Call/Text buttons are teal and would vanish on a teal bar */
  padding: var(--sp-2) var(--sp-2) calc(var(--sp-2) + env(safe-area-inset-bottom));
  gap: var(--sp-2);
}
.mobile-bar a { flex: 1; min-width: 0; padding-left: var(--sp-3); padding-right: var(--sp-3); }
/* The trust line was added to the bar without styles: it inherited body ink on
   the navy bar (~1.3:1, unreadable) and the taller bar hid page content. */
.mobile-bar-trust {
  margin: 0 0 var(--sp-2);
  color: var(--color-text-inverse);
  font-size: var(--fs-xs);
  font-weight: 600;
  line-height: 1.25;
  text-align: center;
  opacity: .92;
}
.mobile-bar-actions { display: flex; gap: var(--sp-2); }
.mobile-bar-actions a { flex: 1; min-width: 0; }
@media (min-width: 1152px) { .mobile-bar { display: none; } }
@media (max-width: 1151px) { body { /* must clear the taller two-row mobile bar (trust line + buttons) */ padding-bottom: 132px; } }

/* ---------- hero ---------- */
/* Owner preference (carried from THG): NO overlay boxes behind hero text.
   The photo itself is brightened at build time; text sits on a bottom
   gradient scrim only as far as legibility needs. */
.hero { position: relative; background: var(--color-bg-header); }
.hero-photo { position: absolute; inset: 0; overflow: hidden; }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
/* Homepage hero only: bias the crop toward the lower half of the photo so
   the LVP floor — the point of the picture — stays in frame at band heights.
   City heroes (.hero--city) keep center crop for their landmark subjects. */
.hero:not(.hero--city) .hero-photo img { object-position: center 68%; }
.hero-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(28,28,34,.72) 0%, rgba(28,28,34,.28) 45%, rgba(28,28,34,.12) 100%);
}
/* Phones crop the hero to its bright upper region; the desktop scrim is too
   light there. Deeper gradient at small widths only — still a scrim, never
   an overlay box (owner rule). */
@media (max-width: 767px) {
  .hero-scrim {
    background: linear-gradient(to top, rgba(28,28,34,.82) 0%, rgba(28,28,34,.55) 45%, rgba(28,28,34,.38) 100%);
  }
}
/* top/bottom only — a shorthand here zeroes .container's side padding and clips text at the viewport edge */
.hero-inner {
  position: relative; padding-top: var(--sp-8); padding-bottom: var(--sp-8); color: var(--color-text-inverse);
  text-shadow: 0 1px 8px rgba(28,28,34,.55);
}
.hero h1 { color: var(--color-text-inverse); font-size: var(--fs-hero); max-width: 18ch; }
/* .section-kicker defaults to the teal accent, which measures ~1:1 contrast
   against the dark hero scrim (found while checking hero--city legibility)
   -- every .hero is a dark/photo background, so its kicker always needs the
   inverse color instead. */
.hero .section-kicker { color: var(--color-text-inverse); }
.hero-sub { font-size: var(--fs-lg); max-width: 46ch; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: var(--sp-3); margin-top: var(--sp-5); }
.proof-chips { display: flex; flex-wrap: wrap; gap: var(--sp-2) var(--sp-4); margin: var(--sp-4) 0 0; padding: 0; list-style: none; font-size: var(--fs-sm); font-weight: 600; }
.proof-chips li { display: flex; align-items: center; gap: var(--sp-2); }
/* filled by JS (data-hero-credit) from /api/gallery's hero — stays hidden
   ([hidden] is the default state baked into the page) when there is no
   hero, so a no-JS or empty-KV visitor never sees an orphan line. */
.hero-credit { color: var(--color-text-inverse); font-size: var(--fs-xs); opacity: .85; margin-top: var(--sp-3); }

/* city-page photo hero (CITY_HERO): owner-supplied photos are ~800-890px
   wide, much smaller than the homepage hero's, so this is capped shorter. */
.hero--city { min-height: 380px; display: flex; align-items: flex-end; }
/* top/bottom only — a shorthand here zeroes .container's side padding and clips text at the viewport edge */
.hero--city .hero-inner { padding-top: var(--sp-7); padding-bottom: var(--sp-6); }
@media (min-width: 1400px) { .hero--city { min-height: 420px; } }
/* These photos are bright, busy sunset/dusk skies behind a short band (vs.
   the homepage hero's much taller photo), so the shared .hero-scrim left
   the h1 below AA contrast against the brightest skies measured in
   browser. Deepened HERE only -- the homepage hero's scrim is unchanged. */
.hero--city .hero-scrim {
  background: linear-gradient(to top, rgba(28, 28, 34, .88) 0%, rgba(28, 28, 34, .58) 45%, rgba(28, 28, 34, .3) 100%);
}

/* /dv-flooring photo hero: DV's own brand photo (bright living room, light
   oak floor in the lower half). Capped shorter than the homepage hero, like
   .hero--city, but keeps its own crop -- the floor needs to stay in frame,
   which is lower than .hero--city's center crop and higher than the
   homepage's default 68%. The selector below repeats .hero (tying its
   specificity with the ".hero:not(.hero--city) .hero-photo img" rule
   above) and relies on appearing later in this file to win the cascade,
   rather than reaching for !important. */
.hero--dv { min-height: 460px; display: flex; align-items: flex-end; }
@media (max-width: 767px) { .hero--dv { min-height: 380px; } }
.hero.hero--dv .hero-photo img { object-position: center 62%; }
/* Transparent PNG wordmark designed to sit on the scrim -- no card/box
   behind it (owner rule: no overlay boxes behind hero text). */
.dv-hero-logo { width: clamp(180px, 26vw, 300px); height: auto; margin: 0 0 var(--sp-4); filter: drop-shadow(0 2px 10px rgba(28,28,34,.5)); }

/* ---------- cards ---------- */
.card-grid { display: grid; gap: var(--sp-5); grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); }
.card {
  background: var(--color-bg-page); border-radius: var(--radius);
  box-shadow: var(--shadow-card); overflow: hidden;
  display: flex; flex-direction: column;
}
.card img { aspect-ratio: 4 / 3; object-fit: cover; width: 100%; }
.card-body { padding: var(--sp-4) var(--sp-4) var(--sp-5); flex: 1; display: flex; flex-direction: column; }
.card h2, .card h3 { font-size: var(--fs-lg); margin-bottom: var(--sp-2); }
.card p { color: var(--color-text-muted); font-size: var(--fs-sm); flex: 1; }
.card-link { font-weight: 700; font-size: var(--fs-sm); text-decoration: none; }
.card-link:hover { text-decoration: underline; }
.card-link::after { content: " \2192"; }

/* homepage "Also serving" line under the city-cards grid */
.city-links { font-size: var(--fs-sm); color: var(--color-text-muted); margin-top: var(--sp-5); }

/* ---------- homepage "Recent Projects" carousel ----------
   Baked empty ([data-proj-carousel] with nothing in it, section starts
   [hidden]); PROJ_CAROUSEL_SCRIPT (build-site.py) fills slides from
   /api/gallery and un-hides the section, or removes the section entirely
   if there's nothing to show. Slides are shown/hidden via display, not
   transform, so there is no sliding-track math to keep from overflowing. */
.proj-carousel { position: relative; overflow: hidden; border-radius: var(--radius); background: var(--color-bg-alt); }
.proj-slide { display: none; }
.proj-slide.is-active { display: block; }
.proj-slide img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; display: block; }
.proj-cap { margin: 0; padding: var(--sp-3); background: var(--color-bg-alt); color: var(--color-text-muted); font-size: var(--fs-sm); }
/* Prev/Next: same "circle button on a photo" language as
   .gallery-lightbox-nav, but dark/translucent-on-photo (inverse text)
   instead of light, since these sit directly over the slide image rather
   than a lightbox's neutral backdrop -- same rgba(28,28,34,...) near-black
   scrim value .hero-scrim already uses for this codebase's one non-token
   color, not a new one. */
.proj-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  min-width: var(--touch-target-min); min-height: var(--touch-target-min);
  background: rgba(28, 28, 34, .55); color: var(--color-text-inverse);
  border: 0; border-radius: 50%; font-size: 1.5rem; line-height: 1; cursor: pointer;
}
.proj-nav:hover { background: rgba(28, 28, 34, .75); }
.proj-nav:focus-visible { outline: 3px solid var(--color-focus-ring-inverse); outline-offset: 2px; }
.proj-nav--prev { left: var(--sp-3); }
.proj-nav--next { right: var(--sp-3); }
@media (max-width: 640px) {
  /* Captions already stack below the photo at every width (no overlay);
     nav buttons keep their fixed 44px target regardless of viewport. */
  .proj-cap { font-size: var(--fs-xs); }
}

/* ---------- CTA band ---------- */
.cta-band { background: var(--color-bg-band); color: var(--color-text-inverse); text-align: center; }
.cta-band h2 { color: var(--color-text-inverse); }
.cta-band .btn { background: var(--color-bg-page); color: var(--color-text-accent); }
.cta-band .btn:hover { background: var(--color-bg-alt); }

/* /dv-flooring promo band, directly under the photo hero -- same teal
   band + inverted button as .cta-band above, just a left-aligned flex row
   (lead line / phone / CTA) instead of centered stacked copy. */
.dv-promo { background: var(--color-bg-band); color: var(--color-text-inverse); padding: var(--sp-5) 0; }
.dv-promo-inner { display: flex; flex-wrap: wrap; align-items: center; gap: var(--sp-4) var(--sp-5); }
.dv-promo-lead { flex: 1 1 340px; margin: 0; }
.dv-promo-meta { margin: 0; font-size: var(--fs-sm); font-weight: 600; }
.dv-promo a { color: var(--color-text-inverse); }
.dv-promo .btn { background: var(--color-bg-page); color: var(--color-text-accent); }
.dv-promo .btn:hover { background: var(--color-bg-alt); }
@media (max-width: 639px) {
  .dv-promo-inner { flex-direction: column; align-items: stretch; }
  .dv-promo .btn { width: 100%; text-align: center; }
}

.trust-line { font-size: var(--fs-xs); font-weight: 600; opacity: .92; margin-top: var(--sp-4); }
.section .trust-line { color: var(--color-text-muted); }

/* ---------- process strip ---------- */
.process { border-top: 4px solid var(--color-bg-accent-rule); }
.process-steps { display: grid; gap: var(--sp-5); grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); counter-reset: step; margin: 0; padding: 0; list-style: none; }
.process-steps li { counter-increment: step; }
.process-steps li::before {
  content: counter(step); display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--color-cta-bg); color: var(--color-cta-text);
  font-weight: 700; margin-bottom: var(--sp-3);
}

/* ---------- review band ---------- */
.review-band blockquote {
  margin: 0; background: var(--color-bg-page); border-radius: var(--radius);
  box-shadow: var(--shadow-card); padding: var(--sp-5);
}
.review-band cite { font-style: normal; font-weight: 700; color: var(--color-text-heading); display: block; margin-top: var(--sp-3); font-size: var(--fs-sm); }
.review-grid { display: grid; gap: var(--sp-5); grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.stars { color: var(--color-text-accent); letter-spacing: .12em; font-size: var(--fs-sm); }

/* ---------- prose (generated page bodies) ---------- */
.prose { max-width: 72ch; }
.prose h2 { margin-top: var(--sp-6); }
.prose h3, .prose h4 { margin-top: var(--sp-5); }
.prose img { border-radius: var(--radius); margin: var(--sp-5) 0; }
.page-hero { background: var(--color-bg-alt); padding: var(--sp-6) 0; }
.page-hero h1 { margin-bottom: var(--sp-2); }
.page-hero .breadcrumbs { font-size: var(--fs-xs); color: var(--color-text-muted); margin: 0; }

/* split: photo + copy, side by side */
.split { display: grid; gap: var(--sp-6); grid-template-columns: 2fr 3fr; align-items: center; }
.split--flip { grid-template-columns: 3fr 2fr; }
.split-photo { border-radius: var(--radius); box-shadow: var(--shadow-raised); width: 100%; }
@media (max-width: 900px) {
  .split, .split--flip { grid-template-columns: 1fr; }
  .split-photo { max-width: 480px; }
}

/* two-column with photo rail */
.prose-layout { display: grid; gap: var(--sp-6); grid-template-columns: minmax(0, 72ch) minmax(220px, 1fr); align-items: start; }
.photo-rail { display: grid; gap: var(--sp-4); }
.photo-rail img { border-radius: var(--radius); box-shadow: var(--shadow-card); }
@media (max-width: 900px) { .prose-layout { grid-template-columns: 1fr; } }

/* figure pairs: a guide page's photo sits directly beside/above the copy
   that references it (e.g. /natural-oak-floor-installations), instead of
   the generic side-rail every other content page uses. Scoped to
   .figure-pair figure and .guide-figure rather than a bare "figure"
   selector so this never restyles a <figure> introduced elsewhere later. */
.figure-pair { display: grid; gap: var(--sp-4); grid-template-columns: 1fr 1fr; margin: var(--sp-5) 0; }
@media (max-width: 640px) { .figure-pair { grid-template-columns: 1fr; } }
.figure-pair figure, .guide-figure { margin: 0; }
.guide-figure { margin: var(--sp-5) 0; }
.figure-pair figure img, .guide-figure img { border-radius: var(--radius); width: 100%; }
.figure-pair figcaption, .guide-figure figcaption { font-size: var(--fs-xs); color: var(--color-text-muted); font-weight: 600; margin-top: var(--sp-1); text-align: center; }

/* ---------- blog ---------- */
.post-meta { color: var(--color-text-muted); font-size: var(--fs-sm); margin-bottom: var(--sp-5); }
.post-list { display: grid; gap: var(--sp-5); grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
.tag-cloud { display: flex; flex-wrap: wrap; gap: var(--sp-2); padding: 0; margin: var(--sp-5) 0 0; list-style: none; }
.tag-cloud a {
  display: inline-block; padding: var(--sp-1) var(--sp-3);
  background: var(--color-bg-alt); border-radius: 999px;
  font-size: var(--fs-xs); text-decoration: none;
}
.tag-cloud a:hover { background: var(--color-bg-band); color: var(--color-text-inverse); }

/* ---------- gallery ---------- */
.gallery-filters { display: flex; flex-wrap: wrap; gap: var(--sp-2); margin-block: var(--sp-5); }
.gallery-filter {
  border: 1px solid var(--color-border-input); border-radius: 999px;
  padding: var(--sp-2) var(--sp-4); background: var(--color-bg-page);
  color: var(--color-text-body); font: inherit; font-size: var(--fs-sm);
  cursor: pointer; min-height: var(--touch-target-min);
}
.gallery-filter[aria-pressed="true"] {
  background: var(--color-cta-bg); color: var(--color-cta-text); border-color: var(--color-cta-bg);
}
.gallery-section[hidden] { display: none; }

.gallery-grid { display: grid; gap: var(--sp-3); grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }
.gallery-grid img { aspect-ratio: 1; object-fit: cover; border-radius: var(--radius-sm); width: 100%; display: block; }
/* People photos: keep heads in frame under the square crop. */
.gallery-grid img.crop-top, .photo-rail img.crop-top { object-position: center 12%; }

.gallery-item { padding: 0; border: 0; background: none; display: block; width: 100%; cursor: zoom-in; }
/* auto-fill already collapses to 1 column on narrow grids, so a span:2 item
   just takes the full row there instead of overflowing -- safe by default. */
@media (min-width: 700px) {
  .gallery-item--wide { grid-column: span 2; }
  .gallery-item--wide img { aspect-ratio: 2 / 1; }
}

/* lightbox: reuses .media-modal/.media-modal-panel/.media-modal-close from
   the Duralast media modal (same overlay, same close button, same
   role="dialog" pattern) -- only the panel's sizing and the prev/next
   buttons are gallery-specific. */
.gallery-lightbox-panel {
  max-width: 90vw; padding: var(--sp-6);
  display: flex; align-items: center; justify-content: center;
}
.gallery-lightbox-img { max-width: 100%; max-height: 80vh; object-fit: contain; display: block; border-radius: var(--radius-sm); }
.gallery-lightbox-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  min-width: var(--touch-target-min); min-height: var(--touch-target-min);
  background: var(--color-bg-page); color: var(--color-text-body);
  border: 0; border-radius: 50%; font-size: 1.5rem; line-height: 1;
  cursor: pointer; box-shadow: var(--shadow-card);
}
.gallery-lightbox-prev { left: var(--sp-3); }
.gallery-lightbox-next { right: var(--sp-3); }

/* ---------- forms ---------- */
.form-grid { display: grid; gap: var(--sp-4); grid-template-columns: 1fr 1fr; max-width: 640px; }
.form-grid .form-field--full { grid-column: 1 / -1; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }
.form-field label { display: block; font-weight: 600; font-size: var(--fs-sm); margin-bottom: var(--sp-1); }
.form-field input, .form-field select, .form-field textarea {
  width: 100%; min-height: var(--touch-target-min);
  padding: var(--sp-2) var(--sp-3); font: inherit;
  border: 1px solid var(--color-border-input); border-radius: var(--radius-sm);
  background: var(--color-bg-page); color: var(--color-text-body);
}
.form-field textarea { min-height: 120px; resize: vertical; }
.form-hint { font-size: var(--fs-xs); color: var(--color-text-muted); margin-top: var(--sp-1); }
.form-error { color: var(--color-error); font-size: var(--fs-sm); font-weight: 600; }
.form-success { padding: var(--sp-5); background: var(--color-bg-alt); border-radius: var(--radius); }

/* ---------- footer ---------- */
.site-footer {
  background: var(--color-bg-footer); color: var(--color-text-inverse);
  padding: var(--sp-7) 0 var(--sp-6); margin-top: var(--sp-8);
}
.footer-cols { display: grid; gap: var(--sp-6); grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
.footer-col-title { font-weight: 700; margin-bottom: var(--sp-3); font-size: var(--fs-sm); text-transform: uppercase; letter-spacing: .05em; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: var(--sp-2); }
.site-footer a { color: var(--color-text-inverse); text-decoration: none; font-size: var(--fs-sm); }
.site-footer a:hover { text-decoration: underline; color: var(--color-text-inverse); }
.footer-legal { margin-top: var(--sp-6); padding-top: var(--sp-4); font-size: var(--fs-xs); opacity: .85; }

/* Tier 2: full-width "Areas we serve" strip below the 4-column grid, above
   the legal line -- replaces the old tall "Areas We Serve" grid column
   (18 city links towered over the other 3 columns). */
.footer-areas { margin-top: var(--sp-6); padding-top: var(--sp-5); border-top: 1px solid rgba(255,255,255,.15); }
.footer-areas-list { margin: 0; font-size: var(--fs-sm); line-height: 1.9; }
.footer-areas-list a { color: var(--color-text-inverse); text-decoration: none; }
.footer-areas-list a:hover { text-decoration: underline; }

/* ---------- duralast colorway swatches ---------- */
.swatch-grid { display: grid; gap: var(--sp-4); grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); }
.color-card {
  background: var(--color-bg-page); border-radius: var(--radius);
  box-shadow: var(--shadow-card); overflow: hidden; position: relative;
}
.color-card img:not(.color-chip) { aspect-ratio: 1 / 1; object-fit: cover; width: 100%; }
.color-chip {
  position: absolute; top: var(--sp-2); right: var(--sp-2);
  width: 56px; height: 56px; border-radius: var(--radius-sm);
  border: 2px solid var(--color-bg-page); object-fit: cover;
}
.color-card-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: var(--sp-2) var(--sp-3);
}
.color-card-row h3 { font-size: var(--fs-base); margin: 0; }

/* The image+name opener button (/duralast only) -- a real <button> so it is
   keyboard-focusable and Enter/Space-activatable for free, reset to look
   like plain card content. The heart button is a SEPARATE sibling (never
   nested inside this one -- a button inside a button is invalid HTML) and
   is absolutely positioned into the same visual row this button renders,
   which is why that row gets right-padding here to clear it. */
.color-card-open {
  display: block; width: 100%; background: none; border: 0; padding: 0; margin: 0;
  font: inherit; text-align: left; color: inherit; cursor: pointer;
}
.color-card-open .color-card-row { padding-right: calc(var(--touch-target-min) + var(--sp-1)); }
.color-card-open:hover h3, .color-card-open:focus-visible h3 { text-decoration: underline; }

.heart-btn {
  position: absolute; right: var(--sp-1); bottom: var(--sp-1);
  background: none; border: 0; cursor: pointer; font-size: 1.5rem;
  color: var(--color-text-muted);
  min-width: var(--touch-target-min); min-height: var(--touch-target-min);
}
.heart-btn.on { color: var(--color-cta-bg); }

/* homepage "featured color" cards: same .color-card shell, but a plain link
   (no heart, no modal) to the color's line on /duralast */
.color-card--link { display: block; text-decoration: none; }
.color-card--link .color-card-row h3 { font-size: var(--fs-base); }
.color-line { color: var(--color-text-muted); font-size: var(--fs-xs); margin: 0; }

/* Homepage featured row: fewer, larger cards than the /duralast wall. */
.swatch-grid[data-featured-grid] { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: var(--sp-5); }
.swatch-grid[data-featured-grid] .color-card img { aspect-ratio: 4 / 3; }
.swatch-grid[data-featured-grid] .color-chip { width: 72px; height: 72px; }
.swatch-grid[data-featured-grid] .color-card-row { padding: var(--sp-3) var(--sp-4); }

/* ---------- DV Flooring catalog (/dv-flooring) ---------- */
/* Positioning context for .heart-btn on a DV color-card -- see
   _dv_color_card_html()/dvCardHTML() in build-site.py for why this wrapper
   exists (keeps the heart anchored to the photo, not pulled down by the
   .dv-price line that follows it). */
.color-card-media { position: relative; }
/* Per-collection spec table -- full width, small text, subtle row rules.
   Wrapped in .table-scroll so a narrow viewport gets a horizontal
   scrollbar on the table instead of squashed, unreadable columns. */
.table-scroll { overflow-x: auto; }
.spec-table {
  width: 100%; min-width: 420px; border-collapse: collapse;
  font-size: var(--fs-sm); margin: var(--sp-4) 0;
}
.spec-table th, .spec-table td {
  text-align: left; padding: var(--sp-2) var(--sp-3);
  border-bottom: 1px solid var(--color-border);
}
.spec-table th { color: var(--color-text-muted); font-weight: 600; white-space: nowrap; }
@media (max-width: 640px) { .spec-table { min-width: 360px; } }

/* Standalone "Specifications" section near the bottom of /dv-flooring --
   one .spec-col per collection, two-up on desktop, stacked on mobile. */
.spec-cols { display: grid; gap: var(--sp-6); grid-template-columns: 1fr 1fr; }
@media (max-width: 800px) { .spec-cols { grid-template-columns: 1fr; } }
.spec-col h3 { margin-bottom: var(--sp-3); }

/* Price line on a .color-card -- bold/accent when a real price is set,
   muted "Request a quote" (never $0.00) when it is not. */
.dv-price { font-weight: 700; color: var(--color-text-accent); font-size: var(--fs-sm); margin: var(--sp-1) var(--sp-3) var(--sp-2); }
.dv-price span { font-weight: 400; color: var(--color-text-muted); }
.dv-price--none { color: var(--color-text-muted); font-weight: 400; }

/* ---------- media modal (/duralast) ---------- */
.media-modal {
  position: fixed; inset: 0; z-index: calc(var(--z-nav-panel) + 1);
  display: flex; align-items: center; justify-content: center;
  background: rgba(28, 28, 34, .72); padding: var(--sp-4);
}
.media-modal[hidden] { display: none; }
.media-modal-panel {
  position: relative; background: var(--color-bg-page); color: var(--color-text-body);
  border-radius: var(--radius); box-shadow: var(--shadow-raised);
  width: 100%; max-width: 640px; max-height: 90vh; overflow-y: auto;
  padding: var(--sp-6) var(--sp-5) var(--sp-5);
}
.media-modal-close {
  position: absolute; top: var(--sp-2); right: var(--sp-2);
  min-width: var(--touch-target-min); min-height: var(--touch-target-min);
  background: none; border: 0; font-size: 1.5rem; line-height: 1;
  color: var(--color-text-muted); cursor: pointer;
}
.media-modal-body { display: grid; gap: var(--sp-4); margin: var(--sp-4) 0; }
.media-modal-body img,
.media-modal-photo { border-radius: var(--radius-sm); width: 100%; display: block; }
.media-modal-swatch { max-width: 200px; }
.media-modal-fav.on { box-shadow: inset 0 0 0 2px var(--color-cta-bg-hover); }

/* click-to-load YouTube facade: a still thumbnail + play glyph until
   clicked, so nothing from youtube.com/ytimg.com ever loads on page load */
.yt-facade {
  position: relative; display: block; width: 100%; aspect-ratio: 16 / 9;
  padding: 0; border: 0; border-radius: var(--radius-sm); overflow: hidden;
  cursor: pointer; background: var(--color-bg-header);
}
.yt-facade img { width: 100%; height: 100%; object-fit: cover; display: block; }
.yt-facade span {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem; color: var(--color-text-inverse); text-shadow: 0 1px 8px rgba(28, 28, 34, .6);
}
.yt-embed { aspect-ratio: 16 / 9; }
.yt-embed iframe { width: 100%; height: 100%; border: 0; border-radius: var(--radius-sm); }

/* sticky "your list" bar, above .mobile-bar on small screens */
.fav-bar {
  position: fixed; bottom: 76px; left: 0; right: 0;
  z-index: calc(var(--z-mobile-bar) + 1);
  background: var(--color-bg-band); color: var(--color-text-inverse);
  display: flex; align-items: center; justify-content: center;
  gap: var(--sp-4); padding: var(--sp-2) var(--sp-4);
}
@media (min-width: 1152px) { .fav-bar { bottom: 0; } }
.fav-bar .btn { background: var(--color-bg-page); color: var(--color-text-accent); }
.fav-bar[hidden] { display: none; }

/* ---------- /admin: catalog editor ---------- */
.admin-line { margin-bottom: var(--sp-7); }
.admin-rows { border-top: 1px solid var(--color-border); }
.admin-row {
  display: grid; grid-template-columns: 64px minmax(160px, 1fr);
  gap: var(--sp-1) var(--sp-3); align-items: center;
  padding: var(--sp-3) 0; border-bottom: 1px solid var(--color-border);
}
.admin-row-thumb {
  grid-row: 1 / 3; width: 64px; height: 64px; object-fit: cover;
  border-radius: var(--radius-sm); background: var(--color-bg-alt);
}
.admin-row-name { grid-column: 2; }
.admin-row-controls {
  grid-column: 2; display: flex; flex-wrap: wrap; align-items: center;
  gap: var(--sp-1) var(--sp-3); font-size: var(--fs-xs); color: var(--color-text-muted);
}
.admin-row-controls label { display: inline-flex; align-items: center; gap: var(--sp-1); white-space: nowrap; }
.admin-row-name, .admin-yt-add input[type="text"] {
  min-height: var(--touch-target-min); padding: var(--sp-2) var(--sp-3);
  border: 1px solid var(--color-border-input); border-radius: var(--radius-sm);
  background: var(--color-bg-page); color: var(--color-text-body); font: inherit;
}

/* per-color media (extra photos + YouTube) sub-panel, toggled open by the
   row's "Media (N)" button */
.admin-media-panel {
  grid-column: 2; margin-top: var(--sp-2); padding: var(--sp-3);
  background: var(--color-bg-alt); border-radius: var(--radius-sm);
  display: flex; flex-direction: column; gap: var(--sp-3);
}
.admin-media-panel[hidden] { display: none; }
.admin-media-list { display: flex; flex-wrap: wrap; gap: var(--sp-3); margin: 0; }
.admin-media-item {
  display: flex; align-items: center; gap: var(--sp-2);
  font-size: var(--fs-xs); color: var(--color-text-muted);
}
.admin-media-item img { width: 48px; height: 48px; object-fit: cover; border-radius: var(--radius-sm); }
.admin-yt-add { display: flex; flex-wrap: wrap; align-items: center; gap: var(--sp-2); }
.admin-yt-add input[type="text"] { min-width: 220px; }

/* sticky save bar, above .mobile-bar on small screens -- same treatment as
   .fav-bar on /duralast */
.admin-bar {
  position: fixed; bottom: 76px; left: 0; right: 0;
  z-index: calc(var(--z-mobile-bar) + 1);
  background: var(--color-bg-band); color: var(--color-text-inverse);
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: var(--sp-4); padding: var(--sp-2) var(--sp-4);
}
@media (min-width: 1152px) { .admin-bar { bottom: 0; } }
.admin-bar .btn { background: var(--color-bg-page); color: var(--color-text-accent); }
#admin-status { font-size: var(--fs-xs); font-weight: 600; }

/* ---------- /admin: homepage gallery & hero editor ----------
   Same grid shape as .admin-row above -- thumbnail + fields in one column,
   a controls row below spanning the same column. */
.admin-gal-row {
  display: grid; grid-template-columns: 64px minmax(160px, 1fr);
  gap: var(--sp-1) var(--sp-3); align-items: start;
  padding: var(--sp-3) 0; border-bottom: 1px solid var(--color-border);
}
.admin-gal-row-thumb {
  grid-row: 1 / 3; width: 64px; height: 64px; object-fit: cover;
  border-radius: var(--radius-sm); background: var(--color-bg-alt);
}
.admin-gal-row-fields {
  grid-column: 2; display: grid; gap: var(--sp-2);
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
}
.admin-gal-row-fields label { display: block; font-size: var(--fs-xs); color: var(--color-text-muted); }
.admin-gal-row-fields input[type="text"] {
  display: block; width: 100%; min-height: var(--touch-target-min);
  padding: var(--sp-2) var(--sp-3); margin-top: var(--sp-1);
  border: 1px solid var(--color-border-input); border-radius: var(--radius-sm);
  background: var(--color-bg-page); color: var(--color-text-body); font: inherit;
}
.admin-gal-row-controls {
  grid-column: 2; display: flex; flex-wrap: wrap; align-items: center;
  gap: var(--sp-1) var(--sp-3); margin-top: var(--sp-2);
  font-size: var(--fs-xs); color: var(--color-text-muted);
}
.admin-gal-row-controls label { display: inline-flex; align-items: center; gap: var(--sp-1); white-space: nowrap; }

/* library picker: photo checkboxes over every /gallery section photo */
.admin-gal-lib {
  display: grid; gap: var(--sp-3); margin: var(--sp-4) 0;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
}
.admin-gal-lib label {
  display: flex; flex-direction: column; gap: var(--sp-1);
  font-size: var(--fs-xs); color: var(--color-text-muted); cursor: pointer;
}
.admin-gal-lib img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--radius-sm); }

/* Save-gallery row: same dark/inverse treatment as .admin-bar (so the
   default .btn--ghost, meant for dark backgrounds, reads correctly) but
   inline rather than fixed -- it sits in a light section, and a second
   fixed bar would stack on top of .admin-bar's. */
.admin-gal-actions {
  display: flex; flex-wrap: wrap; align-items: center; gap: var(--sp-4);
  margin-top: var(--sp-5); padding: var(--sp-3) var(--sp-4);
  background: var(--color-bg-band); color: var(--color-text-inverse); border-radius: var(--radius);
}
#admin-gal-status { font-size: var(--fs-xs); font-weight: 600; }

/* ---------- /admin: blog posts editor ----------
   Same grid shape as .admin-row/.admin-gal-row -- thumbnail + fields in
   one column, a controls row below spanning the same column. Fields grid
   is wider than the gallery editor's (title/slug/date/author/excerpt/body/
   alt vs. four short strings), so full-width fields (excerpt, body, alt)
   opt in with .admin-post-field--full. */
.admin-post-row {
  display: grid; grid-template-columns: 64px minmax(200px, 1fr);
  gap: var(--sp-1) var(--sp-3); align-items: start;
  padding: var(--sp-4) 0; border-bottom: 1px solid var(--color-border);
}
.admin-post-row-thumb {
  grid-row: 1 / 3; width: 64px; height: 64px; object-fit: cover;
  border-radius: var(--radius-sm); background: var(--color-bg-alt);
}
.admin-post-row-fields {
  grid-column: 2; display: grid; gap: var(--sp-2);
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}
.admin-post-row-fields label { display: block; font-size: var(--fs-xs); color: var(--color-text-muted); }
.admin-post-row-fields input[type="text"],
.admin-post-row-fields input[type="date"],
.admin-post-row-fields textarea {
  display: block; width: 100%; min-height: var(--touch-target-min);
  padding: var(--sp-2) var(--sp-3); margin-top: var(--sp-1);
  border: 1px solid var(--color-border-input); border-radius: var(--radius-sm);
  background: var(--color-bg-page); color: var(--color-text-body); font: inherit;
}
.admin-post-row-fields textarea { min-height: 96px; resize: vertical; }
.admin-post-field--full { grid-column: 1 / -1; }
.admin-post-row-controls {
  grid-column: 2; display: flex; flex-wrap: wrap; align-items: center;
  gap: var(--sp-1) var(--sp-3); margin-top: var(--sp-2);
  font-size: var(--fs-xs); color: var(--color-text-muted);
}
.admin-post-row-controls label { display: inline-flex; align-items: center; gap: var(--sp-1); white-space: nowrap; }
.admin-post-row-controls select {
  min-height: var(--touch-target-min); padding: var(--sp-2) var(--sp-3);
  border: 1px solid var(--color-border-input); border-radius: var(--radius-sm);
  background: var(--color-bg-page); color: var(--color-text-body); font: inherit;
}

/* Save-posts row: same dark/inverse treatment as .admin-gal-actions. */
.admin-post-actions {
  display: flex; flex-wrap: wrap; align-items: center; gap: var(--sp-4);
  margin-top: var(--sp-5); padding: var(--sp-3) var(--sp-4);
  background: var(--color-bg-band); color: var(--color-text-inverse); border-radius: var(--radius);
}
#admin-post-status { font-size: var(--fs-xs); font-weight: 600; }

/* ---------- /admin: DV Flooring catalog editor ----------
   Reuses .admin-row/.admin-row-controls (via a second class on the same
   elements) for the shared grid shape; these rules only add what's
   different -- a read-only name instead of an input, and the per-color/
   per-collection price fields. */
.admin-dv-name { font-weight: 600; color: var(--color-text-heading); }
.admin-dv-price-input {
  width: 90px; min-height: var(--touch-target-min);
  padding: var(--sp-2) var(--sp-3);
  border: 1px solid var(--color-border-input); border-radius: var(--radius-sm);
  background: var(--color-bg-page); color: var(--color-text-body); font: inherit;
}
.admin-dv-default-price {
  display: flex; align-items: center; gap: var(--sp-2);
  font-size: var(--fs-sm); font-weight: 600; margin: var(--sp-3) 0;
}
.admin-dv-default-price input {
  width: 90px; min-height: var(--touch-target-min);
  padding: var(--sp-2) var(--sp-3);
  border: 1px solid var(--color-border-input); border-radius: var(--radius-sm);
  background: var(--color-bg-page); color: var(--color-text-body); font: inherit;
}
/* Save-DV-catalog row: same dark/inverse treatment as .admin-gal-actions/
   .admin-post-actions. */
.admin-dv-actions {
  display: flex; flex-wrap: wrap; align-items: center; gap: var(--sp-4);
  margin-top: var(--sp-5); padding: var(--sp-3) var(--sp-4);
  background: var(--color-bg-band); color: var(--color-text-inverse); border-radius: var(--radius);
}
#admin-dv-status { font-size: var(--fs-xs); font-weight: 600; }

/* ---------- 404 ---------- */
.error-page { text-align: center; padding: var(--sp-8) 0; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}

/* ---------- /admin: day-by-day reach desk ---------- */
.reach-wrap { overflow-x: auto; margin-top: var(--sp-4); }
.reach-table {
  width: 100%; border-collapse: collapse; font-size: var(--fs-sm);
}
.reach-table th, .reach-table td {
  padding: var(--sp-2) var(--sp-3); text-align: right;
  border-bottom: 1px solid var(--color-border); white-space: nowrap;
}
.reach-table thead th {
  text-align: right; font-size: var(--fs-xs); color: var(--color-text-muted);
  font-weight: 600;
}
.reach-table tbody th[scope="row"] {
  text-align: left; font-weight: 600; color: var(--color-text-heading);
}
#reach-status { font-size: var(--fs-xs); font-weight: 600; margin-top: var(--sp-3); }

/* ---------- /admin: split panes (Reach | Catalog | Gallery | Posts) ---------- */
.admin-tabs {
  display: flex; flex-wrap: wrap; gap: var(--sp-1);
  margin: var(--sp-6) 0 var(--sp-5);
  border-bottom: 2px solid var(--color-border);
}
.admin-tab {
  appearance: none; background: none; border: 0;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  min-height: var(--touch-target-min);
  padding: var(--sp-2) var(--sp-4);
  font: inherit; font-weight: 600;
  color: var(--color-text-muted);
  cursor: pointer;
}
.admin-tab:hover { color: var(--color-text-heading); }
.admin-tab.is-active {
  color: var(--color-text-heading);
  border-bottom-color: var(--color-bg-band);
}
.admin-pane[hidden] { display: none !important; }
.admin-bar[hidden] { display: none !important; }
.admin-kpis {
  display: grid; gap: var(--sp-4);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: var(--sp-4) 0 var(--sp-5);
}
@media (max-width: 700px) { .admin-kpis { grid-template-columns: 1fr; } }
.admin-kpi {
  background: var(--color-bg-alt);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: var(--sp-4);
}
.admin-kpi-label {
  margin: 0;
  font-size: var(--fs-xs); font-weight: 600;
  letter-spacing: .04em; text-transform: uppercase;
  color: var(--color-text-muted);
}
.admin-kpi-value {
  margin: var(--sp-1) 0;
  font-family: var(--font-heading);
  font-size: var(--fs-3xl); font-weight: 700; line-height: var(--lh-tight);
  color: var(--color-text-heading);
}
.admin-kpi-sub {
  margin: 0;
  font-size: var(--fs-xs);
  color: var(--color-text-muted);
}

/* ---------- /admin dedicated desk chrome (no public header/nav/footer) ---------- */
body.desk {
  margin: 0;
  background: var(--color-bg-alt);
  color: var(--color-text-body);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}
body.desk .desk-wrap {
  max-width: 1280px;
  margin-inline: auto;
  padding: 1.5rem 1.25rem 6rem;
}
body.desk .desk-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}
body.desk .desk-brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
body.desk .desk-brand img {
  width: 55px; height: 48px; object-fit: contain;
}
body.desk .desk-top h1 {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  color: var(--color-text-heading);
}
body.desk .desk-sub {
  margin: 0.2rem 0 0;
  color: var(--color-text-muted);
  font-size: 0.84rem;
}
body.desk .desk-sub a { color: var(--color-text-accent); text-decoration: none; }
body.desk .desk-sub a:hover { text-decoration: underline; }

body.desk .section,
body.desk .section--alt {
  padding: 0;
  background: transparent;
}
body.desk .container {
  max-width: none;
  padding: 0;
  margin: 0;
}

body.desk .admin-tabs {
  display: flex;
  gap: 0.35rem;
  flex-wrap: wrap;
  background: var(--color-bg-page);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 0.3rem;
  margin: 1rem 0;
  box-shadow: var(--shadow-card);
}
body.desk .admin-tab {
  appearance: none;
  background: transparent;
  border: 0;
  border-bottom: 0;
  margin-bottom: 0;
  min-height: 40px;
  padding: 0.5rem 0.95rem;
  border-radius: 9px;
  font: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text-muted);
  cursor: pointer;
}
body.desk .admin-tab:hover { color: var(--color-text-heading); }
body.desk .admin-tab.is-active {
  background: var(--color-cta-bg);
  color: var(--color-cta-text);
  border-bottom-color: transparent;
}

body.desk .admin-kpis {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(232px, 1fr));
  margin: 0 0 1.25rem;
}
body.desk .admin-kpi {
  background: var(--color-bg-page);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  box-shadow: var(--shadow-card);
  padding: 1.15rem 1.2rem;
}
body.desk .admin-kpi-label {
  font-size: 0.8rem;
  letter-spacing: 0.01em;
  text-transform: none;
}
body.desk .admin-kpi-value {
  font-family: var(--font-body);
  font-size: 2.1rem;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
  margin: 0.35rem 0 0;
}
body.desk .desk-card {
  background: var(--color-bg-page);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  box-shadow: var(--shadow-card);
  padding: 1.3rem;
  margin: 0 0 1.5rem;
}
body.desk .desk-card h2 {
  margin: 0 0 0.2rem;
  font-family: var(--font-body);
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  color: var(--color-text-heading);
}

body.desk .admin-bar {
  bottom: 0;
}
@media (min-width: 1152px) { body.desk .admin-bar { bottom: 0; } }
