:root {
  --green-900: #0d3f24;
  --green-800: #155f2d;
  --green-700: #1e7438;
  --green-500: #4eaa57;
  --green-100: #e9f5e9;
  --orange-600: #d96d1b;
  --orange-500: #f28a2e;
  --white: #ffffff;
  --neutral-950: #152117;
  --neutral-700: #435046;
  --neutral-500: #69756c;
  --neutral-200: #dce5dc;
  --neutral-100: #f5f8f4;
  --shadow: 0 16px 38px rgba(13, 63, 36, 0.12);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  scroll-padding-top: 104px;
}

body {
  margin: 0;
  padding-top: 80px;
  padding-bottom: 0;
  color: var(--neutral-950);
  background: var(--white);
  font-family: "Nunito Sans", Arial, Helvetica, sans-serif;
  font-size: 18px;
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

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

:focus-visible {
  outline: 3px solid var(--orange-500);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 20;
  transform: translateY(-150%);
  background: var(--green-900);
  color: var(--white);
  padding: 0.7rem 1rem;
  border-radius: var(--radius);
}

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

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.section-inner {
  width: min(1120px, calc(100% - 32px));
  max-width: calc(100vw - 32px);
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 70;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 2px solid rgba(21, 95, 45, 0.12);
  backdrop-filter: blur(14px);
}

.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1320px, calc(100% - 24px));
  min-height: 80px;
  margin: 0 auto;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 0.5rem;
  max-width: min(54vw, 305px);
  color: var(--green-900);
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 800;
  line-height: 1.15;
}

.brand img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.brand .brand-mark {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.brand .brand-wordmark {
  width: 188px;
  max-width: min(42vw, 205px);
  height: auto;
  max-height: 52px;
  object-fit: contain;
}

.site-nav {
  position: absolute;
  inset: 80px 12px auto;
  display: none;
  align-items: stretch;
  flex-direction: column;
  gap: 0.2rem;
  padding: 1rem;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.site-nav.is-open {
  display: flex;
}

.site-nav a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0.85rem 0.95rem;
  color: var(--green-900);
  text-decoration: none;
  font-size: 1.04rem;
  font-weight: 700;
  border-radius: 6px;
}

.site-nav a:hover {
  background: var(--green-100);
}

.site-nav a.is-active,
.site-nav a[aria-current="page"] {
  color: var(--green-900);
  background: var(--green-100);
}

.nav-dropdown {
  position: relative;
  width: 100%;
}

.nav-dropdown-trigger {
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  width: 100%;
}

.nav-dropdown-trigger::after {
  content: "";
  width: 0;
  height: 0;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
  border-top: 5px solid currentColor;
  transform: translateY(1px);
}

.nav-dropdown-menu {
  display: none;
  min-width: 220px;
  padding: 0.45rem;
  background: var(--white);
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius);
  box-shadow: 0 18px 36px rgba(13, 63, 36, 0.16);
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  display: grid;
  gap: 0.25rem;
}

.site-nav .nav-dropdown-menu a {
  min-height: 44px;
  padding: 0.7rem 0.75rem;
  color: var(--green-900);
  font-size: 0.92rem;
}

.site-nav .nav-dropdown-menu a:hover,
.site-nav .nav-dropdown-menu a:focus-visible {
  color: var(--white);
  background: var(--green-800);
}

.header-actions {
  display: none;
}

.header-phone {
  color: var(--green-900);
  font-size: 1.04rem;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap !important;
}

.menu-toggle {
  position: absolute;
  top: 50%;
  right: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 56px;
  width: 56px;
  height: 56px;
  margin-left: auto;
  background: var(--green-900);
  border: 0;
  border-radius: var(--radius);
  transform: translateY(-50%);
  cursor: pointer;
}

.menu-lines,
.menu-lines::before,
.menu-lines::after {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--white);
  content: "";
}

.menu-lines {
  position: relative;
}

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

.menu-lines::before {
  top: -7px;
}

.menu-lines::after {
  top: 7px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0.78rem 1.15rem;
  border: 2px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}

.button-accent {
  color: var(--white);
  background: var(--orange-600);
  box-shadow: 0 10px 24px rgba(217, 109, 27, 0.24);
}

.button-accent:hover {
  background: #bd5d16;
}

.button-primary {
  color: var(--white);
  background: var(--green-800);
}

.button-primary:hover {
  background: var(--green-900);
}

.button-light {
  color: var(--green-900);
  background: var(--white);
  border-color: rgba(255, 255, 255, 0.7);
}

.hero {
  position: relative;
  min-height: 660px;
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
}

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

.hero-media,
.hero-overlay {
  z-index: 0;
}

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

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(7, 41, 22, 0.72), rgba(7, 41, 22, 0.62)),
    linear-gradient(0deg, rgba(7, 41, 22, 0.5), rgba(7, 41, 22, 0.12));
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 660px;
  padding: 5rem 0;
  text-align: center;
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  z-index: 1;
  height: 40px;
  background-image: url("SaintsPngs/grass-edge.svg");
  background-repeat: repeat-x;
  background-position: bottom center;
  background-size: 760px 40px;
  content: "";
  pointer-events: none;
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--orange-500);
  font-size: 0.98rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.25;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.pressure-band h2 {
  margin: 0;
  color: inherit;
  font-family: "Roboto Slab", Georgia, serif;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 1080px;
  font-size: clamp(2.45rem, 6.8vw, 4.45rem);
}

.hero-copy {
  max-width: 720px;
  margin: 1.25rem 0 0;
  font-size: 1.18rem;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 1.8rem;
}

.hero-buttons .button {
  min-height: 58px;
  padding: 0.92rem 1.45rem;
  font-size: 1.08rem;
}

.contact-methods span {
  display: block;
  color: #b9e7bd;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.section {
  padding: 5rem 0;
}

section[id] {
  scroll-margin-top: 104px;
}

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

.section-heading h2,
.split-copy h2,
.contact-copy h2 {
  color: var(--green-900);
  font-size: clamp(2rem, 5vw, 3.3rem);
}

.brand,
.site-nav a,
.button,
.header-phone,
.service-card h3,
.area-cards h3,
.review-card h3,
label {
  font-family: "Nunito Sans", Arial, Helvetica, sans-serif;
}

.section-heading p,
.split-copy p,
.contact-copy p {
  color: var(--neutral-700);
}

.section-heading.compact {
  max-width: 680px;
}

.recurring-section,
.services-section,
.areas-section {
  background: var(--neutral-100);
}

.recurring-inner {
  display: grid;
  gap: 2rem;
}

.service-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.services-section {
  background:
    linear-gradient(180deg, #f9fbf8, var(--white));
}

.service-card {
  position: relative;
  overflow: hidden;
  padding: 1.2rem;
  background: var(--white);
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius);
  box-shadow: 0 10px 28px rgba(13, 63, 36, 0.07);
}

.services-section .service-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 5px;
  background: var(--orange-500);
  content: "";
}

.services-section .service-card:nth-child(2)::before {
  background: var(--green-500);
}

.services-section .service-card:nth-child(3)::before {
  background: var(--green-800);
}

.service-card-featured {
  color: var(--white);
  background: var(--green-800);
  border-color: var(--green-800);
}

.service-card h3 {
  margin: 0.8rem 0 0.45rem;
  color: inherit;
  font-size: 1.45rem;
  line-height: 1.15;
}

.service-card p {
  margin: 0;
}

.service-card a {
  display: inline-block;
  margin-top: 1rem;
  color: inherit;
  font-weight: 800;
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  color: var(--green-900);
  background: var(--green-100);
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-weight: 900;
}

.service-card-featured .service-icon {
  color: var(--white);
  background: rgba(255, 255, 255, 0.15);
}

.service-list,
.pill-list {
  padding: 0;
  margin: 1rem 0 0;
  list-style: none;
}

.service-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.45rem 1rem;
}

.service-list li {
  position: relative;
  padding-left: 1rem;
  color: var(--neutral-700);
}

.service-list li::before {
  position: absolute;
  top: 0.72rem;
  left: 0;
  width: 6px;
  height: 6px;
  background: var(--green-500);
  border-radius: 50%;
  content: "";
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.pill-list li {
  padding: 0.45rem 0.65rem;
  color: var(--green-900);
  background: var(--green-100);
  border-radius: var(--radius);
  font-weight: 800;
}

.split-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

.split-layout > *,
.contact-layout > *,
.area-layout > *,
.service-offers-layout > *,
.reviews-layout > *,
.hero-content > * {
  min-width: 0;
}

.check-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.65rem;
  margin: 1.4rem 0 1.8rem;
}

.check-grid span {
  min-height: 48px;
  padding: 0.7rem 0.8rem;
  color: var(--green-900);
  background: var(--green-100);
  border-radius: var(--radius);
  font-weight: 800;
}

.feature-photo {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.feature-photo img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.recurring-photo {
  align-self: stretch;
}

.recurring-photo img {
  height: 100%;
  min-height: 420px;
}

.service-process h3 {
  margin: 0 0 0.55rem;
  font-size: 1.35rem;
  line-height: 1.16;
}

.service-process {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  padding: 1.25rem 1.35rem;
  color: var(--white);
  background: var(--green-900);
  border-radius: var(--radius);
  box-shadow: 0 18px 40px rgba(13, 63, 36, 0.16);
}

.service-process .eyebrow,
.service-process h3 {
  color: var(--white);
}

.service-process p:not(.eyebrow) {
  margin: 0;
  color: #d9efdc;
}

.service-offers-section {
  background: linear-gradient(180deg, var(--green-100), var(--white));
}

.service-offers-section .section-heading {
  margin-bottom: 0;
  text-align: left;
}

.service-offers-section .eyebrow {
  color: var(--green-800);
}

.service-offers-section .section-heading h2 {
  font-size: 2.45rem;
  line-height: 1.08;
}

.service-offers-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: start;
}

.service-offers-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.2rem;
}

.service-offers-actions .button {
  margin-top: 0;
}

.gallery-section {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(7, 41, 22, 0.86), rgba(7, 41, 22, 0.72)),
    linear-gradient(0deg, rgba(7, 41, 22, 0.58), rgba(7, 41, 22, 0.28)),
    url("uploads/reference-photos/IMG_89022.png") center / cover;
}

.gallery-section .section-inner {
  position: relative;
  z-index: 1;
  width: min(1380px, calc(100% - 32px));
}

.gallery-section .section-heading {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.gallery-section .eyebrow {
  color: var(--orange-500);
}

.gallery-section .section-heading h2,
.gallery-section .section-heading p:not(.eyebrow) {
  color: var(--white);
}

.gallery-services {
  margin: 0;
  text-align: left;
}

.gallery-services h3 {
  display: none;
}

.service-offer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
}

.service-offer-card {
  position: relative;
  min-height: 0;
  padding: 1rem;
  color: var(--neutral-950);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(21, 95, 45, 0.18);
  border-radius: var(--radius);
  box-shadow: 0 16px 32px rgba(13, 63, 36, 0.12);
  text-align: left;
  backdrop-filter: blur(9px);
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.service-offer-card:hover,
.service-offer-card:focus-visible,
.service-offer-card:focus-within {
  background: var(--white);
  border-color: rgba(21, 95, 45, 0.42);
  transform: translateY(-3px);
}

.service-offer-card-primary {
  background:
    radial-gradient(circle at 86% 14%, rgba(242, 138, 46, 0.28), transparent 34%),
    linear-gradient(135deg, rgba(242, 138, 46, 0.18), rgba(233, 245, 233, 0.94)),
    var(--white);
  border: 2px solid var(--orange-500);
  box-shadow: 0 20px 40px rgba(217, 109, 27, 0.22);
}

.service-offer-card-pressure {
  background: linear-gradient(180deg, #f8fff8, var(--white));
}

.service-offer-topline {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-bottom: 0.65rem;
}

.service-offer-topline span,
.area-card-badge {
  display: inline-flex;
  align-self: flex-start;
  padding: 0.3rem 0.55rem;
  color: var(--white);
  background: var(--orange-600);
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
}

.service-offer-card h4 {
  margin: 0;
  color: var(--green-900);
  font-size: 1.3rem;
  line-height: 1.15;
}

.service-offer-card p {
  margin: 0 0 0.85rem;
  color: var(--neutral-700);
  font-size: 0.95rem;
  line-height: 1.45;
}

.service-offer-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  max-height: 86px;
  padding: 0;
  margin: 0;
  overflow: hidden;
  list-style: none;
  transition: max-height 220ms ease;
}

.service-offer-card:hover ul,
.service-offer-card:focus-visible ul,
.service-offer-card:focus-within ul {
  max-height: 520px;
}

.service-offer-card li {
  padding: 0.38rem 0.55rem;
  color: var(--green-900);
  background: var(--green-100);
  border: 1px solid rgba(21, 95, 45, 0.18);
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1.2;
}

.gallery-carousel {
  position: relative;
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) 52px;
  align-items: center;
  gap: 0.55rem;
  width: 100%;
  max-width: min(1280px, 100%);
  margin: 2.2rem auto 0;
}

.gallery-viewport {
  overflow: hidden;
  padding: 0.55rem 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.gallery-viewport.is-user-controlled {
  overflow-x: hidden;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.gallery-viewport::-webkit-scrollbar {
  display: none;
}

.gallery-viewport.is-dragging {
  cursor: grabbing;
  user-select: none;
}

.gallery-viewport.is-dragging .gallery-grid {
  pointer-events: none;
}

.gallery-grid {
  display: flex;
  width: max-content;
  animation: gallery-marquee 46s linear infinite;
  will-change: transform;
}

.gallery-viewport:hover .gallery-grid,
.gallery-viewport:focus-within .gallery-grid,
.gallery-viewport.is-user-controlled .gallery-grid {
  animation-play-state: paused;
}

.gallery-grid.is-expanded {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  width: auto;
  animation: none;
  transform: none;
}

.gallery-grid.is-expanded .gallery-duplicate {
  display: none;
}

.gallery-item,
.gallery-placeholder {
  position: relative;
  flex: 0 0 clamp(245px, 24vw, 310px);
  min-height: 270px;
  height: 270px;
  margin: 0 0.85rem 0 0;
  padding: 0;
  overflow: hidden;
  background: rgba(9, 43, 24, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: var(--radius);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.2);
  cursor: zoom-in;
  scroll-snap-align: center;
}

.gallery-item-portrait {
  flex-basis: clamp(190px, 18vw, 225px);
  min-height: 270px;
  height: 270px;
}

.gallery-item-wide {
  flex-basis: clamp(300px, 30vw, 365px);
  min-height: 270px;
  height: 270px;
}

.gallery-grid.is-expanded .gallery-item,
.gallery-grid.is-expanded .gallery-placeholder {
  flex: initial;
  margin-right: 0;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: var(--image-position, center);
  image-orientation: from-image;
  transition: filter 180ms ease;
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
  filter: brightness(0.9);
}

.gallery-placeholder {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1rem;
  border: 2px dashed rgba(255, 255, 255, 0.58);
}

.gallery-placeholder span {
  color: var(--orange-600);
  font-weight: 900;
  text-transform: uppercase;
}

.gallery-placeholder strong {
  color: var(--green-900);
  font-size: 1.25rem;
  line-height: 1.2;
}

.gallery-actions {
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
}

.gallery-view-all {
  min-width: 160px;
}

.gallery-nav {
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  color: var(--green-900);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 50%;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
}

.gallery-nav:hover,
.gallery-nav:focus-visible {
  color: var(--white);
  background: var(--orange-600);
}

.gallery-modal[hidden] {
  display: none;
}

.gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.gallery-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 24, 13, 0.86);
  border: 0;
  cursor: zoom-out;
}

.gallery-modal-panel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  grid-template-rows: minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.8rem;
  width: min(1120px, calc(100vw - 32px));
  max-height: calc(100vh - 32px);
  padding: 1rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.38);
}

.gallery-modal-image {
  grid-column: 2;
  width: 100%;
  max-height: calc(100vh - 190px);
  object-fit: contain;
  image-orientation: from-image;
}

.gallery-modal-footer {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
}

.gallery-modal-counter {
  color: var(--green-900);
  font-weight: 900;
}

.gallery-modal-close,
.gallery-modal-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--green-900);
  background: var(--green-100);
  border: 1px solid var(--neutral-200);
  cursor: pointer;
}

.gallery-modal-close {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 1.55rem;
  font-weight: 900;
}

.gallery-modal-nav {
  width: 48px;
  height: 72px;
  border-radius: var(--radius);
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1;
}

.gallery-modal-prev {
  grid-column: 1;
}

.gallery-modal-next {
  grid-column: 3;
}

.gallery-modal-close:hover,
.gallery-modal-close:focus-visible,
.gallery-modal-nav:hover,
.gallery-modal-nav:focus-visible {
  color: var(--white);
  background: var(--orange-600);
}

.before-after-modal[hidden] {
  display: none;
}

.before-after-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.before-after-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 24, 13, 0.88);
  border: 0;
  cursor: zoom-out;
}

.before-after-modal-panel {
  position: relative;
  z-index: 1;
  width: min(1080px, calc(100vw - 32px));
  max-height: calc(100vh - 32px);
  padding: clamp(1rem, 3vw, 1.5rem);
  overflow: auto;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 30px 75px rgba(0, 0, 0, 0.4);
}

.before-after-modal-close {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: var(--green-900);
  background: var(--green-100);
  border: 1px solid var(--neutral-200);
  border-radius: 50%;
  font-size: 1.55rem;
  font-weight: 900;
  cursor: pointer;
}

.before-after-modal-close:hover,
.before-after-modal-close:focus-visible {
  color: var(--white);
  background: var(--orange-600);
}

.before-after-modal-heading {
  max-width: 760px;
  padding-right: 3rem;
}

.before-after-modal-heading h2 {
  margin: 0;
  color: var(--green-900);
  font-family: "Roboto Slab", Georgia, serif;
  font-size: clamp(1.75rem, 4vw, 2.7rem);
  line-height: 1.08;
}

.before-after-modal-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 1.2rem;
}

.before-after-modal figure {
  position: relative;
  display: grid;
  gap: 0.55rem;
  margin: 0;
}

.before-after-modal figure > span {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 1;
  padding: 0.35rem 0.55rem;
  color: var(--white);
  background: var(--orange-600);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.before-after-modal img {
  width: 100%;
  height: min(56vh, 520px);
  object-fit: cover;
  object-position: center;
  image-orientation: from-image;
  background: var(--green-100);
  border-radius: var(--radius);
}

.before-after-modal figcaption {
  color: var(--neutral-700);
  font-size: 0.92rem;
  line-height: 1.4;
}

@media (min-width: 760px) {
  .before-after-modal-grid {
    grid-template-columns: 1fr 1fr;
  }
}

body.is-modal-open {
  overflow: hidden;
}

.bottom-call-bar {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0.55rem 3.1rem 0.55rem 1rem;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(13, 63, 36, 0.98), rgba(21, 95, 45, 0.98)),
    var(--green-900);
  border-top: 0;
  box-shadow: 0 -18px 38px rgba(13, 63, 36, 0.4), 0 -2px 18px rgba(242, 138, 46, 0.22);
  backdrop-filter: blur(14px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.bottom-call-bar.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
}

.bottom-call-bar[hidden] {
  display: none !important;
}

.bottom-call-bar p {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.12rem 0.2rem;
  margin: 0;
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
  max-width: calc(100vw - 64px);
}

.bottom-call-bar p span,
.bottom-call-label {
  color: rgba(255, 255, 255, 0.94);
}

.bottom-call-bar p > span:first-child {
  color: #d9efdc;
}

.bottom-call-bar a {
  display: inline-flex;
  align-items: center;
  padding: 0 0 0 0.06rem;
  color: #ffb35f;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  font-size: 1.03rem;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
}

.bottom-call-close {
  position: absolute;
  top: 50%;
  right: 0.55rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  padding: 0;
  color: var(--green-900);
  background: var(--green-100);
  border: 1px solid rgba(21, 95, 45, 0.16);
  border-radius: 50%;
  font-size: 1.3rem;
  font-weight: 900;
  line-height: 1;
  transform: translateY(-50%);
  cursor: pointer;
}

.bottom-call-close:hover,
.bottom-call-close:focus-visible {
  color: var(--white);
  background: var(--orange-600);
  border-color: var(--orange-600);
}

@keyframes gallery-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.about-section {
  background: var(--white);
}

.pressure-band {
  padding: 0;
  color: var(--green-900);
  background:
    radial-gradient(circle at 12% 22%, rgba(242, 138, 46, 0.26), transparent 36%),
    linear-gradient(135deg, #fff1e2, rgba(255, 250, 246, 0.98) 48%, #eef8ee);
  border-top: 1px solid rgba(242, 138, 46, 0.24);
  border-bottom: 1px solid rgba(242, 138, 46, 0.24);
}

.pressure-inner {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: center;
  min-height: 180px;
  padding: 2rem 0;
  background: transparent;
  border: 0;
  border-radius: var(--radius);
  box-shadow: none;
}

.pressure-inner::before {
  position: absolute;
  inset: 1.15rem -0.25rem;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(242, 138, 46, 0.18), rgba(255, 255, 255, 0.32)),
    rgba(255, 255, 255, 0.42);
  border: 2px solid rgba(242, 138, 46, 0.55);
  border-radius: var(--radius);
  box-shadow: 0 18px 42px rgba(217, 109, 27, 0.12);
  content: "";
}

.pressure-band p {
  max-width: 760px;
  margin-bottom: 0;
}

.pressure-band .eyebrow {
  color: var(--orange-600);
}

.pressure-band h2 {
  color: var(--green-900);
}

.pressure-band p:not(.eyebrow) {
  color: var(--neutral-700);
}

.logo-photo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
  background: var(--neutral-100);
}

.logo-photo img {
  width: min(310px, 80%);
  height: auto;
  object-fit: contain;
}

.area-heading,
.services-heading,
.reviews-lead {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  align-items: end;
}

.area-heading p,
.services-heading p {
  max-width: 620px;
  margin: 0;
}

.area-heading {
  max-width: 620px;
  margin: 0;
  text-align: left;
}

.area-heading p {
  margin-right: 0;
  margin-left: 0;
}

.areas-section {
  background:
    linear-gradient(180deg, var(--white), #f0f7ef);
}

.area-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

.area-copy {
  display: grid;
  gap: 1.35rem;
}

.map-card {
  position: relative;
  z-index: 0;
  isolation: isolate;
  min-height: 360px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.map-card.leaflet-container {
  width: 100%;
  height: 420px;
  min-height: 360px;
  font-family: "Nunito Sans", Arial, Helvetica, sans-serif;
}

.map-card.leaflet-container img,
.map-card.leaflet-container .leaflet-tile {
  max-width: none !important;
}

.map-card.leaflet-container .leaflet-pane,
.map-card.leaflet-container .leaflet-top,
.map-card.leaflet-container .leaflet-bottom {
  z-index: 1;
}

.map-card.leaflet-container .map-fallback {
  display: none;
}

.map-card.leaflet-container .leaflet-control-attribution {
  font-size: 0.7rem;
}

.map-card.leaflet-container .leaflet-popup-content {
  margin: 0.75rem 0.9rem;
  color: var(--neutral-700);
  font-size: 0.95rem;
}

.map-card.leaflet-container .leaflet-popup-content strong {
  display: block;
  color: var(--green-900);
  font-size: 1rem;
}

.service-marker {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  padding: 4px;
  background: var(--white);
  border: 3px solid var(--orange-500);
  border-radius: 50%;
  box-shadow: 0 10px 22px rgba(13, 63, 36, 0.28);
}

.service-marker img {
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  object-fit: contain;
  object-position: center;
  border-radius: 50%;
}

.map-fallback {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(21, 95, 45, 0.09) 1px, transparent 1px),
    linear-gradient(0deg, rgba(21, 95, 45, 0.09) 1px, transparent 1px),
    var(--white);
  background-size: 36px 36px;
}

.map-ring {
  position: absolute;
  inset: 18%;
  border: 2px solid rgba(217, 109, 27, 0.75);
  border-radius: 50%;
}

.map-dot {
  position: absolute;
  z-index: 1;
  padding: 0.5rem 0.65rem;
  color: var(--white);
  background: var(--green-800);
  border-radius: var(--radius);
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(13, 63, 36, 0.24);
}

.map-dot::before {
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-right: 0.35rem;
  vertical-align: middle;
  background: var(--white) url("SaintsPngs/saints_header_mark.png?v=map-1") center / contain no-repeat;
  border: 2px solid var(--orange-500);
  border-radius: 50%;
  content: "";
}

.pasadena {
  right: 12%;
  bottom: 25%;
}

.houston {
  left: 16%;
  top: 22%;
}

.south-houston {
  left: 20%;
  bottom: 18%;
}

.area-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
}

.area-cards article,
.review-placeholder {
  position: relative;
  padding: 1rem;
  background: var(--white);
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius);
}

.area-cards article {
  min-height: 82px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0.45rem;
  padding: 1rem;
  box-shadow: 0 14px 34px rgba(13, 63, 36, 0.08);
}

.area-cards .area-card-featured {
  position: relative;
  background:
    radial-gradient(circle at 82% 18%, rgba(242, 138, 46, 0.26), transparent 34%),
    linear-gradient(135deg, rgba(242, 138, 46, 0.18), rgba(233, 245, 233, 0.94)),
    var(--white);
  border: 2px solid var(--orange-500);
  box-shadow: 0 18px 38px rgba(217, 109, 27, 0.2);
  transform: translateY(-2px);
}

.area-card-badge {
  position: static;
  width: auto;
  height: auto;
  margin-bottom: 0.65rem;
  color: var(--white);
  background: var(--orange-600);
}

.area-cards h3 {
  margin: 0;
  color: var(--green-900);
}

.area-cards p {
  margin: 0;
  color: var(--neutral-700);
}

.reviews-section {
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(13, 63, 36, 0.96), rgba(21, 95, 45, 0.88)),
    url("SaintsPngs/Clippedbushes.jpg") center / cover;
}

.reviews-inner {
  text-align: left;
}

.reviews-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}

.reviews-section .section-heading {
  margin-bottom: 1.35rem;
}

.reviews-section .section-heading h2,
.reviews-section .section-heading p:not(.eyebrow) {
  color: var(--white);
}

.reviews-section .eyebrow {
  color: #ffb35f;
}

.reviews-lead {
  align-content: start;
  margin-bottom: 0;
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  backdrop-filter: blur(8px);
}

.reviews-lead .section-heading {
  margin-bottom: 1rem;
}

.reviews-lead .section-heading p:not(.eyebrow) {
  max-width: 540px;
}

.review-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.review-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  backdrop-filter: blur(8px);
}

.review-column {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.rating-summary {
  display: none;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 1.5rem;
  padding: 0.8rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  backdrop-filter: blur(8px);
}

.rating-summary strong {
  color: var(--orange-500);
  font-size: 1.65rem;
  line-height: 1;
}

.rating-summary span,
.stars {
  color: #f3a51f;
  letter-spacing: 0;
}

.rating-summary p {
  width: 100%;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.95rem;
  font-weight: 800;
}

.review-card,
.review-placeholder {
  min-height: 170px;
  display: flex;
  flex-direction: column;
  background: transparent;
}

.review-card {
  gap: 0.7rem;
  padding: 1.2rem;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 0;
}

.review-card:last-child {
  border-bottom: 0;
}

.review-topline {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.review-avatar {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  color: var(--white);
  background: var(--review-avatar-bg, #c5813f);
  border-radius: 50%;
  font-weight: 900;
}

.review-avatar-alt {
  background: var(--review-avatar-bg, var(--green-700));
}

.review-card h3 {
  margin: 0;
  color: var(--white);
  font-size: 1.16rem;
  line-height: 1.2;
}

.review-topline p,
.review-card > p {
  margin: 0;
}

.review-topline p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
  font-weight: 800;
}

.review-card > p {
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.98rem;
}

.review-meta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}

.review-meta-row span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
}

.review-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.2rem;
}

.review-grid-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: flex-start;
  margin-top: 1rem;
}

.button-outline {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.64);
}

.button-outline:hover {
  color: var(--green-900);
  background: var(--white);
}

.review-placeholder {
  justify-content: space-between;
  padding: 1.15rem;
  border: 1px dashed rgba(255, 255, 255, 0.5);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
}

.review-placeholder strong {
  color: var(--white);
  font-size: 1.3rem;
  line-height: 1.2;
}

.review-placeholder span {
  color: #d9efdc;
  font-weight: 800;
}

.review-placeholder a {
  color: var(--white);
  font-weight: 900;
  text-decoration-color: rgba(255, 255, 255, 0.55);
}

.review-scroll-hint {
  margin: -0.65rem 0 1rem;
  color: #d9efdc;
  font-size: 0.95rem;
  font-weight: 900;
}

.contact-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(245, 248, 244, 0.96), rgba(245, 248, 244, 0.88)),
    url("SaintsPngs/ClippedBushes2.jpg") center / cover;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}

.contact-page-quote-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.1rem;
  align-items: start;
}

.contact-form-heading {
  max-width: 780px;
}

.contact-form-heading h2 {
  margin-bottom: 0.65rem;
}

.contact-form-heading p:not(.eyebrow) {
  margin: 0;
  color: var(--neutral-700);
  font-size: 1.08rem;
  line-height: 1.65;
}

.contact-service-summary {
  display: grid;
  gap: 0.75rem;
  padding: 1.15rem;
  background:
    radial-gradient(circle at top right, rgba(224, 105, 22, 0.16), transparent 42%),
    var(--white);
  border: 1px solid rgba(224, 105, 22, 0.32);
  border-radius: var(--radius);
  box-shadow: 0 18px 38px rgba(13, 63, 36, 0.1);
}

.contact-service-summary h3 {
  margin: 0;
  color: var(--green-900);
  font-size: clamp(1.35rem, 3vw, 1.75rem);
}

.contact-service-summary p:not(.eyebrow) {
  margin: 0;
  color: var(--neutral-700);
  line-height: 1.6;
}

.contact-area-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.contact-area-chips span {
  padding: 0.48rem 0.62rem;
  color: var(--green-900);
  background: #f6fbf5;
  border: 1px solid #cde4cd;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 900;
}

.contact-service-map {
  min-width: 0;
}

.contact-service-map .map-card {
  min-height: 260px;
}

.contact-service-map .map-card.leaflet-container {
  height: 320px;
  min-height: 260px;
}

.contact-methods {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.8rem;
  margin-top: 1.3rem;
}

.quote-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.4rem;
}

.quote-highlights span {
  padding: 0.48rem 0.68rem;
  color: var(--green-900);
  background: var(--white);
  border: 1px solid #cde4cd;
  border-radius: var(--radius);
  font-size: 0.92rem;
  font-weight: 900;
}

.contact-methods a {
  padding: 0.9rem;
  color: var(--green-900);
  background: var(--white);
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius);
  font-weight: 800;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.contact-methods span {
  color: var(--green-700);
}

.quote-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  padding: 1.35rem;
  background: var(--white);
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.form-intro {
  padding: 0.95rem 1rem;
  background: var(--green-100);
  border-left: 4px solid var(--orange-500);
  border-radius: var(--radius);
}

.form-intro h3 {
  margin: 0 0 0.2rem;
  color: var(--green-900);
  font-size: 1.18rem;
}

.form-intro p {
  margin: 0;
  color: var(--neutral-700);
  font-size: 0.98rem;
  line-height: 1.5;
}

.form-row {
  margin-bottom: 0;
}

.form-row.two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

label {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--green-900);
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  min-height: 58px;
  padding: 0.85rem;
  color: var(--neutral-950);
  background: var(--white);
  border: 1px solid #b9c7ba;
  border-radius: 6px;
}

textarea {
  min-height: 145px;
  resize: vertical;
}

.file-drop {
  display: grid;
  place-items: center;
  min-height: 118px;
  padding: 1rem;
  color: var(--green-900);
  background: var(--green-100);
  border: 2px dashed rgba(21, 95, 45, 0.42);
  border-radius: var(--radius);
  text-align: center;
  cursor: pointer;
}

.optional-photo-row label span {
  color: var(--neutral-700);
  font-weight: 800;
}

.optional-photo-row .file-drop {
  min-height: 88px;
  background: #f6fbf5;
  border-color: rgba(21, 95, 45, 0.28);
}

.file-drop input {
  position: absolute;
  width: 1px;
  height: 1px;
  min-height: 0;
  padding: 0;
  opacity: 0;
}

.file-drop span {
  max-width: 460px;
  font-weight: 900;
}

.form-submit {
  width: 100%;
}

.form-submit[disabled] {
  cursor: wait;
  opacity: 0.78;
}

.form-status {
  min-height: 1.3rem;
  margin: 0;
  color: var(--green-900);
  font-size: 0.95rem;
  font-weight: 900;
}

.form-status.is-error {
  color: #9f3512;
}

.form-note {
  margin: 0.8rem 0 0;
  color: var(--neutral-700);
  font-size: 0.95rem;
}

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

.blank-page {
  min-height: calc(100vh - 92px);
  background: var(--white);
}

.page-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 6.5rem 0 5rem;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(7, 41, 22, 0.9), rgba(21, 95, 45, 0.72)),
    url("SaintsPngs/Mulching.jpg") center / cover;
}

.about-page-hero {
  background:
    linear-gradient(90deg, rgba(7, 41, 22, 0.9), rgba(21, 95, 45, 0.74)),
    url("SaintsPngs/Clippedbushes.jpg") center / cover;
}

.services-page-hero {
  background:
    linear-gradient(90deg, rgba(7, 41, 22, 0.9), rgba(21, 95, 45, 0.72)),
    url("uploads/reference-photos/IMG_6712.jpeg") center / cover;
}

.gallery-page-hero {
  background:
    linear-gradient(90deg, rgba(7, 41, 22, 0.9), rgba(21, 95, 45, 0.72)),
    url("uploads/reference-photos/IMG_8896.jpg") center / cover;
}

.contact-page-hero {
  background:
    linear-gradient(90deg, rgba(7, 41, 22, 0.9), rgba(21, 95, 45, 0.72)),
    url("SaintsPngs/ClippedBushes2.jpg") center / cover;
}

.contact-overview-section {
  padding: 3rem 0;
  background: var(--green-100);
}

.contact-option-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
}

.contact-option-card {
  display: grid;
  align-content: start;
  gap: 0.65rem;
  padding: 1.1rem;
  background: var(--white);
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius);
  box-shadow: 0 14px 30px rgba(13, 63, 36, 0.08);
}

.contact-option-card span {
  color: var(--orange-600);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.contact-option-card h2 {
  margin: 0;
  color: var(--green-900);
  font-size: clamp(1.3rem, 3vw, 1.8rem);
}

.contact-option-card p {
  margin: 0;
  color: var(--neutral-700);
}

.contact-option-card a:not(.button) {
  color: var(--green-900);
  font-size: 0.9rem;
  font-weight: 900;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.reviews-page-hero {
  background:
    linear-gradient(90deg, rgba(7, 41, 22, 0.92), rgba(21, 95, 45, 0.74)),
    url("SaintsPngs/Clippedbushes.jpg") center / cover;
}

.page-hero-inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.page-hero h1 {
  margin: 0;
  font-family: "Roboto Slab", Georgia, serif;
  font-size: clamp(2.35rem, 6vw, 4.2rem);
  line-height: 1.08;
}

.page-hero p:not(.eyebrow) {
  max-width: 720px;
  margin: 1rem auto 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.12rem;
}

.page-hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.about-page-section {
  background: var(--white);
}

.values-section,
.gallery-page-section {
  background: var(--neutral-100);
}

.gallery-filter-panel {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  align-items: center;
  margin-bottom: 1rem;
  padding: 0.45rem;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.gallery-filter-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.45rem;
}

.gallery-filter-button {
  min-height: 38px;
  padding: 0.44rem 0.72rem;
  color: var(--green-900);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(21, 95, 45, 0.16);
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 900;
  line-height: 1.15;
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.gallery-filter-button:hover,
.gallery-filter-button:focus-visible {
  background: var(--green-100);
  border-color: rgba(21, 95, 45, 0.42);
  transform: translateY(-1px);
}

.gallery-filter-button.is-active {
  color: var(--white);
  background: var(--green-800);
  border-color: var(--green-800);
}

.gallery-filter-empty {
  margin: 0 0 1rem;
  padding: 0.95rem 1rem;
  color: var(--green-900);
  background: var(--white);
  border: 1px dashed var(--neutral-300);
  border-radius: var(--radius);
  font-weight: 900;
  text-align: center;
}

.value-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.value-grid article,
.service-detail {
  background: var(--white);
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius);
  box-shadow: 0 14px 32px rgba(13, 63, 36, 0.08);
}

.value-grid article {
  padding: 1.2rem;
}

.value-grid h3 {
  margin: 0 0 0.45rem;
  color: var(--green-900);
  font-size: 1.35rem;
}

.value-grid p {
  margin: 0;
  color: var(--neutral-700);
}

.service-detail-section {
  background: var(--white);
}

.service-detail-section-alt {
  background: var(--neutral-100);
}

.service-detail {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  padding: 1rem;
}

.service-detail-featured {
  border: 2px solid var(--orange-500);
  background:
    radial-gradient(circle at 12% 18%, rgba(242, 138, 46, 0.2), transparent 34%),
    linear-gradient(135deg, rgba(242, 138, 46, 0.16), var(--white));
  box-shadow: 0 20px 42px rgba(217, 109, 27, 0.18);
}

.service-detail-pressure {
  border-color: rgba(21, 95, 45, 0.28);
  background:
    linear-gradient(135deg, rgba(233, 245, 233, 0.92), var(--white));
}

.service-detail-copy {
  padding: 0.6rem;
}

.service-detail-copy h2 {
  margin: 0;
  color: var(--green-900);
  font-family: "Roboto Slab", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.08;
}

.service-detail-copy p:not(.eyebrow) {
  max-width: 640px;
  color: var(--neutral-700);
}

.service-detail-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.1rem 0 1.4rem;
}

.service-detail-pills span {
  padding: 0.48rem 0.68rem;
  color: var(--white);
  background: var(--orange-600);
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 900;
}

.service-detail-images {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.8rem;
}

.service-detail-images img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: var(--radius);
}

.gallery-page-grid {
  display: grid;
  grid-template-columns: 1fr;
  grid-auto-flow: dense;
  gap: 0.55rem;
}

.gallery-page-item {
  position: relative;
  min-height: 230px;
  height: 230px;
  padding: 0;
  overflow: hidden;
  background: var(--green-900);
  border: 0;
  border-radius: var(--radius);
  box-shadow: 0 14px 30px rgba(13, 63, 36, 0.1);
  cursor: zoom-in;
}

.gallery-page-card-meta {
  position: absolute;
  bottom: 0.72rem;
  left: 0.72rem;
  z-index: 2;
  display: inline-flex;
  max-width: calc(100% - 1.44rem);
  pointer-events: none;
}

.gallery-page-card-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0.3rem 0.52rem;
  color: var(--white);
  background: rgba(7, 41, 22, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(7, 41, 22, 0.14);
  font-size: 0.72rem;
  font-weight: 900;
}

.gallery-page-card-meta span:first-child {
  background: rgba(7, 41, 22, 0.78);
}

.gallery-page-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--image-position, center);
  image-orientation: from-image;
  transition: transform 180ms ease, filter 180ms ease;
}

.gallery-page-item:hover img,
.gallery-page-item:focus-visible img {
  filter: brightness(0.9);
  transform: scale(1.03);
}

.before-after-indicator {
  position: absolute;
  top: 0.72rem;
  right: 0.72rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  color: var(--white);
  background: var(--orange-600);
  border: 3px solid rgba(255, 255, 255, 0.92);
  border-radius: 999px;
  box-shadow: 0 12px 26px rgba(7, 41, 22, 0.28);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  pointer-events: none;
}

.before-after-tooltip {
  position: absolute;
  right: 0;
  bottom: calc(100% + 0.55rem);
  width: max-content;
  max-width: 180px;
  padding: 0.42rem 0.55rem;
  color: var(--white);
  background: rgba(7, 41, 22, 0.94);
  border-radius: 6px;
  box-shadow: 0 10px 24px rgba(7, 41, 22, 0.2);
  font-size: 0.78rem;
  line-height: 1.2;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.gallery-page-item-before-after:hover .before-after-tooltip,
.gallery-page-item-before-after:focus-visible .before-after-tooltip {
  opacity: 1;
  transform: translateY(0);
}

.contact-page-section {
  background:
    linear-gradient(90deg, rgba(245, 248, 244, 0.97), rgba(245, 248, 244, 0.9)),
    url("SaintsPngs/Clippedbushes.jpg") center / cover;
}

.contact-map-section {
  background: var(--white);
}

.reviews-page-section {
  background:
    linear-gradient(90deg, rgba(13, 63, 36, 0.96), rgba(21, 95, 45, 0.88)),
    url("SaintsPngs/Clippedbushes.jpg") center / cover;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.15rem;
  padding: 2.25rem 0;
}

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

.footer-brand img {
  width: 92px;
  height: 92px;
  object-fit: contain;
  background: var(--white);
  border-radius: 6px;
}

.footer-brand span {
  font-size: 1rem;
}

.footer-grid h2 {
  margin: 0 0 0.6rem;
  font-size: 0.9rem;
  text-transform: uppercase;
}

.footer-grid p {
  color: #cce8cf;
  font-size: 0.95rem;
  line-height: 1.55;
}

.footer-grid a {
  display: block;
  margin-bottom: 0.36rem;
  color: #f5fff6;
  text-decoration: none;
  font-size: 0.95rem;
  overflow-wrap: anywhere;
}

.footer-grid a.footer-learn-more {
  display: inline-flex;
  align-items: center;
  margin-top: 0.35rem;
  color: #ffb35f;
  font-weight: 900;
}

.footer-grid a.footer-learn-more:hover,
.footer-grid a.footer-learn-more:focus-visible {
  color: #ffd19b;
}

.footer-contact-label {
  display: block;
  color: #ffb35f;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  line-height: 1.1;
  text-transform: uppercase;
}

.footer-bottom {
  position: relative;
  padding: 0.85rem 1rem;
  color: #cce8cf;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.footer-bottom p {
  display: flex;
  flex-wrap: wrap;
  gap: 0.28rem 0.45rem;
  align-items: center;
  justify-content: center;
  margin: 0;
  font-size: 0.88rem;
}

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

.footer-bottom a:hover,
.footer-bottom a:focus-visible {
  color: #ffb35f;
}

.footer-bottom .salostack-link {
  color: #cce8cf;
  font-weight: inherit;
}

.footer-bottom .salostack-link:hover,
.footer-bottom .salostack-link:focus-visible {
  color: #cce8cf;
  text-decoration: underline;
}

.admin-footer-link {
  position: absolute;
  top: 50%;
  right: 0.85rem;
  display: inline-flex;
  width: 18px;
  height: 18px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  opacity: 0.16;
  transition: opacity 160ms ease, transform 160ms ease;
  transform: translateY(-50%);
}

.admin-footer-link img {
  width: 13px;
  height: 13px;
  object-fit: contain;
  filter: invert(1);
}

.admin-footer-link:hover,
.admin-footer-link:focus-visible {
  background: transparent;
  opacity: 0.82;
  transform: translateY(-50%);
}

.policy-page {
  padding: 8rem 0 4rem;
  background: var(--white);
}

.policy-content {
  max-width: 860px;
  margin: 0 auto;
}

.policy-content h1 {
  margin-bottom: 1rem;
  color: var(--green-900);
  font-size: clamp(2.3rem, 6vw, 4.2rem);
}

.policy-content h2 {
  margin: 2rem 0 0.65rem;
  color: var(--green-900);
  font-size: clamp(1.65rem, 4vw, 2.5rem);
}

.policy-content p,
.policy-content li {
  color: var(--neutral-700);
  font-size: 1.05rem;
  line-height: 1.65;
}

.policy-content a {
  color: var(--green-900);
  font-weight: 900;
}

@media (min-width: 620px) {
  .check-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .value-grid,
  .gallery-page-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-detail-images {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .form-row.two-col {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .contact-page-quote-layout {
    grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.55fr);
  }

  .contact-form-heading,
  .contact-service-map {
    grid-column: 1 / -1;
  }
}

@media (max-width: 900px) {
  .gallery-filter-panel {
    justify-content: center;
  }
}

@media (max-width: 620px) {
  h1,
  h2,
  h3,
  p,
  .button,
  .feature-photo,
  .logo-photo,
  .quote-form,
  .service-detail,
  .service-detail-copy,
  .service-detail-images,
  .service-offer-card,
  .review-grid,
  .contact-methods,
  .check-grid,
  input,
  select,
  textarea {
    max-width: calc(100vw - 32px) !important;
  }

  h1,
  h2,
  h3,
  p {
    overflow-wrap: break-word;
  }

  .section-inner,
  .hero-content,
  .split-copy,
  .contact-copy,
  .section-heading {
    max-width: calc(100vw - 32px);
  }

  .hero-content {
    width: min(420px, calc(100vw - 32px));
    overflow: hidden;
  }

  .brand {
    max-width: calc(100vw - 108px);
  }

  .menu-toggle {
    position: absolute;
    top: 50%;
    right: 0;
    width: 50px;
    height: 50px;
    flex-basis: 50px;
    transform: translateY(-50%);
  }

  .site-nav {
    inset: 80px 0 auto;
  }

  .hero {
    min-height: 690px;
  }

  .hero-content {
    min-height: 690px;
    padding: 2.7rem 0 2.35rem;
  }

  .hero .eyebrow {
    max-width: 300px !important;
    margin-right: auto;
    margin-left: auto;
    font-size: 0.82rem;
    line-height: 1.22;
  }

  .hero h1 {
    width: 100%;
    max-width: min(320px, calc(100vw - 48px)) !important;
    margin-right: auto;
    margin-left: auto;
    font-size: 1.82rem;
    line-height: 1.06;
    overflow-wrap: break-word;
  }

  .hero-copy {
    width: 100%;
    max-width: min(330px, calc(100vw - 48px)) !important;
    margin-right: auto;
    margin-left: auto;
    font-size: 0.96rem;
    line-height: 1.5;
  }

  .hero-buttons {
    width: 100%;
  }

  .hero-buttons .button {
    width: 100%;
    max-width: min(340px, 100%);
  }

  .section-heading h2,
  .split-copy h2,
  .contact-copy h2 {
    max-width: 320px !important;
    font-size: clamp(1.68rem, 7.4vw, 2rem);
    line-height: 1.1;
    overflow-wrap: break-word;
  }

  .section {
    padding: 4rem 0;
  }

  .brand {
    gap: 0.35rem;
    max-width: calc(100vw - 96px);
  }

  .brand .brand-mark {
    width: 42px;
    height: 42px;
  }

  .brand .brand-wordmark {
    width: min(160px, calc(100vw - 158px));
    max-height: 44px;
  }

  .bottom-call-bar {
    min-height: 56px;
    padding-right: 2.65rem;
    padding-left: 0.75rem;
  }

  .bottom-call-bar p {
    gap: 0.18rem 0.25rem;
    font-size: 0.78rem;
    line-height: 1.2;
  }

  .bottom-call-bar p > span:first-child {
    display: none;
  }

  .service-offers-layout {
    gap: 1.25rem;
  }

  .service-offer-card {
    padding: 0.95rem;
  }

  .service-offer-card h4 {
    font-size: 1.14rem;
  }

  .service-offer-card li,
  .service-detail-pills span {
    font-size: 0.82rem;
  }

  .service-detail {
    padding: 0.95rem;
  }

  .service-detail-copy {
    padding: 0.2rem;
  }

  .service-detail-images img {
    height: 235px;
  }

  .bottom-call-bar a {
    font-size: 0.98rem;
    white-space: nowrap;
  }

  .bottom-call-close {
    width: 30px;
    height: 30px;
  }
}

@media (min-width: 860px) {
  .menu-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    display: flex;
    flex: 0 1 auto;
    flex-direction: row;
    align-items: center;
    gap: 0.35rem;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .site-nav a {
    min-height: auto;
    padding: 0.65rem 0.5rem;
    font-size: 0.95rem;
    white-space: nowrap;
  }

  .nav-dropdown {
    display: flex;
    align-items: center;
    width: auto;
  }

  .nav-dropdown-trigger {
    width: auto;
  }

  .nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 0.35rem);
    left: 50%;
    z-index: 75;
    transform: translateX(-50%);
  }

  .header-actions {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 0.75rem;
    margin-left: auto;
    white-space: nowrap;
  }

  .header-actions .button {
    min-height: 50px;
    min-width: 150px;
    padding: 0.75rem 1rem;
    font-size: 0.96rem;
    white-space: nowrap;
  }

  .service-grid {
    grid-template-columns: 0.9fr 1.3fr 0.9fr;
  }

  .gallery-item,
  .gallery-placeholder {
    flex-basis: 310px;
    min-height: 270px;
    height: 270px;
  }

  .gallery-item-portrait {
    flex-basis: 225px;
    min-height: 270px;
    height: 270px;
  }

  .gallery-item-wide {
    flex-basis: 365px;
    min-height: 270px;
    height: 270px;
  }

  .service-offer-grid {
    grid-template-columns: 1fr;
  }

  .service-offers-layout {
    grid-template-columns: minmax(310px, 0.82fr) minmax(0, 1.18fr);
  }

  .service-offers-section .section-heading {
    position: sticky;
    top: 118px;
  }

  .split-layout,
  .contact-layout {
    grid-template-columns: 1fr 1fr;
  }

  .value-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .service-detail {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    align-items: center;
    padding: 1.35rem;
  }

  .service-detail-section-alt .service-detail {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  }

  .service-detail-section-alt .service-detail-images {
    order: -1;
  }

  .service-detail-images img {
    height: 320px;
  }

  .gallery-page-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .gallery-page-item-wide {
    grid-column: span 2;
  }

  .gallery-page-item-portrait {
    height: 230px;
  }

  .area-layout {
    grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  }

  .area-heading,
  .services-heading,
  .reviews-lead {
    grid-template-columns: minmax(0, 1.3fr) minmax(300px, 0.7fr);
  }

  .area-heading,
  .reviews-lead {
    grid-template-columns: 1fr;
  }

  .reviews-lead {
    align-items: start;
  }

  .rating-summary {
    justify-self: end;
  }

  .service-process {
    grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
    align-items: center;
  }

  .split-layout-reverse .feature-photo {
    order: 2;
  }

  .pressure-inner {
    grid-template-columns: 1fr auto;
  }

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

  .reviews-layout {
    grid-template-columns: 0.88fr 1.12fr;
  }

  .contact-layout {
    grid-template-columns: 0.78fr 1.22fr;
  }

  .footer-grid {
    grid-template-columns: 1.35fr 1.35fr 0.8fr 1.15fr;
  }
}

@media (min-width: 1080px) {
  .site-nav a {
    padding: 0.65rem 0.65rem;
    font-size: 1rem;
  }
}

@media (min-width: 860px) and (max-width: 1239px) {
  .header-inner {
    padding-right: 64px;
  }

  .menu-toggle {
    display: inline-flex;
    order: 3;
  }

  .site-nav {
    position: absolute;
    inset: 80px 12px auto;
    display: none;
    flex-direction: column;
    gap: 0.2rem;
    padding: 1rem;
    background: var(--white);
    border: 1px solid var(--neutral-200);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    min-height: 54px;
    padding: 0.85rem 0.95rem;
    font-size: 1.04rem;
  }

  .nav-dropdown {
    display: block;
    width: 100%;
  }

  .nav-dropdown-menu {
    position: static;
    width: 100%;
    margin-top: 0.2rem;
    transform: none;
  }

  .header-actions {
    order: 2;
    margin-left: auto;
  }
}

@media (min-width: 1240px) {
  body {
    padding-top: 92px;
  }

  .header-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    justify-content: flex-start;
    width: min(1360px, calc(100% - 32px));
    min-height: 92px;
    gap: 1.6rem;
  }

  .brand {
    justify-self: start;
    gap: 0.55rem;
    margin-right: 0;
    max-width: 315px;
    font-size: 1.42rem;
  }

  .brand .brand-mark {
    width: 56px;
    height: 56px;
  }

  .brand .brand-wordmark {
    width: 195px;
    max-width: 195px;
    max-height: 54px;
  }

  .site-nav {
    grid-column: 2;
    justify-self: center;
    justify-content: center;
    gap: 0.55rem;
  }

  .site-nav a {
    padding: 0.75rem 0.72rem;
    font-size: 1.06rem;
  }

  .header-actions {
    justify-self: end;
    margin-left: 0;
    gap: 0.9rem;
  }

  .header-phone {
    font-size: 1.12rem;
  }

  .header-actions .button {
    min-height: 58px;
    min-width: 178px;
    padding: 0.9rem 1.25rem;
    font-size: 1rem;
  }

  .hero-buttons .button {
    min-height: 64px;
    padding: 1rem 1.75rem;
    font-size: 1.14rem;
  }
}

@media (min-width: 1240px) and (max-width: 1399px) {
  .header-inner {
    gap: 1.5rem;
  }

  .brand .brand-mark {
    width: 52px;
    height: 52px;
  }

  .brand .brand-wordmark {
    width: 176px;
    max-width: 176px;
    max-height: 52px;
  }

  .site-nav a {
    padding: 0.72rem 0.56rem;
    font-size: 1rem;
  }

  .header-actions .button {
    min-width: 160px;
  }
}

@media (max-width: 410px) {
  .hero {
    min-height: 740px;
  }

  .hero::after {
    height: 32px;
    background-size: 640px 32px;
  }

  .hero-content {
    min-height: 740px;
    padding: 3rem 0 2.5rem;
  }

  .hero h1 {
    max-width: calc(100vw - 48px) !important;
    font-size: 1.72rem;
    line-height: 1.05;
  }

  .hero-copy {
    max-width: calc(100vw - 48px) !important;
    margin-top: 1rem;
    font-size: 0.94rem;
  }

  .hero-buttons {
    width: 100%;
    gap: 0.65rem;
    margin-top: 1.1rem;
  }

  .brand .brand-mark {
    width: 42px;
    height: 42px;
  }

  .brand .brand-wordmark {
    width: min(142px, calc(100vw - 168px));
  }

  .hero-buttons .button {
    width: 100%;
    max-width: 320px;
  }

}

@media (max-width: 620px) {
  .gallery-carousel {
    grid-template-columns: 1fr;
  }

  .gallery-nav {
    display: none;
  }

  .gallery-viewport {
    overflow-x: auto;
    -webkit-mask-image: none;
    mask-image: none;
    scrollbar-width: none;
  }

  .gallery-grid {
    animation: none;
  }

  .gallery-item,
  .gallery-placeholder {
    flex-basis: min(78vw, 300px);
    min-height: 245px;
    height: 245px;
  }

  .gallery-item-portrait {
    flex-basis: min(62vw, 220px);
    min-height: 245px;
    height: 245px;
  }

  .gallery-item-wide {
    flex-basis: min(86vw, 320px);
    min-height: 245px;
    height: 245px;
  }

  .gallery-duplicate {
    display: none;
  }

  .service-offer-card ul {
    max-height: none;
  }

  .gallery-modal-panel {
    grid-template-columns: 1fr;
  }

  .gallery-modal-image,
  .gallery-modal-prev,
  .gallery-modal-next {
    grid-column: 1;
  }

  .gallery-modal-prev,
  .gallery-modal-next {
    position: absolute;
    top: 50%;
    width: 42px;
    height: 58px;
    transform: translateY(-50%);
  }

  .gallery-modal-prev {
    left: 0.7rem;
  }

  .gallery-modal-next {
    right: 0.7rem;
  }
}

@media (max-width: 620px) {
  .header-inner {
    width: min(100% - 24px, 1180px);
    min-height: 76px;
  }

  .site-nav.is-open {
    max-height: calc(100vh - 96px);
    overflow-y: auto;
  }

  .section-inner {
    width: min(100% - 28px, 1180px);
  }

  .section {
    padding: 3.25rem 0;
  }

  .hero {
    min-height: 660px;
  }

  .hero-content {
    min-height: 660px;
    padding-top: 2.25rem;
    padding-bottom: 2.15rem;
  }

  .hero h1 {
    max-width: min(335px, calc(100vw - 42px)) !important;
    font-size: clamp(1.68rem, 7vw, 1.92rem);
    line-height: 1.08;
    text-wrap: balance;
  }

  .hero-copy {
    max-width: min(335px, calc(100vw - 42px)) !important;
    font-size: 0.94rem;
    line-height: 1.48;
  }

  .hero-buttons {
    gap: 0.65rem;
    margin-top: 1.05rem;
  }

  .hero-buttons .button {
    min-height: 56px;
    font-size: 1rem;
  }

  .page-hero {
    padding: 4.75rem 0 3.4rem;
  }

  .page-hero h1,
  .section-heading h2,
  .split-copy h2,
  .contact-copy h2,
  .service-detail-copy h2 {
    text-wrap: balance;
  }

  .page-hero p:not(.eyebrow),
  .hero-copy,
  .section-heading p,
  .split-copy p,
  .contact-copy p {
    text-wrap: pretty;
  }

  .split-layout,
  .reviews-layout,
  .contact-layout,
  .area-layout,
  .service-offers-layout,
  .services-heading,
  .area-heading,
  .reviews-lead {
    grid-template-columns: 1fr;
  }

  .service-offers-section .section-heading {
    position: static;
  }

  .service-offers-section .section-heading h2 {
    max-width: min(330px, 100%) !important;
    font-size: clamp(1.86rem, 8vw, 2.12rem);
    line-height: 1.08;
  }

  .service-offers-section .section-heading p {
    max-width: 100% !important;
  }

  .feature-photo,
  .logo-photo,
  .service-detail-images img,
  .map-card,
  .contact-service-map .map-card.leaflet-container {
    min-height: 220px;
    max-height: 320px;
  }

  .logo-photo {
    min-height: 240px;
    padding: 1.2rem;
  }

  .logo-photo img {
    width: min(240px, 76%);
  }

  .service-grid,
  .service-offer-grid,
  .area-grid,
  .review-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .service-card,
  .service-offer-card,
  .area-card,
  .review-card,
  .quote-form,
  .contact-service-summary {
    padding: 1rem;
  }

  .service-card h3,
  .service-offer-card h4,
  .area-card h3,
  .review-card h3 {
    line-height: 1.16;
    text-wrap: balance;
  }

  .service-card p,
  .service-offer-card p,
  .area-card p,
  .review-card p {
    line-height: 1.55;
  }

  .service-offer-card ul {
    gap: 0.42rem;
  }

  .service-offer-card li {
    padding: 0.46rem 0.58rem;
    line-height: 1.22;
  }

  .gallery-section .section-inner {
    width: min(100% - 28px, 1180px);
  }

  .gallery-section {
    padding: 3.35rem 0 4.25rem;
  }

  .gallery-section .section-heading {
    max-width: 350px;
  }

  .gallery-section .section-heading h2 {
    max-width: 330px !important;
    margin-right: auto;
    margin-left: auto;
  }

  .gallery-section .section-heading p:not(.eyebrow) {
    max-width: 335px !important;
    margin-right: auto;
    margin-left: auto;
    line-height: 1.5;
  }

  .gallery-filter-panel {
    margin-bottom: 0.9rem;
    padding: 0.35rem 0;
  }

  .gallery-filter-tabs {
    width: 100%;
    gap: 0.4rem;
  }

  .gallery-filter-button {
    flex: 1 1 calc(50% - 0.4rem);
    min-height: 44px;
    padding: 0.5rem 0.48rem;
    font-size: 0.84rem;
  }

  .gallery-carousel,
  .gallery-viewport {
    width: 100%;
  }

  .gallery-carousel {
    display: block;
    margin-top: 1.45rem;
  }

  .gallery-viewport {
    padding: 0;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 0;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x;
    overscroll-behavior-x: contain;
  }

  .gallery-grid {
    width: 100%;
    min-width: 100%;
    gap: 0.85rem;
    padding-bottom: 0.25rem;
  }

  .gallery-item,
  .gallery-placeholder,
  .gallery-item-portrait,
  .gallery-item-wide {
    flex: 0 0 100%;
    min-height: 252px;
    height: 252px;
    margin-right: 0;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    cursor: grab;
  }

  .gallery-viewport.is-dragging .gallery-item,
  .gallery-viewport.is-dragging .gallery-placeholder {
    cursor: grabbing;
  }

  .gallery-actions {
    margin-top: 1.15rem;
  }

  .gallery-view-all {
    width: min(100%, 240px);
    min-height: 52px;
  }

  .gallery-page-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .gallery-page-item,
  .gallery-page-item-wide,
  .gallery-page-item-portrait {
    grid-column: auto;
    height: min(78vw, 300px);
    min-height: 220px;
  }

  .gallery-page-card-meta {
    bottom: 0.55rem;
    left: 0.55rem;
    max-width: calc(100% - 1.1rem);
  }

  .gallery-page-card-meta span {
    min-height: 28px;
    padding: 0.3rem 0.46rem;
    font-size: 0.68rem;
  }

  .before-after-indicator {
    top: 0.55rem;
    right: 0.55rem;
    width: 42px;
    height: 42px;
    font-size: 0.7rem;
  }

  .before-after-tooltip {
    display: none;
  }

  .before-after-modal-panel {
    width: min(100%, calc(100vw - 22px));
    max-height: calc(100vh - 22px);
    padding: 1rem;
  }

  .before-after-modal-heading {
    padding-right: 2.8rem;
  }

  .before-after-modal img {
    height: min(52vh, 310px);
  }

  .footer-bottom {
    padding-right: 2.4rem;
    padding-left: 0.75rem;
  }

  .footer-bottom p {
    gap: 0.18rem 0.32rem;
    font-size: 0.8rem;
  }

  .contact-methods a {
    padding: 0.82rem;
    font-size: 0.94rem;
  }

  .quote-highlights span,
  .contact-area-chips span {
    line-height: 1.2;
  }

  .bottom-call-bar {
    min-height: 52px;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }

  .bottom-call-bar p {
    max-width: calc(100vw - 58px);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .gallery-viewport {
    overflow-x: auto;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .gallery-grid {
    width: auto;
    animation: none;
  }

  .gallery-duplicate {
    display: none;
  }
}
