@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Plus+Jakarta+Sans:wght@600;700;800&display=swap');

:root {
  --blue: #003f91;
  --blue-dark: #002b66;
  --blue-deep: #001f4f;
  --red: #ef2d2d;
  --red-dark: #c91f1f;
  --ink: #071a33;
  --muted: #52657d;
  --line: rgba(0, 63, 145, 0.14);
  --soft: #f4f8fd;
  --white: #ffffff;
  --shadow: 0 18px 48px rgba(4, 28, 64, 0.12);
  --radius: 18px;
  --wrap: 1180px;
}

* { box-sizing: border-box; }
html {
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}
body {
  margin: 0;
  max-width: 100%;
  overflow-x: hidden;
  color: var(--ink);
  background: #ffffff;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}
img,
svg,
iframe {
  max-width: 100%;
}
img { height: auto; display: block; }
a { color: inherit; text-decoration: none; }
p { margin: 0 0 1rem; color: var(--muted); }
h1, h2, h3, h4 {
  margin: 0;
  line-height: 1.05;
  color: var(--blue-deep);
  font-family: "Plus Jakarta Sans", Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
h1, h2 { font-weight: 800; letter-spacing: -0.02em; }
h1 { max-width: 680px; font-size: clamp(2.45rem, 5.2vw, 4.55rem); text-transform: uppercase; }
h2 { font-size: clamp(2rem, 3.6vw, 3rem); }
h3 { font-size: 1.1rem; font-weight: 700; }

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 999;
  padding: 0.75rem 1rem;
  background: var(--red);
  color: #fff;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}
.skip-link:focus { transform: translateY(0); }
.container { width: min(calc(100% - 2rem), var(--wrap)); margin: 0 auto; }
.section { padding: 4.5rem 0; }
.section-head { max-width: 760px; margin-bottom: 2rem; }
.section-head.centered { margin-inline: auto; text-align: center; }
.section-shell {
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}
.kicker, .eyebrow {
  display: inline-block;
  margin-bottom: 0.55rem;
  color: var(--red);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-header {
  position: relative;
  top: 0;
  z-index: 50;
  background: #ffffff;
  border-bottom: 1px solid rgba(4, 30, 66, 0.08);
  box-shadow: none;
}
.header-inner {
  width: 100%;
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
  min-height: 64px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.site-logo {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}
.site-logo-img {
  display: block;
  width: 280px;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-left: auto;
  margin-right: 34px;
  color: var(--blue-deep);
  font-size: 0.84rem;
  font-weight: 900;
  text-transform: uppercase;
}
.main-nav a { padding: 0.55rem 0; border-bottom: 2px solid transparent; }
.main-nav a:hover, .main-nav a:focus-visible { border-color: var(--red); }
.mobile-menu-toggle,
.mobile-menu-panel {
  display: none;
}

.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;
}
.nav-dropdown {
  position: relative;
}
.nav-dropdown-toggle::after {
  content: "";
  display: inline-block;
  width: 0.42em;
  height: 0.42em;
  margin-left: 0.45em;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-0.16em) rotate(45deg);
}
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  z-index: 20;
  min-width: 280px;
  padding: 12px;
  border: 1px solid #E3E8EF;
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 18px 42px rgba(4, 30, 66, 0.16);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 8px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}
.nav-dropdown-menu a {
  display: block;
  padding: 10px 12px;
  border: 0;
  border-radius: 7px;
  color: #041E42;
  font-size: 0.82rem;
  line-height: 1.2;
  text-decoration: none;
}
.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus-visible {
  border: 0;
  background: #F5F7FA;
  color: #E4312B;
}
.header-call {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 122px;
  padding: 12px 20px;
  border-radius: 8px;
  background: #E4312B;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-decoration: none;
  box-shadow: 0 12px 24px rgba(228, 49, 43, 0.18);
}
/* Legacy header class aliases kept harmless for old markup/cache during transition. */
.brand { flex: 0 0 auto; display: flex; align-items: center; }
.site-nav {
  justify-content: center;
  gap: clamp(1.4rem, 2.1vw, 2.15rem);
  color: var(--blue-deep);
  font-size: 0.84rem;
  font-weight: 900;
  text-transform: uppercase;
}
.site-nav a { padding: 0.55rem 0; border-bottom: 2px solid transparent; }
.site-nav a:hover, .site-nav a:focus-visible { border-color: var(--red); }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0.95rem 1.3rem;
  border-radius: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover, .btn:focus-visible { transform: translateY(-2px); }
.btn-red { background: linear-gradient(135deg, var(--red), var(--red-dark)); color: #fff; box-shadow: 0 14px 32px rgba(239, 45, 45, 0.28); }
.btn-outline { border: 1px solid rgba(255,255,255,0.5); color: #fff; background: rgba(255,255,255,0.08); }

.text-red,
.hero h1 .text-red {
  color: #E4312B;
}

.hero {
  background: #ffffff;
  padding: 0;
}

.hero-shell {
  position: relative;
  max-width: 1320px;
  min-height: 560px;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  background: #041E42;
}

.hero-bg-image {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 58%;
  background-image:
    linear-gradient(
      90deg,
      #041E42 0%,
      rgba(4, 30, 66, 0.96) 12%,
      rgba(4, 30, 66, 0.56) 28%,
      rgba(4, 30, 66, 0.20) 48%,
      rgba(4, 30, 66, 0.08) 70%,
      rgba(4, 30, 66, 0) 100%
    ),
    url("../images/williams-plumbing-hero-image.png");
  background-size: cover;
  background-position: center 20%;
  background-repeat: no-repeat;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding: 86px 56px 82px;
  color: #ffffff;
}

.hero-content > p:not(.eyebrow):not(.hero-note) {
  max-width: 560px;
  font-size: 1.05rem;
  line-height: 1.55;
}

.hero-title {
  display: flex;
  flex-direction: column;
  gap: 0.08em;
  margin: 0;
  max-width: 680px;
  font-size: clamp(2.85rem, 3.55vw, 4.15rem);
  line-height: 0.98;
  letter-spacing: -0.025em;
  text-transform: uppercase;
}

.hero-title span {
  display: block;
  white-space: nowrap;
}

.hero-title strong {
  color: #E4312B;
  font: inherit;
  font-weight: inherit;
  white-space: nowrap;
}
.hero h1, .hero p { color: #fff; }
.hero h1 strong, .accent { color: var(--red); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin: 28px 0 0; }
.hero-note { display: inline-flex; align-items: center; gap: 0.5rem; margin-top: 22px; font-size: 0.95rem; font-weight: 800; }
.hero-note::before { content: none; }

.service-grid, .review-grid { display: grid; gap: 1rem; }
.service-card, .review-card, .rating-card, .faq details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}
.service-card { padding: 1.4rem 1rem; text-align: center; }
.service-card img { width: 64px; height: 64px; margin: 0 auto 0.9rem; object-fit: contain; }
.service-card h3 { margin-bottom: 0.55rem; color: var(--blue); }
.service-card p { margin: 0; font-size: 0.92rem; }

.services {
  max-width: 1320px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 84px 0 88px;
  background:
    radial-gradient(circle at 88% 16%, rgba(11, 63, 140, 0.10), transparent 38%),
    radial-gradient(circle at 12% 82%, rgba(11, 63, 140, 0.055), transparent 34%),
    #ffffff;
}

.services .section-header {
  max-width: 820px;
  margin: 0 auto 42px;
  text-align: center;
}

.services .eyebrow {
  color: #E4312B;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.services h2 {
  max-width: 900px;
  margin: 0 auto;
  color: #041E42;
  font-size: clamp(2.3rem, 3vw, 3.35rem);
  line-height: 1.08;
  letter-spacing: -0.025em;
}

.services .section-intro {
  max-width: 880px;
  margin: 18px auto 0;
  color: #5F6B7A;
  font-size: 1.05rem;
  line-height: 1.6;
  text-align: center;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  max-width: 1040px;
  margin: 0 auto;
}

.service-card {
  display: block;
  min-height: 230px;
  padding: 30px 28px;
  background: #ffffff;
  border: 1px solid #E3E8EF;
  border-radius: 18px;
  box-shadow: 0 18px 42px rgba(4, 30, 66, 0.08);
  text-align: center;
  text-decoration: none;
}

.service-card-icon {
  width: 58px;
  height: 58px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0B3F8C;
}

.service-card-icon svg {
  width: 52px;
  height: 52px;
  stroke: currentColor;
  stroke-width: 1.9;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  display: block;
}

.service-card h3 {
  color: #0B3F8C;
  font-size: 1.08rem;
  line-height: 1.15;
  margin: 0 0 12px;
}

.service-card p {
  color: #5F6B7A;
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
}

.subpage-main {
  max-width: 1320px;
  width: 100%;
  margin: 0 auto;
}

.subpage-hero {
  padding: 82px 24px 72px;
  color: #ffffff;
  background:
    radial-gradient(circle at 86% 48%, rgba(255, 255, 255, 0.12), transparent 24%),
    linear-gradient(135deg, #073C8A 0%, #062B63 58%, #041E42 100%);
}

.subpage-hero-inner,
.subpage-content {
  max-width: 1040px;
  margin: 0 auto;
}

.subpage-hero .eyebrow {
  color: rgba(255, 255, 255, 0.84);
}

.subpage-hero h1 {
  max-width: 820px;
  color: #ffffff;
  font-size: clamp(3rem, 5vw, 5rem);
  line-height: 0.98;
}

.subpage-hero p {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.08rem;
  line-height: 1.65;
}

.internal-hero {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0;
  position: relative;
  overflow: hidden;
  color: #ffffff;
  background:
    linear-gradient(90deg, rgba(4, 30, 66, 0.98) 0%, rgba(4, 30, 66, 0.90) 45%, rgba(4, 30, 66, 0.62) 100%),
    url("/assets/images/williams-plumbing-hero-image.png");
  background-size: cover;
  background-position: center 20%;
}

.internal-hero-inner {
  min-height: 410px;
  padding: 72px 58px;
  margin: 0 auto;
}

.internal-hero .eyebrow,
.internal-hero .service-breadcrumb {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.internal-hero h1 {
  max-width: 760px;
  margin: 0 0 18px;
  color: #ffffff;
  font-size: clamp(2.75rem, 4.6vw, 4.55rem);
  line-height: 0.98;
}

.internal-hero p {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1rem;
  line-height: 1.65;
}

.subpage-section {
  padding: 64px 24px;
  background:
    radial-gradient(circle at 88% 16%, rgba(11, 63, 140, 0.10), transparent 38%),
    radial-gradient(circle at 12% 82%, rgba(11, 63, 140, 0.055), transparent 34%),
    #ffffff;
}

.subpage-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 28px;
}

.subpage-card {
  padding: 26px;
  border: 1px solid #E3E8EF;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 16px 38px rgba(4, 30, 66, 0.08);
  text-decoration: none;
}

.subpage-card h2,
.subpage-card h3 {
  margin: 0 0 10px;
  color: #0B3F8C;
}

.subpage-card p,
.subpage-content p,
.subpage-content li {
  color: #42526A;
  font-size: 1rem;
  line-height: 1.65;
}

.services-overview-page {
  background: #ffffff;
}

.services-overview-hero .service-hero-actions {
  margin-top: 28px;
}

.services-overview-hero h1 {
  text-transform: none;
}

.services-overview-intro,
.services-overview-list,
.services-help-section,
.services-overview-why {
  padding: 84px 58px;
}

.services-overview-intro,
.services-overview-why {
  background:
    radial-gradient(circle at 92% 14%, rgba(11, 63, 140, 0.055), transparent 34%),
    #ffffff;
}

.services-overview-list {
  background: #F5F7FA;
}

.services-overview-shell {
  max-width: 1120px;
  margin: 0 auto;
}

.services-overview-shell > h2,
.services-help-card h2 {
  max-width: 880px;
  margin: 0 0 18px;
  color: #041E42;
  font-size: clamp(2.25rem, 3.2vw, 3.45rem);
  line-height: 1.08;
  letter-spacing: -0.025em;
}

.services-overview-shell > p,
.services-help-card p {
  max-width: 820px;
  margin: 0;
  color: #42526A;
  font-size: 1.02rem;
  line-height: 1.68;
}

.services-overview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 34px;
}

.overview-service-card,
.services-why-card {
  display: flex;
  flex-direction: column;
  min-height: 230px;
  padding: 28px 26px;
  border: 1px solid #E3E8EF;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 16px 38px rgba(4, 30, 66, 0.08);
  text-decoration: none;
}

.overview-service-card h3,
.services-why-card h3 {
  margin: 0 0 12px;
  color: #0B3F8C;
  font-size: 1.08rem;
  line-height: 1.2;
}

.overview-service-card p,
.services-why-card p {
  margin: 0;
  color: #5F6B7A;
  font-size: 0.95rem;
  line-height: 1.55;
}

.overview-service-card span {
  margin-top: auto;
  padding-top: 22px;
  color: #E4312B;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.services-help-section {
  background:
    radial-gradient(circle at 86% 44%, rgba(228, 49, 43, 0.10), transparent 24%),
    linear-gradient(135deg, #ffffff 0%, #F5F7FA 100%);
}

.services-help-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 34px;
  padding: 34px;
  border: 1px solid #E3E8EF;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 18px 42px rgba(4, 30, 66, 0.08);
}

.services-help-actions,
.service-final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.services-phone-link {
  background: #0B3F8C;
  color: #ffffff;
  box-shadow: 0 14px 28px rgba(11, 63, 140, 0.18);
}

.services-phone-link:hover,
.services-phone-link:focus-visible {
  background: #083574;
}

.services-why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 32px;
}

.services-why-card {
  min-height: 175px;
}

.subpage-content ul {
  margin: 18px 0 0;
  padding-left: 1.2rem;
}

.our-work-page {
  max-width: 1320px;
  width: 100%;
  margin: 0 auto;
  background: #ffffff;
}

.our-work-hero {
  max-width: 1320px;
  margin: 0 auto;
}

.our-work-gallery {
  padding: 84px 58px 90px;
  background:
    radial-gradient(circle at 92% 12%, rgba(11, 63, 140, 0.055), transparent 32%),
    #ffffff;
}

.our-work-intro {
  max-width: 900px;
  margin: 0 auto 42px;
  text-align: center;
}

.our-work-intro .eyebrow {
  margin: 0 0 12px;
  color: #E4312B;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.our-work-intro h2 {
  margin: 0;
  color: #041E42;
  font-size: clamp(2.25rem, 3vw, 3.3rem);
  line-height: 1.08;
  letter-spacing: -0.025em;
}

.our-work-intro p {
  max-width: 790px;
  margin: 18px auto 0;
  color: #5F6B7A;
  font-size: 1.05rem;
  line-height: 1.65;
}

.our-work-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.our-work-card {
  margin: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(4, 30, 66, 0.10);
  background: #ffffff;
  box-shadow: 0 16px 38px rgba(4, 30, 66, 0.08);
}

.our-work-lightbox-trigger {
  width: 100%;
  height: 100%;
  display: block;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.our-work-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.lightbox-open {
  overflow: hidden;
}

.work-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  background: rgba(4, 16, 35, 0.86);
}

.work-lightbox[hidden] {
  display: none;
}

.work-lightbox-image {
  max-width: 92vw;
  max-height: 88vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
}

.work-lightbox-close,
.work-lightbox-nav {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: rgba(4, 30, 66, 0.78);
  color: #ffffff;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.work-lightbox-close {
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  font-size: 2rem;
  line-height: 1;
}

.work-lightbox-nav {
  top: 50%;
  width: 48px;
  height: 58px;
  border-radius: 10px;
  font-size: 3rem;
  line-height: 1;
  transform: translateY(-50%);
}

.work-lightbox-prev {
  left: 24px;
}

.work-lightbox-next {
  right: 24px;
}

.our-work-cta {
  padding: 64px 58px;
  color: #ffffff;
  background:
    radial-gradient(circle at 82% 48%, rgba(228, 49, 43, 0.18), transparent 22%),
    linear-gradient(135deg, #073C8A 0%, #062B63 58%, #041E42 100%);
}

.our-work-cta-inner {
  max-width: 1040px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 36px;
  align-items: center;
}

.our-work-cta .eyebrow {
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.86);
}

.our-work-cta h2 {
  margin: 0 0 10px;
  color: #ffffff;
  font-size: clamp(2.2rem, 3.4vw, 3.4rem);
}

.our-work-cta p {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.03rem;
  line-height: 1.55;
}

.plumbing-service-page {
  max-width: 1320px;
  width: 100%;
  margin: 0 auto;
  background: #ffffff;
}

.service-page-hero {
  position: relative;
  overflow: hidden;
  color: #ffffff;
}

.service-page-hero-inner {
  min-height: 410px;
  padding: 72px 58px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  align-items: center;
  gap: 56px;
}

.contact-hero .contact-hero-inner {
  display: block;
}

.service-breadcrumb {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.service-page-hero h1 {
  max-width: 760px;
  margin: 0 0 18px;
  color: #ffffff;
  font-size: clamp(2.75rem, 4.6vw, 4.55rem);
  line-height: 0.98;
  text-transform: uppercase;
}

.service-page-hero p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1rem;
  line-height: 1.65;
}

.service-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.service-hero-card,
.service-side-card {
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.16);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(7px);
}

.service-hero-card {
  padding: 26px;
}

.service-hero-card h2 {
  margin: 0 0 12px;
  color: #ffffff;
  font-family: "Plus Jakarta Sans", Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.18rem;
  font-weight: 800;
  line-height: 1.2;
}

.service-hero-card ul,
.service-side-card ul {
  margin: 0;
  padding-left: 1.15rem;
}

.service-hero-card li,
.service-side-card li {
  margin: 8px 0;
  color: rgba(255, 255, 255, 0.9);
}

.service-benefits {
  margin-top: -38px;
  position: relative;
  z-index: 3;
  padding: 0 58px 54px;
}

.service-benefit-grid,
.service-card-grid,
.service-problem-grid,
.service-faq-grid {
  display: grid;
  gap: 18px;
}

.service-benefit-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-mini-card,
.service-info-card,
.service-problem-card,
.service-faq-grid details,
.service-related-card {
  border: 1px solid #E3E8EF;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 16px 38px rgba(4, 30, 66, 0.08);
}

.service-mini-card {
  padding: 22px;
}

.service-mini-card strong,
.service-info-card h3,
.service-problem-card h3,
.service-related-card h3 {
  display: block;
  margin: 0 0 8px;
  color: #041E42;
  font-weight: 850;
}

.service-mini-card p,
.service-info-card p,
.service-problem-card p,
.service-related-card p {
  margin: 0;
  color: #5F6B7A;
  font-size: 0.94rem;
  line-height: 1.5;
}

.service-section {
  padding: 74px 58px;
  background:
    radial-gradient(circle at 88% 16%, rgba(11, 63, 140, 0.08), transparent 38%),
    #ffffff;
}

.service-section.alt {
  background: #F5F7FA;
}

.service-section-inner {
  max-width: 1120px;
  margin: 0 auto;
}

.service-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 54px;
  align-items: start;
}

.service-kicker {
  display: inline-block;
  margin: 0 0 10px;
  color: #E4312B;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-section h2 {
  max-width: 820px;
  margin: 0 auto 16px;
  color: #041E42;
  font-size: clamp(2rem, 2.75vw, 2.9rem);
  line-height: 1.08;
  text-align: center;
}

.service-section .service-kicker {
  display: block;
  text-align: center;
}

.service-layout h2 {
  margin-left: 0;
  margin-right: 0;
  text-align: left;
}

.service-layout .service-kicker {
  display: inline-block;
  text-align: left;
}

.service-section p {
  color: #42526A;
  font-size: 1rem;
  line-height: 1.65;
}

.service-side-card {
  padding: 24px;
  border-color: #D8E2EF;
  background: #ffffff;
  box-shadow: 0 16px 38px rgba(4, 30, 66, 0.08);
  backdrop-filter: none;
}

.service-side-card h3 {
  margin: 0 0 8px;
  color: #041E42;
}

.service-side-card ul {
  margin-top: 14px;
}

.service-side-card li {
  color: #42526A;
}

.service-card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 26px;
}

.service-info-card,
.service-problem-card,
.service-related-card {
  padding: 24px;
}

.service-value-band {
  padding: 72px 58px;
  color: #ffffff;
  background:
    radial-gradient(circle at 82% 40%, rgba(255,255,255,0.09), transparent 28%),
    linear-gradient(135deg, #073C8A 0%, #062B63 55%, #041E42 100%);
}

.service-value-band h2,
.service-value-band p,
.service-value-band .service-kicker {
  color: #ffffff;
}

.service-value-band h2,
.service-value-band > .service-section-inner > p,
.service-value-band .service-kicker {
  display: block;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.service-value-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  margin-top: 26px;
}

.service-value-card {
  padding: 22px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.service-value-card strong {
  display: block;
  color: #ffffff;
  margin-bottom: 8px;
}

.service-value-card p {
  margin: 0;
  color: rgba(255,255,255,0.84);
  font-size: 0.92rem;
}

.service-problem-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 24px;
}

.service-related-card {
  display: block;
  color: inherit;
  text-decoration: none;
}

.service-faq-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 24px;
}

.service-faq-grid details {
  padding: 20px 22px;
}

.service-faq-grid summary {
  cursor: pointer;
  color: #041E42;
  font-weight: 850;
}

.service-faq-grid details p {
  margin: 12px 0 0;
}

.service-page-area {
  max-width: 1320px;
  width: 100%;
  margin: 0 auto;
  color: #ffffff;
  background:
    radial-gradient(circle at 86% 48%, rgba(255, 255, 255, 0.13), transparent 24%),
    linear-gradient(135deg, #0B3F8C 0%, #104E9F 100%);
  overflow: hidden;
}

.service-page-area .service-area-shell {
  grid-template-columns: minmax(0, 1fr) auto minmax(120px, 0.18fr);
  padding-top: 48px;
  padding-bottom: 34px;
}

.service-page-area .service-area-copy .eyebrow {
  color: rgba(255, 255, 255, 0.86);
  margin-bottom: 12px;
}

.service-page-area .service-area-copy h2 {
  color: #ffffff;
  font-size: clamp(1.55rem, 2.05vw, 2.2rem);
  line-height: 1.08;
}

.service-page-area .service-area-copy p {
  color: rgba(255, 255, 255, 0.78);
  margin-top: 12px;
}

.service-final-cta {
  padding: 72px 58px;
  color: #ffffff;
  background:
    radial-gradient(circle at 82% 48%, rgba(228, 49, 43, 0.18), transparent 22%),
    linear-gradient(135deg, #073C8A 0%, #062B63 58%, #041E42 100%);
}

.service-final-cta-inner {
  max-width: 1040px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 36px;
  align-items: center;
}

.service-final-cta h2 {
  margin: 0 0 10px;
  color: #ffffff;
  font-size: clamp(2.2rem, 3.4vw, 3.4rem);
}

.service-final-cta p {
  max-width: 680px;
  color: rgba(255,255,255,0.9);
}

.contact-page,
.thank-you-page {
  max-width: 1320px;
  width: 100%;
  margin: 0 auto;
  background: #ffffff;
}

.contact-form-section {
  padding: 82px 58px 90px;
  background:
    radial-gradient(circle at 92% 12%, rgba(11, 63, 140, 0.055), transparent 32%),
    #F8FAFC;
}

.contact-form-shell {
  max-width: 980px;
  margin: 0 auto;
}

.lead-form-card {
  max-width: 840px;
  margin: 0 auto;
  padding: 34px;
  border: 1px solid #E3E8EF;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 20px 48px rgba(4, 30, 66, 0.11);
}

.contact-form-copy {
  max-width: 680px;
  margin: 0 auto 26px;
  text-align: center;
}

.contact-form-copy h2 {
  margin: 0 0 14px;
  color: #041E42;
  font-size: clamp(2.25rem, 3vw, 3.2rem);
}

.contact-form-copy > p:not(.eyebrow) {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  color: #42526A;
  font-size: 1.02rem;
  line-height: 1.65;
}

.contact-detail-list {
  margin-top: 28px;
}

.contact-detail-list p {
  margin: 16px 0 0;
  color: #42526A;
}

.contact-detail-list strong {
  color: #041E42;
}

.lead-form {
  padding: 0;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.form-field {
  margin-bottom: 18px;
}

.form-field label,
.preferred-contact legend {
  display: block;
  margin: 0 0 7px;
  color: #041E42;
  font-weight: 800;
  font-size: 0.92rem;
}

.form-field label span {
  color: #E4312B;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 52px;
  padding: 12px 14px;
  border: 1px solid #CBD5E1;
  border-radius: 10px;
  color: #071A33;
  background: #ffffff;
  font: inherit;
}

.form-field textarea {
  min-height: 132px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: 3px solid rgba(11, 63, 140, 0.16);
  border-color: #0B3F8C;
}

.preferred-contact {
  padding: 0;
  border: 0;
}

.preferred-contact label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 4px 18px 0 0;
  color: #42526A;
  font-weight: 700;
}

.preferred-contact input {
  width: auto;
  min-height: auto;
}

.form-honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.form-submit {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.form-error {
  margin: 0 0 18px;
  padding: 12px 14px;
  border: 1px solid rgba(228, 49, 43, 0.28);
  border-radius: 10px;
  color: #9F1D18;
  background: rgba(228, 49, 43, 0.08);
  font-weight: 800;
}

.contact-info-grid {
  max-width: 980px;
  margin: 28px auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.contact-info-card {
  min-height: 142px;
  padding: 24px 22px;
  border: 1px solid #E3E8EF;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 16px 36px rgba(4, 30, 66, 0.08);
  text-align: center;
}

.contact-info-card h3 {
  margin: 0 0 10px;
  color: #041E42;
  font-size: 1.05rem;
  font-weight: 800;
}

.contact-info-card p {
  margin: 0;
  color: #42526A;
  font-size: 0.98rem;
  line-height: 1.5;
}

.contact-info-card .btn {
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 8px;
}

.contact-phone-button {
  background: #0B3F8C;
  color: #ffffff;
}

.contact-phone-button:hover {
  background: #083574;
}

.contact-actions {
  grid-column: 2;
  justify-self: center;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: center;
}

.contact-actions .btn {
  min-width: 210px;
  min-height: 56px;
  border-radius: 8px;
}

.reviews {
  max-width: 1320px;
  width: 100%;
  margin: 0 auto;
  background: #F5F7FA;
  padding: 84px 24px 90px;
}

.reviews .section-header {
  max-width: 860px;
  margin: 0 auto 44px;
  text-align: center;
}

.reviews .section-header h2,
.reviews h2 {
  margin: 0 0 14px;
  line-height: 1.08;
}

.reviews .section-intro {
  max-width: 850px;
  margin: 0 auto;
  color: #5F6B7A;
  font-size: 1.05rem;
  line-height: 1.75;
  text-align: center;
}

.reviews-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.review-card,
.google-rating-card {
  background: #ffffff;
  border: 1px solid #E3E8EF;
  border-radius: 16px;
  padding: 28px 26px;
  box-shadow: 0 16px 38px rgba(4, 30, 66, 0.08);
}

.review-stars {
  display: flex;
  gap: 4px;
  color: #F5A623;
  font-size: 0.95rem;
  line-height: 1;
  margin-bottom: 16px;
}

.review-card blockquote {
  margin: 0 0 18px;
  color: #24364B;
  font-size: 0.98rem;
  line-height: 1.55;
}

.review-card cite {
  display: block;
  color: #0B3F8C;
  font-style: normal;
  font-weight: 800;
  margin-bottom: 4px;
}

.review-card .review-label {
  color: #5F6B7A;
  font-size: 0.86rem;
}

.google-rating-card {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.google-rating-card .google-wordmark {
  color: #4285F4;
  font-size: 1.45rem;
  font-weight: 700;
  margin-bottom: 18px;
}

.google-rating-card .rating-number {
  color: #041E42;
  font-size: 3.4rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 10px;
}

.google-rating-card .rating-label {
  color: #5F6B7A;
  font-size: 0.92rem;
  line-height: 1.4;
}

.about-section {
  background: #ffffff;
  padding: 0;
}

.about-shell {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  align-items: stretch;
  gap: 0;
  background: #ffffff;
}

.about-image {
  width: 100%;
  min-height: 320px;
  margin: 0;
  background: #F5F7FA;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 18% center;
  background: #F5F7FA;
}

.about-content {
  padding: 40px 58px 36px;
  background:
    radial-gradient(circle at 92% 18%, rgba(11, 63, 140, 0.045), transparent 34%),
    #ffffff;
}

.about-content .eyebrow {
  margin: 0 0 10px;
  color: #E4312B;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about-content h2 {
  max-width: 560px;
  margin: 0 0 12px;
  color: #041E42;
  font-size: clamp(2.2rem, 2.8vw, 3.2rem);
  line-height: 1.02;
  letter-spacing: -0.025em;
}

.about-copy {
  max-width: 680px;
  margin: 0 0 26px;
  color: #42526A;
  font-size: 1.02rem;
  line-height: 1.55;
}

.about-values {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px;
  max-width: 650px;
}

.about-value {
  text-align: center;
}

.about-value-icon {
  width: 58px;
  height: 58px;
  margin: 0 auto 13px;
  border-radius: 999px;
  background: #0B3F8C;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 22px rgba(11, 63, 140, 0.16);
}

.about-value-icon img,
.about-value-icon svg {
  width: 30px;
  height: 30px;
  display: block;
  object-fit: contain;
}

.about-value h3 {
  margin: 0 0 6px;
  color: #0B3F8C;
  font-size: 1rem;
  font-weight: 800;
}

.about-value p {
  max-width: 150px;
  margin: 0 auto;
  color: #5F6B7A;
  font-size: 0.9rem;
  line-height: 1.4;
}

.contact-cta {
  margin-top: 0;
  color: #fff;
  position: relative;
  max-width: 1320px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 50%, rgba(239,45,45,0.20), transparent 20%),
    linear-gradient(135deg, #073C8A 0%, #062B63 58%, #041E42 100%);
}
.area-grid, .contact-grid { display: grid; grid-template-columns: 1fr auto; gap: 2rem; align-items: center; padding: 3rem 0; }
.contact-cta h2, .contact-cta p { color: #fff; }
.contact-cta p { max-width: 720px; }

.contact-cta::before {
  content: "";
  position: absolute;
  inset: 0 34px 0 auto;
  width: 330px;
  opacity: 0.38;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle at 55% 50%, #000 0 55%, transparent 78%);
}

.contact-grid {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: none;
  min-height: 152px;
  margin: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(120px, 0.18fr);
  align-items: center;
  gap: 36px;
  padding: 28px 58px;
}

.contact-cta .eyebrow {
  margin: 0 0 9px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-cta h2 {
  margin: 0 0 8px;
  font-size: clamp(1.85rem, 2.35vw, 2.55rem);
  line-height: 1.08;
  letter-spacing: -0.01em;
  font-weight: 700;
}

.contact-cta p {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  line-height: 1.5;
}

.contact-cta .btn-red {
  grid-column: 2;
  justify-self: center;
  min-width: 210px;
  min-height: 56px;
  padding: 0 26px;
  border-radius: 8px;
}

.service-area {
  max-width: 1320px;
  width: 100%;
  margin: 0 auto;
  color: #ffffff;
  background:
    radial-gradient(circle at 86% 48%, rgba(255, 255, 255, 0.11), transparent 24%),
    linear-gradient(135deg, #073C8A 0%, #062B63 58%, #041E42 100%);
  overflow: hidden;
}

.service-area-shell {
  position: relative;
  min-height: 152px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(120px, 0.18fr);
  align-items: center;
  gap: 36px;
  padding: 28px 58px;
}

.service-area-copy {
  position: relative;
  z-index: 2;
}

.service-area-copy .eyebrow {
  margin: 0 0 9px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-area-copy .eyebrow img {
  width: 22px;
  height: 22px;
  display: block;
  object-fit: contain;
}

.service-area h2 {
  margin: 0 0 8px;
  color: #ffffff;
  font-size: clamp(1.85rem, 2.35vw, 2.55rem);
  line-height: 1.08;
  letter-spacing: -0.01em;
  font-weight: 700;
  white-space: nowrap;
}

.service-area p {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  line-height: 1.5;
}

.service-area-btn {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 215px;
  min-height: 62px;
  padding: 0 28px;
  border: 2px solid rgba(255, 255, 255, 0.58);
  border-radius: 5px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
}

.service-area-btn::after {
  content: ">";
  margin-left: 22px;
  font-size: 1.25rem;
  line-height: 1;
}

.service-area-map {
  position: absolute;
  inset: 0 34px 0 auto;
  width: 330px;
  opacity: 0.46;
  pointer-events: none;
}

.service-area-map::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle at 55% 50%, #000 0 55%, transparent 78%);
}

.faq {
  max-width: 1320px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  background:
    radial-gradient(circle at 88% 16%, rgba(11, 63, 140, 0.10), transparent 38%),
    radial-gradient(circle at 12% 82%, rgba(11, 63, 140, 0.055), transparent 34%),
    #ffffff;
}
.faq-grid { display: grid; gap: 0.85rem; max-width: 920px; margin: 0 auto; }
.faq details { padding: 1rem 1.2rem; }
.faq summary { cursor: pointer; color: var(--blue-deep); font-weight: 900; }
.faq details p { margin: 0.75rem 0 0; }

.map-section {
  max-width: 1320px;
  width: 100%;
  margin: 0 auto;
  background: #ffffff;
}

.map-shell {
  width: 100%;
  height: 360px;
  overflow: hidden;
  border: 1px solid #E3E8EF;
  box-shadow: 0 18px 42px rgba(4, 30, 66, 0.08);
  background: #F5F7FA;
}

.map-shell iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

.site-footer {
  max-width: 1320px;
  width: 100%;
  margin: 0 auto;
  padding: 3.4rem 0 1.4rem;
  color: rgba(255,255,255,0.82);
  background: #001f4f;
}
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 2rem; }
.footer-logo-wrap {
  width: fit-content;
  max-width: 100%;
  margin-bottom: 1rem;
  padding: 12px 18px;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.18);
}
.footer-logo-img {
  display: block;
  width: 250px;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}
.footer-grid h2 {
  color: #fff;
  font-family: "Plus Jakarta Sans", Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 0.8rem;
}
.footer-grid a, .footer-grid span { display: block; margin: 0.35rem 0; color: rgba(255,255,255,0.86); }
.footer-bottom { margin-top: 2rem; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,0.16); }
.footer-bottom p { margin: 0; color: rgba(255,255,255,0.7); font-size: 0.9rem; }

@media (min-width: 760px) {
  .review-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 1040px) {
  .header-inner { flex-wrap: wrap; justify-content: center; padding: 0.8rem 20px; }
  .main-nav, .site-nav { order: 3; flex-basis: 100%; justify-content: center; margin: 0; }
}
@media (max-width: 900px) {
  .header-inner {
    min-height: 72px;
    padding: 0 20px;
    flex-wrap: nowrap;
    justify-content: space-between;
  }

  .site-logo-img {
    width: 220px;
  }

  .main-nav {
    display: none;
  }

  .header-call {
    display: none;
  }

  .mobile-menu-toggle {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(4, 30, 66, 0.16);
    border-radius: 10px;
    background: #ffffff;
    color: #041E42;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }

  .mobile-menu-bars,
  .mobile-menu-bars::before,
  .mobile-menu-bars::after {
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    display: block;
    content: "";
  }

  .mobile-menu-bars {
    position: relative;
  }

  .mobile-menu-bars::before,
  .mobile-menu-bars::after {
    position: absolute;
    left: 0;
  }

  .mobile-menu-bars::before {
    top: -7px;
  }

  .mobile-menu-bars::after {
    top: 7px;
  }

  .mobile-menu-panel {
    max-width: 1320px;
    margin: 0 auto;
    padding: 12px 20px 20px;
    background: #ffffff;
    border-top: 1px solid rgba(4, 30, 66, 0.08);
  }

  .mobile-menu-panel:not([hidden]) {
    display: grid;
    gap: 8px;
  }

  .mobile-menu-panel a,
  .mobile-menu-panel summary {
    display: block;
    width: 100%;
    min-height: 44px;
    padding: 12px 14px;
    border-radius: 8px;
    color: #041E42;
    font-weight: 800;
    text-decoration: none;
    cursor: pointer;
  }

  .mobile-menu-panel a:hover,
  .mobile-menu-panel summary:hover {
    background: #F5F7FA;
  }

  .mobile-menu-panel details {
    display: block;
    width: 100%;
  }

  .mobile-menu-panel details a {
    display: block;
    width: 100%;
    margin: 4px 0 0;
    padding-left: 28px;
    color: #42526A;
    font-size: 0.94rem;
  }

  .mobile-menu-panel .mobile-menu-call {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 6px;
    background: #E4312B;
    color: #ffffff;
    text-align: center;
  }

  .hero-shell {
    position: relative;
    min-height: auto;
    background: #041E42;
  }

  .hero-bg-image {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: auto;
    background-image:
      linear-gradient(
        90deg,
        rgba(4, 30, 66, 0.98) 0%,
        rgba(4, 30, 66, 0.88) 42%,
        rgba(4, 30, 66, 0.64) 100%
      ),
      url("../images/williams-plumbing-hero-image.png");
    background-size: cover;
    background-position: center 20%;
    background-repeat: no-repeat;
  }

  .hero-content {
    position: relative;
    z-index: 2;
    padding: 56px 24px;
  }
}
@media (max-width: 760px) {
  .section { padding: 3.2rem 0; }
  .header-inner { min-height: auto; align-items: center; }
  .site-logo-img { width: min(78vw, 285px); }
  .main-nav, .site-nav { display: none; }
  .header-call { width: 100%; min-width: 0; }
  .hero-actions .btn { width: 100%; }
  .service-grid, .review-grid, .area-grid, .contact-grid, .footer-grid { grid-template-columns: 1fr; }
  .area-grid .btn, .contact-grid .btn { width: 100%; }
}

@media (max-width: 768px) {
  .site-logo {
    min-width: 0;
  }

  .site-logo-img {
    width: min(62vw, 220px);
  }

  .hero,
  .hero-shell {
    overflow: hidden;
  }

  .hero-shell {
    position: relative;
    background: #041E42;
  }

  .hero-bg-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: auto;
    display: block;
    background-image:
      linear-gradient(
        90deg,
        rgba(4, 30, 66, 0.98) 0%,
        rgba(4, 30, 66, 0.88) 42%,
        rgba(4, 30, 66, 0.64) 100%
      ),
      url("../images/williams-plumbing-hero-image.png");
    background-size: cover;
    background-position: center 20%;
    background-repeat: no-repeat;
  }

  .hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 100%;
    padding: 46px 24px 52px;
    box-sizing: border-box;
  }

  .hero-title {
    max-width: 100%;
    font-size: clamp(2.25rem, 11vw, 3.65rem);
    line-height: 1.05;
    letter-spacing: -0.035em;
    overflow-wrap: normal;
    word-break: normal;
  }

  .hero-title span {
    white-space: normal;
  }

  .hero-title strong {
    white-space: nowrap;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-note {
    display: block;
    max-width: 100%;
    font-size: 0.95rem;
    line-height: 1.45;
    white-space: normal;
  }
}

@media (max-width: 480px) {
  .hero-content {
    padding-left: 22px;
    padding-right: 22px;
  }

  .hero-title {
    font-size: clamp(2rem, 10.5vw, 3rem);
  }
}

@media (max-width: 1000px) {
  .about-shell {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 0 24px;
  }

  .about-image {
    width: 100%;
    max-width: 680px;
    height: auto;
    aspect-ratio: 16 / 9;
    margin: 0 auto;
  }

  .about-content {
    max-width: 760px;
    margin: 0 auto;
  }

  .about-values {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .service-area-shell {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 34px 24px;
  }

  .service-area-map {
    opacity: 0.28;
    right: -64px;
  }

  .service-area-btn {
    width: fit-content;
  }

  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .site-header,
  main,
  section,
  .site-footer,
  .footer,
  .container,
  .section-shell,
  .header-inner,
  .hero-shell,
  .about-shell,
  .service-area-shell,
  .contact-grid,
  .footer-inner {
    max-width: 100%;
    min-width: 0;
  }

  .site-header,
  main,
  section,
  .site-footer,
  .footer {
    overflow-x: hidden;
  }

  .about-section,
  .about-shell,
  .about-content,
  .about-copy,
  .about-values,
  .about-value {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }

  .about-section {
    overflow-x: hidden;
  }

  .about-shell {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
    padding: 0;
    overflow-x: hidden;
  }

  .about-image {
    width: 100%;
    max-width: 100%;
    overflow: visible;
  }

  .about-image img,
  .about-section img[src*="williams-plumbing-truck"] {
    width: 100%;
    height: auto;
    max-height: none;
    object-fit: contain;
    object-position: center center;
  }

  .about-content {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    padding: 42px 24px 38px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .about-content h2 {
    max-width: min(100%, 34rem);
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 16px;
    font-size: clamp(2.05rem, 9vw, 2.85rem);
    line-height: 1.08;
    letter-spacing: -0.035em;
    white-space: normal;
    overflow-wrap: normal;
    word-break: normal;
  }

  .about-copy {
    max-width: min(100%, 34rem);
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 34px;
    font-size: 1rem;
    line-height: 1.68;
    white-space: normal;
    overflow-wrap: normal;
    word-break: normal;
  }

  .about-values {
    gap: 32px;
    margin-top: 0;
  }

  .service-area,
  .service-page-area {
    overflow: hidden;
    text-align: center;
  }

  .service-area .service-area-shell,
  .service-page-area .service-area-shell {
    min-height: auto;
    display: grid;
    grid-template-columns: 1fr;
    align-items: start;
    gap: 22px;
    width: 100%;
    max-width: 100%;
    padding: 38px 24px;
  }

  .service-area-copy {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .service-area-copy .eyebrow {
    flex-wrap: wrap;
    justify-content: center;
  }

  .service-area h2,
  .service-page-area .service-area-copy h2 {
    max-width: 100%;
    font-size: clamp(2rem, 8.4vw, 2.75rem);
    line-height: 1.08;
    letter-spacing: -0.035em;
    white-space: normal;
    overflow-wrap: normal;
    word-break: normal;
  }

  .service-area p,
  .service-page-area .service-area-copy p {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    font-size: 1rem;
    line-height: 1.55;
    overflow-wrap: normal;
    word-break: normal;
  }

  .service-area-btn,
  .service-page-area .service-area-btn {
    width: 100%;
    max-width: 360px;
    min-width: 0;
    justify-self: center;
    align-self: start;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
  }

  .service-area-map {
    inset: 0 -120px 0 auto;
    width: min(70vw, 300px);
    opacity: 0.18;
  }
}

@media (max-width: 480px) {
  .about-content {
    padding-left: 20px;
    padding-right: 20px;
  }

  .about-content h2 {
    font-size: clamp(1.95rem, 8.7vw, 2.55rem);
  }

  .service-area .service-area-shell,
  .service-page-area .service-area-shell {
    padding-left: 20px;
    padding-right: 20px;
  }

  .service-area h2,
  .service-page-area .service-area-copy h2 {
    font-size: clamp(1.75rem, 8vw, 2.35rem);
  }

  .service-area-btn,
  .service-page-area .service-area-btn {
    max-width: 100%;
  }
}

@media (max-width: 1050px) {
  .reviews-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .subpage-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .services-overview-grid,
  .services-why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .services-help-card {
    grid-template-columns: 1fr;
  }

  .our-work-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .our-work-cta-inner {
    grid-template-columns: 1fr;
  }

  .service-page-hero-inner,
  .service-layout,
  .service-final-cta-inner {
    grid-template-columns: 1fr;
  }

  .service-benefit-grid,
  .service-value-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 760px) {
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 620px) {
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .service-section p,
  .service-value-band p {
    text-align: left;
  }

  .service-layout h2,
  .service-layout p,
  .service-layout .service-kicker {
    text-align: left;
  }

  .service-layout h2 {
    margin-left: 0;
    margin-right: 0;
  }

  .service-page-hero-inner,
  .service-section,
  .service-value-band,
  .contact-form-section,
  .service-final-cta {
    padding-left: 24px;
    padding-right: 24px;
  }

  .service-benefits {
    padding-left: 24px;
    padding-right: 24px;
  }

  .our-work-gallery,
  .our-work-cta,
  .services-overview-intro,
  .services-overview-list,
  .services-help-section,
  .services-overview-why {
    padding-left: 24px;
    padding-right: 24px;
  }

  .service-benefit-grid,
  .service-card-grid,
  .service-problem-grid,
  .service-value-grid,
  .service-faq-grid,
  .services-overview-grid,
  .services-why-grid,
  .contact-form-shell,
  .contact-info-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .services-overview-intro,
  .services-overview-list,
  .services-help-section,
  .services-overview-why {
    padding-top: 64px;
    padding-bottom: 68px;
  }

  .services-overview-shell > h2,
  .services-help-card h2 {
    font-size: clamp(1.85rem, 7.2vw, 2.45rem);
    line-height: 1.1;
  }

  .services-overview-hero h1 {
    font-size: clamp(2rem, 8.8vw, 2.75rem);
    line-height: 1.04;
  }

  .services-overview-hero .service-hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 330px;
  }

  .services-overview-hero .service-hero-actions .btn {
    width: 100%;
    white-space: nowrap;
  }

  .services-help-card {
    padding: 26px;
  }

  .services-help-actions,
  .service-final-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .services-help-actions .btn,
  .service-final-actions .btn {
    width: 100%;
  }

  .lead-form-card {
    padding: 24px;
  }

  .contact-actions {
    grid-column: auto;
    justify-self: stretch;
  }

  .contact-actions .btn {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .services .section-header,
  .reviews .section-header,
  .faq .section-head,
  .our-work-intro,
  .contact-form-copy,
  .service-section .service-section-inner,
  .service-value-band .service-section-inner {
    text-align: left;
  }

  .services h2,
  .reviews h2,
  .faq h2,
  .our-work-intro h2,
  .our-work-cta h2,
  .contact-form-copy h2,
  .service-section h2,
  .service-value-band h2,
  .service-final-cta h2,
  .contact-cta h2 {
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
    font-size: clamp(1.85rem, 7.2vw, 2.45rem);
    line-height: 1.1;
    letter-spacing: -0.025em;
    text-align: left;
  }

  .services .section-intro,
  .reviews .section-intro,
  .our-work-intro p,
  .contact-form-copy > p:not(.eyebrow),
  .service-section p,
  .service-value-band > .service-section-inner > p,
  .service-final-cta p,
  .contact-cta p {
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
    text-align: left;
  }

  .services .eyebrow,
  .reviews .eyebrow,
  .faq .kicker,
  .our-work-intro .eyebrow,
  .contact-form-copy .eyebrow,
  .service-section .service-kicker,
  .service-value-band .service-kicker {
    display: block;
    text-align: left;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 36px 24px;
    text-align: left;
  }

  .contact-actions {
    grid-column: auto;
    justify-self: stretch;
    width: 100%;
    max-width: 360px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .contact-actions .btn,
  .contact-grid .btn {
    width: 100%;
    min-width: 0;
  }
}

@media (orientation: landscape) and (max-width: 950px) and (max-height: 520px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    min-height: auto;
    padding: 30px 28px;
    text-align: left;
  }

  .contact-cta::before {
    inset: 0 -90px 0 auto;
    width: 280px;
    opacity: 0.18;
  }

  .contact-cta h2 {
    max-width: 100%;
    font-size: clamp(1.75rem, 4.5vw, 2.25rem);
    line-height: 1.1;
  }

  .contact-cta p {
    max-width: 680px;
    line-height: 1.5;
  }

  .contact-actions {
    grid-column: auto;
    justify-self: start;
    display: grid;
    grid-template-columns: repeat(2, minmax(260px, 1fr));
    gap: 16px;
    width: 100%;
    max-width: 620px;
  }

  .contact-actions .btn,
  .contact-grid .btn {
    width: 100%;
    max-width: none;
    min-width: 0;
    white-space: nowrap;
    justify-content: center;
  }
}

@media (max-width: 700px) {
  .reviews {
    padding: 64px 20px 70px;
  }

  .map-section {
    margin: 0 auto;
  }

  .map-shell {
    height: 300px;
  }
}
@media (max-width: 560px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .subpage-grid {
    grid-template-columns: 1fr;
  }

  .our-work-grid {
    grid-template-columns: 1fr;
  }
}

.trust-strip {
  max-width: 1320px;
  width: 100%;
  margin: 0 auto;
  background: #062B63;
  color: #ffffff;
  padding: 34px 0;
  outline: none !important;
}

.trust-strip-inner {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: stretch;
}

.trust-item {
  position: relative;
  text-align: center;
  padding: 0 30px;
}

.trust-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 8px;
  right: 0;
  width: 1px;
  height: calc(100% - 16px);
  background: rgba(255, 255, 255, 0.32);
}

.trust-icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}

.trust-icon svg {
  width: 46px;
  height: 46px;
  display: block;
  stroke: currentColor;
  stroke-width: 1.75;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trust-icon svg text {
  font-family: Arial, sans-serif;
}

.trust-icon img {
  width: 46px;
  height: 46px;
  display: block;
  object-fit: contain;
}

.trust-item h3 {
  margin: 0 0 8px;
  color: #ffffff;
  font-size: 0.92rem;
  line-height: 1.18;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.055em;
}

.trust-item p {
  max-width: 180px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.88rem;
  line-height: 1.42;
}

@media (max-width: 1050px) {
  .trust-strip-inner {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    row-gap: 30px;
  }

  .trust-item:nth-child(3)::after,
  .trust-item:last-child::after {
    display: none;
  }
}

@media (max-width: 700px) {
  .trust-strip {
    padding: 38px 0;
  }

  .trust-strip-inner {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .trust-item {
    padding: 0;
  }

  .trust-item::after {
    display: none !important;
  }
}

.reveal {
  opacity: 1;
  transform: none;
}

.reveal-ready .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 460ms ease,
    transform 460ms ease;
}

.reveal-ready .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 80ms;
}

.reveal-delay-2 {
  transition-delay: 160ms;
}

.reveal-delay-3 {
  transition-delay: 240ms;
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal-ready .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
  }
}

@media (max-width: 768px) {
  .reveal-ready .reveal {
    transform: translateY(12px);
    transition:
      opacity 360ms ease,
      transform 360ms ease;
  }

  .reveal-ready .reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
  }

  .reveal-delay-1,
  .reveal-delay-2,
  .reveal-delay-3 {
    transition-delay: 0ms !important;
  }
}
/* FINAL FIX: landscape phone CTA layout */
@media (orientation: landscape) and (max-width: 1180px) and (max-height: 620px) {
  .contact-cta {
    overflow: hidden;
  }

  .contact-cta .contact-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 22px !important;
    min-height: auto !important;
    padding: 34px 52px 42px !important;
    text-align: left !important;
  }

  .contact-cta .contact-grid > div:first-child {
    width: 100% !important;
    max-width: 860px !important;
    min-width: 0 !important;
  }

  .contact-cta .eyebrow {
    display: block !important;
    text-align: left !important;
    white-space: normal !important;
  }

  .contact-cta h2 {
    width: 100% !important;
    max-width: 900px !important;
    margin: 0 0 10px !important;
    font-size: clamp(2.2rem, 4.8vw, 3.45rem) !important;
    line-height: 1.08 !important;
    letter-spacing: -0.03em !important;
    text-align: left !important;
    white-space: normal !important;
  }

  .contact-cta p {
    width: 100% !important;
    max-width: 900px !important;
    margin: 0 !important;
    font-size: 1rem !important;
    line-height: 1.55 !important;
    text-align: left !important;
    white-space: normal !important;
  }

  .contact-cta .contact-actions {
    grid-column: auto !important;
    justify-self: start !important;
    width: 100% !important;
    max-width: 860px !important;
    min-width: 0 !important;
    display: grid !important;
    grid-template-columns: repeat(2, minmax(320px, 1fr)) !important;
    gap: 18px !important;
    align-items: stretch !important;
  }

  .contact-cta .contact-actions .btn,
  .contact-cta .contact-grid .btn {
    width: 100% !important;
    max-width: none !important;
    min-width: 0 !important;
    min-height: 62px !important;
    white-space: nowrap !important;
    justify-content: center !important;
  }

  .contact-cta .btn-red {
    grid-column: auto !important;
  }
}

@media (orientation: landscape) and (max-width: 760px) and (max-height: 620px) {
  .contact-cta .contact-actions {
    grid-template-columns: 1fr !important;
    max-width: 460px !important;
  }
}
/* FINAL FIX: portrait mobile CTA buttons */
@media (max-width: 768px) and (orientation: portrait) {
  .contact-cta .contact-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 24px !important;
    padding: 42px 24px !important;
    text-align: left !important;
  }

  .contact-cta .contact-actions {
    grid-column: auto !important;
    justify-self: stretch !important;
    width: 100% !important;
    max-width: none !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }

  .contact-cta .btn-red,
  .contact-cta .btn-outline,
  .contact-cta .contact-actions .btn {
    grid-column: auto !important;
    width: 100% !important;
    max-width: none !important;
    min-width: 0 !important;
    white-space: normal !important;
    justify-content: center !important;
    text-align: center !important;
  }
}
/* FINAL FIX: keep service value band headline on one line on desktop */
@media (min-width: 1024px) {
  .service-value-band h2 {
    max-width: 1120px !important;
    font-size: clamp(2.35rem, 3.25vw, 3.55rem) !important;
    line-height: 1.08 !important;
    white-space: nowrap !important;
  }
}

/* Let it wrap normally on tablet/mobile */
@media (max-width: 1023px) {
  .service-value-band h2 {
    max-width: 100% !important;
    white-space: normal !important;
  }
}
