/* ============================================================
   DSCAPES — STYLESHEET v0.2
   Brand directive: BOLD. SHARP. UNAPOLOGETIC.
   Three colors. Two typefaces. Zero rounded corners.
   ============================================================ */

/* ---------- DESIGN TOKENS ---------- */
:root {
  /* Brand — three colors, period. */
  --red:       #C41230;   /* D Scapes Red — primary accent, CTAs, brand moments */
  --asphalt:   #1A1A1A;   /* near-black — primary text, dark backgrounds */
  --concrete:  #F5F1EA;   /* warm cream — default page background */
  --white:     #FFFFFF;   /* contained cards / contrast inserts only */

  /* Functional aliases */
  --bg:        var(--concrete);
  --text:      var(--asphalt);
  --accent:    var(--red);

  /* Typography */
  --font-display: 'Anton', 'Oswald', 'Bebas Neue', 'Impact', sans-serif;
  --font-body:    'Inter', 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Type scale (display = condensed bold caps; body = inter regular/medium) */
  --fs-display-hero:  clamp(64px, 6vw + 32px, 144px);
  --fs-display-xl:    clamp(52px, 4vw + 24px, 96px);
  --fs-display-lg:    clamp(40px, 3vw + 20px, 72px);
  --fs-display-md:    clamp(28px, 1.5vw + 18px, 40px);
  --fs-display-sm:    clamp(20px, 0.6vw + 16px, 24px);
  --fs-body-lg:       clamp(18px, 0.3vw + 16px, 22px);
  --fs-body:          clamp(17px, 0.2vw + 16px, 19px);
  --fs-body-sm:       15px;
  --fs-label:         14px;

  /* Layout */
  --page-max:    1440px;
  --content-max: 1200px;
  --prose-max:   720px;

  /* Spacing — generous */
  --pad-section-d: 160px;  /* desktop section vertical padding */
  --pad-section-m: 100px;  /* mobile section vertical padding */
  --pad-x:         24px;   /* horizontal padding mobile */
  --pad-x-d:       40px;   /* horizontal padding desktop */
  --gap-1:  4px;
  --gap-2:  8px;
  --gap-3:  16px;
  --gap-4:  24px;
  --gap-5:  32px;
  --gap-6:  48px;
  --gap-7:  64px;
  --gap-8:  96px;

  /* Header */
  --header-h: 80px;

  /* Transitions — instant snap, never soft */
  --snap: 0s;
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; border-radius: 0; }
/* overflow-x: hidden on html stops mobile horizontal scroll. NOTE: do NOT
   add position: relative or max-width: 100vw to body — those create a
   containing block for position: fixed children, which breaks the slide-in
   nav menu (it gets clipped to body width instead of viewport). */
html { -webkit-text-size-adjust: 100%; overflow-x: hidden; }
body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.6;
  color: var(--asphalt);
  background: var(--concrete);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, picture, svg, video { display: block; max-width: 100%; height: auto; border-radius: 0; }
button, input, select, textarea { font: inherit; color: inherit; border-radius: 0; }
button { cursor: pointer; background: none; border: 0; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 400;            /* Anton has only one weight; reads as bold */
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1.0;
  color: var(--asphalt);
  /* Force long display headlines to wrap inside their container instead
     of pushing the page wider than the viewport on narrow screens. */
  overflow-wrap: break-word;
  word-break: break-word;
  hyphens: auto;
}
h1 { font-size: var(--fs-display-hero); letter-spacing: -0.02em; }
h2 { font-size: var(--fs-display-xl);   letter-spacing: -0.015em; }
h3 { font-size: var(--fs-display-lg);   letter-spacing: -0.01em; }
h4 { font-size: var(--fs-display-md); }
h5 { font-size: var(--fs-display-sm); letter-spacing: 0.05em; }
p  { font-size: var(--fs-body); max-width: var(--prose-max); }
.lead { font-size: var(--fs-body-lg); max-width: var(--prose-max); }

.text-red    { color: var(--red); }
.text-white  { color: var(--white); }
.text-light  { color: var(--concrete); }

em, i { font-style: normal; color: var(--red); }   /* never italic — use red */
strong { font-weight: 600; }

/* ---------- LAYOUT PRIMITIVES ---------- */
.page {
  width: 100%;
  max-width: var(--page-max);
  margin-inline: auto;
}
.container {
  width: 100%;
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: var(--pad-x);
}
@media (min-width: 880px) {
  .container { padding-inline: var(--pad-x-d); }
}
section { padding-block: var(--pad-section-m); }
@media (min-width: 880px) {
  section { padding-block: var(--pad-section-d); }
}

/* ---------- THE RED LINE (recurring brand element) ---------- */
.redline {
  display: block;
  width: 88px;
  height: 6px;
  background: var(--red);
  margin-bottom: var(--gap-4);
}
.redline-lg { width: 160px; height: 8px; }
.redline-sm { width: 56px; height: 4px; }

/* Section label — red line + spaced uppercase text */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: var(--gap-3);
  font-family: var(--font-body);
  font-size: var(--fs-label);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: var(--gap-4);
}
.section-label::before {
  content: '';
  display: block;
  width: 64px;
  height: 4px;
  background: var(--red);
  flex-shrink: 0;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 18px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 20px 36px;
  min-width: 220px;
  min-height: 60px;
  border-radius: 0;
  border: 0;
  background: var(--red);
  color: var(--white);
  transition: background var(--snap), color var(--snap);
  white-space: nowrap;
}
.btn:hover { background: var(--asphalt); color: var(--white); }

.btn-secondary {
  background: transparent;
  color: var(--asphalt);
  border: 2px solid var(--asphalt);
  padding: 18px 34px;
}
.btn-secondary:hover { background: var(--asphalt); color: var(--white); }

.btn-on-dark {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-on-dark:hover { background: var(--white); color: var(--asphalt); }

/* Mobile: full-width, 56px tall */
@media (max-width: 640px) {
  .btn {
    width: 100%;
    min-height: 56px;
    padding: 18px 24px;
    font-size: 16px;
  }
}

/* Tertiary inline link */
.link-red {
  color: var(--asphalt);
  border-bottom: 1px solid var(--red);
  padding-bottom: 2px;
  transition: color var(--snap), border-color var(--snap), border-width var(--snap);
  font-weight: 500;
}
.link-red:hover { color: var(--red); border-bottom-width: 2px; }

/* ---------- HEADER ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--header-h);
  background: var(--concrete);
  border-bottom: 1px solid transparent;
  transition: border-color var(--snap), transform 280ms ease;
  /* DO NOT add will-change: transform here.
   * `will-change: transform` makes this element a containing block for any
   * position:fixed descendants — even when transform is currently `none`.
   * That trapped the slide-in nav drawer (.nav-links is fixed and lives
   * inside this header), causing it to render inside the 80px header box
   * with page content bleeding through underneath.  The transform animation
   * works fine without will-change; modern browsers GPU-composite anyway. */
}
.site-header.scrolled { border-bottom: 1px solid var(--asphalt); }
/* Smart sticky: JS adds .header-hidden to <body> when scrolling DOWN past
   the threshold. Removing the class slides the header back into view. */
body.header-hidden .site-header { transform: translateY(-100%); }
/* CRITICAL: when the slide-in nav drawer is open, force the header's
   transform OFF. Otherwise the header's translateY creates a containing
   block that traps .nav-links (which is fixed inside it) — the drawer
   ends up only 80px tall and page content bleeds through. */
body.nav-open .site-header { transform: none !important; }
.nav {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--gap-5);
}
.brand {
  font-family: var(--font-display);
  font-size: 28px;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--asphalt);
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1;
}
/* Red mark before wordmark — hidden when a real logo image takes over */
.brand .brand-mark {
  display: block;
  width: 24px;
  height: 6px;
  background: var(--red);
  flex-shrink: 0;
}
.brand .wordmark { display: inline-block; }
.brand .logo-img {
  display: block;
  max-height: 64px;
  width: auto;
  /* Hidden until manifest loads a real file */
}
@media (max-width: 880px) {
  .brand .logo-img { max-height: 52px; }
}
.brand .logo-img:not(.img-loaded) { display: none; }
/* When logo image loaded, hide the wordmark fallback */
.brand:has(.logo-img.img-loaded) .brand-mark,
.brand:has(.logo-img.img-loaded) .wordmark { display: none; }
.nav-links {
  display: flex;
  align-items: center;
  gap: var(--gap-6);
}
.nav-links a {
  font-family: var(--font-body);
  font-size: var(--fs-label);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--asphalt);
  position: relative;
  padding-block: 4px;
}
.nav-links a:hover { color: var(--red); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 3px;
  background: var(--red);
}
.nav-cta {
  background: var(--red);
  color: var(--white) !important;
  padding: 14px 24px !important;
  letter-spacing: 0.08em !important;
  min-height: 0;
}
.nav-cta:hover { background: var(--asphalt); color: var(--white) !important; }

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  color: var(--asphalt);
}
.nav-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background: currentColor;
  transition: transform var(--snap), opacity var(--snap);
}
.nav-toggle span + span { margin-top: 6px; }
.nav-open .nav-toggle span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

@media (max-width: 960px) {
  .nav-toggle { display: block; }
  .nav-links {
    /* JS teleports this element to be a direct <body> child on DOMContentLoaded
     * so position:fixed computes against the viewport, not the header's box.
     * inset: 0 covers the whole viewport; padding-top: var(--header-h) leaves
     * an 80px transparent strip at the top so the actual header still shows
     * through on top. 100dvh on iOS uses the dynamic viewport (no URL bar). */
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100vh;             /* fallback */
    height: 100dvh;            /* iOS Safari: small dynamic viewport */
    background: var(--asphalt);
    background-color: #1a1a1a; /* hex fallback in case CSS var fails */
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: calc(var(--header-h) + var(--gap-5)) var(--pad-x) var(--gap-6);
    transform: translateX(100%);
    transition: transform 0.18s ease-out;
    overflow-y: auto;
    /* Above .site-header (100), .lightbox (200), .mobile-cta (90), and any
     * in-page positioned content. Only the qmodal (300) sits above. */
    z-index: 250;
  }
  .nav-links a {
    display: block;
    width: 100%;
    padding: var(--gap-3) 0;
    font-family: var(--font-display);
    font-size: 32px;
    letter-spacing: 0.02em;
    color: var(--concrete);
    border-bottom: 1px solid rgba(245,241,234,0.15);
  }
  .nav-links a.active::after { display: none; }
  .nav-links a.active { color: var(--red); }
  .nav-cta {
    margin-top: var(--gap-5);
    padding: 18px 24px !important;
    width: 100%;
    text-align: center;
    color: var(--white) !important;
  }
  .nav-open .nav-links { transform: translateX(0); }
  body.nav-open { overflow: hidden; }
  /* Drawer close button — injected by JS at the top-right of the drawer.
     The hamburger toggle is in the header and gets hidden under the open
     drawer, so this is the user's primary way to dismiss the menu. */
  .nav-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 48px;
    height: 48px;
    background: transparent;
    color: var(--concrete);
    font-size: 36px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(245,241,234,0.25);
    cursor: pointer;
    z-index: 2;
  }
  .nav-close:hover { background: var(--red); border-color: var(--red); color: var(--white); }
}
/* Hide the close button on desktop — drawer isn't even visible there */
@media (min-width: 961px) {
  .nav-close { display: none; }
}

/* ---------- HERO (sitewide pattern) ---------- */
.hero {
  position: relative;
  background: var(--asphalt);
  color: var(--concrete);
  padding-top: calc(var(--header-h) + var(--gap-7));
  padding-bottom: var(--pad-section-m);
  overflow: hidden;
  min-height: 88vh;          /* fallback */
  min-height: 88svh;         /* iOS Safari: small viewport, doesn't jump on URL bar collapse */
  display: flex;
  align-items: center;
}
/* Full-bleed photo background, left-to-right asphalt fade for legibility */
.hero-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: var(--asphalt);
  background-size: cover;
  background-position: center;
}
.hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg,
      var(--asphalt) 0%,
      rgba(26,26,26,0.85) 35%,
      rgba(26,26,26,0.55) 65%,
      rgba(26,26,26,0.35) 100%
    );
}
@media (max-width: 880px) {
  .hero-image::after {
    background:
      linear-gradient(180deg,
        rgba(26,26,26,0.6) 0%,
        rgba(26,26,26,0.85) 60%,
        var(--asphalt) 100%
      );
  }
}
@media (min-width: 880px) {
  .hero { padding-bottom: var(--pad-section-d); min-height: 92vh; min-height: 92svh; }
}
.hero .container { position: relative; z-index: 2; width: 100%; }
.hero h1 {
  color: var(--concrete);
  margin-bottom: var(--gap-5);
  max-width: 16ch;
  font-size: clamp(64px, 5vw + 32px, 128px);
  line-height: 0.95;
  overflow-wrap: break-word;
  hyphens: none;
}
@media (max-width: 880px) {
  .hero h1 { max-width: none; font-size: clamp(56px, 9vw + 8px, 88px); }
}
.hero h1 .red-line-2 {
  display: block;
  color: var(--red);
}
.hero p {
  font-size: var(--fs-body-lg);
  color: var(--concrete);
  opacity: 0.85;
  max-width: 56ch;
  margin-bottom: var(--gap-6);
}
.hero .btn { margin-top: var(--gap-3); }

/* Trust strip directly under hero */
.trust-strip {
  background: var(--asphalt);
  border-top: 1px solid rgba(245,241,234,0.15);
  color: var(--concrete);
  padding-block: var(--gap-6);
}
.trust-strip .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.trust-block {
  padding-inline: var(--gap-4);
  border-left: 1px solid rgba(245,241,234,0.2);
  min-width: 0;             /* let grid cells shrink below content size */
}
.trust-block:first-child { border-left: 0; padding-left: 0; }
.trust-block strong { word-break: break-word; }
.trust-block strong {
  display: block;
  font-family: var(--font-display);
  font-size: var(--fs-display-md);
  font-weight: 400;
  color: var(--white);
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}
.trust-block span {
  font-size: var(--fs-label);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--concrete);
  opacity: 0.7;
}
@media (max-width: 880px) {
  .trust-strip .container { grid-template-columns: repeat(2, 1fr); gap: var(--gap-5) 0; }
  .trust-block:nth-child(3) { border-left: 0; padding-left: 0; }
}

/* Page hero (interior) — same skeleton, less tall */
.page-hero {
  background: var(--asphalt);
  color: var(--concrete);
  padding-top: calc(var(--header-h) + var(--gap-7));
  padding-bottom: var(--gap-8);
}
.page-hero h1 { color: var(--concrete); margin-bottom: var(--gap-4); max-width: 18ch; }
.page-hero h1 .red-line-2 { display: block; color: var(--red); }
.page-hero .lead { color: var(--concrete); opacity: 0.8; }
.page-hero .section-label { color: var(--red); margin-bottom: var(--gap-5); }
.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: var(--fs-label);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245,241,234,0.5);
  margin-bottom: var(--gap-5);
}
.breadcrumbs a:hover { color: var(--red); }

/* ---------- SECTION HEAD ---------- */
.section-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--gap-5);
  margin-bottom: var(--gap-7);
  align-items: end;
}
@media (min-width: 880px) {
  .section-head { grid-template-columns: minmax(0, 2fr) minmax(0, 1fr); gap: var(--gap-6); }
  .section-head.center { grid-template-columns: 1fr; }
}
.section-head h2 { max-width: 16ch; overflow-wrap: break-word; }
@media (max-width: 880px) {
  .section-head h2 { max-width: none; font-size: clamp(40px, 6vw + 20px, 64px); }
  .page-hero h1 { font-size: clamp(48px, 7vw + 12px, 80px); }
  .cta-strip h2 { font-size: clamp(36px, 5vw + 16px, 56px); max-width: none; }
}
.section-head .lead { font-size: var(--fs-body); color: var(--asphalt); opacity: 0.8; }

/* ---------- TRUST / NUMBERED BLOCKS ---------- */
.numbered {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--asphalt);
}
@media (min-width: 880px) {
  .numbered { grid-template-columns: repeat(4, 1fr); }
}
.num-item {
  padding: var(--gap-6) var(--gap-4);
  border-bottom: 1px solid var(--asphalt);
}
@media (min-width: 880px) {
  .num-item { border-bottom: 0; border-right: 1px solid var(--asphalt); padding: var(--gap-7) var(--gap-5); }
  .num-item:last-child { border-right: 0; }
}
.num-item .num {
  display: block;
  font-family: var(--font-display);
  font-size: var(--fs-display-lg);
  color: var(--red);
  margin-bottom: var(--gap-3);
  line-height: 0.9;
}
.num-item h4 {
  font-size: var(--fs-display-md);
  margin-bottom: var(--gap-2);
}
.num-item p {
  font-size: var(--fs-body-sm);
  opacity: 0.8;
}

/* ---------- SERVICE CARDS (sharp boxed) ---------- */
/* Border-collapse approach: outer grid has top + left borders, each card has
   right + bottom borders. Result: every card has all 4 sides without overlap,
   works cleanly in any column count (mobile 1-up, desktop 3-up). */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--asphalt);
  border-left: 1px solid var(--asphalt);
}
@media (min-width: 880px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
}
.service-card {
  position: relative;
  padding: var(--gap-6);
  background: var(--concrete);
  border-right: 1px solid var(--asphalt);
  border-bottom: 1px solid var(--asphalt);
  display: flex;
  flex-direction: column;
  min-height: 380px;
  transition: background var(--snap), color var(--snap);
}
@media (max-width: 880px) {
  .service-card { min-height: 0; padding: var(--gap-5); }
}
.service-card:hover {
  background: var(--asphalt);
  color: var(--concrete);
}
.service-card:hover h3,
.service-card:hover .service-best { color: var(--concrete); }
.service-card:hover .service-best { color: var(--red); }
.service-card:hover .link-red { color: var(--concrete); border-color: var(--red); }
.service-num {
  font-family: var(--font-display);
  font-size: var(--fs-label);
  letter-spacing: 0.2em;
  color: var(--red);
  margin-bottom: var(--gap-4);
}
.service-card h3 {
  font-size: 32px;
  text-transform: uppercase;
  margin-bottom: var(--gap-3);
  line-height: 1.0;
}
.service-best {
  display: block;
  font-family: var(--font-body);
  font-size: var(--fs-body-sm);
  color: var(--red);
  font-weight: 500;
  margin-bottom: var(--gap-4);
}
.service-card p {
  font-size: var(--fs-body);
  margin-bottom: var(--gap-5);
}
.service-card .link-red { margin-top: auto; align-self: flex-start; }

/* Variant: dark service card */
.service-card.dark {
  background: var(--asphalt);
  color: var(--concrete);
  border-color: var(--asphalt);
}
.service-card.dark h3 { color: var(--concrete); }
.service-card.dark .link-red { color: var(--concrete); }

/* ---------- WORK GRID ---------- */
.work-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--gap-3);
  /* Dense packing: when a feature tile spans 2x2 on desktop, neighbours
     pack into the remaining cells without leaving holes. */
  grid-auto-flow: dense;
}
@media (min-width: 640px) { .work-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .work-grid { grid-template-columns: repeat(3, 1fr); } }
.work-item {
  position: relative;
  aspect-ratio: 1 / 1;
  background: var(--asphalt);
  overflow: hidden;
  cursor: pointer;
  display: block;
}
.work-item .ph-image { transition: transform var(--snap); }
.work-item:hover .ph-image { transform: scale(1.05); }
.work-item .overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--gap-5);
  z-index: 2;
  background: linear-gradient(180deg,
    transparent 55%,
    rgba(26,26,26,0.75) 90%,
    rgba(26,26,26,0.92) 100%
  );
}
/* When the manifest has no title/service/city for a work slot, hide the
   overlay text + gradient entirely so the photo shows clean. Tile is
   still clickable to open the lightbox. */
.work-item.no-meta .overlay { background: transparent; }
.work-item.no-meta .overlay > * { display: none; }
/* Note: linear-gradient here is functional (image legibility) — brand allows photo treatment.
   No decorative gradients elsewhere in the system. */
.work-item .work-cat {
  font-family: var(--font-body);
  font-size: var(--fs-label);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 8px;
}
.work-item .work-cat:empty { display: none; }
.work-item .overlay h4:empty { display: none; }
.work-item h4 {
  font-size: 24px;
  color: var(--white);
  text-transform: uppercase;
}
.work-item.feature { aspect-ratio: 1 / 1; grid-column: span 1; }
@media (min-width: 1024px) {
  /* Feature on desktop: span 2 columns AND 2 rows so adjacent regular tiles
     stack vertically next to it and match its full height (no gap below). */
  .work-item.feature {
    grid-column: span 2;
    grid-row: span 2;
    aspect-ratio: auto;   /* size is dictated by the row/col span */
  }
}

/* Filter tabs — sharp rectangles, no pills */
.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-bottom: var(--gap-6);
  border: 1px solid var(--asphalt);
}
.filter-tab {
  padding: 14px 24px;
  background: transparent;
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--asphalt);
  border: 0;
  border-right: 1px solid var(--asphalt);
  transition: background var(--snap), color var(--snap);
  flex: 1 1 auto;
}
.filter-tab:last-child { border-right: 0; }
.filter-tab:hover { background: var(--asphalt); color: var(--concrete); }
.filter-tab.active { background: var(--red); color: var(--white); }

/* Mobile: 2-column grid with consistent borders. Commercial (the last tab,
   7th of 7) spans the full last row so the layout stays even. */
@media (max-width: 700px) {
  .filter-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .filter-tab {
    border-right: 1px solid var(--asphalt);
    border-bottom: 1px solid var(--asphalt);
    padding: 14px 12px;
    font-size: 14px;
  }
  /* Right column drops the right border (outer container provides it) */
  .filter-tab:nth-child(2n) { border-right: 0; }
  /* Last tab spans full row + drops both right & bottom borders (outer
     container provides them). This avoids the orphan-line look when
     COMMERCIAL sits alone in the last row. */
  .filter-tab:last-child {
    grid-column: 1 / -1;
    border-right: 0;
    border-bottom: 0;
  }
}

/* ---------- TESTIMONIALS ---------- */
.testimonials {
  background: var(--asphalt);
  color: var(--concrete);
}
.testimonials h2 { color: var(--concrete); }
.testimonials .section-label { color: var(--red); }

.tcarousel { margin-top: var(--gap-7); }
.tcarousel-track {
  display: flex;
  overflow: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  gap: 0;
}
.tcard {
  flex: 0 0 100%;
  padding: var(--gap-6);
  border: 1px solid var(--concrete);
  scroll-snap-align: start;
  background: transparent;
}
.tcard blockquote {
  font-family: var(--font-display);
  font-size: clamp(28px, 2.4vw + 16px, 56px);
  font-weight: 400;
  text-transform: uppercase;
  line-height: 1.05;
  color: var(--concrete);
  margin-bottom: var(--gap-5);
  max-width: 22ch;
}
.tcard blockquote em { color: var(--red); font-style: normal; }
.tcard cite {
  display: flex;
  align-items: center;
  gap: var(--gap-3);
  font-style: normal;
  padding-top: var(--gap-4);
  border-top: 4px solid var(--red);
}
.tcard cite strong {
  display: block;
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--concrete);
  text-transform: uppercase;
}
.tcard cite span {
  font-family: var(--font-body);
  font-size: var(--fs-label);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--concrete);
  opacity: 0.65;
}
.tcarousel-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: var(--gap-5);
}
.tdots { display: flex; gap: 6px; }
.tdot {
  width: 40px; height: 4px;
  background: rgba(245,241,234,0.25);
  transition: background var(--snap);
}
.tdot.active { background: var(--red); }
.tarrows { display: flex; gap: 0; }
.tarrow {
  width: 56px; height: 56px;
  border: 1px solid var(--concrete);
  color: var(--concrete);
  font-size: 20px;
  display: grid; place-items: center;
  transition: background var(--snap), color var(--snap);
}
.tarrow + .tarrow { border-left: 0; }
.tarrow:hover { background: var(--red); color: var(--white); border-color: var(--red); }

/* ---------- CTA STRIP ---------- */
.cta-strip {
  background: var(--red);
  color: var(--white);
  padding-block: var(--gap-8);
}
.cta-strip .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--gap-6);
  flex-wrap: wrap;
}
.cta-strip h2 {
  color: var(--white);
  max-width: 18ch;
  font-size: var(--fs-display-xl);
}
.cta-strip .btn {
  background: var(--white);
  color: var(--red);
  border: 0;
}
.cta-strip .btn:hover { background: var(--asphalt); color: var(--white); }

/* Asphalt CTA strip (alternate) */
.cta-strip.dark { background: var(--asphalt); color: var(--concrete); }
.cta-strip.dark h2 { color: var(--concrete); }
.cta-strip.dark h2 em { color: var(--red); }
.cta-strip.dark .btn { background: var(--red); color: var(--white); }
.cta-strip.dark .btn:hover { background: var(--white); color: var(--asphalt); }

/* ---------- FOOTER ---------- */
.site-footer {
  background: var(--asphalt);
  color: var(--concrete);
  padding-top: var(--gap-8);
  padding-bottom: var(--gap-5);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--gap-7);
}
@media (min-width: 640px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 960px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; } }

.site-footer h5 {
  color: var(--red);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--fs-label);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: var(--gap-4);
}
.site-footer ul { display: flex; flex-direction: column; gap: 10px; }
.site-footer a { color: var(--concrete); }
.site-footer a:hover { color: var(--red); }
.footer-brand .brand { color: var(--concrete); margin-bottom: var(--gap-3); }
.footer-brand .brand .brand-mark { background: var(--red); }
.footer-brand .brand .logo-img { max-height: 88px; }
.footer-brand p { font-size: var(--fs-body-sm); max-width: 36ch; opacity: 0.8; }
.socials { display: flex; gap: 0; margin-top: var(--gap-4); }
.social-link {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border: 1px solid rgba(245,241,234,0.25);
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.05em;
  color: var(--concrete);
  transition: background var(--snap), color var(--snap);
}
.social-link + .social-link { border-left: 0; }
.social-link:hover { background: var(--red); border-color: var(--red); color: var(--white); }
.social-link .social-icon {
  width: 22px;
  height: 22px;
  object-fit: contain;
  display: block;
  /* Default: assume light/white icon for the dark footer. If user uploads a
     dark icon, it'll show as-is; if they want it inverted on hover, that
     happens via the hover bg switch only. */
}

.footer-bottom {
  margin-top: var(--gap-7);
  padding-top: var(--gap-4);
  border-top: 1px solid rgba(245,241,234,0.2);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--gap-3);
  font-size: var(--fs-label);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245,241,234,0.6);
}

/* ---------- FORMS ---------- */
.form { display: grid; gap: var(--gap-4); max-width: var(--prose-max); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--gap-4); }
@media (max-width: 640px) { .form-row { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label {
  font-family: var(--font-body);
  font-size: var(--fs-label);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--asphalt);
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: 16px;
  background: var(--white);
  border: 1.5px solid var(--asphalt);
  color: var(--asphalt);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  transition: border-color var(--snap);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 0;
  border-color: var(--red);
  border-width: 2.5px;
}
.field textarea { min-height: 160px; resize: vertical; }
.form-msg {
  padding: var(--gap-3) var(--gap-4);
  font-family: var(--font-body);
  font-size: var(--fs-body-sm);
  font-weight: 500;
  border-left: 4px solid transparent;
}
.form-msg.success { background: var(--white); border-left-color: var(--asphalt); color: var(--asphalt); }
.form-msg.error   { background: var(--white); border-left-color: var(--red);     color: var(--red); }

/* ---------- PLACEHOLDER IMAGES ---------- */
.ph-image {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  background: var(--asphalt);
  background-size: cover;
  background-position: center;
}
.ph-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      135deg,
      rgba(245,241,234,0.04) 0,
      rgba(245,241,234,0.04) 14px,
      transparent 14px,
      transparent 28px
    );
}
.ph-image::after {
  content: 'IMAGE';
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.4em;
  color: rgba(245,241,234,0.35);
}
/* When manifest has applied a real image, hide the placeholder hatch + label */
.ph-image.has-image::before,
.ph-image.has-image::after { display: none; }
/* Variants: tonal shifts using solid colors only — no gradients */
.ph-1 { background: var(--asphalt); }
.ph-2 { background: #2a2a2a; }
.ph-3 { background: #1a1a1a; }
.ph-4 { background: #333333; }
.ph-5 { background: var(--asphalt); }
.ph-6 { background: #242424; }
.ph-7 { background: #2e2e2e; }
.ph-8 { background: var(--asphalt); }
.ph-9 { background: #1f1f1f; }
.ph-red { background: var(--red); }
.ph-red::after { color: rgba(255,255,255,0.5); }

/* ---------- SPLIT SECTION ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--gap-7);
  align-items: start;
}
@media (min-width: 880px) {
  .split { grid-template-columns: 1fr 1fr; gap: var(--gap-8); }
  .split.left-heavy { grid-template-columns: 1.3fr 1fr; }
  .split.right-heavy { grid-template-columns: 1fr 1.3fr; }
}
.split-image {
  aspect-ratio: 4 / 5;
  background: var(--asphalt);
  width: 100%;
}
.split-image.wide { aspect-ratio: 16 / 9; }

/* ---------- FAQ ---------- */
.faq-list { display: flex; flex-direction: column; gap: 0; border-top: 1px solid var(--asphalt); }
.faq-item {
  border-bottom: 1px solid var(--asphalt);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: var(--gap-5) 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--gap-4);
  font-family: var(--font-display);
  font-size: 24px;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-family: var(--font-display);
  font-size: 32px;
  line-height: 1;
  color: var(--red);
  transition: transform var(--snap);
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-body {
  padding-bottom: var(--gap-5);
  max-width: 65ch;
  opacity: 0.85;
}

/* ---------- TEAM ---------- */
.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--gap-5);
}
@media (min-width: 640px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .team-grid { grid-template-columns: repeat(3, 1fr); } }
.team-card { display: flex; flex-direction: column; }
.team-photo {
  aspect-ratio: 4 / 5;
  background: var(--asphalt);
  margin-bottom: var(--gap-4);
}
.team-card h4 { font-size: 28px; margin-bottom: 8px; }
.team-role {
  font-family: var(--font-body);
  font-size: var(--fs-label);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: var(--gap-3);
}
.team-card p { font-size: var(--fs-body-sm); opacity: 0.85; }

/* ---------- TIERS ---------- */
.tiers {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border: 1px solid var(--asphalt);
}
@media (min-width: 880px) { .tiers { grid-template-columns: repeat(3, 1fr); } }
.tier {
  padding: var(--gap-6);
  background: var(--concrete);
  border-right: 1px solid var(--asphalt);
  border-bottom: 1px solid var(--asphalt);
  display: flex;
  flex-direction: column;
}
.tier:last-child { border-right: 0; border-bottom: 0; }
@media (min-width: 880px) {
  .tier { border-bottom: 0; }
}
.tier.featured {
  background: var(--asphalt);
  color: var(--concrete);
}
.tier.featured h3,
.tier.featured .tier-tag { color: var(--concrete); }
.tier-tag {
  font-family: var(--font-body);
  font-size: var(--fs-label);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: var(--gap-3);
  display: block;
}
.tier h3 { font-size: 36px; text-transform: uppercase; margin-bottom: var(--gap-3); }
.tier .price {
  font-family: var(--font-display);
  font-size: var(--fs-display-md);
  margin-bottom: var(--gap-4);
  color: var(--red);
}
.tier .price small {
  font-family: var(--font-body);
  font-size: var(--fs-body-sm);
  font-weight: 500;
  color: var(--asphalt);
  display: block;
  letter-spacing: 0;
  text-transform: none;
  margin-top: 4px;
}
.tier.featured .price small { color: var(--concrete); }
.tier ul { display: flex; flex-direction: column; gap: 10px; margin-bottom: var(--gap-5); }
.tier li {
  display: flex;
  gap: var(--gap-2);
  align-items: flex-start;
  font-size: var(--fs-body-sm);
}
.tier li::before { content: '+'; color: var(--red); font-weight: 700; flex-shrink: 0; }
.tier .btn { margin-top: auto; }

/* ---------- QUOTE MODAL ---------- */
.qmodal {
  position: fixed; inset: 0;
  z-index: 300;
  align-items: stretch;
  justify-content: flex-end;
}
/* Use :not([hidden]) so the [hidden] attr always wins, regardless of source order */
.qmodal:not([hidden]) { display: flex; }
.qmodal-backdrop {
  position: absolute; inset: 0;
  background: rgba(13,13,12,0.85);
  cursor: pointer;
}
.qmodal-panel {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 720px;
  background: var(--concrete);
  border-left: 6px solid var(--red);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
.qmodal-close {
  position: absolute;
  top: 0; right: 0;
  width: 64px; height: 64px;
  background: var(--asphalt);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 28px;
  z-index: 2;
}
.qmodal-close:hover { background: var(--red); }
.qmodal-body { padding: 64px 48px 64px; }
/* Mobile: tighten EVERYTHING so the form fits in viewport without a scrollbar.
   The modal panel was rendering at 1497px tall on a 896px iPhone XR — fix
   by shrinking padding, h2, label gaps, and the section label.  */
@media (max-width: 640px) {
  .qmodal-panel {
    border-left: 0;
    border-top: 6px solid var(--red);
    height: 100dvh;
    max-height: 100dvh;
  }
  .qmodal-body { padding: 48px 18px 8px; }
  .qmodal-body .section-label { font-size: 10px; margin-bottom: 4px; display: block; }
  .qmodal-body h2#qmodal-title {
    font-size: clamp(24px, calc(4vw + 14px), 36px);
    line-height: 1;
    margin-bottom: 12px !important;
  }
  .qmodal-body .form { gap: 6px; }
  .qmodal-body .form-row { gap: 6px; }
  .qmodal-body .field { gap: 2px; }
  .qmodal-body .field label {
    font-size: 11px;
    margin-bottom: 0;
  }
  .qmodal-body .field input,
  .qmodal-body .field select,
  .qmodal-body .field textarea {
    padding: 8px 10px;
    font-size: 14px;
  }
  .qmodal-body .field textarea { min-height: 44px; }
  .qmodal-body .form .btn { padding: 11px 18px; font-size: 13px; margin-top: 4px; }
  .qmodal-body .form > p { font-size: 9px; margin-top: 3px !important; line-height: 1.25; opacity: 0.7; }
  .qmodal-close { width: 48px; height: 48px; font-size: 22px; }
}

/* ---------- LIGHTBOX ---------- */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(26,26,26,0.96);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 200;
  padding: var(--pad-x);
}
.lightbox.open { display: flex; }
.lightbox-content {
  position: relative;        /* anchors the close button */
  max-width: 1100px;
  width: 100%;
  background: var(--concrete);
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  max-height: 90vh;
  overflow: hidden;
}
@media (max-width: 880px) {
  .lightbox-content { grid-template-columns: 1fr; max-height: 92vh; overflow-y: auto; }
}
.lightbox-img {
  aspect-ratio: 4 / 3;
  background-color: var(--asphalt);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 0;
}
@media (max-width: 880px) {
  .lightbox-img { aspect-ratio: 4 / 3; max-height: 50vh; }
}
.lightbox-body {
  padding: var(--gap-6);
  overflow-y: auto;
  min-width: 0;                 /* lets the panel actually shrink in the grid */
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.lightbox-body h3 {
  font-size: clamp(24px, 2vw + 12px, 36px);
  line-height: 1.05;
  letter-spacing: -0.005em;
  word-break: break-word;
  hyphens: auto;
  max-width: 100%;
}
.lightbox-body p {
  max-width: 100%;
  font-size: var(--fs-body-sm);
}
.lightbox-body :empty { display: none; }
@media (max-width: 880px) {
  .lightbox-body { padding: var(--gap-5) var(--gap-4); padding-top: 64px; }
  .lightbox-body h3 { font-size: 28px; }
}
.lightbox-close {
  position: absolute;
  top: 0; right: 0;
  width: 56px; height: 56px;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 28px;
  z-index: 10;               /* always above content */
  border: 0;
}
.lightbox-close:hover { background: var(--asphalt); }
@media (max-width: 880px) {
  /* On mobile the panel scrolls; pin close button to top-right of the panel.
     (Earlier sticky/align-self rules removed — they were overridden by the
     absolute rule below, so they were dead code.) */
  .lightbox-content { display: flex; flex-direction: column; }
  .lightbox-content .lightbox-close {
    position: absolute;
    top: 0; right: 0;
  }
}

/* ---------- MAP CONTAINER ---------- */
.map-wrap {
  position: relative;
  aspect-ratio: 16 / 10;        /* used while showing placeholder */
  background: var(--concrete);
  border: 1px solid var(--asphalt);
  overflow: hidden;
}
/* When an iframe is injected, drop the aspect-ratio so the wrap can grow
   to whatever height the embedded content reports. JS sets the inline
   height on both the wrap and the iframe after the iframe loads.
   min-height is intentionally LOW — it's a floor for cross-origin embeds
   (Google Maps, etc) where the JS auto-resize can't read contentDocument.
   For same-origin embeds (our service-area-map.html or the user's custom
   HTML), the JS sets a real inline height that overrides this floor. If
   min-height is too high, taller-than-content iframes render dead white
   space below the actual content. */
.map-wrap:has(iframe) {
  aspect-ratio: auto;
  min-height: 320px;
  background: var(--concrete);
  border: 0;
  border-bottom: 3px solid var(--red);
  overflow: hidden;
  padding: 0;
}
@media (max-width: 880px) {
  .map-wrap:has(iframe) { min-height: 360px; }
}
.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.map-wrap > .map-placeholder {
  width: 100%;
  height: 100%;
}
.map-placeholder {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  text-align: center;
  padding: var(--gap-6);
  color: var(--concrete);
  background:
    repeating-linear-gradient(0deg,  rgba(245,241,234,0.06) 0 1px, transparent 1px 60px),
    repeating-linear-gradient(90deg, rgba(245,241,234,0.06) 0 1px, transparent 1px 60px),
    var(--asphalt);
}
/* Functional grid lines on placeholder — not decorative gradient */
.map-placeholder strong {
  display: block;
  font-family: var(--font-display);
  font-size: 28px;
  text-transform: uppercase;
  margin-bottom: var(--gap-2);
}
.map-placeholder span { font-size: var(--fs-body-sm); opacity: 0.75; max-width: 40ch; display: block; }

/* ---------- AREAS LIST (zip / neighborhood chips) ---------- */
.area-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  margin-top: var(--gap-5);
  border: 1px solid var(--asphalt);
}
@media (min-width: 640px) { .area-list { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 960px) { .area-list { grid-template-columns: repeat(5, 1fr); } }
.area-list span {
  padding: 16px;
  text-align: center;
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-right: 1px solid var(--asphalt);
  border-bottom: 1px solid var(--asphalt);
}
.area-list span:nth-child(2n) { border-right: 0; }
@media (min-width: 640px) {
  .area-list span { border-right: 1px solid var(--asphalt); }
  .area-list span:nth-child(2n) { border-right: 1px solid var(--asphalt); }
  .area-list span:nth-child(3n) { border-right: 0; }
}
@media (min-width: 960px) {
  .area-list span { border-right: 1px solid var(--asphalt); }
  .area-list span:nth-child(3n) { border-right: 1px solid var(--asphalt); }
  .area-list span:nth-child(5n) { border-right: 0; }
}

/* ---------- STICKY MOBILE CTA BAR ---------- */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 90;
  background: var(--asphalt);
  border-top: 1px solid var(--red);
}
.mobile-cta a {
  flex: 1 1 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 16px 8px;
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  min-height: 56px;
}
.mobile-cta a + a { border-left: 1px solid rgba(245,241,234,0.2); }
.mobile-cta a.primary { background: var(--red); }
.mobile-cta a.primary:hover { background: var(--white); color: var(--red); }
@media (max-width: 880px) {
  .mobile-cta { display: flex; }
  body { padding-bottom: 56px; }
}

/* ---------- ANIMATIONS (instant snap brand) ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.4s linear, transform 0.4s linear;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition-duration: 0.001s !important; animation-duration: 0.001s !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- ACCESSIBILITY ---------- */
:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 2px;
}
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}

/* ---------- UTILITY ---------- */
.bg-asphalt { background: var(--asphalt); color: var(--concrete); }
.bg-red     { background: var(--red); color: var(--white); }
.bg-white   { background: var(--white); }
.text-cap   { text-transform: uppercase; letter-spacing: 0.15em; font-size: var(--fs-label); font-weight: 600; }
