:root {
  --green-950: #061827;
  --green-900: #08283d;
  --green-700: #0095df;
  --green-500: #00c8ff;
  --leaf: #78e60a;
  --gold: #fadc0a;
  --copper: #fb8e28;
  --brand-blue: #0095df;
  --brand-blue-dark: #006fa8;
  --brand-cyan: #00c8ff;
  --brand-orange: #fb8e28;
  --brand-orange-dark: #8a3a00;
  --brand-yellow: #fadc0a;
  --brand-green: #008a00;
  --brand-lime: #78e60a;
  --ink: #111820;
  --muted: #596672;
  --paper: #f5f9fb;
  --paper-2: #eaf5fb;
  --white: #ffffff;
  --line: #d7e7ef;
  --shadow: 0 24px 70px rgba(6, 24, 39, 0.18);
  --shadow-soft: 0 14px 38px rgba(6, 24, 39, 0.12);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
}

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

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(20, 33, 29, 0.16);
  border-radius: 8px;
  padding: 0.82rem 0.9rem;
  color: var(--ink);
  background: var(--white);
  outline: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--green-700);
  box-shadow: 0 0 0 4px rgba(47, 138, 89, 0.16);
}

label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.9rem;
  font-weight: 700;
}

.hidden-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  font-size: 3.6rem;
  max-width: 980px;
}

h2 {
  font-size: 2.25rem;
}

h3 {
  font-size: 1.18rem;
}

p {
  color: var(--muted);
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 100;
  transform: translateY(-200%);
  padding: 0.65rem 0.9rem;
  border-radius: 8px;
  background: var(--white);
  color: var(--green-900);
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 250, 245, 0.94);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(216, 227, 218, 0.9);
}

.topbar {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  align-items: center;
  min-height: 34px;
  padding: 0.35rem 1rem;
  color: var(--white);
  background: linear-gradient(90deg, var(--green-950), var(--brand-blue-dark));
  font-size: 0.86rem;
}

.topbar p {
  margin: 0;
  color: var(--white);
}

.topbar a {
  color: var(--white);
  font-weight: 800;
  text-decoration: none;
}

.nav-shell {
  width: min(100% - 2rem, var(--max));
  min-height: 92px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--green-950);
  min-width: 0;
}

.brand picture {
  display: block;
}

.brand-logo {
  width: clamp(170px, 16vw, 226px);
  height: auto;
  filter: drop-shadow(0 8px 14px rgba(6, 24, 39, 0.16));
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.site-nav > a,
.nav-menu > summary {
  border-radius: 8px;
  padding: 0.72rem 0.82rem;
  text-decoration: none;
  color: #26352f;
  font-size: 0.94rem;
  font-weight: 800;
  cursor: pointer;
}

.site-nav > a:hover,
.nav-menu > summary:hover,
.nav-menu[open] > summary {
  color: var(--green-900);
  background: rgba(0, 149, 223, 0.1);
}

.nav-menu {
  position: relative;
}

.nav-menu summary {
  list-style: none;
}

.nav-menu summary::-webkit-details-marker {
  display: none;
}

.nav-menu summary::after {
  content: "";
  display: inline-block;
  width: 0.4rem;
  height: 0.4rem;
  margin-left: 0.42rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}

.nav-menu div {
  position: absolute;
  right: 0;
  top: calc(100% + 0.7rem);
  width: 310px;
  padding: 0.55rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.nav-menu div a {
  display: block;
  padding: 0.72rem 0.8rem;
  border-radius: 8px;
  text-decoration: none;
  color: var(--ink);
  font-weight: 750;
}

.nav-menu div a:hover {
  background: var(--paper-2);
}

.nav-cta {
  color: var(--white) !important;
  background: var(--brand-orange-dark);
}

.nav-cta:hover {
  background: #6f2f00 !important;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  place-items: center;
  gap: 4px;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 19px;
  height: 2px;
  background: var(--green-950);
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 0.78rem 1.05rem;
  text-decoration: none;
  font-weight: 900;
  line-height: 1.1;
  text-align: center;
}

.button-primary {
  color: var(--white);
  background: var(--brand-blue-dark);
  box-shadow: 0 14px 30px rgba(0, 111, 168, 0.24);
}

.button-primary:hover {
  background: #005b88;
}

.button-secondary {
  color: var(--green-950);
  border-color: rgba(18, 98, 68, 0.18);
  background: var(--white);
}

.button-secondary:hover {
  border-color: var(--green-700);
}

.button-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.1);
}

.button-light {
  color: var(--green-950);
  background: var(--white);
}

.button-outline-light {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
}

.full {
  width: 100%;
}

.eyebrow {
  margin-bottom: 0.65rem;
  color: var(--brand-blue-dark);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.hero {
  position: relative;
  min-height: 830px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--green-950);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(6, 24, 39, 0.94) 0%, rgba(6, 24, 39, 0.78) 38%, rgba(0, 149, 223, 0.2) 100%),
    linear-gradient(0deg, rgba(0, 149, 223, 0.18), rgba(6, 24, 39, 0.1));
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
  padding: 5rem 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 410px;
  gap: 3rem;
  align-items: center;
}

.hero-copy p {
  max-width: 670px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.1rem;
}

.hero-copy .eyebrow {
  color: var(--gold);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.45rem;
}

.service-form {
  display: grid;
  gap: 0.8rem;
  padding: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.service-form h2 {
  margin: 0 0 0.25rem;
  color: var(--green-950);
  font-size: 1.45rem;
}

.service-form p {
  color: var(--muted);
}

.form-message {
  margin: 0;
  padding: 0.8rem 0.9rem;
  border: 1px solid rgba(194, 90, 0, 0.26);
  border-radius: 8px;
  background: #fff7ed;
  color: #7a3700;
  font-weight: 700;
}

.form-message[hidden] {
  display: none;
}

.recaptcha-field {
  min-height: 78px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.g-recaptcha {
  max-width: 100%;
  transform-origin: left top;
}

.trust-strip {
  width: min(100% - 2rem, var(--max));
  margin: -2.6rem auto 0;
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.trust-strip div {
  padding: 1.2rem;
  border-right: 1px solid var(--line);
}

.trust-strip div:last-child {
  border-right: 0;
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip strong {
  color: var(--brand-blue-dark);
  font-size: 1.25rem;
}

.trust-strip span {
  margin-top: 0.2rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.section,
.split-section,
.answer-section,
.review-section,
.content-grid,
.map-section,
.contact-layout {
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
}

.section,
.answer-section,
.review-section {
  padding: 5.5rem 0;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 2rem;
}

.section-heading p:last-child {
  font-size: 1.02rem;
}

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

.service-card,
.blog-card,
.gallery-card {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 8px 24px rgba(8, 43, 36, 0.06);
}

.service-card a,
.blog-card a {
  display: grid;
  height: 100%;
  grid-template-rows: 178px 1fr;
  text-decoration: none;
}

.service-card img,
.blog-card img,
.gallery-card img {
  width: 100%;
  height: 178px;
  object-fit: cover;
}

.service-card div,
.blog-card div,
.gallery-card div {
  padding: 1rem;
}

.service-card p,
.card-kicker {
  margin-bottom: 0.45rem;
  color: var(--brand-orange-dark);
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.service-card h3,
.blog-card h3,
.gallery-card h3 {
  margin-bottom: 0.5rem;
}

.service-card span,
.blog-card span,
.gallery-card p:not(.card-kicker) {
  display: block;
  color: var(--muted);
  font-size: 0.92rem;
}

.service-card:hover,
.blog-card:hover,
.gallery-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.blog-card a {
  grid-template-rows: 210px 1fr;
}

.blog-card img {
  height: 210px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.gallery-grid.preview {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gallery-card {
  display: grid;
  grid-template-rows: 230px 1fr;
}

.gallery-card img {
  height: 230px;
}

.blog-index,
.gallery-index {
  padding-top: 1rem;
}

.article-body {
  font-size: 1.05rem;
}

.article-body h2 {
  margin-top: 2.2rem;
  margin-bottom: 0.75rem;
}

.article-body p {
  color: #31435a;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1fr);
  gap: 3rem;
  align-items: center;
  padding: 5.5rem 0;
}

.split-section img {
  width: 100%;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.check-list {
  display: grid;
  gap: 0.6rem;
  padding: 0;
  margin: 1.3rem 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 1.55rem;
  color: #23342d;
  font-weight: 700;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.48rem;
  width: 0.62rem;
  height: 0.62rem;
  border-radius: 50%;
  background: var(--leaf);
  box-shadow: inset 0 0 0 2px var(--brand-green);
}

.check-list.muted li {
  color: var(--muted);
  font-weight: 650;
}

.text-link {
  color: var(--green-700);
  font-weight: 950;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.answer-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.answer-grid,
.review-grid,
.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.experience-grid article {
  padding: 1.1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 8px 24px rgba(8, 43, 36, 0.06);
}

.experience-grid span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 0.9rem;
  border-radius: 8px;
  color: var(--white);
  background: var(--brand-blue-dark);
  font-weight: 950;
}

.experience-grid h3 {
  margin-bottom: 0.45rem;
}

.experience-grid p {
  margin-bottom: 0;
  font-size: 0.94rem;
}

.answer-grid article,
.review-grid article,
.offer-grid article {
  min-width: 0;
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.offer-card {
  display: grid;
  gap: 0.75rem;
  align-content: start;
}

.offer-card h3,
.offer-card h2 {
  margin-bottom: 0;
}

.offer-card .button,
.offer-card .text-link {
  justify-self: start;
  margin-top: 0.25rem;
}

.testimonial-card .stars {
  margin-bottom: 0.65rem;
  color: var(--brand-orange-dark);
  font-size: 1.02rem;
  letter-spacing: 0;
}

.testimonial-card span {
  display: block;
  color: var(--brand-blue-dark);
  font-size: 0.88rem;
  font-weight: 850;
}

.location-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
}

.location-grid a {
  display: grid;
  min-height: 82px;
  align-content: center;
  gap: 0.2rem;
  padding: 0.9rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  text-decoration: none;
}

.location-grid a:hover {
  border-color: rgba(18, 98, 68, 0.5);
  box-shadow: 0 10px 26px rgba(8, 43, 36, 0.08);
}

.location-grid strong {
  color: var(--green-950);
}

.location-grid span {
  color: var(--muted);
  font-size: 0.86rem;
}

.location-grid.compact {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.location-grid.compact a {
  min-height: 74px;
}

.section-action {
  margin-top: 1.4rem;
}

.review-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.68), rgba(238, 245, 236, 0.8));
}

.faq-section {
  padding-top: 3rem;
}

.faq-list {
  display: grid;
  gap: 0.7rem;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.faq-list summary {
  cursor: pointer;
  padding: 1rem 1.1rem;
  color: var(--green-950);
  font-weight: 900;
}

.faq-list p {
  padding: 0 1.1rem 1rem;
  margin: 0;
}

.page-hero {
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
  padding: 5.5rem 0 3.5rem;
}

.page-hero.simple {
  min-height: 360px;
  display: grid;
  align-items: center;
}

.page-hero h1 {
  margin-bottom: 1rem;
  color: var(--green-950);
}

.page-hero p {
  max-width: 760px;
  font-size: 1.08rem;
}

.service-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
  gap: 3rem;
  align-items: center;
}

.service-hero img {
  width: 100%;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 2rem;
  padding: 2rem 0 5rem;
}

.content-main {
  min-width: 0;
  padding: 2rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.content-main h2 {
  margin-top: 2rem;
  font-size: 1.55rem;
}

.content-main h2:first-child {
  margin-top: 0;
}

.aside-panel {
  position: sticky;
  top: 132px;
  align-self: start;
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--green-950);
  color: var(--white);
  box-shadow: var(--shadow-soft);
}

.aside-panel h2 {
  font-size: 1.35rem;
}

.aside-panel p {
  color: rgba(255, 255, 255, 0.78);
}

.fine-print {
  margin: 0.85rem 0 0;
  font-size: 0.84rem;
}

.mini-links {
  display: grid;
  gap: 0.55rem;
  margin-top: 1rem;
}

.mini-links a {
  color: var(--white);
  font-weight: 800;
}

.directory-section {
  padding-top: 1rem;
}

.county-block {
  margin-bottom: 2rem;
}

.county-block h2 {
  margin-bottom: 1rem;
  font-size: 1.45rem;
}

.map-section {
  display: grid;
  grid-template-columns: minmax(0, 0.65fr) minmax(360px, 1fr);
  gap: 2rem;
  align-items: center;
  padding: 4.5rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.compact-map {
  padding: 3rem 0;
}

.map-frame {
  min-height: 360px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--paper-2);
  box-shadow: var(--shadow-soft);
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
}

.pill-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.pill-links a {
  padding: 0.72rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--green-950);
  text-decoration: none;
  font-weight: 850;
}

.contact-layout {
  min-height: 650px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 430px;
  gap: 3rem;
  align-items: center;
  padding: 5rem 0;
}

.contact-cards {
  display: grid;
  gap: 0.75rem;
  max-width: 520px;
  margin-top: 1.5rem;
}

.contact-cards a,
.contact-cards p {
  display: grid;
  gap: 0.18rem;
  margin: 0;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  text-decoration: none;
}

.contact-cards span {
  color: var(--muted);
}

.site-footer {
  background: var(--green-950);
  color: var(--white);
}

.footer-cta,
.footer-grid,
.footer-bottom {
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
}

.footer-cta {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  align-items: center;
  padding: 3rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-cta h2 {
  max-width: 720px;
  margin: 0;
  font-size: 2rem;
}

.footer-cta .eyebrow {
  color: var(--gold);
}

.cta-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr repeat(3, 1fr);
  gap: 2rem;
  padding: 3rem 0;
}

.footer-grid p,
.footer-bottom p {
  color: rgba(255, 255, 255, 0.72);
}

.footer-grid h2 {
  font-size: 1rem;
  color: var(--white);
}

.footer-grid ul {
  display: grid;
  gap: 0.45rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-grid a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
}

.footer-grid a:hover {
  color: var(--white);
}

.brand-footer {
  color: var(--white);
}

.footer-logo {
  width: min(260px, 100%);
  padding: 0.55rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.88rem;
}

.thank-you,
.not-found {
  min-height: 520px;
}

@media (max-width: 1080px) {
  h1 {
    font-size: 2.9rem;
  }

  h2 {
    font-size: 1.95rem;
  }

  .hero-inner,
  .service-hero,
  .split-section,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .service-form,
  .contact-layout .service-form {
    max-width: 620px;
  }

  .service-grid,
  .location-grid,
  .blog-grid,
  .gallery-grid,
  .gallery-grid.preview,
  .experience-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .location-grid.compact {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .content-grid,
  .map-section {
    grid-template-columns: 1fr;
  }

  .aside-panel {
    position: static;
  }

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

@media (max-width: 820px) {
  .topbar {
    display: none;
  }

  .nav-shell {
    min-height: 76px;
  }

  .nav-toggle {
    display: grid;
  }

  .site-nav {
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: calc(100% + 0.6rem);
    display: none;
    align-items: stretch;
    flex-direction: column;
    padding: 0.65rem;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow-soft);
  }

  .site-nav[data-open] {
    display: flex;
  }

  .site-nav > a,
  .nav-menu > summary {
    width: 100%;
  }

  .nav-menu div {
    position: static;
    width: 100%;
    margin-top: 0.35rem;
    box-shadow: none;
  }

  .hero-inner {
    padding: 3.4rem 0;
    gap: 2rem;
  }

  .hero-overlay {
    background: linear-gradient(90deg, rgba(6, 24, 39, 0.96), rgba(6, 24, 39, 0.72));
  }

  .trust-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-strip div:nth-child(2) {
    border-right: 0;
  }

  .trust-strip div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .answer-grid,
  .review-grid,
  .offer-grid,
  .experience-grid {
    grid-template-columns: 1fr;
  }

  .footer-cta,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  body {
    font-size: 15px;
  }

  h1 {
    font-size: 2.25rem;
  }

  h2 {
    font-size: 1.65rem;
  }

  .brand-logo {
    width: 154px;
  }

  .hero-actions,
  .cta-actions {
    width: 100%;
  }

  .button,
  .hero-actions .button,
  .cta-actions .button {
    width: 100%;
  }

  .trust-strip,
  .service-grid,
  .blog-grid,
  .gallery-grid,
  .gallery-grid.preview,
  .location-grid,
  .location-grid.compact,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .trust-strip div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-strip div:last-child {
    border-bottom: 0;
  }

  .section,
  .answer-section,
  .review-section,
  .split-section,
  .page-hero,
  .contact-layout {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

  .content-main {
    padding: 1.2rem;
  }

  .g-recaptcha {
    transform: scale(0.91);
  }

  .recaptcha-field {
    min-height: 72px;
  }

  .map-frame,
  .map-frame iframe {
    min-height: 300px;
  }
}
