
:root {
  --blue: #0078d9;
  --blue-dark: #004b9b;
  --blue-soft: #e8f4ff;
  --blue-ice: #f4faff;
  --blue-mist: #edf7ff;
  --blue-haze: #e2f1ff;
  --blue-deep: #071a32;
  --cyan: #37b9ff;
  --ink: #0b1220;
  --ink-soft: #334155;
  --muted: #64748b;
  --line: #d8e4ef;
  --surface: #f5f8fb;
  --surface-strong: #eaf2f8;
  --white: #ffffff;
  --black: #05070c;
  --shadow: 0 18px 45px rgba(11, 18, 32, .14);
  --shadow-soft: 0 10px 28px rgba(11, 18, 32, .08);
  --radius: 8px;
  --header-height: 82px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  background:
    linear-gradient(180deg, #ffffff 0%, var(--blue-ice) 18%, var(--blue-mist) 42%, #f8fbff 70%, #ffffff 100%);
}
body.menu-open { overflow: hidden; }
img, video, iframe { max-width: 100%; }
img { display: block; }
a { color: inherit; text-decoration: none; }
p { margin: 0 0 1rem; color: var(--ink-soft); }
h1, h2, h3 { margin: 0; line-height: 1.1; letter-spacing: 0; color: var(--ink); }
h1 { font-size: 4rem; max-width: 980px; }
h2 { font-size: 2.75rem; }
h3 { font-size: 1.1rem; }
ul { margin: 0; padding: 0; }
li { list-style: none; }
.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 10000;
  background: var(--blue);
  color: var(--white);
  padding: 10px 14px;
  border-radius: var(--radius);
  transition: top .2s ease;
}
.skip-link:focus { top: 16px; }

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 9999;
  transition: background .25s ease, box-shadow .25s ease;
}
.site-header.is-scrolled,
.site-header.menu-active {
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 8px 28px rgba(11, 18, 32, .12);
  backdrop-filter: blur(14px);
}
.nav-wrap {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand,
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  color: var(--white);
}
.brand img,
.footer-brand img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  background: rgba(255, 255, 255, .94);
  border-radius: 8px;
  padding: 3px;
}
.brand span { font-size: 1.35rem; }
.site-header.is-scrolled .brand,
.site-header.menu-active .brand,
.site-header.is-scrolled .desktop-nav,
.site-header.menu-active .desktop-nav,
.site-header.is-scrolled .nav-phone,
.site-header.menu-active .nav-phone,
.site-header.is-scrolled .menu-toggle,
.site-header.menu-active .menu-toggle { color: var(--ink); }
.desktop-nav,
.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, .94);
}
.desktop-nav > a,
.nav-dropdown > button {
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  font-weight: 750;
  cursor: pointer;
  padding: 10px 12px;
  border-radius: var(--radius);
}
.desktop-nav > a:hover,
.nav-dropdown > button:hover { background: rgba(255, 255, 255, .12); }
.site-header.is-scrolled .desktop-nav > a:hover,
.site-header.is-scrolled .nav-dropdown > button:hover { background: var(--surface-strong); }
.nav-dropdown { position: relative; }
.nav-dropdown button { display: flex; align-items: center; gap: 5px; }
.nav-dropdown .icon { width: 16px; height: 16px; }
.dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  display: grid;
  min-width: 330px;
  max-height: 70vh;
  overflow: auto;
  padding: 8px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: .18s ease;
}
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu a {
  padding: 10px 12px;
  color: var(--ink-soft);
  border-radius: 6px;
  font-weight: 750;
}
.dropdown-menu a:hover { color: var(--blue); background: var(--surface); }
.nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, .94);
  font-weight: 850;
}
.icon { width: 20px; height: 20px; flex: 0 0 auto; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 2px solid transparent;
  border-radius: var(--radius);
  padding: 15px 24px;
  font-weight: 850;
  line-height: 1;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-soft); }
.btn-small { padding: 11px 15px; font-size: .92rem; }
.btn-primary { background: var(--blue); color: var(--white); border-color: var(--blue); }
.btn-primary:hover { background: var(--blue-dark); border-color: var(--blue-dark); }
.btn-outline-light { color: var(--white); border-color: rgba(255, 255, 255, .8); }
.btn-outline-light:hover { background: var(--white); color: var(--ink); }
.btn-outline-dark { color: var(--ink); border-color: var(--ink); }
.btn-outline-dark:hover { background: var(--ink); color: var(--white); }
.btn-light { background: var(--white); color: var(--blue-dark); border-color: var(--white); }
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .12);
  color: var(--white);
  cursor: pointer;
}
.mobile-nav { display: none; }

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.inner-hero { min-height: 62vh; }
.hero-media,
.hero-media img,
.hero-fallback,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-media { z-index: 0; overflow: hidden; }
.hero-media img,
.hero-fallback { object-fit: cover; object-position: center; }
.hero-fallback { z-index: 0; }
.hero-overlay {
  z-index: 2;
  background:
    radial-gradient(circle at 20% 42%, rgba(55, 185, 255, .28), transparent 34%),
    linear-gradient(90deg, rgba(3, 7, 18, .88), rgba(3, 17, 36, .52), rgba(3, 7, 18, .70)),
    linear-gradient(0deg, rgba(0, 120, 217, .25), rgba(0, 0, 0, 0));
}
.hero-content {
  position: relative;
  z-index: 3;
  padding: 150px 0 90px;
  color: var(--white);
}
.hero-content h1 {
  position: relative;
  display: inline-block;
  color: var(--white);
  margin-top: 18px;
  text-shadow:
    0 0 18px rgba(55, 185, 255, .52),
    0 0 48px rgba(0, 120, 217, .38),
    0 4px 28px rgba(0, 0, 0, .64);
}
.hero-content h1::after {
  content: "";
  display: block;
  width: min(230px, 48%);
  height: 4px;
  margin-top: 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--cyan), rgba(255, 255, 255, .82), rgba(55, 185, 255, 0));
  box-shadow:
    0 0 18px rgba(55, 185, 255, .72),
    0 0 34px rgba(0, 120, 217, .38);
}
.hero-content p {
  max-width: 720px;
  margin-top: 24px;
  color: rgba(255, 255, 255, .86);
  font-size: 1.18rem;
}
.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}
.hero-actions.left { justify-content: flex-start; }
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 54px;
}
.hero-stats div {
  min-width: 140px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .10);
  backdrop-filter: blur(12px);
}
.hero-stats strong {
  display: block;
  color: var(--white);
  font-size: 1.5rem;
  line-height: 1.1;
}
.hero-stats span {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, .76);
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  padding: 7px 13px;
  border-radius: 999px;
  background: var(--blue-soft);
  color: var(--blue-dark);
  font-size: .75rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .12em;
}
.eyebrow.light {
  background: rgba(255, 255, 255, .12);
  color: var(--white);
  backdrop-filter: blur(10px);
}
.contact-strip {
  background: var(--blue);
  color: var(--white);
}
.strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 13px 0;
  font-weight: 750;
}
.strip-inner a,
.strip-inner span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.strip-inner .icon { width: 18px; height: 18px; color: var(--cyan); }
.section { padding: 92px 0; }
.services-overview { background: linear-gradient(180deg, #f9fcff 0%, var(--blue-mist) 100%); }
.surface-section { background: linear-gradient(180deg, var(--blue-ice) 0%, var(--blue-haze) 100%); }
.pricing-section { background: linear-gradient(180deg, var(--blue-mist) 0%, #f8fbff 100%); }
.gallery-section { background: linear-gradient(180deg, #ffffff 0%, var(--blue-mist) 100%); }
.faq-section { background: linear-gradient(180deg, var(--blue-ice) 0%, #ffffff 100%); }
.quote-section { background: linear-gradient(180deg, var(--blue-mist) 0%, #f8fbff 100%); }
.section-heading { max-width: 770px; margin-bottom: 36px; }
.section-heading-center { text-align: center; margin-left: auto; margin-right: auto; }
.section-heading h2 { margin-bottom: 16px; }
.section-heading p {
  max-width: 720px;
  font-size: 1.08rem;
}
.section-heading-center p { margin-left: auto; margin-right: auto; }
.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .82fr);
  gap: 58px;
  align-items: center;
}
.split-grid.reverse { grid-template-columns: minmax(360px, .82fr) minmax(0, 1fr); }
.split-grid.reverse > div:first-child { order: 2; }
.split-grid.reverse > div:last-child { order: 1; }
.check-list,
.service-list {
  display: grid;
  gap: 17px;
  margin: 28px 0;
}
.check-list li,
.service-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.check-list .icon,
.service-list .icon {
  color: var(--blue);
  margin-top: 3px;
}
.check-list h3 { font-size: 1rem; margin-bottom: 4px; }
.check-list p { margin: 0; font-size: .95rem; }
.image-stack { position: relative; }
.image-main {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.image-badge {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 15px;
  max-width: min(300px, calc(100% - 36px));
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .96);
  box-shadow: var(--shadow-soft);
}
.image-badge strong {
  display: grid;
  place-items: center;
  min-width: 64px;
  height: 46px;
  border-radius: 999px;
  background: var(--blue);
  color: var(--white);
}
.image-badge span {
  display: block;
  color: var(--ink-soft);
  font-size: .9rem;
  font-weight: 800;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
.service-card a {
  display: grid;
  height: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  transition: transform .18s ease, box-shadow .18s ease;
}
.service-card a:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.service-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.service-card div { padding: 20px; }
.service-card p { min-height: 76px; font-size: .94rem; }
.service-card span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue-dark);
  font-weight: 900;
}
.service-card .icon { width: 17px; height: 17px; }
.pricing-wrap { text-align: center; }
.pricing-list {
  max-width: 760px;
  margin: 0 auto 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  text-align: left;
}
.pricing-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 24px;
  border-bottom: 1px solid var(--line);
}
.pricing-list li:last-child { border-bottom: 0; }
.pricing-list span {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-weight: 800;
}
.pricing-list b {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: var(--blue-soft);
  color: var(--blue-dark);
}
.pricing-list strong {
  color: var(--ink);
  text-align: right;
}
.value-grid,
.process-grid,
.review-grid,
.mini-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
.review-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.mini-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.google-reviews-section {
  background: linear-gradient(180deg, #f8fbff 0%, var(--blue-mist) 100%);
}
.google-review-widget-shell {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}
.google-review-widget-shell .lc_reviews_widget {
  display: block;
  min-height: 520px;
  border: 0;
}
.value-card,
.process-step,
.review-card,
.mini-card,
.contact-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 26px;
  box-shadow: var(--shadow-soft);
}
.value-card .icon,
.review-card .icon {
  color: var(--blue);
  margin-bottom: 16px;
}
.value-card h3,
.process-step h3,
.review-card h3,
.mini-card h3 { margin-bottom: 10px; }
.value-card p,
.process-step p,
.review-card p { margin: 0; font-size: .95rem; }
.process-step span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: var(--blue);
  color: var(--white);
  font-weight: 900;
}
.area-section {
  background:
    radial-gradient(circle at 18% 18%, rgba(55, 185, 255, .28), transparent 30%),
    linear-gradient(135deg, #03111f 0%, var(--blue-deep) 58%, #042f5b 100%);
  color: var(--white);
}
.area-section h2,
.area-section h3,
.area-section p { color: var(--white); }
.area-heading-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(360px, 1fr);
  gap: 44px;
  align-items: start;
  margin-bottom: 34px;
}
.area-heading-grid .section-heading {
  margin-bottom: 0;
}
.area-heading-grid > p {
  margin: 44px 0 0;
  color: rgba(255, 255, 255, .78);
}
.area-map-grid {
  display: grid;
  grid-template-columns: minmax(320px, .7fr) minmax(0, 1fr);
  gap: 30px;
  align-items: stretch;
}
.area-map-controls {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 18px;
}
.area-map-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .08);
  color: var(--white);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: background .18s ease, border-color .18s ease, transform .18s ease;
}
.area-map-button:hover,
.area-map-button.is-active {
  background: var(--blue);
  border-color: var(--cyan);
  transform: translateY(-1px);
}
.area-map-copy {
  margin-bottom: 20px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .08);
}
.area-map-copy h3 {
  margin-bottom: 10px;
  color: var(--white);
}
.area-map-copy p {
  margin: 0;
  color: rgba(255, 255, 255, .78);
}
.google-map-card {
  min-height: 520px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .08);
  box-shadow: var(--shadow);
}
.google-map-card iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 520px;
  border: 0;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.gallery-grid figure {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
}
.gallery-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.gallery-grid figcaption {
  padding: 12px 14px;
  font-size: .88rem;
  font-weight: 800;
}
.faq-wrap { max-width: 860px; }
.faq-list {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list details:last-child { border-bottom: 0; }
.faq-list summary {
  cursor: pointer;
  padding: 20px 24px;
  font-weight: 900;
  color: var(--ink);
}
.faq-list p { padding: 0 24px 20px; margin: 0; }
.cta-section {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  color: var(--white);
  text-align: center;
}
.cta-section h2,
.cta-section p { color: var(--white); }
.cta-wrap { max-width: 850px; }
.cta-wrap .hero-actions { justify-content: center; }
.quote-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 28px;
  align-items: start;
}
.form-panel {
  height: 720px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}
.contact-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 28px;
  box-shadow: var(--shadow-soft);
}
.contact-list {
  display: grid;
  gap: 14px;
  margin: 20px 0;
}
.contact-list li,
.contact-list a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink-soft);
  font-weight: 800;
}
.contact-list .icon { color: var(--blue); }
.social-row,
.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0;
}
.social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 9px 12px;
  border-radius: var(--radius);
  background: var(--blue-soft);
  color: var(--blue-dark);
  font-weight: 900;
  font-size: .9rem;
}
.footer-social .social-link {
  background: rgba(255, 255, 255, .09);
  color: var(--white);
}
.hours-list {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}
.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}
.site-footer {
  background: var(--black);
  color: var(--white);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr 1.1fr;
  gap: 34px;
  padding: 70px 0 38px;
}
.footer-brand { color: var(--white); font-size: 1.15rem; }
.site-footer h3 {
  color: var(--white);
  margin-bottom: 16px;
  font-size: .95rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.site-footer p,
.site-footer li,
.site-footer a {
  color: rgba(255, 255, 255, .74);
}
.site-footer ul { display: grid; gap: 10px; }
.site-footer a:hover { color: var(--white); }
.site-footer .contact-list li,
.site-footer .contact-list a { color: rgba(255, 255, 255, .74); }
.site-footer .contact-list .icon { color: var(--cyan); }
.small { font-size: .9rem; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .12);
  padding: 22px 0;
  text-align: center;
}
.footer-bottom p { margin: 0; font-size: .9rem; }

@media (max-width: 1120px) {
  .desktop-nav,
  .nav-phone,
  .nav-actions .btn-small { display: none; }
  .menu-toggle { display: inline-flex; }
  .mobile-nav {
    position: fixed;
    left: 20px;
    right: 20px;
    top: calc(var(--header-height) + 8px);
    display: grid;
    max-height: calc(100vh - 110px);
    overflow: auto;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: .18s ease;
  }
  .site-header.menu-active .mobile-nav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .mobile-nav a {
    padding: 13px 14px;
    color: var(--ink);
    border-radius: 6px;
    font-weight: 850;
  }
  .mobile-nav a:hover { background: var(--surface); color: var(--blue-dark); }
  .service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .value-grid,
  .process-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 860px) {
  h1 { font-size: 2.8rem; }
  h2 { font-size: 2.1rem; }
  .hero { min-height: 88vh; }
  .inner-hero { min-height: 58vh; }
  .hero-content { padding: 124px 0 70px; }
  .hero-content p { font-size: 1.05rem; }
  .strip-inner { flex-direction: column; align-items: flex-start; }
  .section { padding: 68px 0; }
  .split-grid,
  .split-grid.reverse,
  .area-heading-grid,
  .area-map-grid,
  .quote-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .split-grid.reverse > div:first-child,
  .split-grid.reverse > div:last-child { order: initial; }
  .gallery-grid,
  .review-grid,
  .mini-grid { grid-template-columns: 1fr; }
  .area-heading-grid > p { margin-top: 0; }
  .form-panel { height: 760px; }
}

@media (max-width: 620px) {
  .container { width: min(100% - 28px, 1180px); }
  .brand span { font-size: 1rem; max-width: 170px; }
  .brand img { width: 50px; height: 50px; }
  h1 { font-size: 2.35rem; }
  h2 { font-size: 1.85rem; }
  .hero-actions,
  .hero-actions .btn { width: 100%; }
  .hero-stats { gap: 10px; }
  .hero-stats div { min-width: calc(50% - 5px); padding: 14px; }
  .area-map-controls { grid-template-columns: 1fr; }
  .google-map-card,
  .google-map-card iframe { min-height: 360px; }
  .service-grid,
  .value-grid,
  .process-grid { grid-template-columns: 1fr; }
  .pricing-list li { align-items: flex-start; flex-direction: column; }
  .pricing-list strong { text-align: left; }
  .footer-grid { grid-template-columns: 1fr; }
  .hours-list li { align-items: flex-start; flex-direction: column; gap: 4px; }
}
