/* Major League Towing & Recovery — industrial/utilitarian brand system
   Navy steel + safety red, condensed display type, real fleet photography. */

:root {
  --navy: #071626;
  --navy2: #0d2138;
  --navy3: #09192a;
  --red: #e32935;
  --red-dark: #85111a;
  --red-light: #ff4853;
  --white: #fff;
  --light: #f7f9fb;
  --ink: #122033;
  --muted: #667386;
  --line: #d6dde5;
  --max: 1220px;
  --shadow: 0 24px 70px rgba(7, 22, 38, .18);
  --display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --body: Inter, "Helvetica Neue", Arial, sans-serif;
  --ease: cubic-bezier(.2, .7, .2, 1);
}

* { box-sizing: border-box }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100% }

body {
  margin: 0;
  font-family: var(--body);
  color: var(--ink);
  background: #fff;
  line-height: 1.55;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit }
img { display: block; max-width: 100%; height: auto }
ul { margin: 0; padding-left: 18px }

:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 3px;
}

.wrap { max-width: var(--max); margin: auto }

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--red);
  color: #fff;
  padding: 12px 18px;
  font-weight: 800;
  z-index: 300;
}
.skip:focus { left: 12px; top: 12px }

/* ---------- Ticker bar ---------- */
.top {
  background: linear-gradient(90deg, #0a1d31, #102a45);
  color: #fff;
  padding: 0;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  border-bottom: 2px solid var(--red);
  overflow: hidden;
}
.ticker {
  display: flex;
  width: max-content;
  animation: slide 34s linear infinite;
}
.ticker > span {
  padding: 10px 0;
  white-space: nowrap;
}
.ticker b { color: #ff8a91; font-weight: 800; padding: 0 14px }
@keyframes slide { to { transform: translateX(-50%) } }
@media (prefers-reduced-motion: reduce) {
  .ticker { animation: none; width: 100%; justify-content: center }
  .ticker > span:nth-child(2) { display: none }
}

/* ---------- Nav ---------- */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 6px 20px rgba(7, 22, 38, .08);
}
.nav {
  max-width: var(--max);
  margin: auto;
  min-height: 86px;
  padding: 0 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 13px }
.badge {
  width: 56px;
  height: 56px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--red), var(--red-dark));
  display: grid;
  place-items: center;
  color: #fff;
  font-family: var(--display);
  font-size: 27px;
  font-weight: 800;
  letter-spacing: .02em;
  border: 4px solid var(--navy);
  box-shadow: inset 0 0 0 2px #fff;
}
.brand-name {
  font-family: var(--display);
  font-size: 31px;
  line-height: .84;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--navy);
}
.brand-name span {
  display: block;
  color: var(--red);
  font-size: 18px;
  letter-spacing: .12em;
  margin-top: 7px;
}
.links {
  display: flex;
  gap: 25px;
  font-size: 14px;
  font-weight: 700;
  color: #34465a;
}
.links a { padding: 4px 0; border-bottom: 2px solid transparent; transition: color .18s, border-color .18s }
.links a:hover { color: var(--navy); border-color: var(--red) }
.navcall {
  background: var(--red);
  color: #fff;
  border-radius: 8px;
  padding: 12px 17px;
  font-weight: 900;
  box-shadow: 5px 5px 0 var(--navy);
  transition: transform .16s var(--ease), box-shadow .16s var(--ease);
  white-space: nowrap;
}
.navcall:hover { transform: translate(2px, 2px); box-shadow: 3px 3px 0 var(--navy) }
.navcall:active { transform: translate(5px, 5px); box-shadow: 0 0 0 var(--navy) }

.menu-btn {
  display: none;
  width: 52px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
  padding: 13px 14px;
}
.menu-btn i {
  display: block;
  height: 2px;
  background: var(--navy);
  margin-bottom: 5px;
  transition: transform .2s var(--ease), opacity .2s;
}
.menu-btn i:last-child { margin-bottom: 0 }
.menu-btn[aria-expanded="true"] i:nth-child(1) { transform: translateY(7px) rotate(45deg) }
.menu-btn[aria-expanded="true"] i:nth-child(2) { opacity: 0 }
.menu-btn[aria-expanded="true"] i:nth-child(3) { transform: translateY(-7px) rotate(-45deg) }

.drawer { display: none }
.drawer.open {
  display: grid;
  border-top: 1px solid var(--line);
  background: #fff;
  padding: 10px 22px 22px;
}
.drawer a {
  padding: 15px 2px;
  border-bottom: 1px solid var(--line);
  font-weight: 700;
  font-size: 15px;
}
.drawer .drawer-call {
  margin-top: 16px;
  background: var(--red);
  color: #fff;
  text-align: center;
  border-radius: 8px;
  font-weight: 900;
  border: 0;
  padding: 16px;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  isolation: isolate;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 42% 55%;
  filter: saturate(.85) contrast(1.05);
}
.hero-bg:after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 24%, rgba(227, 41, 53, .28), transparent 46%),
    linear-gradient(105deg, rgba(7, 22, 38, .96) 0%, rgba(9, 25, 42, .9) 46%, rgba(6, 17, 29, .74) 100%);
}
.hero-inner {
  max-width: var(--max);
  margin: auto;
  padding: 94px 22px 86px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items: center;
  min-height: 700px;
}
.kicker {
  color: #ff7b83;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .17em;
  text-transform: uppercase;
}
.kicker:before {
  content: "";
  display: inline-block;
  width: 35px;
  height: 3px;
  background: var(--red);
  margin-right: 10px;
  vertical-align: middle;
}
h1, h2, h3, h4 { font-family: var(--display); margin: 0; line-height: .94 }
h1 {
  font-size: clamp(64px, 9.4vw, 132px);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: -.035em;
  margin-top: 17px;
  text-shadow: 0 8px 40px rgba(0, 0, 0, .35);
}
h1 .red { color: var(--red-light) }
.hero p { max-width: 640px; color: #d3dde7; font-size: 18px; margin: 24px 0 30px }
.actions { display: flex; gap: 12px; flex-wrap: wrap }
.btn {
  min-height: 54px;
  padding: 0 23px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: .04em;
  transition: transform .16s var(--ease), box-shadow .16s var(--ease), background .16s;
}
.primary { background: var(--red); color: #fff; box-shadow: 0 10px 26px rgba(227, 41, 53, .34) }
.primary:hover { background: #f2323e; transform: translateY(-2px) }
.secondary { background: #fff; color: var(--navy) }
.secondary:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(0, 0, 0, .22) }
.btn svg { width: 16px; height: 16px; fill: currentColor }
.micro {
  display: flex;
  gap: 10px 20px;
  flex-wrap: wrap;
  margin-top: 26px;
  color: #c4ced9;
  font-size: 13px;
  font-weight: 600;
}
.micro span { display: inline-flex; align-items: center; gap: 8px }
.micro span:before {
  content: "";
  width: 7px;
  height: 7px;
  background: var(--red);
  transform: rotate(45deg);
}

.trust-card {
  justify-self: end;
  max-width: 430px;
  background: #fff;
  border-radius: 20px;
  padding: 28px;
  box-shadow: var(--shadow);
  border-top: 6px solid var(--red);
}
.score-row { display: flex; align-items: flex-end; gap: 14px }
.score {
  font-family: var(--display);
  font-size: 68px;
  font-weight: 800;
  color: var(--navy);
  line-height: .78;
}
.stars { color: #e8b63b; letter-spacing: .08em; line-height: 1.2 }
.trust-card small { color: #7a8798; display: block; margin-top: 2px }
.trust-card h3 { font-size: 32px; text-transform: uppercase; margin: 24px 0 11px; color: var(--navy) }
.trust-card p { font-size: 14px; color: #607082; margin: 0 }
.trust-list { display: grid; gap: 10px; margin-top: 20px }
.trust-item {
  background: #f2f5f8;
  border: 1px solid #e0e5ea;
  border-left: 3px solid var(--red);
  padding: 13px 14px;
  font-size: 13px;
  font-weight: 700;
}

/* ---------- Stat rail ---------- */
.stats { background: linear-gradient(115deg, #f7f9fb, #d6dde4 24%, #fafbfd 48%, #cbd3dc 72%, #f5f7f9); border-bottom: 1px solid #c2cbd4 }
.stats-grid {
  max-width: var(--max);
  margin: auto;
  padding: 0 22px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
.stat { padding: 26px 18px; border-right: 1px solid #bdc6cf; text-align: center }
.stat:last-child { border-right: 0 }
.stat strong {
  display: block;
  font-family: var(--display);
  font-size: 28px;
  text-transform: uppercase;
  color: var(--navy);
  letter-spacing: .01em;
}
.stat span { font-size: 12px; color: #506072 }

/* ---------- Sections ---------- */
section { padding: 94px 22px }
.section-head {
  display: flex;
  justify-content: space-between;
  gap: 38px;
  align-items: end;
  margin-bottom: 42px;
}
.section-kicker {
  color: var(--red);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.title { font-size: clamp(48px, 6.4vw, 88px); text-transform: uppercase; color: var(--navy) }
.section-head p { max-width: 550px; color: var(--muted); margin: 0 }

/* ---------- Services ---------- */
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px }
.service {
  border: 1px solid var(--line);
  padding: 26px;
  min-height: 270px;
  position: relative;
  background: #fff;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s;
}
.service:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 5px;
  background: var(--red);
  transform-origin: left;
  transition: transform .28s var(--ease);
}
.service:hover { transform: translateY(-6px); box-shadow: 0 22px 44px rgba(7, 22, 38, .13); border-color: #c3ccd6 }
.service:hover:before { transform: scaleY(1.8) }
.service-num {
  font-family: var(--display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .18em;
  color: #9aa7b6;
}
.service h3 { font-size: 34px; text-transform: uppercase; margin: 34px 0 10px; color: var(--navy) }
.service p { font-size: 14px; color: var(--muted); margin: 0 }

/* ---------- Identity strip ---------- */
.identity { background: var(--navy2); color: #fff; padding: 62px 22px }
.identity-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 46px; align-items: center }
.identity h2 { font-size: clamp(40px, 5vw, 62px); text-transform: uppercase }
.identity p { color: #bdc8d3 }
.attr-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px }
.attr {
  border: 1px solid #2b4360;
  background: linear-gradient(160deg, #0a1d31, #10294300);
  padding: 22px 20px;
}
.attr strong {
  display: block;
  font-family: var(--display);
  font-size: 26px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 6px;
}
.attr span { font-size: 13px; color: #a9b7c6 }
.attr:nth-child(1) { border-top: 4px solid var(--red) }
.attr:nth-child(2) { border-top: 4px solid #e8b63b }
.attr:nth-child(3) { border-top: 4px solid #4aa3d9 }

/* ---------- Credentials / enterprise ---------- */
.enterprise { background: var(--navy); color: #fff }
.enterprise-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 55px; align-items: center }
.compliance-card {
  background: linear-gradient(145deg, #f7f9fb, #d9e0e7);
  color: #111;
  padding: 38px;
  box-shadow: 12px 12px 0 var(--red);
}
.compliance-card h3 { font-size: 42px; text-transform: uppercase; color: var(--navy); margin-bottom: 12px }
.reg-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid #c8d0d8;
  padding: 13px 0;
}
.reg-row:last-child { border-bottom: 0 }
.reg-row span { font-size: 13px; color: #596878 }
.reg-row strong { font-size: 14px; text-align: right }
.enterprise h2 { font-size: clamp(46px, 6vw, 88px); text-transform: uppercase; margin-top: 16px }
.enterprise p { color: #bdc8d3 }
.ep { border: 1px solid #29405a; background: #0d2138; padding: 17px 19px; margin-top: 12px }
.ep strong { font-size: 15px }
.ep span { font-size: 14px; color: #a9b7c6 }

/* ---------- Reviews ---------- */
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px }
.review {
  background: #fff;
  border: 1px solid var(--line);
  padding: 25px;
  min-height: 250px;
  display: flex;
  flex-direction: column;
}
.review p { font-size: 15px; color: #425369 }
.review blockquote { margin: 14px 0; font-size: 17px; color: #22314a; font-weight: 500 }
.review strong { margin-top: auto; font-size: 14px; color: var(--navy) }
.review small { color: #7d8a99; font-size: 12px }

/* ---------- Gallery ---------- */
.gallery { background: #0b1c2f; color: #fff }
.gallery .title, .gallery h2 { color: #fff }
.gallery .section-head p { color: #a9b7c6 }
.gal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.shot {
  position: relative;
  overflow: hidden;
  background: #071626;
  border: 1px solid #24384e;
}
.shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
  transition: transform .5s var(--ease), filter .4s;
  filter: saturate(.9);
}
.shot:hover img { transform: scale(1.06); filter: saturate(1.05) }
.shot figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 26px 14px 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  background: linear-gradient(transparent, rgba(4, 12, 21, .88));
}
/* Staggered brick offset — rhythm without leaving grid holes.
   Uses static `top` (not transform) so it cannot fight the .reveal transform. */
.gal-grid { padding-bottom: 30px }
.shot:nth-child(even) { top: 30px }

/* ---------- Capability ---------- */
.capability { background: var(--light) }
.cap-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px }
.cap { padding: 34px; background: #fff; border: 1px solid var(--line) }
.cap.dark { background: var(--navy2); color: #fff; position: relative; overflow: hidden }
.cap.dark:before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../assets/fleet/heavy-suv-yard-recovery.webp") center/cover no-repeat;
  opacity: .16;
}
.cap.dark > * { position: relative }
.cap h3 { font-size: 44px; text-transform: uppercase; color: var(--navy) }
.cap.dark h3 { color: #fff }
.cap p { color: var(--muted) }
.cap.dark p { color: #bdc8d4 }
.cap ul { columns: 2; column-gap: 26px; font-size: 14px; line-height: 1.9 }
.cap.dark ul { color: #d5dee7 }
.cap li::marker { color: var(--red) }

/* ---------- Coverage ---------- */
.coverage { background: linear-gradient(115deg, #f7f9fb, #d9dfe5 30%, #f9fafb 53%, #cbd3da 76%, #f6f8fa) }
.coverage-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 50px; align-items: center }
.map-card {
  min-height: 420px;
  background: var(--navy);
  padding: 30px;
  color: #fff;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.map-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .42;
}
.map-card:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 22, 38, .35), rgba(7, 22, 38, .92));
}
.map-card > * { position: relative; z-index: 1 }
.map-card h3 { font-size: 48px; text-transform: uppercase }
.map-card p { color: #cbd6e1; margin: 12px 0 0; max-width: 380px }
.coverage h2, .safety h2 { font-size: clamp(44px, 6vw, 84px); text-transform: uppercase; color: var(--navy) }
.coverage p, .safety p { color: var(--muted) }
.coverage-list { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 22px }
.coverage-list div {
  background: #fff;
  border: 1px solid #cfd7df;
  padding: 13px 14px;
  font-size: 13px;
  font-weight: 700;
}

/* ---------- Safety ---------- */
.safety-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center }
.safety-panel { background: #f5f7f9; border-left: 6px solid var(--red); padding: 30px }
.safety-panel h3 { font-size: 40px; text-transform: uppercase; color: var(--navy); margin-bottom: 14px }
.safety-panel ol { padding-left: 22px; margin: 0 }
.safety-panel li { margin: 10px 0; color: #4b5b70 }
.safety-panel li::marker { color: var(--red); font-weight: 800 }
.callout {
  margin-top: 22px;
  background: var(--navy);
  color: #fff;
  padding: 18px 20px;
  font-size: 14px;
}
.callout strong { color: #ff8a91 }

/* ---------- FAQ ---------- */
.faq { background: #fff }
.faq-list { display: grid; gap: 12px; max-width: 900px }
details {
  border: 1px solid var(--line);
  border-left: 4px solid var(--red);
  padding: 18px 22px;
  background: #fbfcfd;
}
details summary {
  cursor: pointer;
  font-family: var(--display);
  font-size: 26px;
  text-transform: uppercase;
  color: var(--navy);
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
}
details summary::-webkit-details-marker { display: none }
details summary:after {
  content: "+";
  font-size: 30px;
  color: var(--red);
  line-height: 1;
}
details[open] summary:after { content: "–" }
details p { color: var(--muted); margin: 12px 0 0; font-size: 15px }

/* ---------- Contact ---------- */
.contact { background: var(--navy3); color: #fff }
.contact-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 45px }
.contact h2 { font-size: clamp(50px, 7vw, 96px); text-transform: uppercase }
.contact p { color: #c3cfda }
.phone {
  display: inline-block;
  font-family: var(--display);
  font-size: clamp(42px, 6vw, 60px);
  font-weight: 800;
  margin: 20px 0;
  color: #fff;
  border-bottom: 4px solid var(--red);
}
.phone:hover { color: #ff8a91 }
.contact-card { background: #fff; color: #111; padding: 34px }
.contact-card h3 { font-size: 40px; text-transform: uppercase; color: var(--navy); margin-bottom: 16px }
.contact-card p { color: #45566b; font-size: 15px }
.contact-card .btn { width: 100%; margin-top: 8px }
.contact-card .pluscode { color: #7a8798; font-size: 14px }
.contact-card .tel { color: var(--red); font-weight: 700 }
.contact-card .tel:hover { text-decoration: underline }
.hours {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #eaf7ee;
  border: 1px solid #b9dfc5;
  color: #1c6b36;
  font-size: 13px;
  font-weight: 800;
  padding: 8px 12px;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #24a54a;
  box-shadow: 0 0 0 4px rgba(36, 165, 74, .22);
}

/* ---------- Footer ---------- */
footer { background: #050f1a; padding: 48px 22px 100px; color: #fff }
.footer {
  max-width: var(--max);
  margin: auto;
  border-top: 1px solid #27384a;
  padding-top: 32px;
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr .8fr;
  gap: 30px;
}
.brand-name.on-dark { color: #fff }
.footer h4 {
  font-size: 22px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 12px;
  letter-spacing: .02em;
}
.footer p, .footer a, .footer span { font-size: 13px; color: #94a3b2 }
.footer a:hover { color: #fff }
.legal {
  max-width: var(--max);
  margin: 34px auto 0;
  padding-top: 20px;
  border-top: 1px solid #1b2b3c;
  font-size: 12px;
  color: #6d7d8d;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.mobile-call { display: none }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .6s var(--ease), transform .6s var(--ease) }
.reveal.in { opacity: 1; transform: none }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto }
  .reveal { opacity: 1; transform: none; transition: none }
  * { animation-duration: .001ms !important; transition-duration: .001ms !important }
}

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .service-grid { grid-template-columns: repeat(2, 1fr) }
  .gal-grid { grid-template-columns: repeat(2, 1fr) }
}
@media (max-width: 960px) {
  .links { display: none }
  .menu-btn { display: block }
  .hero-inner, .enterprise-grid, .coverage-grid, .safety-grid, .contact-grid, .identity-grid { grid-template-columns: 1fr }
  .hero-inner { min-height: 0 }
  .trust-card { justify-self: start }
  .stats-grid { grid-template-columns: 1fr 1fr }
  .stat:nth-child(2n) { border-right: 0 }
  .stat { border-bottom: 1px solid #bdc6cf }
  .review-grid { grid-template-columns: 1fr }
  .cap-grid { grid-template-columns: 1fr }
  .footer { grid-template-columns: 1fr 1fr }
  .compliance-card { box-shadow: 8px 8px 0 var(--red) }
}
@media (max-width: 620px) {
  .navcall { display: none }
  .hero-inner { padding: 60px 18px 70px }
  section { padding: 66px 18px }
  .identity { padding: 56px 18px }
  .section-head { display: block }
  .section-head p { margin-top: 18px }
  .service-grid, .stats-grid, .coverage-list, .attr-grid { grid-template-columns: 1fr }
  .stat { border-right: 0 }
  .cap ul { columns: 1 }
  .footer { grid-template-columns: 1fr }
  .gal-grid { grid-template-columns: 1fr; padding-bottom: 0 }
  .shot:nth-child(even) { top: 0 }
  .cap, .compliance-card, .safety-panel, .contact-card, .map-card { padding: 24px }
  .mobile-call {
    display: flex;
    position: fixed;
    left: 13px;
    right: 13px;
    bottom: 13px;
    z-index: 130;
    min-height: 58px;
    background: var(--red);
    color: #fff;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 999px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .05em;
    box-shadow: 0 14px 34px rgba(227, 41, 53, .45);
  }
  .mobile-call svg { width: 18px; height: 18px; fill: #fff }
}

/* ---------- Utilities ---------- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}
