/* ============================================================
   HOOKER TOWING LLC  —  Site Stylesheet
   Cedar Rapids, Iowa  |  hookertowing.com
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;600;700&family=Open+Sans:ital,wght@0,400;0,600;1,400&display=swap');

/* --- Reset & Base ------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #222;
  background: #fff;
}

a { color: #C81300; text-decoration: none; transition: color .2s; }
a:hover { color: #9A0F00; }

img { max-width: 100%; height: auto; display: block; }

ul { list-style: none; padding: 0; margin: 0; }

h1, h2, h3, h4, h5 {
  font-family: 'Oswald', 'Trebuchet MS', sans-serif;
  line-height: 1.15;
  font-weight: 700;
}

/* --- Variables --------------------------------------------- */
:root {
  --red:        #C81300;
  --red-dark:   #9A0F00;
  --dark:       #1a1a1a;
  --dark-mid:   #2d2d2d;
  --dark-lt:    #3a3a3a;
  --gray:       #f5f5f5;
  --white:      #ffffff;
  --muted:      #888888;
  --max-w:      1200px;
  --nav-h:      84px;
  --radius:     5px;
  --shadow:     0 4px 24px rgba(0,0,0,.12);
  --shadow-lg:  0 8px 40px rgba(0,0,0,.22);
}

/* --- Focus-visible ---------------------------------------- */
/* Keyboard accessibility: visible focus ring on all interactive elements */
:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 3px;
  border-radius: 2px;
}

/* Suppress focus ring for mouse clicks */
:focus:not(:focus-visible) {
  outline: none;
}

/* --- Reduced motion --------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* --- Layout ------------------------------------------------ */
.nav-logo-img {
  height: 68px;
  width: auto;
  display: block;
  filter: drop-shadow(0 1px 4px rgba(255,255,255,.2));
}
.hero-logo-img {
  max-width: 380px;
  width: 80%;
  height: auto;
  display: block;
  margin: 0 auto 32px;
  filter: drop-shadow(0 2px 14px rgba(255,255,255,.4));
}

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 28px; }

.section { padding: 84px 0; }
.section--dark  { background: var(--dark); }
.section--mid   { background: var(--dark-mid); }
.section--gray  { background: var(--gray); }
.section--white { background: var(--white); }
.section--red   { background: var(--red); }

/* Section dividers — subtle angled transitions between sections */
.section--has-divider { position: relative; }
.section--has-divider::before {
  content: '';
  position: absolute;
  top: -3px; left: 0; right: 0;
  height: 40px;
  background: inherit;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 0);
  z-index: 1;
}

.section-head { margin-bottom: 52px; }
.section-head.centered { text-align: center; }

.section-title {
  font-size: clamp(26px, 3.5vw, 42px);
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--dark);
}
.section--dark  .section-title,
.section--mid   .section-title { color: var(--white); }
.section--red   .section-title { color: var(--white); }

.section-bar {
  width: 52px; height: 4px;
  background: var(--red);
  margin: 14px 0 18px;
}
.section-head.centered .section-bar { margin-left: auto; margin-right: auto; }

.section-lead {
  font-size: 17px;
  color: var(--muted);
  max-width: 620px;
  line-height: 1.8;
}
.section-head.centered .section-lead { margin-left: auto; margin-right: auto; }
.section--dark .section-lead,
.section--mid  .section-lead { color: #aaa; }

/* Grids */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.grid-2.align-c { align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }

/* Page body offset for fixed nav */
.page-body { padding-top: var(--nav-h); }

/* --- Navigation -------------------------------------------- */
.site-nav {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--nav-h);
  background: var(--dark);
  border-bottom: 3px solid var(--red);
  z-index: 1000;
  box-shadow: 0 2px 14px rgba(0,0,0,.45);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
}

/* Logo */
.nav-logo { display: flex; flex-direction: column; gap: 2px; text-decoration: none; flex-shrink: 0; }
.nav-logo-name {
  font-family: 'Oswald', sans-serif;
  font-size: 19px; font-weight: 700;
  color: var(--white); letter-spacing: 3px; text-transform: uppercase; line-height: 1;
}
.nav-logo-name em { color: var(--red); font-style: normal; }
.nav-logo-sub { font-size: 10px; color: var(--muted); letter-spacing: 2.5px; text-transform: uppercase; }

/* Links */
.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a {
  font-family: 'Oswald', sans-serif;
  font-size: 14px; font-weight: 400;
  letter-spacing: 1px; text-transform: uppercase;
  color: #ccc; padding: 6px 11px; border-radius: 3px;
  transition: all .15s; text-decoration: none;
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); background: var(--red); }

/* Right side: phone + hamburger */
.nav-right { display: flex; align-items: center; gap: 18px; flex-shrink: 0; }

.nav-phone { font-family: 'Oswald', sans-serif; font-size: 14px; font-weight: 600; color: var(--white); letter-spacing: 1px; white-space: nowrap; }
.nav-phone a { color: var(--white); text-decoration: none; }
.nav-phone a:hover { color: var(--red); }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 28px; height: 28px; cursor: pointer;
  background: none; border: none; padding: 4px;
  position: relative;
}
.hamburger span {
  display: block; height: 2px; background: var(--white); border-radius: 2px;
  transition: all .25s ease; transform-origin: center;
}

/* Hamburger → X animation */
.hamburger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.is-open span:nth-child(2) {
  opacity: 0; transform: scaleX(0);
}
.hamburger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: var(--dark-mid);
  border-bottom: 3px solid var(--red);
  z-index: 999;
  max-height: calc(100vh - var(--nav-h));
  overflow-y: auto;
}
.mobile-nav.is-open { display: block; }
.mobile-nav a {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 16px; letter-spacing: 1px; text-transform: uppercase;
  color: var(--white); padding: 14px 24px;
  border-bottom: 1px solid rgba(255,255,255,.06);
  text-decoration: none;
  min-height: 48px; /* touch target compliance */
  display: flex; align-items: center;
}
.mobile-nav a:hover { background: rgba(200,19,0,.15); color: var(--red); }
.mobile-nav .mob-cta {
  display: block; margin: 12px 16px;
  background: var(--red); color: var(--white) !important;
  text-align: center; border-radius: var(--radius);
  font-size: 18px; font-weight: 600;
  justify-content: center;
}
.mobile-nav .mob-cta:hover { background: var(--red-dark) !important; }

/* --- Buttons ----------------------------------------------- */
.btn {
  display: inline-block;
  font-family: 'Oswald', sans-serif;
  font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 13px 30px; border-radius: var(--radius);
  border: 2px solid transparent; cursor: pointer;
  transition: all .2s; text-decoration: none;
  font-size: 14px; line-height: 1;
  text-align: center;
}
.btn-primary { background: var(--red); color: var(--white); border-color: var(--red); }
.btn-primary:hover {
  background: var(--red-dark); border-color: var(--red-dark); color: var(--white);
  transform: translateY(-2px); box-shadow: 0 6px 20px rgba(200,19,0,.35);
}
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,.45); }
.btn-outline:hover { background: var(--white); color: var(--red); border-color: var(--white); }
.btn-sm { padding: 9px 18px; font-size: 13px; }

/* Tow Me Now CTA */
.tow-btn {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: 'Oswald', sans-serif;
  font-size: clamp(18px, 2.8vw, 26px);
  font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
  color: var(--white); background: var(--red);
  padding: 18px 48px; border-radius: var(--radius);
  text-decoration: none; transition: all .2s;
  animation: towpulse 2.8s infinite;
  margin-bottom: 18px;
}
.tow-btn:hover {
  background: var(--red-dark); color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(200,19,0,.5);
  animation: none;
}
@keyframes towpulse {
  0%   { box-shadow: 0 0 0 0   rgba(200,19,0,.55); }
  65%  { box-shadow: 0 0 0 18px rgba(200,19,0,0);  }
  100% { box-shadow: 0 0 0 0   rgba(200,19,0,0);   }
}

/* --- Hero -------------------------------------------------- */
.hero {
  position: relative;
  min-height: calc(100vh - var(--nav-h));
  display: flex; align-items: center; justify-content: center; text-align: center;
  background: var(--dark); overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center 55%;
  background-attachment: fixed;
  opacity: .28;
}
.hero-content { position: relative; z-index: 1; padding: 60px 24px; max-width: 880px; }
.hero-eyebrow {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(13px, 2vw, 20px); letter-spacing: 5px; text-transform: uppercase;
  color: var(--red); margin-bottom: 18px;
}
.hero-title {
  font-size: clamp(42px, 7vw, 84px);
  color: var(--white); text-transform: uppercase; letter-spacing: 4px;
  line-height: .95; margin-bottom: 14px;
}
.hero-title em { color: var(--red); font-style: normal; display: block; }
.hero-sub {
  font-size: clamp(15px, 2.2vw, 24px);
  color: #bbb; margin-bottom: 12px; font-style: italic;
}
.hero-tagline {
  font-size: clamp(13px, 1.5vw, 17px); color: #777;
  letter-spacing: 2px; text-transform: uppercase; margin-bottom: 52px;
}
.hero-actions { display: flex; flex-direction: column; align-items: center; gap: 20px; }
.hero-numbers { display: flex; gap: 32px; justify-content: center; flex-wrap: wrap; margin-top: 4px; }
.hero-num { font-family: 'Oswald', sans-serif; font-size: 13px; letter-spacing: 1px; color: #888; }
.hero-num a { color: #bbb; text-decoration: none; }
.hero-num a:hover { color: var(--white); }
.hero-num strong { color: var(--white); font-size: 15px; }

/* Sub-hero (inner pages) */
.sub-hero {
  background: var(--dark-mid);
  padding: 64px 24px 52px; text-align: center;
  border-bottom: 3px solid var(--red);
}
.sub-hero h1 {
  font-size: clamp(26px, 5vw, 52px);
  color: var(--white); text-transform: uppercase; letter-spacing: 3px;
}
.sub-hero p { color: #999; font-size: 16px; margin-top: 12px; }

/* --- Cards ------------------------------------------------- */
.card {
  background: var(--white);
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .2s, box-shadow .2s;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.card--dark { background: var(--dark-mid); }
.card-top { height: 5px; background: var(--red); }
.card-body { padding: 28px; }
.card-icon {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--red); display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  font-family: 'Oswald', sans-serif; font-size: 22px; font-weight: 700; color: var(--white);
}
.card h3 { font-size: 19px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; }
.card p   { font-size: 14px; color: var(--muted); line-height: 1.75; }
.card--dark h3 { color: var(--white); }
.card--dark p  { color: #bbb; }
.card-foot { padding: 0 28px 28px; }

/* --- Partner Strip ----------------------------------------- */
.partner-strip { background: #111; padding: 28px 24px; text-align: center; }
.partner-eyebrow { font-size: 11px; letter-spacing: 4px; text-transform: uppercase; color: var(--muted); margin-bottom: 14px; }
.partner-list { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 36px; }
.partner-list span {
  font-family: 'Oswald', sans-serif;
  font-size: 14px; letter-spacing: 2px; text-transform: uppercase; color: #ccc;
}

/* --- Highlights Strip -------------------------------------- */
.highlights { background: var(--red); padding: 48px 24px; }
.highlights-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center;
}
.hi { color: var(--white); }
.hi-val { font-family: 'Oswald', sans-serif; font-size: clamp(34px, 4vw, 52px); font-weight: 700; line-height: 1; margin-bottom: 8px; }
.hi-label { font-size: 12px; letter-spacing: 2px; text-transform: uppercase; opacity: .85; }

/* --- Service Blocks ---------------------------------------- */
.service-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }

.sblock {
  background: var(--white);
  border-radius: var(--radius); border-left: 4px solid var(--red);
  padding: 24px; box-shadow: var(--shadow);
}
.section--dark .sblock,
.section--mid  .sblock { background: var(--dark-lt); }

.sblock h3 {
  font-size: 17px; text-transform: uppercase; letter-spacing: 1px;
  color: var(--red); margin-bottom: 14px;
}
.sblock ul { list-style: none; padding: 0; }
.sblock li {
  padding: 7px 0 7px 18px; position: relative;
  font-size: 14px; color: #444;
  border-bottom: 1px solid rgba(0,0,0,.06); line-height: 1.5;
}
.section--dark .sblock li,
.section--mid  .sblock li { color: #ccc; border-bottom-color: rgba(255,255,255,.06); }
.sblock li:last-child { border-bottom: none; }
.sblock li::before {
  content: ''; position: absolute; left: 0; top: 14px;
  width: 7px; height: 7px; background: var(--red); border-radius: 50%;
}

/* Larger service listing blocks (services page) */
.service-entry { margin-bottom: 40px; }
.service-entry-head {
  display: flex; align-items: center; gap: 14px;
  padding-bottom: 12px; margin-bottom: 16px;
  border-bottom: 2px solid var(--red);
}
.service-entry-head h3 { font-size: 22px; text-transform: uppercase; letter-spacing: 1px; color: var(--white); }
.service-entry p { color: #bbb; font-size: 15px; line-height: 1.85; margin-bottom: 12px; }

/* --- Gallery ----------------------------------------------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 5px;
}
.gallery-thumb {
  aspect-ratio: 4 / 3; overflow: hidden;
  display: block; background: #222;
  transition: transform .2s;
}
.gallery-thumb:hover { transform: scale(1.02); }
.gallery-thumb img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .35s, opacity .35s;
  opacity: .85;
}
.gallery-thumb:hover img { transform: scale(1.07); opacity: 1; }

/* --- City Grid (Service Area page) ------------------------- */
.city-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}
.city-card {
  background: var(--dark-lt);
  border-radius: var(--radius);
  border-left: 4px solid var(--red);
  padding: 22px 24px;
  transition: transform .2s, box-shadow .2s;
  display: flex; flex-direction: column;
}
.city-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.city-card h3 {
  font-size: 16px; text-transform: uppercase; letter-spacing: 1px;
  color: var(--white); margin-bottom: 8px;
}
.city-card p {
  font-size: 13px; color: #aaa; line-height: 1.7;
  flex: 1;
}
/* Center last 2 orphans when grid has 10 items (4+4+2) */
@media (min-width: 1100px) {
  .city-grid.city-grid--center-last {
    justify-content: center;
  }
  .city-grid.city-grid--center-last::after {
    content: ''; display: block; width: calc(25% - 20px); visibility: hidden;
  }
}

/* --- Contact ----------------------------------------------- */
.contact-details { display: flex; flex-direction: column; gap: 24px; }
.contact-row { display: flex; align-items: flex-start; gap: 16px; }
.contact-dot {
  width: 44px; height: 44px; min-width: 44px; border-radius: 50%;
  background: var(--red); display: flex; align-items: center; justify-content: center;
  font-family: 'Oswald', sans-serif; font-size: 18px; font-weight: 700; color: var(--white);
}
.contact-val h4 { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; }
.contact-val p,
.contact-val a { font-size: 17px; font-weight: 600; color: var(--dark); }
.contact-val a { color: var(--red); }
.section--dark .contact-val p,
.section--dark .contact-val a  { color: var(--white); }
.section--dark .contact-val h4 { color: #666; }

.map-embed { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); }
.map-embed iframe { display: block; width: 100%; height: 420px; border: 0; }

/* --- CTA Band ---------------------------------------------- */
.cta-band {
  background: var(--dark) url('content/blackmetaltexture.jpg') center/cover;
  border-top: 4px solid var(--red); border-bottom: 4px solid var(--red);
  padding: 80px 24px; text-align: center;
}
.cta-band h2 {
  font-size: clamp(20px, 5vw, 48px);
  color: var(--white); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 14px;
}
.cta-band p { font-size: 17px; color: #aaa; max-width: 540px; margin: 0 auto 40px; }
.cta-nums { margin-top: 40px; font-family: 'Oswald', sans-serif; font-size: 14px; color: #666; letter-spacing: 1px; display: flex; flex-wrap: wrap; justify-content: center; gap: 6px 0; }
.cta-nums > span { white-space: nowrap; padding: 0 10px; }
.cta-nums > span a { white-space: nowrap; }
.cta-nums-sep { color: #555; display: flex; align-items: center; padding: 0 4px !important; }

/* --- Credentials ------------------------------------------- */
.cred-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 16px; margin-top: 32px; }
.cred {
  background: var(--dark-lt); border-radius: var(--radius);
  border-left: 4px solid var(--red); padding: 20px 22px;
}
.cred h4 { font-size: 14px; color: var(--white); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 6px; }
.cred p  { font-size: 13px; color: #aaa; }

/* --- Back to Top ------------------------------------------- */
.back-to-top {
  position: fixed;
  bottom: 80px; right: 24px;
  width: 48px; height: 48px;
  background: var(--red); color: var(--white);
  border: none; border-radius: 50%;
  font-family: 'Oswald', sans-serif;
  font-size: 22px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  z-index: 1500;
  opacity: 0; visibility: hidden;
  transform: translateY(16px);
  transition: all .3s;
  box-shadow: var(--shadow-lg);
}
.back-to-top.is-visible {
  opacity: 1; visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  background: var(--red-dark);
  transform: translateY(-3px);
}
.back-to-top:focus-visible {
  outline: 3px solid var(--white);
  outline-offset: 3px;
}

/* --- Footer ------------------------------------------------ */
.site-footer {
  background: #0d0d0d;
  border-top: 4px solid var(--red);
  color: var(--muted);
  padding: 64px 0 32px;
}
.footer-grid {
  max-width: var(--max-w); margin: 0 auto 48px; padding: 0 28px;
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px;
}
.footer-logo { font-family: 'Oswald', sans-serif; font-size: 24px; font-weight: 700; color: var(--white); letter-spacing: 3px; text-transform: uppercase; margin-bottom: 10px; }
.footer-logo em { color: var(--red); font-style: normal; }
.footer-brand p     { font-size: 14px; line-height: 1.8; margin-bottom: 4px; }
.footer-tagline     { font-style: italic; color: #555; font-size: 13px; margin-top: 12px !important; }
.footer-troops-icon { display: block; max-width: 80px; height: auto; margin: 0 auto 14px; opacity: .6; }
.footer-col h4      { font-family: 'Oswald', sans-serif; font-size: 13px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--white); margin-bottom: 16px; }
.footer-col li      { margin-bottom: 8px; }
.footer-col a       { font-size: 13px; color: var(--muted); text-decoration: none; transition: color .2s; }
.footer-col a:hover { color: var(--red); }
.footer-col p       { font-size: 13px; margin-bottom: 6px; }
.footer-social { display: flex; gap: 10px; margin-top: 14px; }
.footer-social a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px;
  background: var(--dark-mid); border-radius: 4px;
  font-family: 'Oswald', sans-serif; font-weight: 700; font-size: 14px;
  color: var(--muted) !important; transition: all .2s;
}
.footer-social a:hover { background: var(--red); color: var(--white) !important; }
.footer-bottom {
  max-width: var(--max-w); margin: 0 auto; padding: 24px 28px 0;
  border-top: 1px solid #1a1a1a;
  display: flex; flex-direction: column; align-items: center;
  gap: 8px; font-size: 12px; letter-spacing: .5px; text-align: center;
}
.footer-bottom-troops {
  display: block; max-width: 70px; height: auto; margin: 4px auto; opacity: .5;
}

/* --- Sticky mobile call button ----------------------------- */
.sticky-call {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--red); color: var(--white);
  text-align: center; padding: 14px 16px;
  font-family: 'Oswald', sans-serif;
  font-size: clamp(16px, 5vw, 20px);
  font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  text-decoration: none; z-index: 2000;
  border-top: 2px solid rgba(255,255,255,.18);
}
.sticky-call:hover { background: var(--red-dark); color: var(--white); }

/* --- Lightbox ------------------------------------------------ */
.lightbox-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,.92);
  z-index: 3000;
  align-items: center; justify-content: center;
  padding: 20px;
}
.lightbox-overlay.is-open { display: flex; }
.lightbox-overlay img {
  max-width: 95vw; max-height: 90vh;
  border-radius: var(--radius);
  box-shadow: 0 8px 40px rgba(0,0,0,.6);
}
.lightbox-close {
  position: absolute; top: 16px; right: 20px;
  background: var(--red); color: var(--white);
  border: none; border-radius: 50%;
  width: 44px; height: 44px;
  font-size: 24px; font-weight: 700;
  cursor: pointer; z-index: 3001;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Oswald', sans-serif;
}
.lightbox-close:hover { background: var(--red-dark); }

/* --- Breadcrumb --------------------------------------------- */
.breadcrumb {
  font-family: 'Oswald', sans-serif;
  font-size: 13px; letter-spacing: 1px; text-transform: uppercase;
  padding: 14px 0 0;
  max-width: var(--max-w); margin: 0 auto;
}
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--red); }
.breadcrumb .bc-sep { color: #555; margin: 0 8px; }
.breadcrumb .bc-current { color: var(--white); }

/* --- Inline-style replacement utility classes ------------- */
/* Replaces common inline style patterns in the HTML */
.text-body {
  color: #bbb; font-size: 17px; line-height: 1.9; margin-bottom: 20px;
}
.text-body-sm {
  color: #bbb; font-size: 16px; line-height: 1.9; margin-bottom: 20px;
}
.text-legal {
  color: #888; font-size: 14px; font-style: italic;
}
.oswald-white {
  font-family: 'Oswald', sans-serif; font-size: 18px; color: #fff;
  letter-spacing: 2px; text-transform: uppercase;
}
.alert-ribbon {
  background: var(--red); padding: 14px 24px; text-align: center;
}
.alert-ribbon p {
  font-family: 'Oswald', sans-serif; font-size: 15px; letter-spacing: 2px;
  text-transform: uppercase; color: #fff; margin: 0;
}
.emergency-cta {
  background: var(--red); padding: 20px 24px; text-align: center;
}
.emergency-cta a {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(20px, 3vw, 32px); font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: #fff; text-decoration: none;
}
.info-callout {
  margin-top: 36px; padding: 20px 24px;
  background: var(--dark-lt); border-left: 4px solid var(--red);
  border-radius: var(--radius);
}
.info-callout-title {
  font-family: 'Oswald', sans-serif; font-size: 16px; text-transform: uppercase;
  letter-spacing: 1px; color: var(--white); margin-bottom: 8px;
}
.info-callout-body {
  color: #bbb; font-size: 15px; line-height: 1.7;
}

/* Span-wide utility for service blocks & city cards */
.sblock.span-wide,
.span-wide {
  grid-column: 1 / -1;
}

/* Card icon SVG containers */
.card-icon svg {
  width: 28px; height: 28px; fill: var(--white);
}

/* --- Utility ----------------------------------------------- */
.text-red    { color: var(--red) !important; }
.text-white  { color: var(--white) !important; }
.text-muted  { color: var(--muted) !important; }
.text-center { text-align: center; }
.mt-sm  { margin-top: 12px; }
.mt-md  { margin-top: 24px; }
.mt-lg  { margin-top: 48px; }
.mb-md  { margin-bottom: 24px; }
.img-rounded { border-radius: var(--radius); }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
.text-white-strong { color: #fff !important; }

/* --- Print Stylesheet -------------------------------------- */
@media print {
  .site-nav, .mobile-nav, .sticky-call, .back-to-top,
  .cta-band, .tow-btn, .hamburger, .nav-phone,
  .footer-social, .partner-strip, .highlights {
    display: none !important;
  }
  body { font-size: 14px; color: #000; background: #fff; padding: 0; }
  .page-body { padding-top: 0; }
  .hero { min-height: auto; padding: 20px 0; }
  .hero-bg { display: none; }
  .hero-title { font-size: 28px; color: #000; }
  .hero-title em { color: var(--red); }
  .hero-sub, .hero-eyebrow, .hero-tagline, .hero-numbers { color: #333; }
  .section { padding: 20px 0; }
  .section--dark, .section--mid { background: #fff !important; color: #000; }
  .section--dark *, .section--mid * { color: #000 !important; }
  .footer-grid { grid-template-columns: 1fr; }
  .site-footer { border-top: 2px solid #000; padding: 20px 0; }
  a { color: #000; text-decoration: underline; }
  .map-embed { display: none; }
}

/* --- Responsive -------------------------------------------- */
@media (max-width: 1024px) {
  .highlights-inner { grid-template-columns: repeat(2, 1fr); }

  /* Tablet touch target tuning */
  .nav-links a {
    padding: 8px 14px;
    min-height: 44px;
    display: inline-flex; align-items: center;
  }
}

@media (max-width: 900px) {
  .grid-3 { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --nav-h: 72px; }
  .section { padding: 56px 0; }
  .nav-links, .nav-phone { display: none; }
  .hamburger { display: flex; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .sticky-call { display: block; }
  body { padding-bottom: 64px; }
  .hero-bg { background-attachment: scroll !important; }
  .hero-title { font-size: clamp(46px, 12vw, 63px); }
  .hero-eyebrow { font-size: clamp(14px, 3vw, 18px); letter-spacing: 3px; }
  .tow-btn { font-size: clamp(16px, 4vw, 18px); padding: 15px 28px; letter-spacing: 2px; }
  .cta-band { padding: 56px 24px; }
  .map-embed iframe { height: 300px; }
  .back-to-top { bottom: 76px; right: 16px; width: 44px; height: 44px; font-size: 20px; }
  .hero-numbers { flex-direction: column; gap: 8px; align-items: center; }
  .cta-nums { flex-direction: column; align-items: center; gap: 6px; }
  .cta-nums-sep { display: none; }
}

@media (max-width: 600px) {
  .highlights-inner { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .footer-bottom { flex-direction: column; text-align: center; }
  .city-grid { grid-template-columns: 1fr; gap: 14px; }
}

@media (max-width: 420px) {
  .container { padding: 0 16px; }
  .gallery-grid { grid-template-columns: 1fr; gap: 8px; }
  .tow-btn { padding: 14px 24px; font-size: 16px; letter-spacing: 1px; }
}