:root {
  --ink: #17211b;
  --muted: #627067;
  --paper: #ffffff;
  --paper-2: #ffffff;
  --leaf: #00703c;
  --leaf-dark: #123821;
  --leaf-deep: #123821;
  --leaf-soft: #e8f0e9;
  --gold: #d8a64a;
  --stone: #d7d1c4;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(23, 33, 27, 0.14);
  --shadow-soft: 0 14px 34px rgba(23, 33, 27, 0.11);
  --shadow-dark: 0 24px 58px rgba(0, 0, 0, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 1px 0 rgba(23, 33, 27, 0.08);
}

.top-strip {
  background: var(--leaf-dark);
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-strip__track {
  min-height: 38px;
  display: flex;
  align-items: center;
  width: max-content;
  animation: top-strip-scroll 34s linear infinite;
}

.top-strip:hover .top-strip__track {
  animation-play-state: paused;
}

.top-strip__content {
  display: flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
}

.top-strip__content > * {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 22px;
  font-weight: 800;
}

.top-strip__content > *::before {
  content: "";
  width: 5px;
  height: 5px;
  margin-right: 22px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.9;
}

.top-strip__content > *:first-child::before {
  display: none;
}

.top-strip a {
  color: var(--white);
}

@keyframes top-strip-scroll {
  from {
    transform: translateX(0);
  }

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

.main-nav {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(18px);
}

.nav-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-logo {
  width: clamp(190px, 24vw, 285px);
  height: auto;
  max-height: 58px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: #314037;
  font-weight: 700;
  font-size: 14px;
}

.nav-links a {
  position: relative;
  border-radius: 8px;
  transition: color 160ms ease, background-color 160ms ease;
}

.nav-links a:not(.nav-cta) {
  padding: 10px 2px;
}

.nav-links a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 2px;
  right: 2px;
  bottom: 3px;
  height: 3px;
  border-radius: 999px;
  background: var(--leaf);
  opacity: 0;
  transform: scaleX(0.45);
  transition: opacity 160ms ease, transform 160ms ease;
}

.nav-links a:hover,
.nav-links a.is-active {
  color: var(--leaf);
}

.nav-links a.is-active:not(.nav-cta)::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 8px;
  font-weight: 800;
}

.nav-cta {
  background: var(--leaf);
  color: var(--white);
}

.nav-cta.is-active {
  background: var(--leaf-dark);
  color: var(--white);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 8px;
  background: var(--leaf-dark);
  padding: 10px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: white;
  margin: 0;
  border-radius: 999px;
}

.hero {
  position: relative;
  min-height: 620px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--leaf-deep);
}

.hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(18, 56, 33, 0.88), rgba(18, 56, 33, 0.48) 43%, rgba(18, 56, 33, 0.06)),
    linear-gradient(0deg, rgba(18, 56, 33, 0.22), rgba(18, 56, 33, 0));
}

.hero-content {
  position: relative;
  color: var(--white);
  padding: 64px 0 108px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0;
}

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

h1 {
  max-width: 760px;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 0.98;
  margin-bottom: 22px;
}

.hero-content p:not(.eyebrow) {
  max-width: 610px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 19px;
}

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

.button-primary {
  border: 2px solid var(--gold);
  background: var(--gold);
  color: #21170a;
}

.button-ghost {
  border: 2px solid rgba(255, 255, 255, 0.82);
  color: white;
}

.section-pad {
  padding: 54px 0;
}

.section-heading {
  position: relative;
}

.section-heading .eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(216, 166, 74, 0.14);
  color: #b27a1f;
}

.section-heading h2::after {
  content: "";
  display: block;
  width: 94px;
  height: 4px;
  margin-top: 16px;
  border-radius: 999px;
  background: var(--leaf);
}

.trust-band {
  margin-top: -64px;
  position: relative;
  z-index: 2;
  padding: 0;
}

.trust-band::before {
  content: "";
  position: absolute;
  inset: 44px 0 0;
  background:
    linear-gradient(180deg, rgba(8, 14, 10, 0), rgba(255, 255, 255, 0.96) 78%),
    linear-gradient(90deg, rgba(45, 107, 63, 0.16), rgba(216, 166, 74, 0.08));
  z-index: -1;
}

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

.trust-card {
  position: relative;
  display: grid;
  grid-template-rows: 112px 18px 52px 38px;
  row-gap: 8px;
  align-items: center;
  justify-items: center;
  min-height: 278px;
  padding: 22px 20px 22px;
  text-align: center;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(18, 56, 33, 0.92), rgba(18, 56, 33, 0.98)),
    radial-gradient(circle at 50% 0, rgba(216, 166, 74, 0.14), transparent 42%);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  box-shadow: var(--shadow-dark);
  overflow: hidden;
  backdrop-filter: blur(8px);
}

.trust-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 30%),
    radial-gradient(circle at 20% 16%, rgba(216, 166, 74, 0.12), transparent 34%);
  pointer-events: none;
}

.trust-title,
.trust-stars,
.trust-card h3,
.trust-card p,
.trust-card a {
  position: relative;
  z-index: 1;
}

.trust-title {
  height: 112px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--white);
  font-weight: 800;
  line-height: 0.98;
  text-transform: uppercase;
  letter-spacing: 0;
}

.trust-title strong,
.trust-title em {
  display: block;
  font-size: clamp(32px, 3vw, 44px);
  font-style: normal;
  letter-spacing: 0;
}

.trust-title em {
  color: var(--gold);
}

.trust-title--rating {
  display: grid;
  grid-template-columns: auto auto;
  grid-template-rows: auto auto;
  gap: 8px;
  height: 112px;
  align-content: center;
}

.trust-title--rating > span:last-child {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.trust-number {
  color: var(--gold);
  font-size: clamp(68px, 5.4vw, 92px);
  line-height: 0.72;
  font-style: normal;
  font-weight: 800;
}

.trust-title--rating strong,
.trust-title--rating em {
  color: var(--white);
  font-size: clamp(25px, 2.2vw, 34px);
}

.trust-title--area strong {
  font-size: clamp(24px, 2.3vw, 32px);
}

.trust-stars {
  grid-column: 1 / -1;
  color: var(--gold);
  font-size: 24px;
  line-height: 1;
  margin: 0;
  letter-spacing: 2px;
}

.trust-card h3 {
  align-self: center;
  margin: 0;
  color: var(--leaf-soft);
  font-size: 16px;
  line-height: 1.1;
  text-transform: uppercase;
}

.trust-card p {
  max-width: 260px;
  min-height: 0;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  line-height: 1.35;
}

.trust-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 22px;
  border-radius: 7px;
  background: var(--leaf);
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  box-shadow: 0 10px 22px rgba(0, 112, 60, 0.24);
  transition: transform 0.2s ease, background 0.2s ease;
}

.trust-card a:hover {
  transform: translateY(-2px);
  background: var(--leaf-dark);
}

@media (max-width: 1180px) and (min-width: 921px) {
  .trust-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 72px;
  align-items: start;
}

h2 {
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.05;
  margin-bottom: 18px;
}

.intro p,
.contact p {
  color: var(--muted);
}

.intro-showcase {
  position: relative;
  overflow: hidden;
  padding: 26px 0 22px;
  background:
    linear-gradient(90deg, rgba(0, 112, 60, 0.05) 0 1px, transparent 1px 100%),
    linear-gradient(180deg, #ffffff, #f8fbf8);
  background-size: 72px 72px, 100% 100%;
  color: var(--ink);
}

.intro-showcase::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: rgba(23, 33, 27, 0.08);
}

.intro-showcase__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(690px, 1.22fr) minmax(320px, 0.78fr);
  gap: 24px;
  align-items: center;
  min-height: 270px;
}

.intro-showcase__copy {
  padding-top: 0;
}

.intro-showcase__copy h2 {
  max-width: 820px;
  color: var(--ink);
  font-size: clamp(34px, 3.35vw, 46px);
  line-height: 1.08;
}

.intro-showcase__copy h2 br {
  display: block;
}

.intro-showcase__copy h2::after {
  content: "";
  display: block;
  width: 118px;
  height: 4px;
  margin: 14px 0 12px;
  border-radius: 999px;
  background: var(--leaf);
}

.intro-showcase .eyebrow {
  color: var(--leaf-dark);
}

.intro-showcase p {
  max-width: 780px;
  color: var(--muted);
  font-size: 15px;
}

.intro-showcase__media {
  position: relative;
  min-height: 270px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-right: 0;
}

.intro-showcase__media::after {
  content: "";
  position: absolute;
  left: 12%;
  right: 7%;
  bottom: 10px;
  height: 34px;
  border-radius: 999px;
  background: rgba(23, 33, 27, 0.18);
  filter: blur(18px);
}

.intro-showcase__media img {
  position: relative;
  z-index: 1;
  width: min(100%, 500px);
  max-height: 260px;
  object-fit: contain;
}

.text-link {
  display: inline-flex;
  color: var(--leaf);
  font-weight: 800;
  border-bottom: 2px solid currentColor;
  padding-bottom: 3px;
}

.services {
  background: var(--leaf-dark);
  color: var(--white);
  padding-top: 42px;
}

.services .section-heading {
  max-width: 760px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 22px;
}

.service-card {
  position: relative;
  min-height: 252px;
  padding: 0;
  border-radius: 8px;
  background: var(--leaf-deep);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: block;
  overflow: hidden;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22);
  isolation: isolate;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(7, 10, 8, 0.02), rgba(7, 10, 8, 0.14) 42%, rgba(7, 10, 8, 0.88)),
    linear-gradient(90deg, rgba(7, 10, 8, 0.56), rgba(7, 10, 8, 0.04) 64%);
  pointer-events: none;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 112, 60, 0.62);
  box-shadow: var(--shadow-dark);
}

.service-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transform: scale(1.02);
  transition: transform 220ms ease;
}

.service-card:hover .service-card__image {
  transform: scale(1.07);
}

.service-card > span,
.service-card p {
  display: none;
}

.service-card h3 {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 28px;
  z-index: 2;
  margin: 0;
  color: var(--white);
  font-size: 23px;
  line-height: 1.05;
  text-transform: uppercase;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.45);
}

.service-card h3::after {
  content: "";
  display: block;
  width: 34px;
  height: 3px;
  margin-top: 10px;
  border-radius: 999px;
  background: var(--leaf);
}

.services .section-heading h2 {
  color: rgba(255, 255, 255, 0.88);
}

.service-page-hero {
  position: relative;
  min-height: 560px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--leaf-dark);
  color: var(--white);
}

.service-page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.36;
}

.service-page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 18, 10, 0.92), rgba(7, 18, 10, 0.56), rgba(7, 18, 10, 0.15));
}

.service-page-hero .container {
  position: relative;
  z-index: 1;
}

.service-page-hero h1 {
  max-width: 820px;
}

.service-page-hero p:not(.eyebrow) {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 19px;
}

.service-overview {
  background: var(--paper);
}

.service-overview-grid,
.service-detail-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 52px;
  align-items: start;
}

.service-checklist,
.service-faq-list,
.service-benefits {
  display: grid;
  gap: 14px;
}

.service-checklist article,
.service-benefits article,
.service-faq-list details {
  background: var(--white);
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 1px 0 rgba(23, 33, 27, 0.08);
}

.service-checklist h3,
.service-benefits h3 {
  margin-bottom: 8px;
}

.service-checklist p,
.service-benefits p,
.service-faq-list p {
  color: var(--muted);
  margin-bottom: 0;
}

.service-photos {
  background:
    radial-gradient(circle at 88% 8%, rgba(216, 166, 74, 0.14), transparent 28%),
    var(--leaf-dark);
  color: var(--white);
  padding-top: 58px;
}

.service-photos .section-heading {
  max-width: 780px;
}

.service-photos .section-heading h2 {
  color: var(--white);
}

.service-photo-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.85fr 0.85fr;
  grid-template-rows: repeat(2, minmax(220px, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.service-photo {
  position: relative;
  min-height: 230px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--leaf-dark);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: var(--shadow-dark);
}

.service-photo--featured {
  grid-row: span 2;
  min-height: 500px;
}

.service-photo:nth-child(4) {
  grid-column: span 2;
}

.service-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.service-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(18, 56, 33, 0.02), rgba(18, 56, 33, 0.74));
  pointer-events: none;
}

.service-photo figcaption {
  position: absolute;
  left: 18px;
  bottom: 16px;
  z-index: 1;
  color: var(--white);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.32);
}

.service-detail {
  background: var(--leaf-dark);
  color: var(--white);
}

.service-detail p,
.service-detail .service-benefits p {
  color: rgba(255, 255, 255, 0.8);
}

.service-detail .service-benefits article {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.service-cta {
  background: var(--leaf-deep);
  color: var(--white);
  text-align: center;
}

.service-cta h2,
.service-cta p {
  margin-left: auto;
  margin-right: auto;
}

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

.service-link-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 28px;
}

.service-link-grid a {
  background: var(--white);
  border-radius: 8px;
  padding: 16px;
  font-weight: 900;
}

.jobber-form-card,
.quote-form,
.faq details {
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 1px 0 rgba(23, 33, 27, 0.08);
}

.before-after {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(18, 56, 33, 0.045) 0 1px, transparent 1px 100%),
    linear-gradient(180deg, #f7faf7, #ffffff 48%, #eef5f1);
  background-size: 76px 76px, 100% 100%;
  color: var(--ink);
  border-top: 1px solid rgba(18, 56, 33, 0.08);
  border-bottom: 1px solid rgba(18, 56, 33, 0.08);
}

.before-after .section-heading {
  max-width: 820px;
  padding: 0;
}

.before-after .section-heading h2 {
  color: var(--ink);
}

.before-after-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 22px;
}

.recent-work-actions {
  display: flex;
  justify-content: center;
  margin-top: 22px;
}

.recent-work-actions .button {
  min-width: 210px;
}

.before-after-card {
  overflow: hidden;
  border-radius: 8px;
  background: var(--white);
  border: 1px solid rgba(18, 56, 33, 0.14);
  box-shadow: 0 18px 38px rgba(23, 33, 27, 0.16);
}

.before-after-stage {
  --position: inherit;
  position: relative;
  aspect-ratio: 4 / 4.65;
  overflow: hidden;
  background: var(--leaf-deep);
}

.before-after-stage::before,
.before-after-stage::after {
  position: absolute;
  top: 14px;
  z-index: 5;
  padding: 6px 10px;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0;
}

.before-after-stage::before {
  content: "Before";
  left: 14px;
  background: rgba(18, 56, 33, 0.76);
  color: var(--white);
}

.before-after-stage::after {
  content: "After";
  right: 14px;
  background: var(--gold);
  color: #21170a;
}

.before-after-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  user-select: none;
  pointer-events: none;
}

.before-after-image--before {
  filter: saturate(0.82) contrast(0.94) brightness(0.86);
}

.before-after-reveal {
  position: absolute;
  inset: 0;
  overflow: hidden;
  clip-path: polygon(0 0, var(--position) 0, var(--position) 100%, 0 100%);
}

.before-after-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--position);
  z-index: 3;
  width: 3px;
  background: var(--gold);
  transform: translateX(-1px);
  pointer-events: none;
}

.before-after-handle span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 42px;
  height: 42px;
  border: 2px solid var(--gold);
  border-radius: 999px;
  background: rgba(18, 56, 33, 0.86);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.24);
  transform: translate(-50%, -50%);
}

.before-after-handle span::before,
.before-after-handle span::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 8px;
  height: 8px;
  border-top: 2px solid var(--white);
  border-left: 2px solid var(--white);
}

.before-after-handle span::before {
  left: 10px;
  transform: translateY(-50%) rotate(-45deg);
}

.before-after-handle span::after {
  right: 10px;
  transform: translateY(-50%) rotate(135deg);
}

.before-after-range {
  position: absolute;
  inset: 0;
  z-index: 4;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
}

.before-after-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 17px 18px;
  color: var(--ink);
}

.before-after-caption h3 {
  margin: 0;
  font-size: 18px;
}

.before-after-caption span {
  flex: 0 0 auto;
  color: var(--leaf);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.gallery-hero {
  background:
    linear-gradient(90deg, rgba(18, 56, 33, 0.94), rgba(18, 56, 33, 0.78)),
    url("./assets/after-front-bed.jpg") center / cover;
  color: var(--white);
}

.gallery-hero h1 {
  max-width: 880px;
  margin-bottom: 18px;
}

.gallery-hero p:not(.eyebrow) {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 19px;
}

.full-gallery {
  background:
    linear-gradient(90deg, rgba(0, 112, 60, 0.045) 0 1px, transparent 1px 100%),
    linear-gradient(180deg, #f7faf7, #ffffff 52%, #eef5f1);
  background-size: 76px 76px, 100% 100%;
}

.full-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.full-gallery-grid figure {
  position: relative;
  min-height: 310px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(18, 56, 33, 0.14);
  border-radius: 8px;
  background: var(--leaf-dark);
  box-shadow: 0 18px 38px rgba(23, 33, 27, 0.16);
}

.full-gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.25s ease;
}

.full-gallery-grid figure:hover img {
  transform: scale(1.035);
}

.full-gallery-grid figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 1;
  padding: 8px 10px;
  border-radius: 8px;
  background: rgba(18, 56, 33, 0.86);
  color: var(--white);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.gallery-cta {
  background: var(--leaf-dark);
  color: var(--white);
  text-align: center;
}

.gallery-cta h2,
.gallery-cta p {
  margin-left: auto;
  margin-right: auto;
}

.gallery-cta p {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.78);
}

.legal-page {
  background:
    linear-gradient(90deg, rgba(0, 112, 60, 0.045) 0 1px, transparent 1px 100%),
    linear-gradient(180deg, #ffffff, #f7faf8);
  background-size: 76px 76px, 100% 100%;
}

.legal-copy {
  max-width: 820px;
}

.legal-copy h1 {
  color: var(--ink);
  font-size: clamp(42px, 5vw, 64px);
}

.legal-copy h2 {
  margin-top: 34px;
  font-size: clamp(24px, 3vw, 34px);
}

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

.legal-copy a {
  color: var(--leaf);
  font-weight: 800;
}

.quote-page {
  min-height: 660px;
  background:
    radial-gradient(circle at 84% 8%, rgba(216, 166, 74, 0.1), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f7faf8 100%);
  padding: 18px 0 30px;
}

.quote-page .contact-layout {
  box-shadow: var(--shadow-dark);
}

.quote-page .contact-copy h1 {
  max-width: 620px;
  color: var(--white);
  font-size: clamp(42px, 5vw, 64px);
}

.quote-page .quote-form {
  align-content: center;
}

.areas {
  background:
    radial-gradient(circle at 82% 10%, rgba(216, 166, 74, 0.13), transparent 28%),
    var(--leaf-dark);
  overflow: hidden;
}

.area-showcase {
  width: min(1160px, calc(100% - 40px));
  min-height: 560px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(360px, 0.88fr) 1.12fr;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow-dark);
}

.area-panel {
  align-self: stretch;
  background: var(--white);
  padding: clamp(30px, 3.6vw, 48px) clamp(22px, 3.4vw, 42px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.area-panel h2 {
  color: var(--ink);
  font-size: clamp(32px, 3.6vw, 46px);
  max-width: 760px;
}

.area-panel h3 {
  color: var(--leaf);
  font-size: clamp(20px, 2vw, 27px);
  margin: 0 0 8px;
}

.area-panel p {
  color: var(--muted);
  max-width: 770px;
  margin-bottom: 20px;
}

.area-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.area-list li {
  display: flex;
  align-items: center;
  gap: 11px;
  min-height: 48px;
  background: var(--leaf-soft);
  color: var(--ink);
  padding: 12px 15px;
  border-radius: 8px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: 13px;
  cursor: pointer;
  transition: background-color 160ms ease, transform 160ms ease;
}

.area-list li:hover {
  background: var(--leaf-soft);
  transform: translateX(4px);
}

.pin-icon {
  position: relative;
  flex: 0 0 auto;
  width: 13px;
  height: 13px;
  border-radius: 50% 50% 50% 0;
  background: var(--leaf);
  transform: rotate(-45deg);
}

.pin-icon::after {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  background: var(--white);
}

.area-map {
  position: relative;
  min-height: 560px;
  background: var(--leaf-deep);
}

.area-map::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 500;
  background: linear-gradient(90deg, rgba(7, 10, 8, 0.74), rgba(7, 10, 8, 0.14) 34%, rgba(7, 10, 8, 0.34));
  pointer-events: none;
}

.leaflet-service-map {
  position: absolute;
  inset: 0;
  z-index: 1;
  min-height: inherit;
  background: var(--leaf-deep);
}

.map-badge {
  position: absolute;
  z-index: 510;
  right: 34px;
  bottom: 30px;
  padding: 10px 14px;
  border-radius: 8px;
  background: rgba(18, 56, 33, 0.82);
  color: rgba(255, 255, 255, 0.8);
  font-weight: 900;
  font-size: 14px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.24);
}

.service-marker {
  display: block;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--white);
  border: 4px solid var(--leaf);
  box-shadow: 0 0 0 5px rgba(0, 112, 60, 0.24), 0 0 18px rgba(0, 112, 60, 0.62);
}

.leaflet-container {
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.leaflet-popup-content-wrapper,
.leaflet-popup-tip {
  background: var(--leaf-deep);
  color: var(--white);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.24);
}

.leaflet-popup-content {
  font-weight: 800;
}

.leaflet-control-attribution {
  background: rgba(7, 10, 8, 0.72) !important;
  color: rgba(255, 255, 255, 0.68) !important;
}

.leaflet-control-attribution a {
  color: rgba(255, 255, 255, 0.86) !important;
}

.faq {
  background:
    linear-gradient(90deg, rgba(0, 112, 60, 0.045) 0 1px, transparent 1px 100%),
    linear-gradient(180deg, #ffffff, #f6faf7);
  background-size: 76px 76px, 100% 100%;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq details {
  padding: 18px 22px;
  border: 1px solid rgba(18, 56, 33, 0.1);
  box-shadow: 0 12px 28px rgba(23, 33, 27, 0.09);
}

.faq summary {
  cursor: pointer;
  font-weight: 900;
  font-size: 18px;
}

.faq p {
  color: var(--muted);
  margin: 14px 0 0;
}

.contact {
  background: var(--white);
  color: var(--ink);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  gap: 0;
  align-items: stretch;
  overflow: hidden;
  border-radius: 8px;
  background: var(--leaf-dark);
  box-shadow: var(--shadow-dark);
}

.contact-copy {
  position: relative;
  min-height: 500px;
  padding: clamp(28px, 4vw, 46px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(18, 56, 33, 0.9), rgba(18, 56, 33, 0.64)),
    url("./assets/landscape-hero.png") center / cover;
}

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

.contact-copy h2 {
  max-width: 620px;
  color: var(--white);
}

.contact-copy > p:not(.eyebrow) {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.84);
}

.contact-points {
  display: grid;
  gap: 10px;
  margin-top: 20px;
  font-weight: 800;
}

.contact-points a,
.contact-points span {
  color: var(--white);
}

.quote-form {
  width: 100%;
  max-width: none;
  justify-self: stretch;
  align-self: stretch;
  padding: clamp(26px, 3.4vw, 40px);
  color: var(--white);
  display: grid;
  gap: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 28%),
    var(--leaf-dark);
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.jobber-form-card {
  width: 100%;
  max-width: none;
  justify-self: stretch;
  align-self: stretch;
  min-height: 720px;
  overflow: hidden;
  padding: clamp(12px, 1.8vw, 18px);
  background: #ffffff;
  border: 1px solid rgba(18, 56, 33, 0.12);
  box-shadow: 0 24px 54px rgba(12, 28, 19, 0.18);
}

.jobber-form-card iframe,
.jobber-form-card > div {
  width: 100%;
  min-height: 680px;
}

label {
  display: grid;
  gap: 7px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(18, 56, 33, 0.18);
  border-radius: 8px;
  padding: 13px 14px;
  font: inherit;
  color: var(--ink);
  background: #ffffff;
}

textarea {
  resize: vertical;
}

.footer {
  background: var(--leaf-deep);
  color: rgba(255, 255, 255, 0.78);
  padding: 46px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 28px;
}

.footer h3 {
  color: white;
  margin-bottom: 12px;
}

.footer a {
  display: block;
  margin-bottom: 8px;
}

.footer-brand {
  color: white;
  margin-bottom: 18px;
}

.footer-brand .brand-logo {
  filter: brightness(0) invert(1);
  opacity: 0.94;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  margin-top: 30px;
  padding-top: 18px;
  font-size: 13px;
}

@media (max-width: 920px) {
  .top-strip {
    font-size: 12px;
  }

  .top-strip__track,
  .top-strip__content > * {
    min-height: 34px;
  }

  .top-strip__track {
    animation-duration: 26s;
  }

  .top-strip__content > * {
    padding: 0 16px;
  }

  .top-strip__content > *::before {
    margin-right: 16px;
  }

  .nav-inner {
    min-height: 66px;
  }

  .menu-toggle {
    display: flex;
    flex: 0 0 auto;
    width: 42px;
    height: 42px;
    border: 0;
    background: var(--leaf-dark);
    box-shadow: 0 8px 18px rgba(18, 56, 33, 0.18);
  }

  .nav-links {
    position: absolute;
    left: max(14px, calc((100vw - 1160px) / 2 + 20px));
    right: max(14px, calc((100vw - 1160px) / 2 + 20px));
    top: calc(100% + 8px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    background: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow);
    padding: 12px;
    z-index: 80;
  }

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

  .nav-links a {
    padding: 14px 16px;
  }

  .nav-links a:not(.nav-cta) {
    padding: 14px 16px;
  }

  .nav-links a:not(.nav-cta)::after {
    display: none;
  }

  .nav-links a.is-active:not(.nav-cta) {
    background: var(--leaf-soft);
  }

  .hero {
    min-height: 560px;
  }

  .trust-grid,
  .service-grid,
  .before-after-grid,
  .split,
  .contact-layout,
  .service-overview-grid,
  .service-detail-grid,
  .service-photo-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .service-photo-grid {
    grid-template-rows: none;
  }

  .service-photo--featured {
    grid-row: auto;
    min-height: 340px;
  }

  .service-photo:nth-child(4) {
    grid-column: auto;
  }

  .trust-grid {
    gap: 14px;
  }

  .trust-grid article {
    border-right: 0;
    border-bottom: 0;
  }

  .trust-band {
    margin-top: -44px;
  }

  .trust-card {
    min-height: 0;
  }

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

  .contact-copy {
    min-height: 330px;
  }

  .quote-page {
    min-height: 0;
    padding: 14px 0 28px;
  }

  .quote-page .contact-layout {
    max-width: 620px;
  }

  .quote-page .contact-copy {
    min-height: 300px;
    padding: 32px;
    justify-content: flex-end;
  }

  .quote-page .contact-copy h1 {
    max-width: 500px;
    font-size: 42px;
    line-height: 1;
    margin-bottom: 14px;
  }

  .quote-page .contact-copy > p:not(.eyebrow) {
    max-width: 500px;
    font-size: 15px;
    line-height: 1.55;
  }

  .quote-page .quote-form {
    padding: 32px;
  }

  .intro-showcase__inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .intro-showcase__media {
    min-height: 210px;
    justify-content: center;
    margin-right: 0;
  }

  .intro-showcase__media img {
    width: min(100%, 760px);
    max-height: 260px;
  }

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

  .area-showcase {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .area-panel {
    border-top-right-radius: 0;
    padding-top: 54px;
    padding-bottom: 46px;
  }

  .area-map {
    min-height: 520px;
  }

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

@media (max-width: 620px) {
  .container {
    width: min(100% - 28px, 1160px);
  }

  .top-strip {
    font-size: 11px;
  }

  .top-strip__track,
  .top-strip__content > * {
    min-height: 32px;
  }

  .top-strip__track {
    animation-duration: 22s;
  }

  .top-strip__content > * {
    padding: 0 14px;
  }

  .top-strip__content > *::before {
    margin-right: 14px;
  }

  .nav-inner {
    min-height: 60px;
  }

  .brand-logo {
    width: 158px;
    max-height: 44px;
  }

  .menu-toggle {
    width: 38px;
    height: 38px;
    padding: 8px;
    gap: 4px;
  }

  .nav-links {
    left: 14px;
    right: 14px;
    top: calc(100% + 6px);
    padding: 10px;
    box-shadow: 0 22px 42px rgba(23, 33, 27, 0.24);
  }

  .nav-links a,
  .nav-links a:not(.nav-cta) {
    padding: 12px 14px;
  }

  .hero {
    min-height: 520px;
  }

  .hero-overlay {
    background: linear-gradient(90deg, rgba(18, 56, 33, 0.91), rgba(18, 56, 33, 0.42));
  }

  .hero-content {
    padding: 38px 0 78px;
  }

  h1 {
    font-size: 40px;
    line-height: 1.02;
  }

  .hero-content p:not(.eyebrow) {
    font-size: 16px;
  }

  .button {
    width: 100%;
    min-height: 44px;
  }

  .quote-page.section-pad {
    padding: 0 0 18px;
    background: #ffffff;
  }

  .quote-page .contact-layout {
    width: min(100%, 420px);
    margin: 0 auto;
    border-radius: 8px;
  }

  .quote-page .contact-copy {
    min-height: 240px;
    padding: 22px;
    background:
      linear-gradient(180deg, rgba(18, 56, 33, 0.9), rgba(18, 56, 33, 0.72)),
      url("./assets/landscape-hero.png") center / cover;
  }

  .quote-page .contact-copy h1 {
    font-size: 31px;
    line-height: 0.98;
    margin-bottom: 12px;
  }

  .quote-page .contact-copy > p:not(.eyebrow) {
    font-size: 14px;
    line-height: 1.45;
  }

  .quote-page .contact-points {
    gap: 6px;
    margin-top: 16px;
    font-size: 13px;
  }

  .quote-page .quote-form {
    gap: 13px;
    padding: 22px 20px 24px;
  }

  .quote-page input,
  .quote-page select,
  .quote-page textarea {
    padding: 11px 12px;
  }

  .quote-page textarea {
    min-height: 112px;
  }

  .section-pad {
    padding: 38px 0;
  }

  .section-heading .eyebrow {
    min-height: 24px;
    padding: 0 9px;
    font-size: 11px;
  }

  .section-heading h2 {
    margin-bottom: 22px;
  }

  .section-heading h2::after {
    width: 72px;
    height: 3px;
    margin-top: 12px;
  }

  .before-after-grid {
    gap: 16px;
    margin-top: 16px;
  }

  .before-after-card {
    box-shadow: 0 14px 26px rgba(23, 33, 27, 0.14);
  }

  .before-after-stage {
    aspect-ratio: 4 / 5;
  }

  .recent-work-actions {
    margin-top: 18px;
  }

  .full-gallery-grid {
    gap: 16px;
  }

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

  .full-gallery-grid figure {
    min-height: 340px;
  }

  .intro-showcase__copy h2 {
    font-size: 36px;
  }

  .intro-showcase__copy h2 br {
    display: none;
  }

  .intro-showcase__media {
    min-height: 170px;
  }

  .intro-showcase__media img {
    max-height: 200px;
  }

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

  .area-panel {
    padding: 34px 22px 30px;
  }

  .area-panel h2 {
    font-size: 35px;
  }

  .area-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-height: 210px;
    overflow-y: auto;
    overscroll-behavior-y: contain;
    padding: 2px 5px 2px 0;
    scrollbar-color: rgba(0, 112, 60, 0.55) rgba(18, 56, 33, 0.08);
    scrollbar-width: thin;
  }

  .area-list::-webkit-scrollbar {
    width: 7px;
  }

  .area-list::-webkit-scrollbar-track {
    background: rgba(18, 56, 33, 0.08);
    border-radius: 999px;
  }

  .area-list::-webkit-scrollbar-thumb {
    background: rgba(0, 112, 60, 0.55);
    border-radius: 999px;
  }

  .area-list li {
    min-height: 42px;
    padding: 9px 10px;
    font-size: 11px;
    line-height: 1.15;
  }

  .area-map {
    min-height: 460px;
  }

  .tile-one,
  .tile-three {
    grid-row: span 1;
  }

  .footer-bottom,
  .hero-actions {
    flex-direction: column;
  }

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

  .service-page-hero {
    min-height: 520px;
  }
}
