/* Double Dz Drainage — main stylesheet */

/* Fonts loaded via preconnect + link in <head> */

:root {
  --cyan: #00A0C8;
  --cyan-deep: #008CB4;
  --orange: #C87828;
  --orange-text: #9E5800; /* WCAG AA on white — used for body-text eyebrow labels */
  --cyan-text: #006580;   /* WCAG AA on offwhite — used for breadcrumb / link text */
  --gold: #C8A028;
  --ink: #1A2332;
  --slate: #4A5567;
  --border: #E5E9EE;
  --offwhite: #F8F9FB;
  --white: #FFFFFF;
  --shadow-cyan: 0 16px 32px -12px rgba(0, 160, 200, 0.15);
  --shadow-card: 0 24px 48px -16px rgba(26, 35, 50, 0.12);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--cyan-text); text-decoration: none; transition: color 200ms ease; }
a:hover { color: var(--ink); }
button { font-family: inherit; cursor: pointer; }
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
@media (min-width: 768px) { .container { padding: 0 32px; } }

/* Typography */
h1, h2, h3, h4 { font-family: 'Archivo', sans-serif; font-weight: 800; line-height: 1.1; color: var(--ink); }
main { display: block; }
h1 { font-size: 38px; line-height: 1.05; letter-spacing: -0.02em; }
h2 { font-size: 30px; letter-spacing: -0.015em; }
h3 { font-size: 22px; }
@media (min-width: 768px) {
  h1 { font-size: 56px; }
  h2 { font-size: 40px; }
  h3 { font-size: 24px; }
}
@media (min-width: 1024px) {
  h1 { font-size: 64px; }
  h2 { font-size: 44px; }
  h3 { font-size: 26px; }
}
.eyebrow {
  font-family: 'Archivo', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 13px;
  color: var(--cyan-text);
  display: inline-block;
  margin-bottom: 12px;
}
.eyebrow-orange { color: var(--orange-text); }
.lead { font-size: 18px; color: var(--slate); max-width: 540px; }
@media (min-width: 768px) { .lead { font-size: 20px; } }
.small { font-size: 14px; color: var(--slate); }

/* ============ HEADER ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: saturate(180%) blur(10px);
  -webkit-backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--border);
  height: 64px;
  transition: height 200ms ease;
}
@media (min-width: 768px) { .site-header { height: 76px; } }
.site-header.scrolled { height: 60px; }
@media (min-width: 768px) { .site-header.scrolled { height: 64px; } }
.site-header .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
}
.brand img { height: 40px; width: auto; }
.brand-name {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: 15px;
  color: var(--ink);
  letter-spacing: -0.01em;
  display: inline;
  white-space: nowrap;
}
@media (min-width: 480px) { .brand-name { font-size: 16px; } }
@media (min-width: 768px) { .brand-name { font-size: 18px; } }

.nav-desktop {
  display: none;
  align-items: center;
  gap: 28px;
}
@media (min-width: 1024px) { .nav-desktop { display: flex; } }
.nav-link {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 15px;
  color: var(--ink);
  position: relative;
  padding: 6px 0;
}
.nav-link:hover { color: var(--cyan-text); }
.nav-link.active { color: var(--cyan-text); }
.nav-link.active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px; background: var(--cyan);
  border-radius: 1px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 16px;
  padding: 12px 22px;
  border-radius: 10px;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background 200ms ease, color 200ms ease, transform 100ms ease, box-shadow 200ms ease;
  white-space: nowrap;
}
.btn:active { transform: scale(0.98); }
.btn-primary { background: var(--cyan-text); color: var(--white); border-color: var(--cyan-text); }
.btn-primary:hover { background: var(--ink); color: var(--white); border-color: var(--ink); }
.btn-secondary { background: var(--white); border-color: var(--cyan-text); color: var(--cyan-text); }
.btn-secondary:hover { background: var(--cyan-text); color: var(--white); border-color: var(--cyan-text); }
.btn-ghost { background: transparent; border-color: var(--white); color: var(--white); }
.btn-ghost:hover { background: var(--white); color: var(--cyan-text); }
.btn-on-cyan { background: var(--white); color: var(--cyan-text); }
.btn-on-cyan:hover { background: var(--ink); color: var(--white); }
.btn-sm { padding: 9px 16px; font-size: 14px; }
.btn-block { width: 100%; justify-content: center; }
.btn svg { width: 18px; height: 18px; }

.header-cta { display: none; }
@media (min-width: 768px) { .header-cta { display: inline-flex; } }

.hamburger {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  gap: 5px;
  margin-right: -8px;
}
@media (min-width: 1024px) { .hamburger { display: none; } }
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 200ms ease, opacity 200ms ease;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 100vh;
  background: var(--white);
  z-index: 99;
  display: flex;
  flex-direction: column;
  padding: 88px 32px 32px;
  transform: translateY(-100%);
  transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu .nav-link {
  font-size: 28px;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.mobile-menu .btn {
  margin-top: auto;
  font-size: 18px;
  padding: 18px 24px;
}

/* ============ HERO ============ */
.hero { padding: 56px 0 72px; background: var(--white); }
@media (min-width: 768px) { .hero { padding: 80px 0 96px; } }
@media (min-width: 1024px) { .hero { padding: 96px 0 120px; } }
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 1024px) {
  .hero-grid { grid-template-columns: 1.2fr 1fr; gap: 80px; }
}
.hero h1 { margin-bottom: 20px; }
.hero p.lead { margin-bottom: 32px; }
.hero-cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 18px;
  font-size: 14px;
  color: var(--slate);
  font-weight: 500;
}
.hero-trust .stars { color: var(--cyan); letter-spacing: 1px; }
.hero-image-wrap {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(0, 160, 200, 0.25);
}
.hero-image-wrap img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/5; }
.hero-image-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--cyan-text);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 13px;
  padding: 8px 14px;
  border-radius: 999px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

/* ============ SECTIONS ============ */
.section { padding: 64px 0; }
@media (min-width: 768px) { .section { padding: 96px 0; } }
.section-tight { padding: 56px 0; }
.section-bg-offwhite { background: var(--offwhite); }
.section-cyan { background: var(--cyan-text); color: var(--white); }
.section-cyan h1, .section-cyan h2, .section-cyan h3 { color: var(--white); }
.section-cyan .lead { color: #ffffff; }

.section-head { text-align: center; max-width: 720px; margin: 0 auto 48px; }
.section-head .underline {
  display: block;
  width: 60px;
  height: 4px;
  background: var(--cyan);
  border-radius: 2px;
  margin: 16px auto 20px;
}
.section-head p { color: var(--slate); margin-top: 12px; }

/* ============ SERVICE CARDS ============ */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 640px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
  display: block;
  text-decoration: none;
  color: inherit;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-cyan);
  border-color: rgba(0, 160, 200, 0.4);
}
.service-card .icon {
  width: 32px; height: 32px;
  margin-bottom: 16px;
  color: var(--cyan);
}
.service-card h3 { margin-bottom: 8px; }
.service-card p { color: var(--slate); font-size: 15px; line-height: 1.55; }

/* ============ FEATURE BLOCKS (alternating) ============ */
.feature {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
@media (min-width: 1024px) {
  .feature { grid-template-columns: 1fr 1fr; gap: 80px; }
  .feature.image-right .feature-image { order: 2; }
}
.feature-image img {
  border-radius: 16px;
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-card);
}
@media (min-width: 1024px) {
  .feature-image img { aspect-ratio: 3/4; max-height: 600px; }
}
.feature h2 { margin-bottom: 16px; }
.feature p { color: var(--slate); margin-bottom: 16px; line-height: 1.7; }
.feature-bullets {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 24px;
}
@media (min-width: 480px) { .feature-bullets { grid-template-columns: repeat(2, 1fr); } }
.feature-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 500;
  font-size: 15px;
  color: var(--ink);
}
.feature-bullets li::before {
  content: '+';
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  color: var(--gold);
  font-size: 20px;
  line-height: 1;
  margin-top: 1px;
  flex-shrink: 0;
}

/* ============ REVIEWS BAND ============ */
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 768px) { .reviews-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .reviews-grid { grid-template-columns: repeat(3, 1fr); } }
.cost-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 768px) { .cost-grid { grid-template-columns: 1fr 1fr; gap: 28px; } }
.cost-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
}
.cost-card h3 { margin: 0 0 12px; }
.work-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
@media (min-width: 768px) { .work-gallery { grid-template-columns: repeat(3, 1fr); gap: 18px; } }
.work-gallery figure {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--off-white, #f4f4f2);
}
.work-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/5;
}
.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
}
.review-card .stars {
  color: var(--cyan);
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.review-card .quote {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  margin-bottom: 18px;
}
.review-card .author {
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
}
.review-card .meta {
  font-size: 14px;
  color: var(--slate);
}
.reviews-cta {
  text-align: center;
  margin-top: 32px;
}
.reviews-cta a {
  font-weight: 600;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--cyan-text);
}

/* ============ AREA PILLS ============ */
.area-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  max-width: 720px;
  margin: 0 auto;
}
.area-pill {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 9px 18px;
  font-size: 14px;
  font-weight: 500;
  color: var(--slate);
  transition: color 200ms ease, border-color 200ms ease;
}
.area-pill:hover { color: var(--cyan); border-color: var(--cyan); }

/* ============ CTA BAND ============ */
.cta-band { padding: 80px 0; }
@media (min-width: 768px) { .cta-band { padding: 96px 0; } }
.cta-band-inner { text-align: center; max-width: 640px; margin: 0 auto; }
.cta-band h2 { margin-bottom: 16px; font-weight: 800; }
.cta-band .lead { margin: 0 auto 28px; max-width: 540px; }
.cta-band-buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ============ FOOTER ============ */
.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.85);
  padding: 64px 0 24px;
  font-size: 14px;
}
.site-footer h2,
.site-footer .footer-heading {
  color: var(--white);
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
  line-height: 1.1;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 640px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 48px; } }
.site-footer ul { list-style: none; }
.site-footer ul li { margin-bottom: 8px; }
.site-footer a {
  color: rgba(255, 255, 255, 0.8);
  transition: color 200ms ease;
}
.site-footer a:hover { color: var(--cyan); }
.footer-brand-lockup { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.footer-brand-lockup img { height: 60px; width: auto; }
.footer-brand-name { font-family: 'Archivo', sans-serif; font-weight: 800; font-size: 22px; line-height: 1.1; color: var(--white); letter-spacing: -0.01em; }
@media (max-width: 600px) {
  .footer-brand-lockup img { height: 52px; }
  .footer-brand-name { font-size: 20px; }
}
.footer-tagline {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.footer-tagline s { color: var(--orange); text-decoration-color: var(--orange); text-decoration-thickness: 3px; }
.footer-blurb {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.6;
  max-width: 280px;
}
.footer-contact .phone { color: var(--cyan); font-weight: 600; font-size: 18px; display: block; margin-bottom: 6px; }
.footer-contact .email { color: rgba(255, 255, 255, 0.9); display: block; margin-bottom: 12px; word-break: break-all; }
.footer-rating { display: inline-flex; align-items: center; gap: 6px; padding: 6px 12px; background: rgba(255, 255, 255, 0.06); border-radius: 999px; font-size: 13px; }
.footer-rating .stars { color: var(--cyan); }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 48px;
  padding-top: 20px;
  padding-bottom: 96px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
}
.footer-bottom a { color: rgba(255, 255, 255, 0.9); text-decoration: underline; }
.footer-bottom a:hover { color: var(--white); }
@media (max-width: 600px) {
  .footer-bottom { padding-bottom: 110px; }
}

/* ============ PAGE HEADER (sub pages) ============ */
.page-header { background: var(--offwhite); padding: 48px 0 56px; border-bottom: 1px solid var(--border); }
@media (min-width: 768px) { .page-header { padding: 64px 0 72px; } }
.page-header .breadcrumb {
  font-size: 14px;
  color: var(--slate);
  font-weight: 500;
  margin-bottom: 16px;
}
.page-header .breadcrumb a { color: var(--cyan-text); text-decoration: underline; }
.page-header .breadcrumb a:hover { color: var(--cyan-deep); }
.page-header h1 { margin-bottom: 16px; }
.page-header p { color: var(--slate); max-width: 720px; }

/* ============ SERVICES PAGE ============ */
.feature-block { padding: 64px 0; }
@media (min-width: 768px) { .feature-block { padding: 88px 0; } }
.feature-block.bg-offwhite { background: var(--offwhite); }
.feature h2 { font-size: 28px; }
@media (min-width: 768px) { .feature h2 { font-size: 36px; } }

/* ============ CONTACT PAGE ============ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1.4fr 1fr; gap: 48px; } }
.contact-form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 16px 48px -24px rgba(0, 160, 200, 0.18);
}
@media (min-width: 768px) { .contact-form-card { padding: 40px; } }
.contact-form-card h2 { margin-bottom: 24px; font-size: 28px; }
.form-row { margin-bottom: 16px; }
.form-row label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 6px;
}
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--white);
  color: var(--ink);
  transition: border-color 200ms ease, box-shadow 200ms ease;
}
.form-row textarea { resize: vertical; min-height: 110px; font-family: inherit; }
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(0, 160, 200, 0.15);
}
.form-disclaimer { font-size: 12px; color: var(--slate); margin-top: 12px; }
.form-success {
  background: var(--offwhite);
  border: 1px solid rgba(0, 160, 200, 0.3);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
}
.form-success h3 { margin-bottom: 8px; color: var(--cyan-text); font-size: 20px; }
.form-error { color: #B81818; font-size: 14px; padding: 10px 14px; background: #FCEFEF; border-radius: 8px; margin-bottom: 12px; }

.contact-info {
  background: var(--white);
  border-radius: 24px;
  padding: 32px;
  border-left: 4px solid var(--cyan);
}
.contact-info-block { margin-bottom: 28px; }
.contact-info-block:last-child { margin-bottom: 0; }
.contact-info-block .label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--slate);
  font-weight: 600;
  margin-bottom: 6px;
}
.contact-phone {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 28px;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: color 200ms ease;
}
.contact-phone:hover { color: var(--cyan); }
@media (min-width: 768px) { .contact-phone { font-size: 32px; } }
.contact-info iframe { width: 100%; border-radius: 16px; border: 0; margin-top: 12px; }

/* ============ EQUIPMENT GRID (about) ============ */
.equipment-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 640px) { .equipment-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .equipment-grid { grid-template-columns: repeat(3, 1fr); } }
.equipment-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.equipment-item .icon { width: 28px; height: 28px; color: var(--cyan); }
.equipment-item h3 { font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 18px; color: var(--ink); margin: 0; text-transform: none; letter-spacing: 0; }
.equipment-item p { color: var(--slate); font-size: 15px; }

/* ============ STORY block on about ============ */
.story-image {
  background: linear-gradient(135deg, rgba(0, 160, 200, 0.08), rgba(200, 120, 40, 0.06));
  border-radius: 24px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.story-image img { max-width: 100%; height: auto; }

/* ============ REVIEWS POPUP WIDGET ============ */
.reviews-widget {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 200;
  font-family: 'Inter', sans-serif;
}
.reviews-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--cyan-text);
  color: var(--white);
  border: none;
  border-radius: 999px;
  padding: 12px 18px;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0, 160, 200, 0.4);
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 14px;
  transition: transform 150ms ease;
}
.reviews-badge:hover { transform: translateY(-2px); }
.reviews-badge.pulse { animation: pulse 1.6s ease 0s 3; }
@keyframes pulse { 0%, 100% { box-shadow: 0 8px 24px rgba(0, 160, 200, 0.4); } 50% { box-shadow: 0 12px 32px rgba(0, 160, 200, 0.7); } }
.reviews-badge .star { color: #FFD23F; font-size: 16px; }
.reviews-panel {
  position: absolute;
  bottom: 64px;
  left: 0;
  width: 320px;
  max-width: calc(100vw - 32px);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
  overflow: hidden;
  display: none;
}
.reviews-panel.open { display: block; }
.reviews-panel-head {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}
.reviews-panel-head .business { font-weight: 700; color: var(--ink); font-size: 15px; }
.reviews-panel-head .meta { font-size: 13px; color: var(--slate); }
.reviews-close {
  background: none; border: none;
  width: 28px; height: 28px;
  color: var(--slate);
  cursor: pointer;
  border-radius: 999px;
  font-size: 18px;
  line-height: 1;
}
.reviews-close:hover { background: var(--offwhite); color: var(--ink); }
.reviews-list { max-height: 360px; overflow-y: auto; padding: 8px 0; }
.review-item {
  display: block;
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  color: var(--ink);
  text-decoration: none;
}
.review-item:last-child { border-bottom: none; }
.review-item .review-author { font-weight: 600; font-size: 14px; }
.review-item .review-stars { color: var(--cyan); font-size: 13px; letter-spacing: 1px; margin: 2px 0 6px; }
.review-item .review-text { font-size: 13px; line-height: 1.5; color: var(--slate); }
.review-item .review-date { font-size: 12px; color: var(--slate); margin-top: 6px; opacity: 0.7; }
.reviews-link {
  display: block;
  text-align: center;
  padding: 14px;
  background: var(--offwhite);
  font-weight: 600;
  color: var(--cyan);
  font-size: 14px;
  border-top: 1px solid var(--border);
}
.reviews-link:hover { background: var(--cyan); color: var(--white); }

/* ============ Utilities ============ */
.text-center { text-align: center; }
.muted { color: var(--slate); }
.cyan { color: var(--cyan); }
.tagline-strikethrough s { color: var(--orange); text-decoration-color: var(--orange); text-decoration-thickness: 2px; }

/* Visually-hidden but screen-reader accessible */
.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;
}

/* === Webgun fleet patch 2026-05-05 === */
/* Mobile header: ensure brand-name visible at all viewports */
.brand-name { display: inline !important; }
/* Story-image: stack children vertically (was row-flex, broke multi-child callouts and forced grid track wider than viewport) */
.story-image { flex-direction: column !important; text-align: center !important; }
/* Reviews widget clearance on mobile so the floating Google Reviews badge does not cover footer-bottom text */
@media (max-width: 600px) { .footer-bottom { padding-bottom: 110px !important; } }
/* Footer brand lockup (mark + wordmark side-by-side, replaces orphan tiny mark) */
.footer-brand-lockup { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.footer-brand-lockup img { height: 60px !important; width: auto !important; margin-bottom: 0 !important; }
.footer-brand-name { font-family: var(--font-display, 'Archivo', sans-serif); font-weight: 800; font-size: 22px; line-height: 1.1; color: #fff; letter-spacing: -0.01em; }
@media (max-width: 600px) {
  .footer-brand-lockup img { height: 52px !important; }
  .footer-brand-name { font-size: 20px; }
}
/* === end fleet patch === */
