/* ===== Logo ===== */
.cl-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.cl-logo__name {
  font-family: var(--display);
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.04em;
  line-height: 1;
}
.cl-logo__tag {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 4px;
}

/* Real logo image (0.2.72; re-cropped 0.2.77 — see logo research note below). */
/* 0.2.77 LOGO PROMINENCE FIX — not a pixel bump, a crop fix:
   The source PNG's 8000x4500 canvas has ~43% dead transparent padding above/
   below the actual mark (measured live via alpha-channel bounding box: the
   visible wordmark+icon only occupies 57% of the canvas height, 85% of its
   width). Every prior "make the logo bigger" pass scaled that dead space
   right along with the logo — at the live 64px header height, only ~37px
   was actually visible mark. Simply raising the height number further
   would've either overflowed the 70px row Tariq just asked us to thin down,
   or required re-thickening the header we just fixed.
   Fix instead: crop to the real content box with an overflow:hidden viewport
   + an oversized, offset <img> (sprite-crop technique). Source file on the
   server is untouched; only the CSS crop changed. Net result: the mark
   people actually SEE is 43-53% larger at each breakpoint, with real clear
   space restored around it (was ~3px top/bottom everywhere, now 6-19px) —
   and every row height is UNCHANGED from 0.2.76 (mobile nav touch target
   kept >=44px for a11y). Reference (Toyota Forklifts / Crown Equipment
   headers): neither fills its bar edge-to-edge with its logo either —
   clear space, not raw fill, is what reads as "prominent." */
.cl-logo--img { overflow: hidden; position: relative; }
.cl-logo--img img { display: block; max-width: none; position: absolute; }

.cl-nav .cl-logo--img { width: 142.8px; height: 54px; } /* was 64px tall, ~37px of it actually visible; now 54px IS the visible mark */
.cl-nav .cl-logo--img img { width: 162.5px; height: 91.4px; left: -9.8px; top: -18.8px; }

.cl-footer .cl-logo--img { width: 243.3px; height: 92px; }
.cl-footer .cl-logo--img img { width: 276.9px; height: 155.8px; left: -16.7px; top: -32px; }

.cl-nav__mobile .cl-logo--img { width: 121.6px; height: 46px; }
.cl-nav__mobile .cl-logo--img img { width: 138.4px; height: 77.9px; left: -8.3px; top: -16px; }

@media (max-width: 880px) {
  .cl-nav .cl-logo--img { width: 116.3px; height: 44px; } /* 44px floor = WCAG touch-target min, still a real +60% over the old ~27.5px effective visible size */
  .cl-nav .cl-logo--img img { width: 132.4px; height: 74.5px; left: -8px; top: -15.3px; }
}

/* ===== Nav ===== */
.cl-nav {
  position: sticky;
  top: 0;z-index: 100;
  background: var(--bg);
  border-bottom: 1.5px solid var(--rule);
}
/* .cl-nav.is-scrolled REMOVED (0.2.62): the header has ZERO scroll-reactive
 * styles — the scroll listener is gone from cl-pages.js too. The bar pins
 * via position:sticky and never changes in any way (Tariq 2026-07-10). */
.cl-nav--light {
  background: var(--bg);
}

.cl-nav__util {
  background: var(--ink);
  color: var(--bg);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.04em;
}
.cl-nav__util-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px var(--gutter); /* 0.2.76: thinner header */
  flex-wrap: wrap;
  gap: 8px;
}
.cl-nav__util-left, .cl-nav__util-right {
  display: flex;
  align-items: center;
  gap: 10px;
}
.cl-nav__util-sep {
  color: #6b6862;
}
.cl-nav__phone-mini {
  color: var(--bg);
  font-weight: 600;
}
.cl-nav__util a:hover { color: var(--red); }
.cl-nav__util-social {
  display: flex;
  align-items: center;
  gap: 14px;
}
.cl-nav__util-social a {
  display: inline-flex;
  color: var(--bg);
  opacity: 0.85;
  transition: color .15s ease, opacity .15s ease;
}
.cl-nav__util-social a:hover { color: var(--red); opacity: 1; }
.cl-nav__util-right { flex-wrap: wrap; justify-content: flex-end; row-gap: 2px; }
.cl-nav__phone-mini { white-space: nowrap; }
.cl-nav__util-social svg { width: 16px; height: 16px; display: block; }
.cl-nav__util-mail { color: var(--bg); }

/* ===== Customer Portal sign-in (placeholder URL → app.chicagolifts.com) ===== */
.cl-nav__portal {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border: 1px solid var(--rule-soft);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-2);
  text-decoration: none;
  transition: border-color .15s, color .15s;
}
.cl-nav__portal:hover { border-color: var(--ink); color: var(--ink); }
.cl-nav__portal-icon { font-size: 13px; opacity: 0.7; }
@media (max-width: 880px) {
  .cl-nav__portal-label { display: none; }
  .cl-nav__portal { padding: 8px 10px; }
}

/* ===== Promo banner (Tier 1) ===== */
.cl-nav__promo {
  background: var(--red);
  color: #fff;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.02em;
  position: relative;
}
.cl-nav__promo-inner {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 9px 0;
}
.cl-nav__promo-tag {
  font-weight: 700;
  padding: 2px 7px;
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 0;
  font-size: 10px;
  letter-spacing: 0.1em;
  flex-shrink: 0;
}
.cl-nav__promo-msg {
  flex: 1;
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0;
}
.cl-nav__promo-msg strong {
  font-weight: 700;
}
.cl-nav__promo-cta {
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
  font-family: var(--display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: background .15s ease, color .15s ease;
  flex-shrink: 0;
}
.cl-nav__promo-cta:hover {
  background: #fff;
  color: var(--red);
}
.cl-nav__promo-close {
  background: transparent;
  border: none;
  color: rgba(255,255,255,0.7);
  font-size: 22px;
  line-height: 1;
  padding: 0;
  width: 28px;
  height: 28px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cl-nav__promo-close:hover { color: #fff; }

/* ===== Utility-strip secondary nav (Tier 2) ===== */
.cl-nav__util-nav {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: auto;
  margin-right: 18px;
}
.cl-nav__util-nav button {
  background: transparent;
  border: none;
  color: var(--bg);
  font: inherit;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0;
  cursor: pointer;
  transition: color .15s ease;
}
.cl-nav__util-nav button:hover { color: var(--red); }

/* ===== Rentals ghost CTA (Tier 3) ===== */
.cl-nav__cta-rent {
  margin-right: 4px;
}
.cl-nav__cta-rent.is-current {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}

/* ===== Mobile sticky call bar ===== */
.cl-mbar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  display: none;
  z-index: 80;
  background: var(--ink);
  border-top: 1.5px solid var(--red);
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  gap: 10px;
  align-items: stretch;
  transform: translateY(100%);
  transition: transform .25s ease;
  box-shadow: 0 -8px 24px rgba(0,0,0,0.18);
}
.cl-mbar.is-visible { transform: translateY(0); }
.cl-mbar__call {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--red);
  color: #fff;
  padding: 12px 14px;
  text-decoration: none;
  font-family: var(--display);
  border: none;
  cursor: pointer;
  transition: background .15s ease;
}
.cl-mbar__call:hover { background: var(--red-deep); }
.cl-mbar__call-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.16);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  flex-shrink: 0;
}
.cl-mbar__call-lbl {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  text-align: left;
}
.cl-mbar__call-top {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.85;
}
.cl-mbar__call-num {
  font-family: var(--display);
  font-weight: 800;
  font-size: 17px;
  letter-spacing: 0.01em;
}
.cl-mbar__rent {
  flex-shrink: 0;
  background: transparent;
  border: 1.5px solid #d9d4cb;
  color: #fff;
  font-family: var(--display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 12px 18px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background .15s, color .15s, border-color .15s;
}
.cl-mbar__rent:hover {
  background: #fff;
  color: var(--ink);
  border-color: #fff;
}

@media (max-width: 880px) {
  .cl-mbar { display: flex; }
  /* push the page bottom up so content isn't covered when the bar is visible */
  body { padding-bottom: 88px; }
}

.cl-nav__main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* 0.2.74: HORIZONTAL GUTTER RESTORED. This element is .cl-nav__main.container;
     the padding shorthand here was clobbering .container's `0 var(--gutter)`
     (same specificity, later in cascade) — below ~1490px viewports the logo/CTA
     hugged the screen edges (Tariq). Same fix on .cl-nav__util-inner. */
  padding: 3px var(--gutter); /* 0.2.76: thinner header — bar height is logo+padding; padding to minimum, logo scaled (below) */
  gap: 16px;
}

.cl-nav__items {
  display: flex;
  align-items: center;
  gap: 0;
}

.cl-nav__item-wrap { position: relative; }
.cl-nav__item {
  background: transparent;
  border: none;
  font-family: var(--display);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 9px 10px;
  color: var(--ink);
  position: relative;
  cursor: pointer;
  white-space: nowrap;
}
.cl-nav__item.is-current::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 4px;
  height: 2px;
  background: var(--red);
}
.cl-nav__item:hover { color: var(--red); }

/* ── 0.2.74 slick pass (Tariq: "content matches — now make it look super slick") ──
   Micro-interactions only; no content, no layout re-architecture, and NO
   scroll-reactive styles (0.2.61/62 decision stands). */
.cl-nav__item { transition: color .15s ease; }
.cl-nav__item::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 4px;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .18s cubic-bezier(.22,.61,.36,1);
}
.cl-nav__item:hover::after { transform: scaleX(1); }
.cl-nav__item.is-current::after { transform: scaleX(1); }
.cl-nav__util a { transition: color .15s ease; }
.cl-mega__col-arrow { transition: transform .15s ease; display: inline-block; }
.cl-mega__col-head:hover .cl-mega__col-arrow { transform: translateX(4px); }
.cl-footer__col a { transition: color .12s ease, padding-left .12s ease; }
.cl-footer__col a:hover { padding-left: 3px; }
.cl-nav__caret { font-size: 9px; margin-left: 4px; }

/* Direct top-level nav link (Uptime Plan) — no caret, accent color to
   signal it's a distinct flagship offering rather than a hub. */
/* 0.2.73: direct items were red (prototype accent for ONE flagship item) —
   with the original nav restored, 4 of 6 items are direct and the menu read
   half-red. Original menu = one uniform ink color; hover stays red. */
.cl-nav__item--direct { color: var(--ink); }
.cl-nav__item--direct:hover { color: var(--red); }
.cl-nav__item-wrap--direct { /* no hover-popup; click only */ }


/* ============ Mega-menu (replaces old dropdowns) ============ */
.cl-mega {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fdfbf7;
  border-top: 1.5px solid var(--ink);
  border-bottom: 4px solid var(--ink);
  box-shadow: 0 24px 48px rgba(14,13,11,0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
  z-index: 95;
  pointer-events: none;
}
.cl-mega.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
.cl-mega__inner {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  padding: 0 var(--gutter, 32px) 32px;
}
.cl-mega__cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 36px 32px;
  padding-top: 24px;
}
.cl-mega__col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cl-mega__col-head {
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  padding: 0 0 12px;
  cursor: pointer;
  text-align: left;
  border-bottom: 1px solid var(--rule);
  position: relative;
}
.cl-mega__col-head:hover { border-bottom-color: var(--red); }
.cl-mega__col-head:hover .cl-mega__col-arrow { opacity: 1; transform: translateX(2px); }
.cl-mega__col-label {
  font-family: var(--display);
  font-weight: 800;
  font-size: 16px;
  letter-spacing: -0.01em;
  color: var(--ink);
  line-height: 1.1;
}
.cl-mega__col-sub {
  font-family: var(--mono, monospace);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
  font-weight: 600;
}
.cl-mega__col-arrow {
  position: absolute;
  right: 0;
  top: 0;
  font-size: 14px;
  color: var(--red);
  opacity: 0;
  transition: opacity .15s, transform .15s;
}
.cl-mega__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}
.cl-mega__list li {}
 /* 0.2.64: the WP chrome renders these items as <a> links (the prototype used
  * <button>s) — the selectors must cover BOTH or none of this block applies
  * (that was the Tariq-caught mega-menu divergence: inline wrapping labels). */
.cl-mega__list button, .cl-mega__list a {
  background: none;
  border: none;
  padding: 8px 0;
  cursor: pointer;
  text-align: left;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1px;
  border-bottom: 1px dashed transparent;
  transition: padding .12s, border-color .12s;
}
.cl-mega__list button:hover, .cl-mega__list a:hover {
  padding-left: 6px;
  border-bottom-color: var(--rule);
}
.cl-mega__list button:hover .cl-mega__g-label, .cl-mega__list a:hover .cl-mega__g-label { color: var(--red); }
.cl-mega__g-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.3;
  transition: color .12s;
}
.cl-mega__g-sub {
  font-size: 12px;
  color: var(--ink-soft);
  line-height: 1.3;
}

/* ============ Mega-menu image cards (0.2.77) ============
 * A hub flips into card mode automatically once >=2 of a column's leaves
 * resolve to a real category photo (cl_leaf_cat_image() in cl-chrome.php).
 * Products (5/5 leaves are real /product-category/ links with photos) → a
 * grid of photo tiles. Services (0 matches — service links, not category
 * links) silently keeps the original text list. Nothing to maintain by
 * hand: add a 6th category with a term thumbnail and it just joins the
 * grid; remove images from a category and that leaf quietly falls back
 * to a plain text row inside the same grid (see cl_leaf_cat_image() call
 * in the leaf loop below — $gimg is checked per-leaf, not just per-hub). */
.cl-mega--cards .cl-mega__cols { padding-top: 20px; }
/* Single-column dropdown (live's trimmed Products menu): collapse to one wide
 * photo grid — big 4:3 tiles across the panel. */
.cl-mega--cards-solo .cl-mega__cols { grid-template-columns: 1fr; }
.cl-mega__list--cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 18px;
}
/* Multi-column mega (the full design menu): keep the columns side-by-side and
 * render the qualifying column's leaves as compact thumbnail rows, so the photo
 * column stays the same height ballpark as the adjacent text columns. */
.cl-mega--cards:not(.cl-mega--cards-solo) .cl-mega__list--cards {
  grid-template-columns: 1fr;
  gap: 12px;
}
.cl-mega--cards:not(.cl-mega--cards-solo) .cl-mega__card a {
  display: flex;
  flex-direction: row;
  align-items: center;
  text-align: left;
  gap: 11px;
  padding: 4px 0;
}
.cl-mega--cards:not(.cl-mega--cards-solo) .cl-mega__card-media {
  flex: 0 0 54px;
  width: 54px;
  aspect-ratio: 1 / 1;
  margin: 0;
}
.cl-mega--cards:not(.cl-mega--cards-solo) .cl-mega__card-label {
  margin-top: 0;
  font-size: 13px;
}
.cl-mega__card { list-style: none; }
.cl-mega__card a {
  display: block;
  width: 100%;
  padding: 0;
  border-bottom: none;
}
.cl-mega__card a:hover { padding-left: 0; }
.cl-mega__card-media {
  display: block;
  aspect-ratio: 4 / 3;
  border-radius: 4px;
  background-color: #fff;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  border: 1px solid var(--rule);
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
}
.cl-mega__card a:hover .cl-mega__card-media {
  transform: scale(1.045);
  box-shadow: 0 6px 18px rgba(0,0,0,0.18);
}
.cl-mega__card-label {
  display: block;
  margin-top: 9px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.25;
  transition: color .12s;
}
.cl-mega__card a:hover .cl-mega__card-label { color: var(--red); }

.cl-mega__feature {
  background: var(--ink);
  color: var(--bg);
  padding: 28px 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: relative;
  align-self: start;
}
.cl-mega__feature-eyebrow {
  font-family: var(--mono, monospace);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--red);
  font-weight: 700;
  margin-bottom: 4px;
}
.cl-mega__feature-title {
  font-family: var(--display);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.015em;
  line-height: 1.1;
  margin-bottom: 10px;
}
.cl-mega__feature-body {
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255,255,255,0.7);
  margin: 0 0 18px;
}
.cl-mega__feature-cta {
  background: var(--red);
  color: #fff;
  border: none;
  padding: 11px 14px;
  font-family: var(--mono, monospace);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  transition: background .15s;
}
.cl-mega__feature-cta:hover { background: #e74a31; }
.cl-mega__feature-foot {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.cl-mega__feature-foot button {
  background: none;
  border: none;
  color: rgba(255,255,255,0.65);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-family: var(--mono, monospace);
  font-weight: 600;
  cursor: pointer;
  padding: 0;
}
.cl-mega__feature-foot button:hover { color: var(--bg); }

.cl-mega__scrim {
  position: fixed;
  top: var(--nav-h, 110px);
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(14,13,11,0.25);
  z-index: 90;
  animation: scrimfade .15s ease;
}
@keyframes scrimfade {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* When mega open, give nav item active visual */
.cl-nav__item-wrap.is-open .cl-nav__item {
  background: rgba(212, 52, 30, 0.06);
  color: var(--red);
}
.cl-nav__item-wrap.is-open .cl-nav__caret {
  transform: rotate(180deg);
}
.cl-nav__caret {
  font-size: 9px;
  margin-left: 5px;
  transition: transform .18s;
  display: inline-block;
}

/* Logo button reset */
.cl-nav__logo-btn {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
}

.cl-nav__item--solo {}

/* ============ Mobile drawer (full-screen, with X close + accordion) ============ */
.cl-nav__hamburger {
  display: none;
  background: transparent;
  /* 0.2.75: bars/border were white — invisible on the cream header on real
     phones (Tariq device screenshots). Ink works on the light header. */
  border: 1px solid rgba(14,13,11,0.3);
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
  padding: 0;
}
.cl-nav__hamburger span {
  width: 18px;
  height: 2px;
  background: var(--ink);
  transition: transform .2s, opacity .2s;
}
.cl-nav__hamburger.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.cl-nav__hamburger.is-open span:nth-child(2) { opacity: 0; }
.cl-nav__hamburger.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.cl-nav__mobile {
  position: fixed;
  inset: 0;
  background: var(--ink);
  color: var(--bg); /* 0.2.75: dark drawer needs an explicit light base */
  z-index: 100;
  overflow-y: auto;
  animation: drawerfade .22s ease;
}
@keyframes drawerfade {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}
.cl-nav__mobile-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px var(--gutter, 24px);
  border-bottom: 1px solid #2a2622;
  position: sticky;
  top: 0;
  background: var(--ink);
  z-index: 2;
}
.cl-nav__mobile-close {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--bg);
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .15s, border-color .15s;
}
.cl-nav__mobile-close:hover {
  background: var(--red);
  border-color: var(--red);
}
.cl-nav__mobile-inner {
  padding: 16px var(--gutter, 24px) 40px;
}
.cl-nav__mobile-group {
  border-bottom: 1px solid #2a2622;
}
.cl-nav__mobile-row {
  display: flex;
  align-items: center;
  width: 100%;
}
.cl-nav__mobile-item {
  background: transparent;
  border: none;
  color: var(--bg);
  font-family: var(--display);
  font-weight: 800;
  font-size: 26px;
  letter-spacing: -0.01em;
  padding: 13px 0; /* 0.2.76: tighter now that sections collapse — scannable list */
  cursor: pointer;
  flex: 1;
  text-align: left;
}
.cl-nav__mobile-item--solo {
  display: block;
  width: 100%;
  border-bottom: 1px solid #2a2622;
}
.cl-nav__mobile-toggle {
  background: transparent;
  border: none;
  color: var(--bg);
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0.6;
}
.cl-nav__mobile-toggle:hover { opacity: 1; color: var(--red); }
.cl-nav__mobile-children {
  /* 0.2.76: COLLAPSE BY DEFAULT. The accordion JS toggles .is-expanded but the
     hide/show CSS was never written, so every section was stuck open (Tariq:
     endless scroll). Now: closed by default, tap chevron to expand. */
  overflow: hidden;
  max-height: 0;
  background: rgba(255,255,255,0.02);
  margin: 0 -24px;
  padding: 0 24px;
  border-top: 0 solid #2a2622;
  transition: max-height .3s ease, padding .3s ease, border-top-width .3s ease;
}
.cl-nav__mobile-group.is-expanded .cl-nav__mobile-children {
  max-height: 1200px;
  padding: 4px 24px 22px 24px;
  border-top-width: 1px;
}
.cl-nav__mobile-toggle svg { transition: transform .22s ease; }
.cl-nav__mobile-group.is-expanded .cl-nav__mobile-toggle svg { transform: rotate(180deg); }
.cl-nav__mobile-child {
  padding: 12px 0;
  border-bottom: 1px dashed #2a2622;
}
.cl-nav__mobile-child:last-child { border-bottom: none; }
.cl-nav__mobile-child-head {
  background: transparent;
  border: none;
  color: var(--bg);
  font-family: var(--display);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.005em;
  padding: 6px 0;
  cursor: pointer;
  width: 100%;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.cl-nav__mobile-child-sub {
  font-family: var(--mono, monospace);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.45);
  font-weight: 600;
}
.cl-nav__mobile-grands {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 8px 0 0 16px;
}
.cl-nav__mobile-grands button,
.cl-nav__mobile-grands a {
  background: transparent;
  border: none;
  color: rgba(255,255,255,0.7);
  font-family: var(--sans);
  font-size: 14px;
  text-align: left;
  padding: 6px 0;
  cursor: pointer;
  border-left: 2px solid transparent;
  padding-left: 12px;
  transition: border-color .12s, color .12s;
}
.cl-nav__mobile-grands button:hover,
.cl-nav__mobile-grands a:hover {
  color: var(--bg);
  border-left-color: var(--red);
}
/* 0.2.77: mobile-drawer counterpart of the desktop mega image cards — same
 * cl_leaf_cat_image() resolution, so a leaf either gets a thumbnail here
 * too or quietly renders as the original plain text row. */
.cl-nav__mobile-grand--img {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 7px;
  padding-bottom: 7px;
}
.cl-nav__mobile-grand-thumb {
  flex: none;
  width: 54px;
  height: 40px;
  border-radius: 3px;
  background-size: cover;
  background-position: center;
  background-color: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
}
.cl-nav__mobile-grand--img .cl-nav__mobile-grand-label { line-height: 1.25; }
.cl-nav__mobile-cta {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cl-nav__mobile-cta .btn--ghost {
  color: var(--bg);
  border-color: rgba(255,255,255,0.3);
}
.cl-nav__mobile-contact {
  margin-top: 26px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
}
.cl-nav__mobile-contact a { color: #a8a49d; transition: color .15s; }
.cl-nav__mobile-contact a:hover { color: var(--bg); }
.cl-nav__mobile-social { display: flex; gap: 10px; margin-top: 6px; }
.cl-nav__mobile-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.7);
}
.cl-nav__mobile-social a:hover { border-color: var(--red); color: #fff; background: var(--red); }
.cl-nav__mobile-social svg { width: 16px; height: 16px; }

@media (max-width: 1180px) {
  .cl-nav__phone { display: none; }
}
@media (max-width: 980px) {
  /* 0.2.74 audit: was 1180 — with the original 6-item nav there is room for the
     quote CTA on small laptops/tablets; it only yields to the hamburger world. */
  .cl-nav__cta-btn { display: none; }
}
@media (max-width: 1180px) {
  .cl-nav__phone-label { display: none; }
}
@media (max-width: 1180px) {
  .cl-nav__item { padding: 9px 9px; }
  .cl-nav__item--accent { margin-left: 4px; }
}

@media (max-width: 880px) {
  .cl-nav__items { display: none; }
  .cl-mega { display: none; }
  .cl-mega__scrim { display: none; }
  .cl-nav__hamburger { display: inline-flex; }
  .cl-nav__cta-rent { display: none; }
  .cl-nav__cta-btn { display: none; }
  .cl-nav__util-nav { display: none; }
}
@media (max-width: 640px) {
  /* 0.2.72: the original top bar stays visible on mobile — ours does too */
  .cl-nav__util-inner { justify-content: center; row-gap: 4px; }
  .cl-nav__promo-msg { font-size: 12px; }
  .cl-nav__promo-cta { display: none; }
  .cl-nav__promo-tag { display: none; }
}


/* ============ SubNav: breadcrumb + horizontal section nav ============ */
.subnav {
  background: #fafaf6;
  border-bottom: 1px solid var(--rule);
}
.subnav__crumbs {
  background: #fff;
  border-bottom: 1px solid var(--rule);
}
.subnav__crumbs-inner {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 0;
  font-family: var(--mono, monospace);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  flex-wrap: wrap;
}
.subnav__crumb {
  background: none;
  border: none;
  padding: 4px 0;
  cursor: pointer;
  color: var(--ink-soft);
  font-family: inherit;
  font-size: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  font-weight: 600;
  transition: color .12s;
}
.subnav__crumb:hover { color: var(--red); }
.subnav__crumb--current { color: var(--ink); cursor: default; }
.subnav__crumb-sep { color: var(--rule); font-weight: 400; }

.subnav__pills-inner {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 14px 0;
  flex-wrap: wrap;
}
.subnav__pills-label {
  font-family: var(--mono, monospace);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-soft);
  font-weight: 600;
  flex-shrink: 0;
}
.subnav__pills-row {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
}
.subnav__pill {
  background: transparent;
  border: 1px solid transparent;
  padding: 8px 14px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: -0.005em;
  color: var(--ink);
  cursor: pointer;
  transition: background .12s, color .12s, border-color .12s;
}
.subnav__pill:hover {
  background: #fff;
  border-color: var(--rule);
}
.subnav__pill.is-current {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}

.subnav__tier3 {
  background: var(--ink);
  color: var(--bg);
}
.subnav__tier3-inner {
  display: flex;
  gap: 0;
  flex-wrap: wrap;
  padding: 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.subnav__tier3-link {
  background: transparent;
  border: none;
  padding: 12px 18px;
  font-family: var(--mono, monospace);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.55);
  cursor: pointer;
  font-weight: 600;
  border-right: 1px solid rgba(255,255,255,0.06);
  border-bottom: 2px solid transparent;
  transition: color .12s, border-color .12s;
}
.subnav__tier3-link:hover {
  color: var(--bg);
  border-bottom-color: rgba(212, 52, 30, 0.5);
}
.subnav__tier3-link.is-current {
  color: var(--bg);
  border-bottom-color: var(--red);
}

@media (max-width: 640px) {
  .subnav__pills-inner { gap: 10px; padding: 10px 0; }
  .subnav__tier3-link { padding: 10px 14px; font-size: 10px; }
}


/* ============ Footer ============ */
.cl-footer {
  background: var(--ink);
  color: var(--bg);
  /* world-class pass 2026-06-11: 80→64 top — the air budget moves into
     deliberate row gaps instead of one tall void */
  padding: 64px 0 28px;
  margin-top: 0;
}
.cl-footer__top {
  display: grid;
  /* audit fix: 8 columns at 1440 gave 11–13ch widths; 7 tracks breathe */
  grid-template-columns: 1.4fr repeat(5, 0.8fr) 1.1fr;
  gap: 32px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.cl-footer__brand .cl-logo,
.cl-footer__brand svg { margin-bottom: 20px; }
.cl-footer__tag {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0.65);
  max-width: 38ch;
  margin: 0 0 24px;
}
.cl-footer__social {
  display: flex;
  gap: 8px;
}
.cl-footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.7);
  font-family: var(--mono, monospace);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: border-color .15s, color .15s, background .15s;
}
.cl-footer__social a:hover {
  border-color: var(--red);
  color: var(--bg);
  background: var(--red);
}
.cl-footer__social svg { width: 16px; height: 16px; }
.cl-footer__addr address { transition: color .12s; }
.cl-footer__addr:hover address { color: var(--bg); }

.cl-footer__col {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.cl-footer__h {
  font-family: var(--mono, monospace);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 18px;
  font-weight: 600;
}
.cl-footer__col button,
.cl-footer__col a {
  background: none;
  border: none;
  padding: 0;
  text-align: left;
  font: inherit;
  color: rgba(255,255,255,0.78);
  font-size: 14px;
  line-height: 2;
  cursor: pointer;
  text-decoration: none;
  transition: color .12s;
  display: block;
}
.cl-footer__col button:hover,
.cl-footer__col a:hover {
  color: var(--red);
}

.cl-footer__contact .cl-footer__phone {
  font-family: var(--display);
  font-size: 26px;
  font-weight: 800;
  color: var(--bg);
  letter-spacing: -0.01em;
  line-height: 1.1;
  margin-bottom: 4px;
}
.cl-footer__contact a[href^="mailto"] {
  font-size: 14px;
  color: rgba(255,255,255,0.78);
  margin-bottom: 16px;
}
.cl-footer__contact address {
  font-style: normal;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255,255,255,0.6);
  margin-bottom: 20px;
}
.cl-footer__contact .btn {
  align-self: flex-start;
}
.cl-footer__contact .btn--ghost {
  border-color: rgba(255,255,255,0.3);
  color: var(--bg);
}
.cl-footer__contact .btn--ghost:hover {
  border-color: var(--red);
  background: var(--red);
}

.cl-footer__bottom {
  padding-top: 28px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
}
.cl-footer__legal {
  display: flex;
  gap: 24px;
}
.cl-footer__legal a,
.cl-footer__legal-btn {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-family: inherit;
  font-size: inherit;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  transition: color .15s;
}
.cl-footer__legal a:hover,
.cl-footer__legal-btn:hover { color: var(--bg); }
.cl-footer__cert .tag {
  font-family: var(--mono, monospace);
  font-size: 10px;
  letter-spacing: 0.1em;
}

@media (max-width: 1300px) {
  /* 2026-06-11 (user-flagged dead space): 5 tracks for 7 blocks stranded
     Resources + Reach-us on a sparse second row. Now: brand strip spans
     full width, the 6 link blocks fill a clean 3×2 — no orphan cells. */
  .cl-footer__top { grid-template-columns: repeat(3, 1fr); row-gap: 30px; }
  .cl-footer__brand { grid-column: 1 / -1; max-width: 560px; }
}
@media (max-width: 1024px) {
  .cl-footer__top { grid-template-columns: 1fr 1fr; gap: 32px 28px; }
  .cl-footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 640px) {
  .cl-footer { padding: 60px 0 28px; }
  .cl-footer__contact .cl-footer__phone { font-size: 22px; white-space: nowrap; } /* 0.2.75: was wrapping mid-number on phones */
  .cl-footer__top { grid-template-columns: 1fr; gap: 36px; padding-bottom: 40px; }
  .cl-footer__bottom { flex-direction: column; align-items: flex-start; }
}


/* ═══════════ AUDIT FIXES (homepage design audit, June 2026) ═══════════ */

/* Offer message inside the merged utility strip */
.cl-nav__util-offer {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.cl-nav__util-offer-link {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  color: var(--safety);
  cursor: pointer;
  letter-spacing: 0.04em;
}
.cl-nav__util-offer-link:hover { color: #fff; }
.cl-nav__util-offer-close {
  background: none;
  border: none;
  color: rgba(255,255,255,0.55);
  font-size: 15px;
  line-height: 1;
  padding: 0 2px;
  cursor: pointer;
}
.cl-nav__util-offer-close:hover { color: #fff; }

/* Phone block in nav CTA cluster — was completely unstyled, rendering
   "24/7 Service Line630-426-9156" as run-together inline text. */
.cl-nav__cta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: nowrap;
}
.cl-nav__phone {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1px;
  margin-right: 6px;
  text-decoration: none;
}
.cl-nav__phone-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-3);
  line-height: 1;
  white-space: nowrap;
}
.cl-nav__phone-num {
  font-family: var(--display);
  font-weight: 800;
  font-size: 17px;
  letter-spacing: 0.01em;
  color: var(--ink);
  line-height: 1.1;
  white-space: nowrap;
}
/* Below 1380px the number already lives in the utility strip — hide the
   block before it squeezes/wraps and forces horizontal overflow. */
@media (max-width: 1380px) {
  .cl-nav__phone { display: none; }
}
.cl-nav__phone:hover .cl-nav__phone-num { color: var(--red); }

/* Chrome collapse REMOVED (0.2.61, Tariq 2026-07-10: "resizing of the header
 * is not needed"). The scrolled state no longer changes the header's SIZE —
 * no padding tightening, no logo shrink, no tag hiding — so the sticky bar
 * stays a constant 122px and no scroll-position feedback loop can exist,
 * regardless of thresholds or cached JS. (0.2.62: even the box-shadow toggle
 * is gone — the header now has NO scroll-reactive styles at all.) */

/* Mega panels: cap height; never taller than the viewport leftover */
.cl-mega {
  max-height: min(70vh, 560px);
  overflow-y: auto;
}

/* On-system caret (replaces the "▾" text glyph) */
.cl-nav__caret {
  width: 7px;
  height: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  font-size: 0; /* hide any legacy glyph */
}
.cl-nav__item-wrap.is-open .cl-nav__caret {
  transform: rotate(225deg) translateY(-1px);
}

/* Focus visibility (was browser default) */
.cl-nav button:focus-visible,
.btn:focus-visible,
.cl-footer button:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 2px;
}

/* Rentals accent nav item — bumps it visually above other solo nav items */
.cl-nav__item--accent {
  color: var(--red);
  border: 1.5px solid var(--red);
  margin-left: 6px;
}
.cl-nav__item--accent:hover {
  background: var(--red);
  color: #fff;
}
.cl-nav__item--accent.is-current {
  background: var(--red);
  color: #fff;
}
