/* Eye Candy Lawn Care — Gardenie-inspired redesign */
:root {
  --green-950: #13261a;
  --green-900: #1b3a24;
  --green-800: #234d2e;
  --green-700: #2f6b3a;
  --green-600: #3f8a49;
  --green-500: #5aa65f;
  --green-400: #7bc07a;
  --green-100: #e8f3e7;
  --green-50: #f4faf3;
  --cream: #f7f8f3;
  --sand: #eef1e6;
  --white: #ffffff;
  --ink: #182019;
  --muted: #5c6b5e;
  --line: rgba(27, 58, 36, 0.12);
  --shadow: 0 18px 50px rgba(19, 38, 26, 0.12);
  --shadow-soft: 0 10px 30px rgba(19, 38, 26, 0.08);
  --radius-sm: 14px;
  --radius: 22px;
  --radius-lg: 36px;
  --radius-xl: 48px;
  --container: 1400px;
  --gutter: clamp(1.25rem, 3.2vw, 2.5rem);
  --header-h: 96px;
  --logo-h: 72px;
  --font: "DM Sans", system-ui, sans-serif;
  --display: "Plus Jakarta Sans", "DM Sans", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 112.5%; /* 18px — more readable site-wide */
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.05rem;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

h1, h2, h3, h4 {
  font-family: var(--display);
  line-height: 1.15;
  margin: 0 0 0.6em;
  letter-spacing: -0.02em;
}

p {
  margin: 0 0 1em;
}

.container {
  width: min(100% - (var(--gutter) * 2), var(--container));
  margin-inline: auto;
}

.section {
  padding: 6.25rem 0;
}

.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.15rem;
  padding: 1.35rem var(--gutter);
  background: transparent;
}

.section-divider::before,
.section-divider::after {
  content: "";
  width: min(240px, 28vw);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(47, 107, 58, 0.28), transparent);
}

.section-divider-mark {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--green-600);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  flex-shrink: 0;
}

.section-divider-mark svg {
  width: 34px;
  height: 34px;
}

.has-fixed-bg {
  position: relative;
  isolation: isolate;
  border-radius: 0;
  background-color: var(--green-950);
  background-image: var(--section-photo);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.has-fixed-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: rgba(10, 20, 14, 0.78);
}

.has-fixed-bg > * {
  position: relative;
  z-index: 1;
}

.has-fixed-bg .section-label {
  color: var(--green-400);
}

.has-fixed-bg .section-head h2,
.has-fixed-bg h2 {
  color: var(--white);
}

.has-fixed-bg .section-head p {
  color: rgba(255, 255, 255, 0.84);
}

.has-fixed-bg .areas-more .text-link {
  color: #d8f0cf;
}

@media (max-width: 720px) {
  .has-fixed-bg,
  .services.has-fixed-bg,
  .areas.has-fixed-bg {
    background-attachment: scroll;
  }
}

@media (prefers-reduced-motion: reduce) {
  .has-fixed-bg,
  .services.has-fixed-bg,
  .areas.has-fixed-bg {
    background-attachment: scroll;
  }
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-600);
  margin-bottom: 0.85rem;
}

.section-label::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
}

.section-label.light {
  color: var(--green-400);
}

.section-head {
  max-width: 46rem;
  margin-bottom: 2.75rem;
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

.section-head h2,
.about-copy h2,
.process-copy h2,
.experience-copy h2,
.reviews-intro h2,
.faqs-intro h2,
.contact-copy h2 {
  font-size: clamp(2.15rem, 3.4vw, 3.15rem);
  color: var(--green-950);
}

.section-head p,
.lead {
  color: var(--muted);
  font-size: 1.15rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 54px;
  padding: 0.9rem 1.65rem;
  border-radius: 999px;
  border: 2px solid transparent;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn.full {
  width: 100%;
}

.btn-primary {
  background: var(--green-700);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(47, 107, 58, 0.28);
}

.btn-primary:hover {
  background: var(--green-800);
}

.btn-light {
  background: var(--white);
  color: var(--green-900);
}

.btn-light:hover {
  background: var(--green-50);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--green-800);
  border-color: rgba(47, 107, 58, 0.28);
}

.btn-outline:hover {
  background: var(--green-100);
  border-color: var(--green-600);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 700;
  color: var(--green-700);
}

.text-link:hover span {
  transform: translateX(3px);
}

.text-link span {
  transition: transform 0.2s ease;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 248, 243, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.94);
  border-bottom-color: var(--line);
  box-shadow: 0 8px 24px rgba(19, 38, 26, 0.06);
}

.header-inner {
  width: min(100% - (var(--gutter) * 2), var(--container));
  max-width: var(--container);
  min-height: var(--header-h);
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 1.25rem 1.75rem;
  padding: 0;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo img {
  width: auto;
  height: var(--logo-h);
  max-height: var(--logo-h);
  object-fit: contain;
}

.nav {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  flex: 0 1 auto;
  min-width: 0;
  gap: 0.15rem 1.15rem;
  flex-wrap: nowrap;
  align-self: stretch;
}

.nav-drawer-head,
.nav-drawer-foot {
  display: none;
}

.nav-drawer-close {
  display: none;
}

.nav-drawer-body {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  flex: 1 1 auto;
  min-width: 0;
  gap: 0.15rem 1.15rem;
  flex-wrap: nowrap;
  align-self: stretch;
}

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

.nav-drawer-body > .nav-link,
.nav-item > .nav-parent {
  display: flex;
  align-items: center;
}

.nav-link,
.nav-dropdown a {
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--green-900);
  padding: 0.4rem 0;
  position: relative;
  white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
  color: var(--green-700);
}

.nav-item.has-dropdown {
  position: relative;
  display: flex;
  align-items: center;
  align-self: stretch;
  gap: 0.2rem;
}

.nav-caret {
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--green-800);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.nav-caret:hover,
.nav-item.has-dropdown:hover .nav-caret,
.nav-item.open .nav-caret {
  background: var(--green-100);
}

.nav-item.open .nav-caret,
.nav-item.has-dropdown:hover .nav-caret {
  transform: rotate(180deg);
}

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 210px;
  padding: 0.55rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 0.15rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 120;
}

.nav-item.has-dropdown:hover .nav-dropdown,
.nav-item.open .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.nav-dropdown a {
  display: block;
  padding: 0.7rem 0.85rem;
  border-radius: 12px;
  color: var(--green-900);
}

.nav-dropdown a::after {
  display: none;
}

.nav-dropdown a:hover,
.nav-dropdown a.active {
  background: var(--green-50);
  color: var(--green-700);
}

/* Services mega menu */
.site-header {
  overflow: visible;
}

.nav-item.has-mega {
  position: static;
  display: flex;
  align-items: center;
  align-self: stretch;
  gap: 0.15rem;
}

.mega-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--white);
  color: var(--ink);
  border-top: 1px solid var(--line);
  box-shadow: 0 28px 50px rgba(19, 38, 26, 0.12);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.28s ease, transform 0.28s ease, visibility 0.28s ease;
  z-index: 130;
}

.nav-item.has-mega .nav-caret svg {
  transition: transform 0.25s ease;
}

.mega-inner {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) 440px minmax(260px, 0.9fr);
  gap: 1.75rem;
  padding-top: 1.6rem;
  padding-bottom: 1.75rem;
  align-items: start;
}

.mega-kicker {
  margin: 0 0 0.85rem;
  font-family: var(--display);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--green-700);
}

.mega-list {
  display: grid;
  gap: 0.2rem;
}

.mega-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.68rem 0.85rem;
  border-radius: 12px;
  color: var(--green-950);
  font-size: 0.95rem;
  font-weight: 600;
  white-space: normal;
  border: 1px solid transparent;
  background: transparent;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.mega-item::after {
  content: "→";
  color: var(--green-600);
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity 0.15s ease, transform 0.15s ease;
}

.mega-item:hover,
.mega-item.is-active,
.mega-item:focus-visible {
  background: var(--green-50);
  border-color: rgba(47, 107, 58, 0.12);
  color: var(--green-800);
}

.mega-item:hover::after,
.mega-item.is-active::after,
.mega-item:focus-visible::after {
  opacity: 1;
  transform: none;
}

.mega-preview {
  min-width: 0;
}

.mega-preview-media {
  margin: 0 0 1rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 300px;
  background: var(--cream);
}

.mega-preview-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.mega-preview-copy h3 {
  margin: 0 0 0.4rem;
  color: var(--green-950);
  font-size: 1.35rem;
}

.mega-preview-copy p {
  margin: 0 0 0.85rem;
  color: var(--muted);
}

.mega-preview-link {
  font-weight: 700;
  color: var(--green-700);
}

.mega-preview-link:hover {
  color: var(--green-900);
}

.mega-contact {
  padding: 1.35rem 1.3rem 1.45rem;
  border-radius: 18px;
  background: var(--cream);
  border: 1px solid var(--line);
}

.mega-contact-lead {
  margin: 0 0 1rem;
  color: var(--muted);
}

.mega-contact-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.15rem;
  display: grid;
  gap: 0.4rem;
  color: var(--green-950);
  font-weight: 700;
}

.mega-contact-list a:hover {
  color: var(--green-700);
}

@media (min-width: 1241px) {
  .nav-item.has-mega:hover .mega-menu,
  .nav-item.has-mega.open .mega-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-item.has-mega:hover .nav-caret svg,
  .nav-item.has-mega.open .nav-caret svg {
    transform: rotate(180deg);
  }
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-shrink: 0;
  margin-left: auto;
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.phone-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--green-100);
  color: var(--green-700);
  display: grid;
  place-items: center;
}

.phone-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.phone-text small {
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 600;
}

.phone-text strong {
  font-size: 1.05rem;
  color: var(--green-800);
}

.header-cta {
  min-height: 46px;
  padding-inline: 1.2rem;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 14px;
  background: var(--green-100);
  padding: 12px;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--green-800);
  border-radius: 2px;
}

/* Hero */
.hero {
  padding: 1.25rem 0 2rem;
}

.hero-card {
  position: relative;
  min-height: clamp(520px, 78vh, 720px);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
}

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

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

.hero-overlay {
  background:
    linear-gradient(120deg, rgba(15, 32, 20, 0.78) 8%, rgba(15, 32, 20, 0.42) 55%, rgba(15, 32, 20, 0.25) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 46rem;
  padding: clamp(2.25rem, 6vw, 5.25rem);
  color: var(--white);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.92rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  backdrop-filter: blur(8px);
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green-400);
}

.hero h1 {
  font-size: clamp(2.75rem, 5.2vw, 4.55rem);
  color: var(--white);
  margin-bottom: 0.75rem;
}

.hero h1 span {
  color: #d8f0cf;
}

.hero-content p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.88);
  max-width: 38rem;
  margin-bottom: 1.75rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: -2.5rem;
  position: relative;
  z-index: 3;
  width: min(100%, 920px);
  margin-left: auto;
  margin-right: 0;
}

.stat-card {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.15rem 1.25rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(255, 255, 255, 0.7);
}

.stat-card.accent {
  background: linear-gradient(145deg, var(--green-700), var(--green-900));
  color: var(--white);
}

.stat-card.accent .stat-icon {
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
}

.stat-card.accent span {
  color: rgba(255, 255, 255, 0.8);
}

.stat-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: var(--green-100);
  color: var(--green-700);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.stat-card strong {
  display: block;
  font-family: var(--display);
  font-size: 1.55rem;
  line-height: 1.1;
}

.stat-card span {
  display: block;
  font-size: 0.95rem;
  color: var(--muted);
}

/* About */
.about-intro {
  padding-top: 4.5rem;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3.5rem;
  align-items: center;
}

.about-copy .lead {
  font-size: 1.22rem;
  color: var(--green-800);
  font-weight: 600;
}

.about-copy p {
  color: var(--muted);
}

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

.check-list li {
  position: relative;
  padding-left: 2rem;
  font-weight: 600;
  color: var(--green-900);
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 50%;
  background: var(--green-100);
  color: var(--green-700);
  display: grid;
  place-items: center;
  font-size: 0.75rem;
  font-weight: 800;
}

.about-media {
  position: relative;
  min-height: 540px;
}

.about-blob {
  position: absolute;
  inset: 8% 5% 5% 12%;
  background: linear-gradient(160deg, var(--green-400), var(--green-700));
  border-radius: 58% 42% 48% 52% / 42% 48% 52% 58%;
  opacity: 0.9;
}

.about-img {
  position: absolute;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: var(--shadow);
  border: 6px solid var(--white);
}

.about-img.main {
  width: 72%;
  height: 420px;
  top: 0;
  right: 0;
}

.about-img.secondary {
  width: 52%;
  height: 260px;
  left: 0;
  bottom: 40px;
}

.floating-badge {
  position: absolute;
  left: 8%;
  top: 42%;
  background: var(--white);
  border-radius: 20px;
  padding: 1rem 1.15rem;
  box-shadow: var(--shadow);
  text-align: center;
}

.floating-badge strong {
  display: block;
  font-family: var(--display);
  font-size: 1.5rem;
  color: var(--green-700);
}

.floating-badge span {
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 600;
}

/* Services */
.services:not(.has-fixed-bg) {
  background: var(--white);
}

.services-head {
  margin-bottom: 1.35rem;
}

.services-head .section-head {
  margin-bottom: 0;
}

.services-toolbar {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 0.9rem;
}

.services-nav {
  display: flex;
  gap: 0.55rem;
}

.services-arrow {
  width: 46px;
  height: 46px;
  padding: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
}

.services-arrow svg {
  width: 18px;
  height: 18px;
  display: block;
}

.services-arrow-prev {
  background: var(--white);
  border: 1.5px solid var(--ink);
  color: var(--ink);
}

.services-arrow-next {
  background: var(--green-950);
  border: 1.5px solid rgba(255, 255, 255, 0.88);
  color: var(--white);
}

.services-arrow:hover:not(:disabled) {
  transform: translateY(-1px);
}

.services-arrow-prev:hover:not(:disabled) {
  background: var(--green-50);
}

.services-arrow-next:hover:not(:disabled) {
  background: var(--green-900);
}

.services-arrow:disabled {
  opacity: 0.38;
  cursor: default;
  transform: none;
}

.services-slider {
  overflow: hidden;
}

.services-pills {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 1.6rem;
}

.services-pill {
  position: relative;
  width: 1.85rem;
  height: 0.32rem;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
  overflow: hidden;
  cursor: pointer;
}

.services-pill-fill {
  position: absolute;
  inset: 0;
  background: var(--white);
  transform: scaleX(0);
  transform-origin: left center;
}

.services-pill.is-active .services-pill-fill {
  animation: services-pill-fill 5s linear forwards;
}

.services-pill.is-paused .services-pill-fill {
  animation-play-state: paused;
}

@keyframes services-pill-fill {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .services-pill.is-active .services-pill-fill {
    animation: none;
    transform: scaleX(1);
  }
}

.services-track {
  display: flex;
  gap: 1.25rem;
  transition: transform 0.4s ease;
  will-change: transform;
}

.service-card {
  flex: 0 0 calc((100% - 2.5rem) / 3);
  min-width: 0;
  background: var(--cream);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
}

.service-image {
  height: 180px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.service-card:hover .service-image img {
  transform: scale(1.06);
}

.service-body {
  padding: 1.35rem 1.25rem 1.5rem;
}

.service-num {
  display: inline-block;
  font-family: var(--display);
  font-weight: 800;
  color: var(--green-400);
  margin-bottom: 0.4rem;
}

.service-body h3 {
  font-size: 1.28rem;
  margin-bottom: 0.45rem;
  color: var(--green-950);
}

.service-body p {
  color: var(--muted);
  font-size: 1.02rem;
  margin-bottom: 1rem;
}

/* Process */
.process {
  position: relative;
  background: linear-gradient(145deg, var(--green-900), var(--green-800) 45%, #2a5a35);
  color: var(--white);
  overflow: hidden;
}

.process-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 2.5rem;
  align-items: center;
}

.process-copy h2 {
  color: var(--white);
}

.process-copy p {
  color: rgba(255, 255, 255, 0.82);
}

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

.process-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 1.4rem;
  backdrop-filter: blur(8px);
}

.process-num {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.12);
  font-family: var(--display);
  font-weight: 800;
  margin-bottom: 0.85rem;
}

.process-card h3 {
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 0.4rem;
}

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

.process-shape {
  position: absolute;
  width: 420px;
  height: 420px;
  right: -120px;
  bottom: -140px;
  border-radius: 58% 42% 60% 40% / 45% 55% 45% 55%;
  background: rgba(123, 192, 122, 0.18);
}

/* Experience */
.experience {
  padding-top: 5rem;
}

.experience-card {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 0;
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--line);
}

.experience-copy {
  padding: clamp(2rem, 4vw, 3.5rem);
}

.experience-copy h3 {
  font-size: 1.25rem;
  color: var(--green-800);
  margin-top: 0.5rem;
}

.experience-copy p {
  color: var(--muted);
}

.experience-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.experience-media {
  min-height: 100%;
}

.experience-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 420px;
}

/* Areas */
.areas:not(.has-fixed-bg) {
  background: var(--cream);
}

.services.has-fixed-bg,
.areas.has-fixed-bg {
  background-color: var(--green-950);
  background-image: var(--section-photo);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

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

.area-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem 1.25rem;
  text-align: center;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--green-900);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.area-card::before {
  content: "";
  position: absolute;
  inset: auto -20% -40% auto;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--green-100);
}

.area-card span {
  position: relative;
}

a.area-card {
  display: block;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

a.area-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

/* Gallery */
.gallery {
  background: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 180px;
  gap: 1rem;
}

.gallery-item {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  background: var(--sand);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* Original masonry, 3 rows, every cell filled */
.gallery-item:nth-child(1) {
  grid-column: 1;
  grid-row: 1 / span 2;
}

.gallery-item:nth-child(2) {
  grid-column: 2;
  grid-row: 1;
}

.gallery-item:nth-child(3) {
  grid-column: 3;
  grid-row: 1;
}

.gallery-item:nth-child(4) {
  grid-column: 4;
  grid-row: 1;
}

.gallery-item:nth-child(5) {
  grid-column: 2 / span 2;
  grid-row: 2;
}

.gallery-item:nth-child(6) {
  grid-column: 4;
  grid-row: 2;
}

.gallery-item:nth-child(7) {
  grid-column: 1;
  grid-row: 3;
}

.gallery-item:nth-child(8) {
  grid-column: 2;
  grid-row: 3;
}

.gallery-item:nth-child(9) {
  grid-column: 3 / span 2;
  grid-row: 3;
}

/* Reviews */
.reviews {
  background:
    linear-gradient(180deg, var(--sand), var(--cream));
}

.reviews-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2.5rem;
  align-items: center;
}

.review-slider {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  box-shadow: var(--shadow);
  min-height: 280px;
}

.review-card {
  display: none;
}

.review-card.active {
  display: block;
  animation: fadeUp 0.35s ease;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.stars {
  color: #f0b429;
  letter-spacing: 0.12em;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.review-card blockquote {
  margin: 0;
}

.review-card p {
  font-size: 1.25rem;
  color: var(--green-950);
  font-weight: 500;
  line-height: 1.55;
}

.review-card footer {
  margin-top: 1.25rem;
  font-weight: 700;
  color: var(--green-700);
}

.review-controls {
  display: flex;
  gap: 0.6rem;
  margin-top: 1.75rem;
}

.review-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--cream);
  color: var(--green-800);
  font-size: 1.4rem;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.review-btn:hover {
  background: var(--green-700);
  color: var(--white);
}

/* FAQs */
.faqs-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2.5rem;
  align-items: start;
}

.faqs-intro img {
  margin-top: 1.5rem;
  border-radius: var(--radius-lg);
  height: 280px;
  width: 100%;
  object-fit: cover;
  box-shadow: var(--shadow-soft);
}

.accordion {
  display: grid;
  gap: 0.85rem;
}

.accordion-item {
  background: var(--white);
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  overflow: hidden;
}

.accordion-trigger {
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  padding: 1.15rem 1.25rem;
  font-weight: 700;
  color: var(--green-950);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
}

.accordion-trigger span {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--green-100);
  position: relative;
  flex-shrink: 0;
}

.accordion-trigger span::before,
.accordion-trigger span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--green-700);
  transform: translate(-50%, -50%);
}

.accordion-trigger span::before {
  width: 12px;
  height: 2px;
}

.accordion-trigger span::after {
  width: 2px;
  height: 12px;
  transition: transform 0.2s ease;
}

.accordion-item.open .accordion-trigger span::after {
  transform: translate(-50%, -50%) scaleY(0);
}

.accordion-panel {
  display: none;
  padding: 0 1.25rem 1.2rem;
}

.accordion-item.open .accordion-panel {
  display: block;
}

.accordion-panel p {
  margin: 0;
  color: var(--muted);
}

/* Contact */
.contact {
  padding-bottom: 5rem;
}

.contact-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: linear-gradient(135deg, var(--green-900), var(--green-700));
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.contact-copy,
.contact-form {
  padding: clamp(2rem, 4vw, 3.25rem);
}

.contact-copy h2 {
  color: var(--white);
}

.contact-copy > p {
  color: rgba(255, 255, 255, 0.82);
}

.contact-details {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
  display: grid;
  gap: 1rem;
}

.contact-details li {
  display: grid;
  gap: 0.2rem;
  color: rgba(255, 255, 255, 0.9);
}

.contact-details strong {
  font-size: 0.86rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-400);
}

.contact-details a:hover {
  text-decoration: underline;
}

.contact-form {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-form h3 {
  color: var(--white);
  margin-bottom: 1.25rem;
}

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

.contact-form label,
.lead-body label {
  display: grid;
  gap: 0.4rem;
  margin-bottom: 0.85rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  font-weight: 600;
}

.contact-form input,
.contact-form textarea,
.lead-body input,
.lead-body textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border-radius: 14px;
  padding: 0.9rem 1rem;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder,
.lead-body input::placeholder,
.lead-body textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.contact-form input:focus,
.contact-form textarea:focus,
.lead-body input:focus,
.lead-body textarea:focus {
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.14);
}

.form-note {
  margin: 0.85rem 0 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

.form-success {
  margin-top: 0.85rem;
  padding: 0.85rem 1rem;
  border-radius: 14px;
  background: rgba(216, 240, 207, 0.2);
  color: #e7ffe1;
  font-weight: 600;
}

/* Footer */
.site-footer {
  background: var(--green-950);
  color: rgba(255, 255, 255, 0.82);
  padding-top: 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.8fr 1fr;
  gap: 2rem;
  padding-bottom: 3rem;
}

.footer-brand img {
  filter: brightness(0) invert(1);
  margin-bottom: 1rem;
}

.footer-brand p,
.site-footer p {
  color: rgba(255, 255, 255, 0.7);
}

.site-footer h4 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

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

.site-footer a:hover {
  color: var(--green-400);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.25rem 0;
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 1rem;
}

.footer-bottom p {
  margin: 0;
}

/* Lead modal */
.lead-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 1.25rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lead-modal.open {
  opacity: 1;
  visibility: visible;
}

.lead-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(12, 22, 15, 0.62);
  backdrop-filter: blur(4px);
}

.lead-dialog {
  position: relative;
  width: min(100%, 860px);
  max-height: min(92vh, 720px);
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
  transform: translateY(18px) scale(0.98);
  transition: transform 0.3s ease;
}

.lead-modal.open .lead-dialog {
  transform: translateY(0) scale(1);
}

.lead-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--green-900);
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
}

.lead-media {
  min-height: 100%;
}

.lead-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 420px;
}

.lead-body {
  padding: 2rem 1.75rem;
  overflow-y: auto;
  max-height: min(92vh, 720px);
}

.lead-body h2 {
  font-size: 1.85rem;
  color: var(--green-950);
}

.lead-body > p {
  color: var(--muted);
}

.lead-body label {
  color: var(--green-900);
}

.lead-body input {
  background: var(--cream);
  border: 1px solid var(--line);
  color: var(--ink);
}

.lead-body input::placeholder {
  color: #8a978c;
}

.lead-body input:focus {
  background: var(--white);
  border-color: var(--green-500);
}

.lead-body .form-note {
  color: var(--muted);
}

.lead-body .form-success {
  background: var(--green-100);
  color: var(--green-800);
}

body.nav-open {
  overflow: hidden;
}

.form-error {
  margin-top: 0.85rem;
  padding: 0.85rem 1rem;
  border-radius: 14px;
  background: rgba(180, 40, 40, 0.22);
  color: #ffd6d6;
  font-weight: 600;
}

/* Responsive */
@media (max-width: 1240px) {
  :root {
    --header-h: 88px;
    --logo-h: 64px;
  }

  .nav {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  body.nav-open .site-header {
    backdrop-filter: none;
    background: transparent;
    border-bottom-color: transparent;
    box-shadow: none;
  }

  body.nav-open .header-inner > .logo,
  body.nav-open .header-actions {
    display: none;
  }

  .nav.open {
    display: flex;
    position: fixed;
    inset: 0;
    z-index: 220;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0;
    border: 0;
    box-shadow: none;
    height: 100%;
    height: 100dvh;
  }

  .nav.open .nav-drawer-head,
  .nav.open .nav-drawer-foot {
    display: flex;
    align-items: center;
    flex-shrink: 0;
  }

  .nav.open .nav-drawer-close {
    display: grid;
  }

  .nav.open .nav-drawer-head {
    justify-content: space-between;
    gap: 1rem;
    min-height: 72px;
    padding: 0.7rem 1.1rem;
    border-bottom: 1px solid var(--line);
  }

  .nav.open .nav-drawer-head .logo img {
    height: 52px;
    max-height: 52px;
  }

  .nav-drawer-close {
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 14px;
    background: var(--green-100);
    color: var(--green-800);
    display: grid;
    place-items: center;
    cursor: pointer;
  }

  .nav.open .nav-drawer-body {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    min-height: 0;
    overflow-y: auto;
    gap: 0;
    padding: 0.35rem 1.15rem 1rem;
  }

  .nav.open .nav-drawer-foot {
    flex-direction: column;
    align-items: stretch;
    gap: 0.7rem;
    padding: 1rem 1.15rem calc(1.15rem + env(safe-area-inset-bottom, 0px));
    border-top: 1px solid var(--line);
    background: var(--cream);
  }

  .nav-drawer-phone {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--green-800);
  }

  .nav-drawer-place {
    margin: 0;
    color: var(--muted);
    font-weight: 600;
  }

  .nav-socials {
    display: flex;
    gap: 0.65rem;
    list-style: none;
    margin: 0.15rem 0 0;
    padding: 0;
  }

  .nav-socials a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid var(--line);
    color: var(--green-800);
    display: grid;
    place-items: center;
  }

  .nav.open .nav-link,
  .nav.open .nav-item {
    padding: 0.75rem 0;
  }

  .nav.open .nav-item.has-dropdown,
  .nav.open .nav-item.has-mega {
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .nav.open .nav-parent {
    flex: 1;
  }

  .nav.open .nav-dropdown {
    position: static;
    transform: none;
    width: 100%;
    min-width: 0;
    margin-top: 0.5rem;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    box-shadow: none;
    border: 0;
    background: var(--cream);
    display: none;
    padding: 0.35rem;
  }

  .nav.open .nav-item.open .nav-dropdown {
    display: grid;
  }

  .nav.open .mega-menu {
    position: static;
    display: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    background: var(--white);
    box-shadow: none;
    border: 1px solid var(--line);
    width: 100%;
    margin-top: 0.5rem;
    border-radius: 16px;
  }

  .nav.open .nav-item.open .mega-menu {
    display: block;
  }

  .nav.open .mega-inner {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1rem;
  }

  .nav.open .mega-preview {
    display: none;
  }

  .nav.open .mega-contact {
    padding: 1.1rem 1rem 1.15rem;
  }

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

  .service-card {
    flex-basis: calc((100% - 1.25rem) / 2);
  }

  .about-grid,
  .process-grid,
  .experience-card,
  .reviews-layout,
  .faqs-grid,
  .contact-card,
  .lead-dialog,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .experience-media img,
  .lead-media img {
    min-height: 280px;
  }

  .contact-form {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 160px;
  }

  .gallery-item:nth-child(n) {
    grid-column: auto;
    grid-row: auto;
  }

  .gallery-item:nth-child(1) {
    grid-row: span 2;
  }

  .gallery-item:nth-child(9) {
    grid-column: span 2;
  }
}

@media (max-width: 720px) {
  :root {
    --header-h: 88px;
    --logo-h: 64px;
  }

  .phone-text {
    display: none;
  }

  .stats-row,
  .process-cards,
  .form-row,
  .areas-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    flex-basis: 100%;
  }

  .stats-row {
    margin-top: 1rem;
    width: 100%;
  }

  .about-media {
    min-height: 420px;
  }

  .about-img.main {
    height: 300px;
  }

  .about-img.secondary {
    height: 180px;
    bottom: 20px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }

  .gallery-item:nth-child(n) {
    grid-column: auto;
    grid-row: auto;
  }

  .footer-bottom .container {
    flex-direction: column;
  }

  .lead-media {
    display: none;
  }

  .about-expect-grid,
  .about-facts-grid,
  .about-discount-grid,
  .about-apart-grid {
    grid-template-columns: 1fr;
  }

  .page-hero {
    min-height: 420px;
    padding: 6.5rem 0 3.5rem;
  }
}

/* Inner page hero */
.page-hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: flex-end;
  padding: 8.5rem 0 4.5rem;
  color: var(--white);
  overflow: hidden;
}

.page-hero-bg,
.page-hero-overlay {
  position: absolute;
  inset: 0;
}

.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero-overlay {
  background: linear-gradient(180deg, rgba(19, 38, 26, 0.35) 0%, rgba(19, 38, 26, 0.72) 100%);
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 50rem;
}

.page-hero h1 {
  color: var(--white);
  font-size: clamp(2.4rem, 4.2vw, 3.75rem);
  margin-bottom: 0.7rem;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.18rem;
  max-width: 40rem;
}

.eyebrow.light {
  color: var(--white);
}

.about-quote-band {
  background: var(--green-800);
  color: var(--white);
  padding: 3rem 0;
  text-align: center;
}

.about-quote-band p {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  font-weight: 700;
  max-width: 52rem;
  margin-inline: auto;
}

.about-apart-lead,
.about-mission {
  max-width: 52rem;
  margin: 0 auto 2rem;
  text-align: center;
  color: var(--muted);
}

.about-apart-grid,
.about-discount-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.15rem;
}

.about-apart-card,
.about-discount-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem 1.4rem;
  box-shadow: var(--shadow-soft);
}

.about-apart-card h3,
.about-discount-card h3 {
  color: var(--green-950);
  font-size: 1.22rem;
  margin-bottom: 0.4rem;
}

.about-apart-card p,
.about-discount-card p {
  margin: 0;
  color: var(--muted);
}

.about-facts {
  padding-top: 0;
}

.about-facts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}

.about-fact {
  background: var(--green-950);
  color: var(--white);
  border-radius: var(--radius);
  padding: 1.7rem 1.4rem;
}

.about-fact span {
  display: block;
  font-size: 0.95rem;
  opacity: 0.75;
  margin-bottom: 0.45rem;
}

.about-fact strong {
  font-family: var(--display);
  font-size: 1.7rem;
}

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

.about-discount-card strong {
  display: block;
  font-family: var(--display);
  font-size: 2.2rem;
  color: var(--green-700);
  margin-bottom: 0.35rem;
}

.about-expect-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: start;
}

.about-expect-note {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about-expect-note img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.about-expect-note p,
.about-expect-note .btn {
  margin: 1.25rem 1.4rem;
}

.about-expect-note .btn {
  margin-top: 0;
  margin-bottom: 1.6rem;
}

.areas-more {
  margin: 1.75rem 0 0;
  text-align: center;
}

.areas-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}

.areas-page-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem 1.4rem 1.4rem;
  box-shadow: var(--shadow-soft);
}

.areas-page-card h3 {
  color: var(--green-950);
  font-size: 1.25rem;
  margin-bottom: 0.45rem;
}

.areas-page-card p {
  color: var(--muted);
  margin-bottom: 1rem;
}

@media (max-width: 980px) {
  .areas-page-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .areas-page-grid {
    grid-template-columns: 1fr;
  }
}

.reviews-hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
  margin-top: 0.5rem;
}

.google-review-link {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--white);
  font-weight: 600;
}

.google-badge {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}

.google-badge svg {
  width: 26px;
  height: 26px;
  display: block;
}

.reviews-page-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.15rem;
}

.reviews-page-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem 1.4rem;
  box-shadow: var(--shadow-soft);
}

.reviews-page-card.featured {
  grid-column: 1 / -1;
  background: var(--green-950);
  color: var(--white);
  border-color: transparent;
}

.reviews-page-card .stars {
  color: #e0b400;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
}

.reviews-page-card.featured .stars {
  color: var(--green-400);
}

.reviews-page-card blockquote {
  margin: 0;
}

.reviews-page-card p {
  color: var(--ink);
  margin-bottom: 1rem;
}

.reviews-page-card.featured p {
  color: rgba(255, 255, 255, 0.94);
  font-size: 1.08rem;
}

.reviews-page-card footer {
  font-weight: 700;
  color: var(--green-800);
}

.reviews-page-card.featured footer {
  color: var(--green-400);
}

@media (max-width: 720px) {
  .reviews-page-grid {
    grid-template-columns: 1fr;
  }
}

.faqs-page-wrap {
  max-width: 860px;
  margin-inline: auto;
}

.careers-page {
  padding-top: 2.5rem;
}

.file-upload-box {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 52px;
  border: 1px dashed rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  overflow: hidden;
}

.file-upload input[type="file"] {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  padding: 0;
  border: 0;
  background: transparent;
}

.file-upload-name {
  padding: 0.9rem 1rem;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 500;
  font-size: 0.92rem;
  pointer-events: none;
}

.page-hero-inner > .btn {
  margin-top: 1.25rem;
}

.service-archive-card .service-num {
  display: inline-block;
  margin-bottom: 0.45rem;
}

/* Blog archive */
.blog-archive {
  padding-top: 4.5rem;
}

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

.blog-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.blog-card.featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  min-height: 360px;
}

.blog-card-media {
  display: block;
  overflow: hidden;
  min-height: 200px;
  background: var(--sand);
}

.blog-card.featured .blog-card-media {
  min-height: 100%;
}

.blog-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.blog-card:hover .blog-card-media img {
  transform: scale(1.05);
}

.blog-card-body {
  display: flex;
  flex-direction: column;
  padding: 1.35rem 1.4rem 1.45rem;
  flex: 1;
}

.blog-card.featured .blog-card-body {
  justify-content: center;
  padding: 2.25rem 2.1rem;
}

.blog-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem 0.85rem;
  margin-bottom: 0.7rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--muted);
}

.blog-cat {
  display: inline-flex;
  align-items: center;
  padding: 0.28rem 0.7rem;
  border-radius: 999px;
  background: var(--green-100);
  color: var(--green-800);
}

.blog-cat:hover {
  background: var(--green-700);
  color: var(--white);
}

.blog-card-title {
  font-family: var(--display);
  font-size: 1.28rem;
  line-height: 1.3;
  margin: 0 0 0.65rem;
}

.blog-card.featured .blog-card-title {
  font-size: clamp(1.6rem, 2.6vw, 2.15rem);
}

.blog-card-title a {
  color: var(--green-950);
}

.blog-card-title a:hover {
  color: var(--green-700);
}

.blog-card-excerpt {
  color: var(--muted);
  margin: 0 0 1.1rem;
  flex: 1;
}

.blog-empty {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

.blog-empty h2 {
  color: var(--green-950);
  margin-bottom: 0.7rem;
}

.blog-empty p {
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.pagination,
.nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2.75rem;
}

.page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  padding: 0 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--green-900);
  font-weight: 700;
}

.page-numbers.current,
.page-numbers:hover {
  background: var(--green-700);
  border-color: var(--green-700);
  color: var(--white);
}

/* Single post */
.single-hero {
  min-height: 460px;
}

.single-hero .page-hero-inner {
  max-width: 52rem;
}

.single-back {
  display: inline-flex;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 700;
}

.single-back:hover {
  color: var(--white);
}

.single-hero .blog-meta {
  color: rgba(255, 255, 255, 0.82);
}

.single-hero .blog-cat {
  background: rgba(255, 255, 255, 0.16);
  color: var(--white);
}

.single-hero .blog-cat:hover {
  background: var(--white);
  color: var(--green-800);
}

.single-body-wrap {
  padding-top: 4rem;
}

.article-body .service-cta {
  margin: 1.75rem 0 2.4rem;
}

.article-body .accordion {
  margin: 1.5rem 0 2rem;
}

.article-body .accordion-item {
  background: var(--cream);
}

.article-body {
  max-width: 48rem;
  margin: 0 auto;
  color: #3d4a3f;
  font-size: 1.15rem;
  line-height: 1.8;
}

.article-body > *:first-child {
  margin-top: 0;
}

.article-body h2,
.article-body h3,
.article-body h4 {
  font-family: var(--display);
  color: var(--green-950);
  line-height: 1.25;
  margin: 2.2rem 0 0.75rem;
}

.article-body h2 {
  font-size: clamp(1.55rem, 2.4vw, 2rem);
}

.article-body h3 {
  font-size: 1.3rem;
}

.article-body p,
.article-body ul,
.article-body ol {
  margin: 0 0 1.15rem;
}

.article-body ul,
.article-body ol {
  padding-left: 1.3rem;
}

.article-body li + li {
  margin-top: 0.35rem;
}

.article-body a {
  color: var(--green-700);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.article-body a.btn {
  color: var(--white);
  text-decoration: none;
}

.article-body a.btn-primary {
  color: var(--white);
}

.article-body a.btn-light {
  color: var(--green-900);
}

.article-body img,
.article-body figure {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius);
  margin: 1.6rem 0;
}

.article-body .aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.article-body .alignleft {
  float: left;
  margin: 0 1.2rem 1rem 0;
}

.article-body .alignright {
  float: right;
  margin: 0 0 1rem 1.2rem;
}

.article-body figcaption {
  margin-top: 0.55rem;
  font-size: 0.88rem;
  color: var(--muted);
  text-align: center;
}

.article-body blockquote {
  margin: 1.6rem 0;
  padding: 0.2rem 0 0.2rem 1.2rem;
  border-left: 4px solid var(--green-600);
  color: var(--green-950);
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 600;
}

.article-body .wp-block-quote {
  background: var(--green-50);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 1.1rem 1.3rem;
}

.article-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.4rem 0;
}

.article-body th,
.article-body td {
  border: 1px solid var(--line);
  padding: 0.7rem 0.85rem;
  text-align: left;
}

.single-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  max-width: 48rem;
  margin: 2.25rem auto 0;
}

.single-tags span {
  font-weight: 700;
  color: var(--green-950);
  margin-right: 0.2rem;
}

.single-tags a {
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  background: var(--green-100);
  color: var(--green-800);
  font-size: 0.85rem;
  font-weight: 600;
}

.single-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  max-width: 48rem;
  margin: 2.5rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

.single-nav-link {
  display: grid;
  gap: 0.25rem;
  padding: 1.1rem 1.2rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

.single-nav-link.next {
  text-align: right;
}

.single-nav-link span {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green-600);
}

.single-nav-link strong {
  color: var(--green-950);
  font-size: 1rem;
}

.related-posts {
  padding-top: 0;
}

.related-grid .blog-card.featured {
  grid-column: auto;
  display: flex;
  min-height: 0;
}

.comments-area {
  max-width: 48rem;
  margin: 3rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

.comments-title,
.comment-reply-title {
  color: var(--green-950);
  font-size: 1.4rem;
  margin-bottom: 1.1rem;
}

.comment-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
}

.comment-list .comment {
  margin-bottom: 1.25rem;
}

.comment-body {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 1.1rem 1.2rem;
}

.comment-author {
  font-weight: 700;
  color: var(--green-950);
}

.comment-form label {
  display: grid;
  gap: 0.4rem;
  margin-bottom: 0.85rem;
  color: var(--green-900);
  font-size: 0.9rem;
  font-weight: 600;
}

.comment-form input,
.comment-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  border-radius: 14px;
  padding: 0.9rem 1rem;
}

.comment-form input:focus,
.comment-form textarea:focus {
  border-color: var(--green-500);
  outline: none;
}

@media (max-width: 980px) {
  .blog-archive-grid {
    grid-template-columns: 1fr 1fr;
  }

  .blog-card.featured {
    grid-template-columns: 1fr;
  }

  .blog-card.featured .blog-card-media {
    min-height: 240px;
  }
}

@media (max-width: 720px) {
  .blog-archive-grid,
  .single-nav {
    grid-template-columns: 1fr;
  }

  .single-nav-link.next {
    text-align: left;
  }
}

@media (max-width: 980px) {
  .about-apart-grid,
  .about-discount-grid,
  .about-facts-grid,
  .about-expect-grid {
    grid-template-columns: 1fr;
  }
}

/* Single service landing */
.svc-hero {
  min-height: 520px;
}

.svc-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.35rem;
}

.svc-intro {
  padding-top: 5rem;
}

.svc-intro-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.svc-intro-copy h2 {
  font-size: clamp(2rem, 3.4vw, 2.8rem);
  color: var(--green-950);
}

.svc-intro-copy .entry-content p {
  color: var(--muted);
  font-size: 1.08rem;
}

.svc-intro-copy .btn {
  margin-top: 0.5rem;
}

.svc-intro-media {
  position: relative;
  min-height: 520px;
}

.svc-intro-blob {
  position: absolute;
  inset: 10% 6% 8% 14%;
  background: linear-gradient(160deg, var(--green-400), var(--green-800));
  border-radius: 58% 42% 48% 52% / 42% 48% 52% 58%;
}

.svc-intro-img {
  position: absolute;
  object-fit: cover;
  border-radius: 28px;
  border: 6px solid var(--white);
  box-shadow: var(--shadow);
}

.svc-intro-img.main {
  width: 74%;
  height: 400px;
  top: 0;
  right: 0;
}

.svc-intro-img.secondary {
  width: 52%;
  height: 240px;
  left: 0;
  bottom: 36px;
}

.svc-intro-badge {
  position: absolute;
  left: 6%;
  top: 38%;
  background: var(--white);
  border-radius: 20px;
  padding: 1rem 1.15rem;
  box-shadow: var(--shadow);
  z-index: 2;
}

.svc-intro-badge strong {
  display: block;
  font-family: var(--display);
  color: var(--green-700);
  font-size: 1.15rem;
}

.svc-intro-badge span {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 600;
}

.svc-includes {
  background: var(--white);
}

.svc-include-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.svc-include-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.svc-include-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.svc-include-media {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.svc-include-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.svc-include-card:hover .svc-include-media img {
  transform: scale(1.07);
}

.svc-include-num {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  background: var(--white);
  color: var(--green-700);
  font-family: var(--display);
  font-weight: 800;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
}

.svc-include-body {
  padding: 1.35rem 1.3rem 1.5rem;
}

.svc-include-body h3 {
  font-size: 1.22rem;
  color: var(--green-950);
  margin-bottom: 0.4rem;
}

.svc-include-body p {
  margin: 0;
  color: var(--muted);
}

.svc-visit-top {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: center;
  margin-bottom: 2rem;
}

.svc-visit-copy p {
  color: var(--muted);
}

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

.svc-visit-photo img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.svc-visit-photo:hover img {
  transform: scale(1.05);
}

.svc-step-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}

.svc-step-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem 1.35rem;
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.svc-step-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.svc-step-num {
  display: inline-block;
  font-family: var(--display);
  font-weight: 800;
  color: var(--green-400);
  margin-bottom: 0.55rem;
}

.svc-step-card h3 {
  font-size: 1.18rem;
  color: var(--green-950);
  margin-bottom: 0.4rem;
}

.svc-step-card p {
  margin: 0;
  color: var(--muted);
}

.svc-results {
  padding-top: 0;
}

.svc-result-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}

.svc-result-card {
  background: var(--green-950);
  color: var(--white);
  border-radius: var(--radius);
  padding: 1.7rem 1.45rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.svc-result-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.svc-result-card h3 {
  color: var(--white);
  font-size: 1.25rem;
  margin-bottom: 0.4rem;
}

.svc-result-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.svc-faqs {
  background: var(--white);
}

/* Location / Areas singles */
.loc-page {
  overflow: visible;
}

.loc-hero.page-hero {
  overflow: hidden;
}

.loc-stats-wrap {
  position: relative;
  z-index: 2;
  margin-top: -2px;
  padding: 1.75rem 0 0;
  background: var(--cream);
}

.loc-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.loc-stat {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.35rem 1.5rem;
  border-right: 1px solid var(--line);
}

.loc-stat:last-child {
  border-right: 0;
}

.loc-icon,
.loc-stat .loc-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--green-800);
  color: #fff;
  line-height: 0;
}

.loc-icon svg {
  display: block;
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  overflow: visible;
}

.loc-icon svg,
.loc-icon svg * {
  stroke: #fff !important;
  color: #fff;
}

.loc-stat strong {
  display: block;
  font-family: var(--display);
  color: var(--green-950);
  font-size: 1.05rem;
  line-height: 1.25;
  margin-bottom: 0.15rem;
}

.loc-stat > div span {
  display: block;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.4;
}

.loc-essay {
  background: var(--white);
  padding-top: 5rem;
}

.loc-essay-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
}

.loc-essay-copy h2 {
  color: var(--green-950);
  font-size: clamp(1.85rem, 3vw, 2.55rem);
  max-width: 18ch;
}

.loc-essay-copy > p {
  color: var(--muted);
  max-width: 48ch;
}

.loc-checks {
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
}

.loc-checks li {
  position: relative;
  padding: 0.7rem 0 0.7rem 1.7rem;
  border-top: 1px solid var(--line);
  color: var(--ink);
}

.loc-checks li:last-child {
  padding-bottom: 0;
}

.loc-checks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.05rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green-500);
}

.loc-points {
  display: grid;
  gap: 1rem;
}

.loc-point {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 1rem;
  align-items: start;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.2rem 1.25rem;
}

.loc-point h3 {
  color: var(--green-950);
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}

.loc-point p {
  margin: 0;
  color: var(--muted);
}

.loc-schedule {
  background: var(--cream);
}

.loc-schedule-panel {
  background: var(--green-950);
  color: var(--white);
  border-radius: var(--radius-xl);
  padding: clamp(1.75rem, 3vw, 2.75rem);
}

.loc-schedule-head {
  max-width: 38rem;
  margin-bottom: 1.5rem;
}

.loc-schedule h2 {
  color: var(--white);
  font-size: clamp(1.7rem, 2.8vw, 2.3rem);
}

.loc-schedule-photo {
  margin: 0 0 1.5rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 220px;
}

.loc-schedule-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.loc-sched-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 1.25rem 1.2rem 1.3rem;
}

.loc-sched-card .loc-icon {
  margin-bottom: 0.85rem;
}

.loc-sched-card h3 {
  color: var(--white);
  font-size: 1.08rem;
  margin-bottom: 0.4rem;
}

.loc-sched-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.loc-sched-foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.5rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.loc-schedule-close {
  margin: 0;
  max-width: 46rem;
  font-weight: 600;
  color: var(--white);
}

.loc-break {
  background: var(--white);
}

.loc-break .section-head h2 {
  max-width: 24ch;
  margin-inline: auto;
}

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

.loc-break-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem 1.3rem 1.35rem;
}

.loc-num {
  display: inline-block;
  font-family: var(--display);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--green-600);
  margin-bottom: 0.65rem;
}

.loc-break-card h3 {
  font-size: 1.15rem;
  color: var(--green-950);
  margin-bottom: 0.35rem;
}

.loc-break-card p {
  margin: 0;
  color: var(--muted);
}

.loc-break-close {
  margin: 2rem auto 0;
  max-width: 62ch;
  text-align: center;
  font-weight: 600;
  color: var(--green-900);
}

.loc-nearby {
  background: var(--cream);
}

.loc-chip-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7rem;
}

.loc-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.7rem 1.1rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--white);
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--green-900);
  transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.loc-chip:hover {
  background: var(--green-950);
  border-color: var(--green-950);
  color: var(--white);
  transform: translateY(-2px);
}

@media (max-width: 980px) {
  .loc-stats,
  .loc-essay-grid,
  .loc-sched-grid,
  .loc-break-grid {
    grid-template-columns: 1fr;
  }

  .loc-stat {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .loc-stat:last-child {
    border-bottom: 0;
  }

  .loc-schedule-photo {
    height: 180px;
  }
}

@media (max-width: 1100px) {
  .svc-intro-grid,
  .svc-visit-top,
  .svc-include-grid,
  .svc-step-grid,
  .svc-result-grid {
    grid-template-columns: 1fr;
  }

  .svc-intro-media {
    min-height: 460px;
  }
}

/* Contact Us page */
.contact-info {
  padding-bottom: 0;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.15rem;
}

.contact-info-card {
  background: var(--green-950);
  color: var(--white);
  border-radius: var(--radius);
  padding: 1.7rem 1.4rem;
}

.contact-info-card span {
  display: block;
  font-size: 0.95rem;
  opacity: 0.75;
  margin-bottom: 0.45rem;
}

.contact-info-card strong,
.contact-info-card a {
  font-family: var(--display);
  font-size: 1.25rem;
  line-height: 1.25;
  color: var(--white);
}

.contact-info-card a:hover {
  text-decoration: underline;
}

.contact-hours-list {
  display: grid;
  gap: 0.35rem;
}

.contact-socials {
  display: flex;
  gap: 0.75rem;
  list-style: none;
  padding: 0;
  margin: 1.75rem 0 0;
}

.contact-socials a {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.contact-socials a:hover {
  background: rgba(255, 255, 255, 0.22);
}

.contact-map-frame {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  background: var(--green-950);
}

.contact-map-frame iframe {
  display: block;
  width: 100%;
  height: 440px;
  border: 0;
}

@media (max-width: 1100px) {
  .contact-info-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 720px) {
  .contact-info-grid {
    grid-template-columns: 1fr;
  }

  .contact-map-frame iframe {
    height: 320px;
  }
}

/* Gallery page — before/after sliders and videos */
.gallery-page {
  background: var(--white);
}

.gallery-page + .gallery-page {
  padding-top: 0;
}

.gallery-section-heading {
  margin: 0 0 1.75rem;
}

.gallery-section-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
  font: inherit;
  color: inherit;
}

.gallery-section-toggle span:first-child {
  min-width: 0;
  font-size: clamp(2.15rem, 3.4vw, 3.15rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--green-950);
}

.gallery-section-intro {
  margin: 0 0 1.75rem;
  color: var(--muted);
}

.gallery-section-toggle-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--green-100);
  position: relative;
  flex-shrink: 0;
}

.gallery-section-toggle-icon::before,
.gallery-section-toggle-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--green-700);
  transform: translate(-50%, -50%);
}

.gallery-section-toggle-icon::before {
  width: 14px;
  height: 2px;
}

.gallery-section-toggle-icon::after {
  width: 2px;
  height: 14px;
  transition: transform 0.2s ease;
}

.gallery-page.is-open .gallery-section-toggle-icon::after {
  transform: translate(-50%, -50%) scaleY(0);
}

.gallery-section-body {
  display: none;
}

.gallery-page.is-open .gallery-section-body {
  display: block;
}

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

.gallery-compare-item {
  margin: 0;
}

.gallery-compare-item figcaption {
  margin-top: 0.65rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.ba-compare {
  --ba-pos: 50%;
  --ba-full: 100%;
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  background: var(--sand);
  cursor: ew-resize;
  user-select: none;
  touch-action: none;
}

.ba-compare-after,
.ba-compare-before {
  position: absolute;
  inset: 0;
}

.ba-compare-before {
  width: var(--ba-pos);
  overflow: hidden;
}

.ba-compare img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-width: none;
}

.ba-compare-before img {
  width: var(--ba-full);
}

.ba-compare-tag {
  position: absolute;
  top: 0.85rem;
  z-index: 2;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  background: rgba(19, 38, 26, 0.72);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.ba-compare-tag-before {
  left: 0.85rem;
}

.ba-compare-tag-after {
  right: 0.85rem;
}

.ba-compare-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--ba-pos);
  width: 44px;
  transform: translateX(-50%);
  z-index: 3;
}

.ba-compare-handle::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background: var(--white);
  transform: translateX(-50%);
  box-shadow: 0 0 0 1px rgba(19, 38, 26, 0.12);
}

.ba-compare-knob {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--white);
  transform: translate(-50%, -50%);
  box-shadow: var(--shadow-soft);
}

.ba-compare-knob::before,
.ba-compare-knob::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  transform: translateY(-50%);
}

.ba-compare-knob::before {
  left: 11px;
  border-right: 7px solid var(--green-800);
}

.ba-compare-knob::after {
  right: 11px;
  border-left: 7px solid var(--green-800);
}

.gallery-video-list {
  display: grid;
  gap: 1.5rem;
  margin-top: 1.75rem;
}

.gallery-compares + .gallery-video-list {
  margin-top: 2rem;
}

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

.gallery-video-pair figure {
  margin: 0;
}

.gallery-video-pair figcaption {
  margin-top: 0.65rem;
  font-weight: 700;
  color: var(--ink);
}

.gallery-video-frame {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--green-950);
  box-shadow: var(--shadow-soft);
}

.gallery-video-pair.is-landscape .gallery-video-frame {
  aspect-ratio: 16 / 9;
}

.gallery-video-pair.is-portrait {
  justify-content: center;
}

.gallery-video-pair.is-portrait .gallery-video-frame {
  aspect-ratio: 9 / 16;
  max-width: 320px;
  margin-inline: auto;
}

.gallery-video-frame video,
.gallery-video-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
}

@media (max-width: 900px) {
  .gallery-compares,
  .gallery-video-pair {
    grid-template-columns: 1fr;
  }

  .gallery-video-pair.is-portrait .gallery-video-frame {
    max-width: 280px;
  }
}
