/* =========================================================
   Florida Maintenance — Modern Stylesheet (2026 rebuild)
   Brand red kept (#b00000). Mobile-first, no framework.
   ========================================================= */

/* ---------- Design tokens ---------- */
:root {
  --red: #b00000;
  --red-dark: #8a0000;
  --red-darker: #6e0000;
  --ink: #16181d;
  --charcoal: #1f2329;
  --slate: #3a3f47;
  --muted: #6b7280;
  --line: #e6e7ea;
  --bg: #ffffff;
  --bg-soft: #f6f7f9;
  --bg-dark: #15171c;
  --radius: 14px;
  --radius-sm: 10px;
  --shadow-sm: 0 1px 3px rgba(16,18,22,.08), 0 1px 2px rgba(16,18,22,.06);
  --shadow: 0 10px 30px rgba(16,18,22,.10);
  --shadow-lg: 0 24px 60px rgba(16,18,22,.16);
  --maxw: 1160px;
  --font-head: "Barlow", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--slate);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--red); text-decoration: none; transition: color .15s ease; }
a:hover { color: var(--red-dark); }
h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--ink);
  line-height: 1.12;
  margin: 0 0 .5em;
  font-weight: 700;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: 1.35rem; }
p { margin: 0 0 1rem; }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }
.section { padding: 76px 0; }
.section-sm { padding: 52px 0; }
.section.alt { background: var(--bg-soft); }
#services { padding-bottom: 52px; }
.lead { font-size: 1.15rem; color: var(--muted); }
.eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: .82rem;
  color: var(--red);
  margin-bottom: .6rem;
}
.section-head { max-width: 720px; margin: 0 auto 48px; text-align: center; }
.section-head p { color: var(--muted); margin-bottom: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.02rem;
  letter-spacing: .01em;
  padding: 13px 26px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .12s ease, background .15s ease, box-shadow .15s ease, color .15s ease;
  line-height: 1;
  text-align: center;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--red); color: #fff; box-shadow: 0 8px 20px rgba(176,0,0,.28); }
.btn-primary:hover { background: var(--red-dark); color: #fff; }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: #fff; }
.btn-light { background: #fff; color: var(--red); }
.btn-light:hover { background: #fff; color: var(--red-dark); }
.btn-ghost-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.7); }
.btn-ghost-light:hover { background: #fff; color: var(--ink); }
.btn-lg { padding: 16px 32px; font-size: 1.1rem; }

/* ---------- Skip link ---------- */
.skip-link {
  position: absolute;
  left: 10px;
  top: -60px;
  z-index: 1000;
  background: var(--red);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  transition: top .15s ease;
}
.skip-link:focus { top: 10px; color: #fff; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.92);
  border-bottom: 1px solid rgba(16,18,22,.08);
  box-shadow: 0 12px 30px rgba(16,18,22,.10);
}
@supports (backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px)) {
  .site-header {
    background: transparent;
  }
  .site-header::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    background: rgba(255,255,255,.82);
    -webkit-backdrop-filter: saturate(180%) blur(14px);
    backdrop-filter: saturate(180%) blur(14px);
  }
}
.topbar {
  display: block;
  background: linear-gradient(135deg, var(--red-darker), var(--red) 55%, var(--red-dark));
  color: rgba(255,255,255,.94);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .02em;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.14), inset 0 -1px 0 rgba(0,0,0,.08);
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  min-height: 38px;
  flex-wrap: wrap;
}
.topbar a { color: #fff; }
.topbar .topbar-item { display: inline-flex; align-items: center; gap: 6px; }
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 86px;
  gap: 24px;
  position: relative;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}
.brand img {
  display: block;
  height: 68px;
  width: auto;
  max-width: 300px;
  object-fit: contain;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  margin: 0;
  padding: 0;
  margin-left: auto;
}
.nav-menu > li { position: relative; }
.nav-menu > li > a {
  display: block;
  padding: 12px 16px;
  color: var(--ink);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .03em;
  text-transform: uppercase;
  text-wrap: nowrap;
  white-space: nowrap;
  border-radius: 999px;
  transition: color .15s ease, background .15s ease;
}
.nav-menu > li > a:hover { color: var(--red); background: rgba(176,0,0,.08); }
.nav-menu > li > a[aria-current="page"],
.nav-menu > li.current-section > a { color: var(--red); background: rgba(176,0,0,.08); }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-actions .btn-call-top {
  background: var(--red);
  color: #fff;
  box-shadow: 0 8px 18px rgba(176,0,0,.24), 0 0 0 0 rgba(176,0,0,.35);
  padding: 11px 20px;
  font-size: .95rem;
  animation: callPulse 2.8s ease-in-out infinite;
}
.nav-actions .btn-call-top:hover { color: #fff; background: var(--red-dark); animation-play-state: paused; }
@keyframes callPulse {
  0% { box-shadow: 0 8px 18px rgba(176,0,0,.24), 0 0 0 0 rgba(176,0,0,.35); }
  70% { box-shadow: 0 8px 18px rgba(176,0,0,.24), 0 0 0 9px rgba(176,0,0,0); }
  100% { box-shadow: 0 8px 18px rgba(176,0,0,.24), 0 0 0 0 rgba(176,0,0,0); }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .nav-actions .btn-call-top, .call-fab { animation: none; }
}

/* Dropdown */
.has-dropdown > a::after {
  content: "";
  display: inline-block;
  width: 6px; height: 6px;
  margin-left: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  opacity: .6;
}
.dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 230px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
  list-style: none;
  margin: 0;
  overflow: hidden;
}
.dropdown::before {
  content: "";
  position: absolute;
  top: 0;
  left: 14px;
  right: 14px;
  height: 3px;
  border-radius: 0 0 3px 3px;
  background: linear-gradient(90deg, var(--red-darker), var(--red));
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown li a {
  display: block;
  padding: 10px 14px;
  border-radius: 8px;
  color: var(--slate);
  font-weight: 500;
}
.dropdown li a:hover { background: var(--bg-soft); color: var(--red); }
.dropdown li a[aria-current="page"] {
  background: rgba(176,0,0,.08);
  color: var(--red);
  font-weight: 700;
}
.dropdown-heading {
  padding: 10px 14px 6px;
  font-family: var(--font-head);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
}
.dropdown-heading:not(:first-child) {
  margin-top: 6px;
  border-top: 1px solid var(--line);
  padding-top: 12px;
}

/* Mobile toggle */
.nav-toggle {
  display: none;
  background: none;
  border: 0;
  border-radius: 10px;
  width: 44px; height: 44px;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  position: relative;
  z-index: 110;
  transition: background .15s ease;
}
.nav-toggle:hover { background: rgba(176,0,0,.06); }
.nav-toggle span {
  display: block;
  height: 2.5px;
  width: 24px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  color: #fff;
  background: linear-gradient(rgba(15,16,20,.72), rgba(15,16,20,.78)), var(--bg-dark);
  background-size: cover;
  background-position: center;
}
.hero .container { position: relative; z-index: 2; padding-top: 96px; padding-bottom: 96px; }
.hero-grid { display: flex; align-items: flex-end; gap: 30px; }
.hero-content { flex: 1 1 auto; max-width: 720px; }
.hero-content .eyebrow, .hero-content h1, .hero-content p {
  text-shadow: 0 1px 3px rgba(0,0,0,.85), 0 2px 14px rgba(0,0,0,.55);
}
.hero h1 { color: #fff; max-width: 16ch; }
.hero .eyebrow { color: #ff8a8a; }
.hero p { font-size: 1.2rem; color: #e6e7ea; max-width: 56ch; margin-bottom: 1.8rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 28px; }

/* ---------- Services grid ---------- */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.svc-grid.svc-grid-5 { grid-template-columns: repeat(5, 1fr); }
.svc-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: #dcdde1; }
.svc-card .media { aspect-ratio: 4 / 3; overflow: hidden; background: #eee; }
.svc-card .media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.svc-card:hover .media img { transform: scale(1.06); }
.svc-card .body { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.svc-card h3 { color: var(--ink); margin-bottom: .4rem; }
.svc-card p { color: var(--muted); font-size: .98rem; flex: 1; }
.svc-card .more {
  font-family: var(--font-head);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
}
.svc-card .more::after { content: "→"; transition: transform .15s ease; }
.svc-card:hover .more::after { transform: translateX(4px); }

/* ---------- Features ---------- */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.feature { display: flex; gap: 16px; }
.feature .ico {
  flex: 0 0 48px;
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(176,0,0,.08);
  color: var(--red);
  display: grid;
  place-items: center;
  font-size: 1.4rem;
}
.service-page .feature .ico {
  font-family: var(--font-head);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .05em;
}
.feature h3 { font-size: 1.18rem; margin-bottom: .3rem; }
.feature p { color: var(--muted); margin: 0; font-size: .98rem; }

/* ---------- Logo wall ---------- */
.clients-section {
  background: #fff;
}
.logos {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
  align-items: center;
  background: linear-gradient(120deg, var(--red-darker), var(--red));
  border-radius: 12px;
  padding: 22px;
  box-shadow: var(--shadow-sm);
}
.logos .logo-cell {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 8px;
  padding: 14px;
  height: 112px;
  display: grid;
  place-items: center;
  overflow: hidden;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}
.logos .logo-cell:hover { transform: translateY(-3px); background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.32); }
.logos img {
  width: 100%;
  height: 100%;
  max-height: 82px;
  max-width: 150px;
  object-fit: contain;
  filter: grayscale(100%) brightness(0) invert(1);
  opacity: .92;
  transition: filter .2s ease, opacity .2s ease;
}
.logos .logo-cell:hover img { filter: grayscale(100%) brightness(0) invert(1); opacity: 1; }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(120deg, var(--red-darker), var(--red));
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.14);
}
.cta-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(255,255,255,.16), transparent 62%);
  pointer-events: none;
}
.cta-band .container { position: relative; z-index: 1; }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.92); max-width: 60ch; margin: 0 auto 1.6rem; font-size: 1.12rem; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ---------- Page hero (interior pages) ---------- */
.page-hero {
  position: relative;
  color: #fff;
  background: linear-gradient(rgba(15,16,20,.62), rgba(15,16,20,.74)), var(--charcoal);
  background-size: cover;
  background-position: center;
  text-align: center;
}
.about-page-hero {
  background-position: center top;
}
section.about-page-hero .container {
  padding-top: 110px;
  padding-bottom: 110px;
}
.page-hero .container { padding: 84px 20px; position: relative; z-index: 2; }
.pressure-cleaning-hero .container { padding-top: 164px; padding-bottom: 164px; }
.softwashing-hero { background-position: 77% 55%; }
.softwashing-hero .container { padding-top: 105px; padding-bottom: 105px; }
.service-page .page-hero .container {
  padding-top: clamp(82px, 9vw, 112px);
  padding-bottom: clamp(82px, 9vw, 112px);
}
.page-hero h1 { color: #fff; margin-bottom: .4rem; }
.page-hero p { color: #e6e7ea; max-width: 60ch; margin: 0 auto; font-size: 1.12rem; }
.breadcrumb {
  font-size: .9rem;
  color: rgba(255,255,255,.8);
  margin-bottom: 14px;
}
.breadcrumb a { color: #fff; opacity: .85; }
.breadcrumb a:hover { opacity: 1; }

/* ---------- Prose (service / legal content) ---------- */
.prose { max-width: 820px; margin: 0 auto; }
.prose h2 { margin-top: 1.6em; }
.prose h3 { color: var(--red); margin-top: 1.6em; }
.prose p { color: var(--slate); }
.credential-badge {
  display: block;
  width: 237px;
  height: auto;
  margin: 0 auto;
  border-radius: 6px;
}

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.contact-cards { display: grid; gap: 16px; margin-bottom: 26px; }
.contact-card {
  display: flex; gap: 14px; align-items: flex-start;
  background: #fff; border: 1px solid var(--line);
  border-radius: 12px; padding: 18px 20px;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.contact-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); border-color: #dcdde1; }
.contact-card .ico {
  flex: 0 0 42px; width: 42px; height: 42px;
  border-radius: 10px; background: rgba(176,0,0,.08);
  color: var(--red); display: grid; place-items: center; font-size: 1.2rem;
}
.contact-card h3,
.contact-card h4 { font-family: var(--font-head); margin: 0 0 2px; color: var(--ink); font-size: 1.05rem; }
.contact-card p, .contact-card a { margin: 0; color: var(--slate); }
.contact-card a:hover { color: var(--red); }

.form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow-sm);
}
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .92rem;
  color: var(--ink);
  margin-bottom: 6px;
}
.form-control {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  font: inherit;
  color: var(--ink);
  background: #fff;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.form-control:hover { border-color: #c7c9ce; }
.form-control:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(176,0,0,.12);
}
textarea.form-control { resize: vertical; min-height: 130px; }
.map-embed {
  border: 0;
  width: 100%;
  height: 100%;
  min-height: 420px;
  border-radius: var(--radius);
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--bg-dark);
  color: #b9bcc4;
  padding: 60px 0 26px;
  font-size: .96rem;
  position: relative;
}
.site-footer::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red-darker), var(--red) 50%, var(--red-darker));
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1.15fr 1fr;
  gap: 32px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.site-footer h4 {
  color: #fff;
  font-size: .8rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.site-footer a { color: #cdd0d7; transition: color .15s ease; }
.site-footer a:hover { color: #fff; }
.footer-brand img {
  height: 52px;
  width: auto;
  max-width: 260px;
  margin-bottom: 14px;
}
.footer-brand p { max-width: 38ch; color: #9da1aa; }
.footer-links { list-style: none; margin: 0; padding: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { display: inline-block; transition: color .15s ease, transform .15s ease; }
.footer-links a:hover { color: #fff; transform: translateX(3px); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 22px;
  color: #888c95;
  font-size: .88rem;
}
.footer-bottom a { color: #b9bcc4; }

/* ---------- Floating mobile call button ---------- */
.call-fab {
  position: fixed;
  right: 18px;
  right: max(18px, env(safe-area-inset-right));
  bottom: 18px;
  bottom: max(18px, env(safe-area-inset-bottom));
  z-index: 90;
  display: none;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--red-dark);
  font-family: var(--font-head);
  font-weight: 700;
  padding: 14px 20px;
  border: 2px solid var(--red-dark);
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(16,18,22,.38), 0 0 0 3px rgba(255,255,255,.92);
  animation: callFabPulse 2.8s ease-in-out infinite;
}
.call-fab:hover { color: #fff; background: var(--ink); border-color: var(--ink); animation-play-state: paused; }
.call-fab:focus-visible { outline: 3px solid #fff; outline-offset: 3px; }
.form-submit-status {
  min-height: 1.35em;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: .88rem;
  text-align: center;
}
.form-card .btn:disabled { cursor: wait; opacity: .72; }
@keyframes callFabPulse {
  0% { box-shadow: 0 12px 30px rgba(16,18,22,.38), 0 0 0 3px rgba(255,255,255,.92), 0 0 0 3px rgba(255,255,255,.55); }
  70% { box-shadow: 0 12px 30px rgba(16,18,22,.38), 0 0 0 3px rgba(255,255,255,.92), 0 0 0 12px rgba(255,255,255,0); }
  100% { box-shadow: 0 12px 30px rgba(16,18,22,.38), 0 0 0 3px rgba(255,255,255,.92), 0 0 0 3px rgba(255,255,255,0); }
}

/* ---------- Responsive ---------- */
@media (max-width: 1180px) {
  .nav {
    justify-content: space-between;
    min-height: 68px;
  }
  .topbar {
    position: relative;
    z-index: 96;
  }
  .brand {
    position: relative;
    z-index: 96;
  }
  .brand img {
    height: 56px;
    max-width: min(64vw, 240px);
  }
  .nav-toggle {
    display: flex;
  }
  .nav-toggle span {
    background: var(--red);
  }
  .nav-menu {
    position: fixed;
    top: var(--header-h, 108px);
    right: 0;
    bottom: 0;
    left: auto;
    width: min(86vw, 340px);
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    padding: 20px 18px 30px;
    box-shadow: var(--shadow-lg);
    transform: translateX(100%);
    visibility: hidden;
    transition: transform .25s ease, visibility 0s linear .25s;
    overflow-y: auto;
    z-index: 95;
  }
  body.nav-open { overflow: hidden; }
  body.nav-open .nav-menu { transform: translateX(0); visibility: visible; transition: transform .25s ease, visibility 0s linear 0s; }
  body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
  body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
  body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
  body.nav-open .nav-toggle span { background: var(--ink); }
  .nav-menu > li > a {
    color: var(--slate);
    padding: 14px 12px;
    border-radius: 8px;
    font-size: 1.08rem;
    letter-spacing: 0;
    text-transform: none;
  }
  .nav-menu > li > a:hover { color: var(--red); background: var(--bg-soft); }
  .dropdown {
    position: static;
    opacity: 1; visibility: visible; transform: none;
    box-shadow: none; border: 0; padding: 0 0 6px 12px;
    min-width: 0;
  }
  .nav-menu > li.current-section > a {
    margin-bottom: 10px;
  }
  .nav-menu > li.current-section > .dropdown {
    margin-bottom: 8px;
    padding: 12px 0 8px 14px;
    border-top: 1px solid var(--line);
  }
  .nav-menu > li.current-section > .dropdown a[aria-current="page"] {
    padding-left: 18px;
    box-shadow: inset 4px 0 0 var(--red);
  }
  .has-dropdown > a::after { display: none; }
  .nav-actions { display: none; }
  .nav-overlay {
    position: fixed; inset: 0; background: rgba(0,0,0,.4);
    opacity: 0; visibility: hidden; transition: opacity .25s ease; z-index: 90;
  }
  body.nav-open .nav-overlay { opacity: 1; visibility: visible; }

  /* Tablet landscape / small laptop (e.g. 1024px iPad landscape): 5-up
     property-type grid is too cramped at this width, drop to 3 columns
     before the 2-up step at 980px. */
  .svc-grid.svc-grid-5 { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 980px) {
  .svc-grid, .svc-grid.svc-grid-5 { grid-template-columns: repeat(2, 1fr); }
  .features { grid-template-columns: repeat(2, 1fr); gap: 22px; }
  .logos { grid-template-columns: repeat(4, 1fr); }
  .logos .logo-cell { height: 104px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .section { padding: 56px 0; }
  body { font-size: 16px; }
  .topbar .container { justify-content: center; gap: 6px 16px; }
  .topbar { font-size: .72rem; }
  .nav { min-height: 70px; }
  .brand img { height: 50px; max-width: min(62vw, 220px); }
  .features { grid-template-columns: 1fr; }
  .svc-grid, .svc-grid.svc-grid-5 { grid-template-columns: 1fr; }
  .logos { grid-template-columns: repeat(3, 1fr); }
  .logos .logo-cell { height: 96px; padding: 12px; }
  .logos img { max-height: 72px; max-width: 132px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .hero .container { padding-top: 64px; padding-bottom: 64px; }
  .call-fab { display: inline-flex; }
  .service-page .site-footer { padding-bottom: calc(64px + env(safe-area-inset-bottom)); }
}

@media (max-width: 440px) {
  .logos { grid-template-columns: repeat(2, 1fr); padding: 14px; gap: 12px; }
  .logos img { max-width: 120px; }
  .hero-actions .btn, .cta-actions .btn { width: 100%; justify-content: center; }
}

/* ---------- Our Work gallery ---------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.gallery .tile {
  display: block;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #e9eaec;
  cursor: zoom-in;
}
.gallery .tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.gallery .tile:hover img { transform: scale(1.07); }
.gallery .tile::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(7,9,13,0) 28%, rgba(7,9,13,.18) 50%, rgba(7,9,13,.82) 100%);
  opacity: 0; transition: opacity .25s ease;
}
.gallery .tile:hover::after { opacity: 1; }
.gallery .tile:focus-visible { outline: 3px solid var(--red); outline-offset: 3px; }
.gallery .tile:focus-visible::after { opacity: 1; }
@media (max-width: 980px) {
  .gallery { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .gallery { grid-template-columns: 1fr 1fr; gap: 10px; }
}

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(8,9,12,.92);
  display: none; align-items: center; justify-content: center;
  padding: 24px;
}
.lightbox.open { display: flex; }
body.lightbox-open { overflow: hidden; }
.lightbox .lb-media { display: flex; flex-direction: column; align-items: stretch; max-width: 94vw; max-height: 88vh; }
.lightbox .lb-media img { max-width: 94vw; max-height: 76vh; border-radius: 8px 8px 0 0; box-shadow: 0 20px 60px rgba(0,0,0,.6); }
.lightbox .lb-media.no-cap img { border-radius: 8px; }
.lightbox .lb-cap { background: rgba(15,16,20,.92); color: #fff; padding: 12px 20px; border-radius: 0 0 8px 8px; text-align: center; }
.lightbox .lb-cap .cat { display: block; color: #ff9a9a; text-transform: uppercase; font-size: .72rem; letter-spacing: .1em; font-weight: 700; margin-bottom: 2px; }
.lightbox .lb-cap .ttl { font-family: var(--font-head); font-weight: 700; font-size: 1.05rem; }
.lightbox .lb-close {
  position: absolute; top: 16px; right: 22px;
  width: 46px; height: 46px; border: 0; border-radius: 50%;
  background: rgba(255,255,255,.12); color: #fff; font-size: 26px; line-height: 1;
  cursor: pointer; display: grid; place-items: center;
}
.lightbox .lb-close:hover { background: rgba(255,255,255,.22); }
.lightbox .lb-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 52px; height: 52px; border: 0; border-radius: 50%;
  padding: 0; line-height: 0; font-size: 0;
  background: rgba(255,255,255,.12); color: #fff;
  cursor: pointer; display: grid; place-items: center;
}
.lightbox .lb-nav::before {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  box-sizing: border-box;
  border-top: 3px solid currentColor;
  border-right: 3px solid currentColor;
}
.lightbox .lb-nav:hover { background: rgba(255,255,255,.22); }
.lightbox .lb-prev { left: 18px; }
.lightbox .lb-next { right: 18px; }
.lightbox .lb-prev::before { transform: rotate(-135deg); }
.lightbox .lb-next::before { transform: rotate(45deg); }
@media (max-width: 600px) { .lightbox .lb-nav { width: 42px; height: 42px; } }

/* =========================================================
   CONSTRUCTION-STYLE RESTYLE (Kalium-inspired) — FM red
   ========================================================= */
/* Bolder, tighter, construction-style headings */
h1, h2, h3, h4 { letter-spacing: -0.02em; }
h2 { font-weight: 800; }
.section-head h2 { text-transform: uppercase; letter-spacing: .005em; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
}
.eyebrow::before,
.eyebrow::after {
  content: ""; display: inline-block; width: 26px; height: 3px;
  background: var(--red); border-radius: 2px;
}
.section-head .eyebrow { justify-content: center; }

/* Rectangular, uppercase buttons */
.btn {
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: .05em;
  font-weight: 700;
  font-size: .92rem;
}
.btn-lg { font-size: 1rem; }

/* Hero: bolder */
.hero h1 { font-weight: 800; font-size: clamp(2.4rem, 5.5vw, 4rem); max-width: 18ch; }
.home-page .hero h1 { max-width: 20ch; }

/* ---------- Welcome / About split ---------- */
.about-split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.about-media { position: relative; }
.about-media > img {
  width: 100%; height: 100%; max-height: 460px; object-fit: cover;
  border-radius: 10px; box-shadow: var(--shadow);
}
.softwash-intro-media > img {
  height: 620px;
  max-height: 620px;
  object-position: center top;
}
.softwash-intro-media .exp-badge {
  right: auto;
  left: 18px;
  bottom: 18px;
}
.arena-intro-media .exp-badge {
  bottom: -48px;
}
.exp-badge {
  position: absolute; right: -16px; bottom: -16px;
  background: var(--red); color: #fff;
  padding: 18px 24px; border-radius: 10px; text-align: center;
  box-shadow: 0 16px 30px rgba(176,0,0,.35);
}
.exp-badge .n { font-family: var(--font-head); font-weight: 800; font-size: 2.6rem; line-height: 1; }
.exp-badge .t { font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; margin-top: 4px; }
.about-body h2 { text-transform: none; }
.about-body .check-list { list-style: none; padding: 0; margin: 1.2rem 0 1.6rem; display: grid; grid-template-columns: 1fr 1fr; gap: .5rem 1.4rem; }
.about-body .check-list li { position: relative; padding-left: 28px; color: var(--slate); font-weight: 500; }
.about-body .check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--red); font-weight: 800; }

/* ---------- Counters strip (red) ---------- */
.counters { background: linear-gradient(120deg, var(--red-darker), var(--red)); color: #fff; }
.counters-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; align-items: center; }
.counter .n { font-family: var(--font-head); font-weight: 800; font-size: clamp(2.4rem, 4.5vw, 3.4rem); line-height: 1; }
.counter .t { text-transform: uppercase; letter-spacing: .07em; font-size: .85rem; margin-top: 8px; color: rgba(255,255,255,.92); }
.counters-grid .counter { position: relative; }
.counters-grid .counter:not(:last-child)::after {
  content: ""; position: absolute; right: -12px; top: 12%; height: 76%; width: 1px; background: rgba(255,255,255,.18);
}

/* ---------- Projects (gallery captions) ---------- */
.gallery .tile .cap {
  position: absolute; left: 10px; right: 10px; bottom: 10px; z-index: 2;
  padding: 12px 13px 13px; color: #fff;
  background: rgba(10,12,16,.74);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0,0,0,.36);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  transform: translateY(10px); opacity: 0;
  transition: opacity .25s ease, transform .25s ease;
}
.gallery .tile:hover .cap { opacity: 1; transform: none; }
.gallery .tile:focus-visible .cap { opacity: 1; transform: none; }
.gallery .tile .cap .cat {
  display: inline-flex;
  width: fit-content;
  padding: 3px 7px;
  margin-bottom: 6px;
  border-radius: 999px;
  background: rgba(255,255,255,.94);
  color: var(--red-dark);
  text-transform: uppercase;
  font-size: .68rem;
  line-height: 1.2;
  letter-spacing: .08em;
  font-weight: 800;
}
.gallery .tile .cap .ttl {
  display: block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.05rem;
  line-height: 1.25;
  text-shadow: 0 2px 8px rgba(0,0,0,.9);
}
@media (hover: none) {
  .gallery .tile::after { opacity: 1; }
  .gallery .tile .cap { opacity: 1; transform: none; }
}

@media (max-width: 520px) {
  .gallery .tile .cap { left: 7px; right: 7px; bottom: 7px; padding: 9px 10px 10px; }
  .gallery .tile .cap .cat { padding: 3px 6px; font-size: .61rem; letter-spacing: .06em; }
  .gallery .tile .cap .ttl { font-size: .94rem; }
}

@media (max-width: 900px) {
  .about-split { grid-template-columns: 1fr; gap: 40px; }
  .exp-badge { right: 16px; bottom: -16px; }
  .counters-grid { grid-template-columns: repeat(2, 1fr); gap: 30px 24px; }
  .counters-grid .counter:not(:last-child)::after { display: none; }
  .about-body .check-list { grid-template-columns: 1fr; }
}

/* ---------- Hero background video ---------- */
.hero {
  overflow: hidden;
  background: var(--bg-dark) url('../img/optimized/pressure-cleaning-garage-wall-wash-1200.webp') 52% 30% / cover no-repeat;
}
.hero-video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0; border: 0; pointer-events: none;
  opacity: 0;
  transition: opacity .2s ease;
}
.hero-video.is-playing { opacity: 1; }
.hero-video-play {
  position: absolute;
  z-index: 3;
  top: 18px;
  right: max(18px, env(safe-area-inset-right));
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 8px 13px;
  border: 1px solid rgba(255,255,255,.62);
  border-radius: 999px;
  color: #fff;
  background: rgba(10,11,14,.78);
  box-shadow: 0 8px 24px rgba(0,0,0,.28);
  font-family: var(--font-head);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .04em;
  cursor: pointer;
}
.hero-video-play[hidden] { display: none; }
.hero-video-play:hover { background: rgba(176,0,0,.92); }
.hero-video-play:focus-visible { outline: 3px solid #fff; outline-offset: 3px; }
.hero-video-play-icon {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  padding-left: 2px;
  border-radius: 50%;
  color: var(--red);
  background: #fff;
  font-size: .68rem;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(90deg, rgba(10,11,14,.86) 0%, rgba(10,11,14,.68) 46%, rgba(10,11,14,.24) 74%, rgba(10,11,14,.08) 100%);
}

/* On phones, keep the video and soften the overlay for the tighter crop. */
@media (max-width: 760px) {
  .hero { background: linear-gradient(rgba(15,16,20,.42), rgba(15,16,20,.60)), url('../img/optimized/pressure-cleaning-garage-wall-wash-1200.webp') 52% center / cover; }
  .hero-overlay { background: linear-gradient(90deg, rgba(10,11,14,.36), rgba(10,11,14,.08)); }
}

/* Respect reduced-motion: swap the autoplaying video for a still frame */
@media (prefers-reduced-motion: reduce) {
  .hero-video { display: none; }
  .hero { background: linear-gradient(rgba(15,16,20,.42), rgba(15,16,20,.60)), url('../img/optimized/pressure-cleaning-garage-wall-wash-1200.webp') 52% 30% / cover; }
}

/* ---------- Welcome block: polished mobile layout ---------- */
@media (max-width: 640px) {
  .about-split { gap: 26px; }
  .about-media { margin-bottom: 4px; }
  .exp-badge {
    top: 14px; left: 14px; right: auto; bottom: auto;
    padding: 10px 14px; border-radius: 10px;
    box-shadow: 0 8px 18px rgba(176,0,0,.45);
  }
  .exp-badge .n { font-size: 1.7rem; }
  .exp-badge .t { font-size: .64rem; letter-spacing: .06em; }
  .softwash-intro-media > img {
    height: 540px;
    max-height: 540px;
  }
  .softwash-intro-media .exp-badge {
    top: auto;
    left: 14px;
    bottom: 14px;
  }
  .arena-intro-media .exp-badge {
    top: 14px;
    bottom: auto;
  }
  .about-body { text-align: center; }
  .about-body .eyebrow { justify-content: center; }
  .about-body h2 { font-size: 1.7rem; }
  .about-body .check-list {
    grid-template-columns: 1fr;
    text-align: left; max-width: 280px; margin: 1.1rem auto 1.5rem;
    gap: .45rem;
  }
  .about-body .btn { width: 100%; justify-content: center; }
}

/* ---------- Service page helpers ---------- */
.page-hero .hero-actions { justify-content: center; margin-top: 24px; }
.service-page #quote { scroll-margin-top: calc(var(--header-h, 108px) + 18px); }
.svc-intro .about-body h2 { text-transform: none; }
.photo-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.service-page .section.alt .photo-strip { grid-template-columns: repeat(4, 1fr); gap: 14px; }
.photo-strip figure { margin: 0; }
.service-page .section.alt .photo-strip figure {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
}
.service-page .section.alt .photo-strip figure > img {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
}
.service-page .section.alt .photo-strip figure > .before-after {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  border-radius: inherit;
  box-shadow: none;
}
.photo-strip figure:has(> img) { overflow: hidden; border-radius: 12px; box-shadow: var(--shadow-sm); }
.photo-strip figure[role="button"] { cursor: zoom-in; }
.photo-strip figure[role="button"]:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 4px;
}
.photo-strip img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; display: block; transition: transform .4s ease; }
.photo-strip figure:has(> img):hover img { transform: scale(1.06); }
.photo-strip .before-after {
  aspect-ratio: 4 / 3;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
}
.photo-strip figcaption { font-size: .85rem; color: var(--muted); margin-top: 8px; }
.photo-strip.natural img { aspect-ratio: auto; object-fit: contain; }
@media (max-width: 980px) {
  .service-page .section.alt .photo-strip { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .service-page .section.alt .photo-strip { gap: 10px; }
}
.before-after-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, .72fr);
  gap: 22px;
  align-items: start;
}
.results-grid {
  column-count: 2;
  column-gap: 28px;
}
.results-grid .comparison-card {
  break-inside: avoid;
  margin-bottom: 32px;
}
@media (max-width: 760px) {
  .results-grid { column-count: 1; }
}
.before-after-square { aspect-ratio: 1 / 1; max-width: 640px; }
.before-after-4-3 { aspect-ratio: 4 / 3; max-width: 720px; }
.comparison-card h3 {
  margin: 0 0 12px;
  font-size: 1.15rem;
  color: var(--ink);
}
.before-after {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  max-width: 100%;
  margin: 0 auto;
  border-radius: 8px;
  box-shadow: var(--shadow);
  background: #111;
}
.before-after-portrait {
  aspect-ratio: 3 / 4;
  max-width: 760px;
}
.before-after-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.before-after-before {
  position: absolute;
  inset: 0;
  width: 100%;
  overflow: hidden;
  clip-path: inset(0 calc(100% - var(--position)) 0 0);
}
.before-after-before .before-after-img {
  width: 100%;
}
.before-after-label {
  position: absolute;
  top: 18px;
  z-index: 3;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(15,16,20,.78);
  color: #fff;
  font: 800 .78rem/1 var(--font-head);
  letter-spacing: .06em;
  text-transform: uppercase;
  pointer-events: none;
}
.before-after-label.before { left: 18px; }
.before-after-label.after { right: 18px; }
.before-after-handle {
  position: absolute;
  z-index: 4;
  top: 0;
  bottom: 0;
  left: var(--position);
  width: 3px;
  transform: translateX(-50%);
  background: #fff;
  pointer-events: none;
}
.before-after-handle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  box-shadow: 0 8px 20px rgba(0,0,0,.28);
}
.before-after-handle::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  transform: translate(-50%, -50%);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='%23b00000' d='M9 4 9 20 2 12Z M15 4 15 20 22 12Z'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.before-after-range {
  position: absolute;
  z-index: 5;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
}
.before-after:focus-within { outline: 3px solid var(--red); outline-offset: 4px; }
.spec-band { background: var(--bg-soft); border-radius: var(--radius); padding: 36px; position: relative; overflow: hidden; }
.spec-band::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--red-darker), var(--red)); }
.spec-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 40px; }
.spec-grid li { position: relative; padding-left: 30px; margin-bottom: .5rem; color: var(--slate); list-style: none; }
.spec-grid li::before { content: "✓"; position: absolute; left: 0; color: var(--red); font-weight: 800; }
@media (prefers-reduced-motion: reduce) {
  .photo-strip img { transition: none; }
  .photo-strip figure:has(> img):hover img { transform: none; }
}
@media (max-width: 760px) {
  .service-page .page-hero .container {
    padding-top: 72px;
    padding-bottom: 72px;
  }
  .photo-strip { grid-template-columns: repeat(2, 1fr); }
  .before-after-grid { grid-template-columns: 1fr; }
  .spec-grid { grid-template-columns: 1fr; }
  .spec-band { padding: 26px; }
  .before-after { aspect-ratio: 4 / 3; }
  .before-after-portrait { aspect-ratio: 3 / 4; }
  .before-after-label { top: 12px; font-size: .7rem; }
  .before-after-label.before { left: 12px; }
  .before-after-label.after { right: 12px; }
}

/* ---------- Top bar social icons ---------- */
.topbar-social {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-left: 14px;
  padding-left: 14px;
  position: relative;
}
.topbar-social::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 14px;
  background: rgba(255,255,255,.3);
}
.topbar-social a {
  color: rgba(255,255,255,.88);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  line-height: 0;
  transition: color .15s ease, transform .15s ease, background .15s ease;
}
.topbar-social a:hover { color: #fff; transform: translateY(-1px); background: rgba(255,255,255,.16); }
.topbar-social svg { width: 17px; height: 17px; display: block; }

/* ---------- About page: origin story ---------- */
.about-page .nav-menu > li > a[aria-current="page"] {
  color: var(--red);
  background: rgba(176,0,0,.08);
}

.about-page-hero {
  background-position: center 38%;
}
.about-page-hero .container {
  max-width: 1000px;
}
.about-page-hero .eyebrow {
  color: #fff;
  text-shadow: 0 1px 8px rgba(0,0,0,.7);
}
.about-page-hero .eyebrow::before,
.about-page-hero .eyebrow::after {
  background: #ff8a8a;
}
.about-page-hero h1 {
  max-width: 19ch;
  margin: 0 auto .38em;
  font-size: clamp(2.45rem, 6vw, 4.35rem);
  font-weight: 800;
  text-shadow: 0 2px 18px rgba(0,0,0,.62);
}
.about-page-hero p {
  max-width: 72ch;
  font-size: clamp(1.05rem, 2vw, 1.24rem);
  text-shadow: 0 1px 10px rgba(0,0,0,.72);
}

.about-origin {
  position: relative;
  overflow: hidden;
}
.about-origin::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -260px;
  top: -190px;
  border: 60px solid rgba(176,0,0,.035);
  border-radius: 50%;
  pointer-events: none;
}
.about-origin-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(360px, .94fr);
  gap: clamp(42px, 6vw, 76px);
  align-items: start;
}
.about-origin-copy {
  position: relative;
  z-index: 1;
}
.about-origin-copy h2,
.about-operations-copy h2 {
  text-transform: none;
  font-size: clamp(2rem, 4vw, 3rem);
}
.about-origin-copy > p:not(.about-deck) {
  max-width: 66ch;
}
.about-deck {
  margin: 1.25rem 0 1.45rem;
  padding-left: 20px;
  border-left: 4px solid var(--red);
  color: var(--ink);
  font-family: var(--font-head);
  font-size: clamp(1.2rem, 2.1vw, 1.48rem);
  font-weight: 700;
  line-height: 1.35;
}
.about-origin-figure {
  position: relative;
  margin: 0;
  padding-bottom: 0;
}
.about-origin-figure img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: 35% center;
  border-radius: 10px;
  box-shadow: var(--shadow-lg);
}
.about-origin-figure figcaption {
  margin-top: 10px;
  padding-right: 0;
  color: var(--muted);
  font-size: .8rem;
  line-height: 1.45;
}
.about-owner-figure {
  width: min(100%, 470px);
  margin: 26px 0 0;
}
.about-owner-figure img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: var(--shadow);
}
.about-owner-figure figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: .8rem;
  line-height: 1.45;
}

.about-proof {
  padding: 46px 0;
  color: #fff;
  background: linear-gradient(115deg, #111318, #20242a);
  border-top: 4px solid var(--red);
}
.about-proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
}
.about-proof-grid > div {
  min-width: 0;
  padding: 4px clamp(18px, 3vw, 34px);
  text-align: center;
}
.about-proof-grid > div + div {
  border-left: 1px solid rgba(255,255,255,.16);
}
.about-proof-grid dt {
  margin: 0;
  color: #fff;
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -.025em;
  line-height: 1;
  white-space: nowrap;
}
.about-proof-grid dt.about-proof-long {
  font-size: clamp(1.7rem, 3.2vw, 2.45rem);
  text-transform: uppercase;
  letter-spacing: .015em;
  line-height: 1.05;
  white-space: normal;
}
.about-proof-grid dt span {
  font-size: .72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.about-proof-grid dd {
  margin: 9px auto 0;
  max-width: 24ch;
  color: rgba(255,255,255,.72);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .075em;
  line-height: 1.4;
  text-transform: uppercase;
}

.about-maintenance-head {
  max-width: 830px;
}
.about-maintenance-head h2 {
  text-transform: none;
}
.about-property-panel {
  display: grid;
  grid-template-columns: minmax(280px, 1.15fr) minmax(220px, .85fr);
  gap: clamp(30px, 5vw, 64px);
  align-items: center;
  margin-top: 34px;
  padding: clamp(28px, 4vw, 42px);
  color: #fff;
  background: linear-gradient(120deg, #17191e, #272b32);
  border-left: 5px solid var(--red);
  border-radius: 10px;
  box-shadow: var(--shadow);
}
.about-property-intro > span {
  display: block;
  margin-bottom: 7px;
  color: #ff8a8a;
  font-family: var(--font-head);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.about-property-intro h3 {
  margin-bottom: .5rem;
  color: #fff;
  font-size: clamp(1.55rem, 2.5vw, 2rem);
}
.about-property-intro p {
  margin: 0;
  color: rgba(255,255,255,.7);
  font-size: .94rem;
}
.about-property-action {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding-left: clamp(24px, 4vw, 48px);
  border-left: 1px solid rgba(255,255,255,.16);
}
.about-property-action p {
  max-width: 38ch;
  margin: 0;
  color: rgba(255,255,255,.72);
  font-size: .94rem;
}

.about-operations {
  background: var(--bg-soft);
}
.about-operations-grid {
  display: grid;
  grid-template-columns: minmax(360px, 1fr) minmax(0, 1fr);
  gap: clamp(42px, 5vw, 64px);
  align-items: center;
}
.about-equipment-media {
  align-self: center;
}
.about-equipment-media figure {
  margin: 0;
}
.about-equipment-primary {
  overflow: hidden;
  border-radius: 10px;
  box-shadow: var(--shadow);
}
.about-equipment-primary img,
.about-equipment-secondary img {
  width: 100%;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: var(--shadow);
}
.about-equipment-primary img {
  display: block;
  height: auto;
  margin-right: auto;
  margin-left: 0;
  aspect-ratio: auto;
  object-position: left center;
  box-shadow: none;
  transform: none;
}
.about-equipment-secondary {
  position: relative;
  z-index: 2;
  width: 64%;
  margin: -48px 0 0 auto !important;
}
.about-equipment-secondary img {
  aspect-ratio: 3 / 2;
  border: 7px solid var(--bg-soft);
}
.about-equipment-media > p {
  margin: 9px 0 0;
  color: var(--muted);
  font-size: .8rem;
  text-align: right;
}
.about-operations-copy > p:first-of-type {
  max-width: 62ch;
  font-size: 1.05rem;
}
.about-principles {
  margin: 26px 0 24px;
  border-top: 1px solid var(--line);
}
.about-principles article {
  position: relative;
  padding: 18px 0 17px 20px;
  border-bottom: 1px solid var(--line);
}
.about-principles article::before {
  content: "";
  position: absolute;
  left: 0;
  top: 22px;
  width: 4px;
  height: 32px;
  border-radius: 3px;
  background: var(--red);
}
.about-principles h3 {
  margin-bottom: .25rem;
  color: var(--ink);
  font-size: 1.12rem;
  text-transform: uppercase;
  letter-spacing: .025em;
}
.about-principles p {
  margin: 0;
  color: var(--muted);
  font-size: .94rem;
  line-height: 1.55;
}
.about-closing {
  margin: 0 0 24px;
  padding: 18px 20px;
  color: var(--ink);
  background: #fff;
  border-left: 4px solid var(--red);
  border-radius: 0 8px 8px 0;
  box-shadow: var(--shadow-sm);
  font-weight: 600;
}
.about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

@media (min-width: 901px) {
  .about-equipment-media {
    width: 100%;
    margin-right: 0;
    margin-left: 0;
    justify-self: start;
  }
  .about-equipment-primary {
    width: calc(100% + clamp(24px, 2.5vw, 36px));
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .about-origin-grid {
    align-items: stretch;
  }
  .about-origin-figure {
    display: grid;
    grid-template-rows: minmax(0, 1fr) auto;
    min-height: 0;
    width: calc(100% + 28px);
    margin-left: -28px;
  }
  .about-origin-figure img {
    height: 100%;
    min-height: 0;
    aspect-ratio: auto;
  }
}

@media (max-width: 900px) {
  .about-equipment-primary {
    width: 100%;
    margin-right: 0 !important;
  }
  .about-origin-grid,
  .about-operations-grid {
    grid-template-columns: 1fr;
  }
  .about-origin-figure,
  .about-equipment-media {
    width: min(100%, 720px);
    margin-left: auto;
    margin-right: auto;
  }
  .about-equipment-media {
    margin-left: 0;
    margin-right: auto;
  }
  .about-proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .about-proof-grid > div {
    padding-top: 24px;
    padding-bottom: 24px;
    border-left: 0 !important;
  }
  .about-proof-grid > div:nth-child(even) {
    border-left: 1px solid rgba(255,255,255,.16) !important;
  }
  .about-proof-grid > div:nth-child(n+3) {
    border-top: 1px solid rgba(255,255,255,.16);
  }
  .about-property-panel {
    grid-template-columns: 1fr;
  }
  .about-property-action {
    padding-top: 24px;
    padding-left: 0;
    border-top: 1px solid rgba(255,255,255,.16);
    border-left: 0;
  }
}

@media (max-width: 620px) {
  section.about-page-hero .container {
    padding-top: 76px;
    padding-bottom: 76px;
  }
  .about-page-hero .breadcrumb {
    margin-bottom: 20px;
  }
  .about-page-hero h1 {
    font-size: clamp(2.2rem, 12vw, 3.15rem);
  }
  .about-origin-grid,
  .about-operations-grid {
    gap: 34px;
  }
  .about-origin-copy .eyebrow,
  .about-operations-copy .eyebrow {
    justify-content: flex-start;
  }
  .about-origin-figure {
    padding-bottom: 0;
  }
  .about-proof {
    padding: 26px 0;
  }
  .about-proof-grid {
    grid-template-columns: 1fr;
  }
  .about-proof-grid > div,
  .about-proof-grid > div:nth-child(even) {
    border-left: 0 !important;
  }
  .about-proof-grid > div + div {
    border-top: 1px solid rgba(255,255,255,.16);
  }
  .about-property-panel {
    padding: 25px 22px;
  }
  .about-property-action .btn {
    width: 100%;
    justify-content: center;
  }
  .about-equipment-secondary {
    width: 72%;
    margin-top: -28px !important;
  }
  .about-equipment-secondary img {
    border-width: 5px;
  }
  .about-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ---------- Leo mascot placements ---------- */
.mascot-section-head {
  display: grid;
  grid-template-columns: minmax(0, 720px) minmax(160px, 210px);
  gap: clamp(28px, 5vw, 58px);
  align-items: end;
  max-width: 1010px;
  margin: 0 auto 44px;
}
.mascot-section-head .section-head {
  max-width: 720px;
  margin: 0;
  text-align: left;
}
.mascot-section-head .section-head .eyebrow {
  justify-content: flex-start;
}
.mascot-section-head-img {
  display: block;
  width: 100%;
  max-width: 205px;
  height: auto;
  justify-self: end;
  filter:
    drop-shadow(0 10px 8px rgba(16,18,22,.20))
    drop-shadow(0 24px 26px rgba(16,18,22,.16));
}
.mascot-section-head-services {
  margin-bottom: 34px;
}

.contact-form-column {
  position: relative;
  align-self: start;
}
.contact-form-mascot {
  position: relative;
  z-index: 2;
  isolation: isolate;
  margin: 0 0 24px;
  text-align: center;
}
.contact-form-mascot::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 50%;
  z-index: 0;
  width: 170px;
  height: 28px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(16,18,22,.28) 0%, rgba(16,18,22,.12) 42%, rgba(16,18,22,0) 72%);
  transform: translateX(-50%);
  pointer-events: none;
}
.contact-form-mascot img {
  position: relative;
  z-index: 1;
  display: block;
  width: min(100%, 246px);
  height: auto;
  margin: 0 auto;
  filter: none;
}
.contact-form-column .form-card {
  padding-top: 30px;
}

@media (max-width: 980px) {
  .contact-form-column {
    align-self: start;
  }
  .contact-form-mascot {
    margin: 18px 0 24px;
    transform: none;
  }
}

.utility-mascot-page {
  display: grid;
  min-height: 56vh;
  place-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #fff 0%, #fff 58%, rgba(176,0,0,.055) 100%);
}
.utility-mascot-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(250px, 350px);
  gap: clamp(34px, 7vw, 84px);
  align-items: center;
  max-width: 1000px;
}
.utility-mascot-copy {
  text-align: left;
}
.utility-mascot-copy h1 {
  max-width: 18ch;
}
.utility-mascot-copy .lead {
  max-width: 48ch;
  margin: 0 0 1.6rem;
}
.utility-mascot-copy .cta-actions {
  justify-content: flex-start;
}
.utility-mascot-figure {
  margin: 0;
  justify-self: center;
}
.utility-mascot-figure img {
  display: block;
  width: 100%;
  max-width: 350px;
  max-height: 470px;
  object-fit: contain;
  filter:
    drop-shadow(0 10px 8px rgba(16,18,22,.20))
    drop-shadow(0 24px 26px rgba(16,18,22,.16));
}
.utility-error-code {
  margin-bottom: 8px;
  color: var(--red);
  font-family: var(--font-head);
  font-size: clamp(4rem, 12vw, 7.5rem);
  font-weight: 800;
  line-height: .86;
}
.utility-mascot-layout-404 {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 460px);
  max-width: 1100px;
}
.utility-mascot-layout-404 .utility-mascot-figure img {
  max-width: 460px;
}

@media (max-width: 760px) {
  .mascot-section-head {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 34px;
  }
  .mascot-section-head .section-head {
    text-align: center;
  }
  .mascot-section-head .section-head .eyebrow {
    justify-content: center;
  }
  .mascot-section-head-img {
    max-width: 165px;
    justify-self: center;
    filter: none;
  }
  .utility-mascot-page {
    min-height: 0;
  }
  .utility-mascot-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .utility-mascot-layout-404 {
    grid-template-columns: 1fr;
  }
  .utility-mascot-copy {
    text-align: center;
  }
  .utility-mascot-copy h1,
  .utility-mascot-copy .lead {
    margin-left: auto;
    margin-right: auto;
  }
  .utility-mascot-copy .cta-actions {
    justify-content: center;
  }
  .utility-mascot-figure img {
    max-width: 235px;
    max-height: 320px;
  }
}

@media (max-width: 620px) {
  .contact-form-mascot img {
    width: min(100%, 216px);
  }
}
