/* Buttons, nav, cards, forms, footer, hero, lightbox shell */

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background-color: var(--color-cta);
  color: var(--color-cta-text);
  font-family: var(--font-body);
  font-weight: 600;
  padding: 0.875rem 2rem;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  min-height: 3rem;
  font-size: var(--text-base);
  transition:
    background 0.2s,
    transform 0.15s,
    box-shadow 0.2s,
    color 0.2s;
  text-decoration: none;
}

.btn-primary:hover {
  background-color: var(--color-cta-hover);
  color: var(--color-cta-hover-text);
  transform: translateY(-0.0625rem);
  box-shadow: var(--shadow-md);
}

.btn-primary--pulse:hover {
  transform: scale(1.03) translateY(-0.0625rem);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
  font-family: var(--font-body);
  font-weight: 600;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-full);
  min-height: 3rem;
  cursor: pointer;
  font-size: var(--text-base);
  transition:
    background 0.2s,
    color 0.2s;
  text-decoration: none;
}

.btn-secondary:hover {
  background: var(--color-primary);
  color: var(--color-surface);
}

/* Site header — solid white bar */
#nav.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-nav);
  background: var(--color-surface);
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(1rem, 2.5vw, 2rem);
  min-height: var(--nav-height);
  padding-block: var(--nav-pad-y);
}

.logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.15;
  color: var(--color-primary);
  padding: 0.125rem 0;
  min-height: 2.75rem;
  justify-content: center;
}

#nav.site-header .logo.logo--image {
  flex-shrink: 0;
  align-self: center;
  line-height: 0;
  margin-inline-end: clamp(2rem, 5.5vw, 4.5rem);
}

.logo__line1 {
  font-family: var(--font-display);
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  font-weight: 700;
}

.logo__line2 {
  font-family: var(--font-body);
  font-size: clamp(0.625rem, 1.5vw, 0.75rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-primary);
}

.logo--image {
  flex-direction: row;
  align-items: center;
  padding: 0.0625rem 0;
}

.logo--image img {
  display: block;
  height: clamp(2rem, 5vw, 2.5rem);
  width: auto;
  max-width: 11rem;
  object-fit: contain;
  object-position: left center;
}

#nav.site-header .logo--image img {
  display: block;
  width: auto;
  height: var(--nav-logo-height);
  max-width: min(48vw, 15rem);
  object-fit: contain;
  object-position: left center;
}

@media (min-width: 64rem) {
  #nav.site-header .logo--image img {
    max-width: min(36vw, 17rem);
  }
}

@media (min-width: 80rem) {
  #nav.site-header .logo--image img {
    max-width: min(32vw, 18rem);
  }
}

.logo--footer img {
  height: clamp(14rem, 40vw, 24rem);
  max-width: min(60rem, 100%);
}

.nav-desktop {
  display: none;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 0.75rem;
}

@media (min-width: 64rem) {
  .nav-desktop {
    display: flex;
    flex: 1 1 auto;
    justify-content: center;
    gap: clamp(0.7rem, 1.5vw, 1.4rem);
    min-width: 0;
  }
}

@media (min-width: 75rem) {
  .nav-desktop {
    gap: clamp(0.85rem, 1.75vw, 1.65rem);
  }
}

@media (min-width: 90rem) {
  .nav-desktop {
    gap: clamp(1rem, 1.85vw, 1.85rem);
  }
}

.nav-desktop > a:not(.btn-primary) {
  position: relative;
  font-size: clamp(0.75rem, 0.15vw + 0.65rem, 0.8125rem);
  font-weight: 600;
  color: var(--stone-800);
  padding: 0.28rem 0.32rem 0.38rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  white-space: nowrap;
}

.nav-desktop > a:not(.btn-primary)::after {
  content: "";
  position: absolute;
  left: 0.15rem;
  right: 0.15rem;
  bottom: 0.12rem;
  height: 0.15rem;
  border-radius: var(--radius-full);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.28s cubic-bezier(0.34, 1.2, 0.64, 1);
  opacity: 0.95;
}

.nav-desktop > a:not(.btn-primary):hover::after,
.nav-desktop > a:not(.btn-primary):focus-visible::after,
.nav-desktop > a:not(.btn-primary).is-active::after {
  transform: scaleX(1);
}

.nav-desktop > a:not(.btn-primary):nth-child(1)::after {
  background: linear-gradient(90deg, var(--sky-400), var(--sky-600));
}

.nav-desktop > a:not(.btn-primary):nth-child(2)::after {
  background: linear-gradient(90deg, var(--lime-400), var(--lime-600));
}

.nav-desktop > a:not(.btn-primary):nth-child(3)::after {
  background: linear-gradient(90deg, var(--coral-400), var(--coral-600));
}

.nav-desktop > a:not(.btn-primary):nth-child(4)::after {
  background: linear-gradient(90deg, var(--green-400), var(--green-800));
}

.nav-desktop > a:not(.btn-primary):nth-child(5)::after {
  background: linear-gradient(90deg, var(--mint-200), var(--sky-400));
}

.nav-desktop > a:not(.btn-primary):nth-child(6)::after {
  background: linear-gradient(90deg, var(--sage-400), var(--sage-800));
}

.nav-desktop > a:not(.btn-primary):nth-child(1):hover,
.nav-desktop > a:not(.btn-primary):nth-child(1).is-active {
  color: var(--sky-800);
}

.nav-desktop > a:not(.btn-primary):nth-child(2):hover,
.nav-desktop > a:not(.btn-primary):nth-child(2).is-active {
  color: var(--lime-800);
}

.nav-desktop > a:not(.btn-primary):nth-child(3):hover,
.nav-desktop > a:not(.btn-primary):nth-child(3).is-active {
  color: var(--coral-600);
}

.nav-desktop > a:not(.btn-primary):nth-child(4):hover,
.nav-desktop > a:not(.btn-primary):nth-child(4).is-active {
  color: var(--green-800);
}

.nav-desktop > a:not(.btn-primary):nth-child(5):hover,
.nav-desktop > a:not(.btn-primary):nth-child(5).is-active {
  color: var(--sky-700);
}

.nav-desktop > a:not(.btn-primary):nth-child(6):hover,
.nav-desktop > a:not(.btn-primary):nth-child(6).is-active {
  color: var(--sage-800);
}

#nav.site-header .btn-primary {
  flex-shrink: 0;
  padding-inline: 1rem;
  padding-block: 0.4rem;
  min-height: 2.125rem;
  font-size: clamp(0.75rem, 0.1vw + 0.68rem, 0.8125rem);
  font-weight: 600;
  line-height: 1.25;
  gap: 0.35rem;
  white-space: nowrap;
  border-radius: var(--radius-full);
}

@media (max-width: 63.9375rem) {
  #nav.site-header .mobile-nav .btn-primary {
    min-height: 2.5rem;
    padding-block: 0.5rem;
  }
}

.nav-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.625rem;
  height: 2.625rem;
  border: none;
  background: transparent;
  color: var(--color-primary);
  cursor: pointer;
}

@media (min-width: 64rem) {
  .nav-toggle {
    display: none;
  }
}

.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: var(--z-overlay);
  background: var(--color-surface);
  display: flex;
  flex-direction: column;
  padding: 1.25rem var(--container-padding);
  transform: translateX(100%);
  transition: transform 0.35s ease;
  visibility: hidden;
  pointer-events: none;
}

.mobile-nav.is-open {
  transform: translateX(0);
  visibility: visible;
  pointer-events: auto;
}

.mobile-nav__close {
  align-self: flex-end;
  width: 3rem;
  height: 3rem;
  border: none;
  background: var(--mint-100);
  border-radius: var(--radius-md);
  cursor: pointer;
  color: var(--sky-800);
  margin-bottom: 2rem;
}

.mobile-nav__links {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.mobile-nav__links a {
  position: relative;
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--stone-900);
  padding: 0.85rem 0 0.85rem 0.9rem;
  min-height: 2.875rem;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--sky-100);
}

.mobile-nav__links a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0.28rem;
  height: 1.35rem;
  border-radius: var(--radius-full);
}

.mobile-nav__links a:nth-child(1)::before {
  background: linear-gradient(180deg, var(--sky-400), var(--sky-600));
}

.mobile-nav__links a:nth-child(2)::before {
  background: linear-gradient(180deg, var(--lime-400), var(--lime-600));
}

.mobile-nav__links a:nth-child(3)::before {
  background: linear-gradient(180deg, var(--coral-400), var(--coral-600));
}

.mobile-nav__links a:nth-child(4)::before {
  background: linear-gradient(180deg, var(--green-400), var(--green-800));
}

.mobile-nav__links a:nth-child(5)::before {
  background: linear-gradient(180deg, var(--mint-200), var(--sky-400));
}

.mobile-nav__links a:nth-child(6)::before {
  background: linear-gradient(180deg, var(--sage-400), var(--sage-800));
}

.mobile-nav__links a:nth-child(7)::before {
  background: linear-gradient(180deg, var(--lime-200), var(--green-600));
}

.mobile-nav__links a:nth-child(8)::before {
  background: linear-gradient(180deg, var(--sky-200), var(--coral-400));
}

.mobile-nav__cta {
  margin-top: 2rem;
}

body.menu-open {
  overflow: hidden;
}

/* Hero — deep green backdrop so the light logo reads clearly */
#hero {
  position: relative;
  background:
    linear-gradient(
      118deg,
      var(--forest-900) 0%,
      var(--ground-900) 19%,
      var(--green-900) 44%,
      var(--forest-800) 67%,
      var(--green-900) 84%,
      var(--forest-900) 100%
    );
  color: var(--neutral-100);
  overflow: hidden;
}

#hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: repeating-linear-gradient(
    -21deg,
    transparent,
    transparent 0.55rem,
    rgb(255 255 255 / 0.032) 0.55rem,
    rgb(255 255 255 / 0.032) 0.62rem
  );
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
}

.hero-copy {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-col {
  min-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-copy-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

#hero .hero-copy-content .hero-headline,
#hero .hero-copy-content .hero-headline__geo,
#hero .hero-copy-content .hero-sub,
#hero .hero-copy-content .hero-cta-row,
#hero .hero-copy-content .hero-cta-row .text-link {
  text-align: center;
}

#hero .hero-copy-content .hero-cta-row {
  margin-bottom: 0;
  padding-block: 0;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4.2vw, 3rem);
  line-height: 1.1;
  margin: 0 0 1rem;
}

#hero .hero-headline {
  color: var(--neutral-100);
  max-width: 52rem;
  margin-inline: auto;
  margin-bottom: 2rem;
}

.hero-headline__geo {
  display: block;
  font-size: clamp(1rem, 2.4vw, 1.25rem);
  font-weight: 600;
  margin-top: 0.5rem;
  font-family: var(--font-body);
}

#hero .hero-headline__geo {
  color: var(--green-200);
  margin-top: 0.75rem;
}

.hero-sub {
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  max-width: 36rem;
  margin: 0 0 1.75rem;
}

#hero .hero-sub {
  color: rgb(255 255 255 / 0.85);
  margin-inline: auto;
  margin-top: 0.35rem;
  margin-bottom: 2.25rem;
  line-height: 1.65;
}

#hero .text-link {
  color: var(--green-100);
}

#hero .text-link:hover {
  color: var(--neutral-100);
}

#hero .btn-primary {
  background: var(--neutral-100);
  color: var(--forest-900);
  box-shadow: 0 0.35rem 1.25rem rgb(0 0 0 / 0.25);
}

#hero .btn-primary:hover {
  background: var(--green-100);
  color: var(--forest-900);
  box-shadow: 0 0.45rem 1.35rem rgb(0 0 0 / 0.28);
}

#hero .trust-badges--hero {
  border-color: rgb(255 255 255 / 0.22);
  box-shadow:
    0 0.25rem 0 rgb(0 0 0 / 0.12),
    0 0.75rem 1.75rem rgb(0 0 0 / 0.22);
  margin-top: 0.35rem;
}

.hero-cta-row {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

@media (min-width: 30rem) {
  .hero-cta-row {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }
}

#hero .hero-cta-row {
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(1.35rem, 4vw, 2.25rem);
  row-gap: 1.35rem;
  margin-bottom: 2.5rem;
  padding-block: 0.85rem;
  padding-inline: clamp(0.5rem, 3vw, 1.5rem);
}

.trust-badges {
  list-style: none;
  margin: 0;
  padding: 0;
}

.trust-badges--hero {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border: 1px solid var(--green-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-surface);
}

@media (max-width: 35.9375rem) {
  .trust-badges--hero {
    grid-template-columns: 1fr;
  }
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1rem;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--stone-800);
  border-bottom: 1px solid rgb(0 0 0 / 0.06);
}

.trust-badges--hero .trust-badge {
  border-bottom: none;
  border-right: 1px solid rgb(0 0 0 / 0.06);
  min-width: 0;
  justify-content: center;
  text-align: center;
}

.trust-badges--hero .trust-badge:nth-child(3n) {
  border-right: none;
}

@media (max-width: 35.9375rem) {
  .trust-badges--hero .trust-badge {
    border-right: none;
    border-bottom: 1px solid rgb(0 0 0 / 0.06);
  }

  .trust-badges--hero .trust-badge:last-child {
    border-bottom: none;
  }
}

.trust-badge--g1 {
  background: var(--green-50);
  color: var(--forest-800);
}

.trust-badge--g1 svg {
  color: var(--green-500);
}

.trust-badge--g2 {
  background: var(--green-100);
  color: var(--forest-900);
}

.trust-badge--g2 svg {
  color: var(--green-700);
}

.trust-badge--g3 {
  background: var(--green-500);
  color: var(--neutral-100);
  border-color: transparent;
}

.trust-badge--g3 svg {
  color: var(--neutral-100);
}

.trust-badge svg {
  flex-shrink: 0;
}

.hero-image-wrap {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: clamp(0.9rem, 2vw, 1.35rem);
}

@media (max-width: 63.9375rem) {
  .hero-copy-content {
    padding-top: 0.75rem;
  }

  #hero .hero-headline {
    margin-bottom: 1.25rem;
  }

  #hero .hero-sub {
    margin-top: 0;
    margin-bottom: 1.25rem;
    line-height: 1.5;
  }

  #hero .hero-cta-row {
    gap: 1rem;
    row-gap: 0.9rem;
    margin-bottom: 0.75rem;
    padding-block: 0;
    padding-inline: 0;
    align-items: center;
  }

  #hero .hero-cta-row .text-link {
    display: inline-flex;
    justify-content: center;
    width: 100%;
  }

  .hero-col {
    min-height: auto;
  }
}

.hero-brand-display {
  display: block;
  width: 100%;
  max-width: min(100%, 33rem);
  max-height: min(76svh, 33rem);
  height: auto;
  object-fit: contain;
  border-radius: var(--radius-xl);
}

/* Cards */
.service-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-0.25rem);
  box-shadow: var(--shadow-md);
}

.service-card__icon {
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius-full);
  background: linear-gradient(145deg, var(--lime-100), var(--sky-100));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.service-card__icon .material-symbols-outlined {
  font-size: 1.5rem;
  line-height: 1;
  font-variation-settings:
    "FILL" 0,
    "wght" 500,
    "GRAD" 0,
    "opsz" 24;
}

.service-card__icon--green .material-symbols-outlined {
  color: var(--green-800);
}

.service-card__icon--sky .material-symbols-outlined {
  color: var(--sky-700);
}

.service-card__icon--lime .material-symbols-outlined {
  color: var(--lime-800);
}

.service-card__icon--coral .material-symbols-outlined {
  color: var(--coral-600);
}

.service-card__icon--mint .material-symbols-outlined {
  color: var(--green-700);
}

.service-card__icon--sage .material-symbols-outlined {
  color: var(--sage-800);
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  margin: 0 0 0.5rem;
  color: var(--stone-900);
}

.service-card p {
  margin: 0 0 1rem;
  flex: 1;
  font-size: clamp(0.9375rem, 1.4vw, 1rem);
  color: var(--color-muted-text);
}

/* Gallery / Our Work */
.gallery-item {
  margin: 0;
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--sky-100);
}

.work-gallery:not(.work-gallery--masonry) .gallery-item {
  aspect-ratio: 4 / 3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 12rem;
  transition: transform 0.35s ease;
}

.work-gallery:not(.work-gallery--masonry) .gallery-item img {
  position: absolute;
  inset: 0;
  min-height: 0;
}

.work-gallery--masonry .gallery-item {
  break-inside: avoid;
  margin-bottom: clamp(0.9rem, 2vw, 1.3rem);
}

.work-gallery--masonry .gallery-item img {
  position: static;
  inset: auto;
  height: auto;
  min-height: 0;
  display: block;
  transform: scale(1.04);
  transform-origin: center;
}

.work-gallery--masonry .gallery-item:hover img {
  transform: scale(1.08);
}

.work-gallery--masonry .gallery-item:nth-child(3n + 2) {
  transform: translateY(0.65rem);
}

.work-gallery--masonry .gallery-item:nth-child(5n + 4) {
  transform: translateY(-0.45rem);
}

@media (max-width: 39.99rem) {
  .work-gallery--masonry .gallery-item:nth-child(3n + 2),
  .work-gallery--masonry .gallery-item:nth-child(5n + 4) {
    transform: none;
  }
}

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

.gallery-item figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  padding: 0.75rem 1rem;
  background: linear-gradient(transparent, rgb(var(--color-shadow-rgb) / 0.88));
  color: var(--color-surface);
  font-size: var(--text-sm);
  font-weight: 600;
}

/* Why us */
.why-card {
  display: flex;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
}

.why-card__icon {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius-full);
  background: linear-gradient(145deg, var(--lime-100), var(--sky-100));
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-card__icon .material-symbols-outlined {
  font-size: 1.5rem;
  line-height: 1;
  font-variation-settings:
    "FILL" 0,
    "wght" 500,
    "GRAD" 0,
    "opsz" 24;
}

.why-card__icon--green .material-symbols-outlined {
  color: var(--green-800);
}

.why-card__icon--sky .material-symbols-outlined {
  color: var(--sky-700);
}

.why-card__icon--lime .material-symbols-outlined {
  color: var(--lime-800);
}

.why-card__icon--coral .material-symbols-outlined {
  color: var(--coral-600);
}

.why-card__icon--mint .material-symbols-outlined {
  color: var(--green-700);
}

.why-card__icon--sage .material-symbols-outlined {
  color: var(--sage-800);
}

.why-card h3 {
  font-size: var(--text-lg);
  margin: 0 0 0.35rem;
  color: var(--stone-900);
}

.why-card p {
  margin: 0;
  font-size: var(--text-sm);
  color: var(--color-muted-text);
}

.bg-section-dark .eyebrow {
  color: var(--green-200);
}

.and-accent {
  display: inline-block;
  font-size: 0.82em;
  font-weight: 700;
  color: var(--green-700);
  letter-spacing: 0.02em;
}

#hero .and-accent,
.bg-section-dark .and-accent {
  color: var(--green-200);
}

.bg-section-dark .h2-section {
  color: var(--neutral-100);
}

.bg-section-dark .section-intro {
  color: rgb(255 255 255 / 0.82);
}

.bg-section-dark .body-text {
  color: rgb(255 255 255 / 0.88);
}

.bg-section-dark .text-link {
  color: var(--green-200);
}

.bg-section-dark .text-link:hover {
  color: var(--neutral-100);
}

.bg-section-dark .stars {
  color: var(--green-200);
}

.bg-section-dark .gallery-item {
  border-color: rgb(255 255 255 / 0.14);
}

.bg-section-dark .why-card {
  background: rgb(255 255 255 / 0.09);
  border-color: rgb(255 255 255 / 0.16);
}

.bg-section-dark .why-card h3 {
  color: var(--neutral-100);
}

.bg-section-dark .why-card p {
  color: rgb(255 255 255 / 0.86);
}

.bg-section-dark .why-card__icon {
  background: linear-gradient(145deg, var(--neutral-200), var(--stone-400));
}

.bg-section-dark .why-card__icon--green .material-symbols-outlined {
  color: var(--green-700);
}

.bg-section-dark .why-card__icon--sky .material-symbols-outlined {
  color: var(--stone-700);
}

.bg-section-dark .why-card__icon--lime .material-symbols-outlined {
  color: var(--ground-700);
}

.bg-section-dark .why-card__icon--coral .material-symbols-outlined {
  color: var(--ground-800);
}

.bg-section-dark .why-card__icon--mint .material-symbols-outlined {
  color: var(--green-600);
}

.bg-section-dark .why-card__icon--sage .material-symbols-outlined {
  color: var(--forest-700);
}

/* Testimonials */
.testimonial-card {
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  position: relative;
}

.testimonial-card__quote {
  font-family: var(--font-display);
  font-size: 4rem;
  line-height: 0;
  color: var(--stone-400);
  position: absolute;
  top: 0.5rem;
  left: 1rem;
}

.testimonial-card p {
  margin: 1.5rem 0 1rem;
  position: relative;
  z-index: 1;
  font-size: clamp(0.9375rem, 1.4vw, 1.05rem);
}

.testimonial-card__footer {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-card__avatar {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--stone-200), var(--neutral-300));
  color: var(--stone-900);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: var(--text-sm);
}

.testimonial-card__meta {
  flex: 1;
}

.testimonial-card__name {
  font-weight: 700;
  color: var(--stone-900);
}

.testimonial-card__location {
  font-size: var(--text-sm);
  color: var(--color-muted-text);
}

.stars {
  color: var(--color-pop);
  letter-spacing: 0.1em;
  font-size: var(--text-sm);
}

/* About stats */
.stat-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.75rem, 2vw, 1.25rem);
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--color-border);
}

.stat {
  text-align: center;
}

.stat__value {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--color-accent);
  font-weight: 700;
}

.stat__label {
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-muted-text);
}

@media (min-width: 48rem) {
  .stat__label {
    white-space: nowrap;
  }
}

/* About + Why: give the copy column more width so stat labels stay one line beside the image */
@media (min-width: 64rem) {
  .about-why-section .two-col {
    grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  }
}

/* Add breathing room between eyebrow labels and headings in About/Why panels */
.about-why-section .eyebrow {
  margin-bottom: 1.15rem;
}

.about-image-slot img {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  max-height: 25rem;
  width: 100%;
  object-fit: cover;
}

@media (min-width: 64rem) {
  .about-image-slot img {
    max-height: none;
  }
}

/* Service area */
#service-area {
  position: relative;
  overflow: hidden;
}

.area-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.5rem 0;
}

.area-chip {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: linear-gradient(135deg, var(--neutral-100), var(--stone-100));
  color: var(--stone-800);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 600;
  border: 1px solid var(--stone-200);
}

/* CTA under area chips: same pattern as hero “See Our Work” (.text-link + .bg-section-dark rules) */
.service-area-cta-row {
  margin-top: 1.75rem;
}

.bg-section-dark--service .service-area-cta-row .text-link {
  font-size: clamp(0.9375rem, 1.2vw, 1.0625rem);
  line-height: 1.5;
  max-width: 36rem;
}

.map-wrap iframe {
  width: 100%;
  height: 17.5rem;
  border: 0;
  border-radius: var(--radius-lg);
}

@media (min-width: 48rem) {
  .map-wrap iframe {
    height: 21.875rem;
  }
}

/* Contact form */
.form-card {
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  padding: clamp(1.5rem, 4vw, 2rem);
  box-shadow: var(--shadow-md);
}

.form-title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  margin: 0 0 1.5rem;
  color: var(--stone-900);
}

.form-grid {
  display: grid;
  gap: 1.25rem;
}

.form-field {
  position: relative;
}

.form-field--checkboxes fieldset {
  border: none;
  margin: 0;
  padding: 0;
}

.form-field--checkboxes legend {
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--stone-900);
  font-size: var(--text-base);
}

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

@media (min-width: 30rem) {
  .checkbox-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.checkbox-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--text-sm);
}

.checkbox-item input {
  width: 1.125rem;
  height: 1.125rem;
  accent-color: var(--color-primary);
}

/* Floating labels — desktop; stacked labels on small screens */
@media (min-width: 48rem) {
  .form-field--float .field-input,
  .form-field--float select.field-input,
  .form-field--float textarea.field-input {
    padding: 1.25rem 0.875rem 0.5rem;
  }

  .form-field--float .field-label {
    position: absolute;
    left: 0.875rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: var(--text-base);
    color: var(--color-muted-text);
    pointer-events: none;
    transition:
      top 0.2s,
      font-size 0.2s,
      color 0.2s;
  }

  .form-field--float textarea.field-input ~ .field-label {
    top: 1.25rem;
    transform: none;
  }

  .form-field--float select.field-input ~ .field-label {
    top: -0.5rem;
    transform: none;
    font-size: var(--text-xs);
    color: var(--stone-700);
    background: var(--color-surface);
    padding: 0 0.3rem;
    left: 0.6rem;
  }

  .form-field--float .field-input:focus ~ .field-label,
  .form-field--float .field-input:not(:placeholder-shown) ~ .field-label,
  .form-field--float select.field-input:focus ~ .field-label,
  .form-field--float select.field-input:valid ~ .field-label,
  .form-field--float textarea.field-input:focus ~ .field-label,
  .form-field--float textarea.field-input:not(:placeholder-shown) ~ .field-label {
    top: 0.35rem;
    font-size: var(--text-xs);
    color: var(--color-primary);
  }
}

@media (max-width: 47.9375rem) {
  .form-field--float {
    display: flex;
    flex-direction: column-reverse;
    gap: 0.35rem;
  }

  .form-field--float .field-label {
    display: block;
    position: static;
    margin-bottom: 0;
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--stone-900);
  }

  .form-field--float .field-input,
  .form-field--float select.field-input,
  .form-field--float textarea.field-input {
    padding: 0.75rem 0.875rem;
  }
}

.field-input,
select.field-input,
textarea.field-input {
  width: 100%;
  min-height: 3rem;
  padding: 0.75rem 0.875rem;
  font-family: var(--font-body);
  font-size: 1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-surface);
  color: var(--color-body-text);
}

textarea.field-input {
  min-height: 8rem;
  resize: vertical;
}

.field-input:focus {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.field-error {
  display: block;
  margin-top: 0.35rem;
  font-size: var(--text-sm);
  color: var(--brown-600);
  font-weight: 600;
}

.field-input[aria-invalid="true"] {
  border-color: var(--brown-400);
}

.form-submit {
  margin-top: 0.5rem;
}

.form-success {
  text-align: center;
  padding: 2rem 1rem;
}

.form-success svg {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1rem;
  color: var(--color-primary);
}

.contact-list {
  list-style: none;
  margin: 1.5rem 0;
  padding: 0;
}

.contact-list li {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
  align-items: flex-start;
  font-size: var(--text-base);
}

.contact-list svg {
  flex-shrink: 0;
  color: var(--color-primary);
  margin-top: 0.15rem;
}

/* Footer — light bar like header */
#footer {
  background: var(--color-footer-bg);
  color: var(--color-footer-text);
  box-shadow: var(--shadow-sm);
  border-top: 1px solid var(--color-border);
}

#footer .container {
  text-align: center;
}

#footer .footer-bottom {
  text-align: initial;
}

#footer .footer-grid {
  justify-items: center;
  text-align: center;
  column-gap: clamp(1.25rem, 4vw, 2.5rem);
  row-gap: clamp(1.25rem, 3vw, 2rem);
}

#footer .footer-grid__logo,
#footer .footer-grid__info,
#footer .footer-grid__nav {
  justify-self: center;
  width: 100%;
}

#footer .footer-grid__logo {
  max-width: min(56rem, 100%);
}

#footer .footer-grid__info,
#footer .footer-grid__nav {
  max-width: 22rem;
}

#footer .footer-grid__info .footer-brand-tagline {
  margin-top: 0;
}

#footer .footer-grid__nav .footer-links {
  display: flex;
  flex-direction: column;
  align-items: center;
}

#footer .logo.logo--footer {
  align-items: center;
  margin-inline: auto;
}

#footer .logo--footer img {
  object-position: center;
}

#footer .logo--image img {
  filter: none;
}

#footer a {
  color: var(--forest-800);
}

#footer a:hover {
  color: var(--color-primary);
  text-decoration: underline;
}

.footer-muted {
  color: var(--color-footer-muted);
  font-size: var(--text-sm);
}

.footer-brand-tagline {
  margin-top: 1rem;
}

.footer-phone {
  margin-top: 1.5rem;
}

.footer-email {
  margin-top: 1.25rem;
}

.footer-col-heading {
  font-size: var(--text-sm);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--forest-700);
  margin: 0 0 0.75rem;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-bottom {
  border-top: 1px solid var(--color-border);
  margin-top: 1.25rem;
  padding: 1rem 0 1.25rem;
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem 1.5rem;
  font-size: var(--text-sm);
  color: var(--stone-600);
}

.footer-bottom__copy {
  margin: 0;
  flex: 1 1 14rem;
  min-width: 0;
  line-height: 1.65;
  text-align: left;
}

.footer-bottom__credit {
  margin: 0;
  flex: 0 1 auto;
  line-height: 1.65;
  text-align: right;
}

.footer-bottom__credit-link {
  text-decoration: underline;
  text-underline-offset: 0.18em;
  font-weight: 600;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: var(--z-lightbox);
  background: rgb(var(--color-shadow-rgb) / 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.25s ease,
    visibility 0.25s;
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox__inner {
  position: relative;
  max-width: min(90vw, 62.5rem);
  max-height: 90vh;
}

.lightbox__inner img {
  max-height: 85vh;
  width: auto;
  margin: 0 auto;
  border-radius: var(--radius-lg);
}

.lightbox__caption {
  margin-top: 0.75rem;
  text-align: center;
  color: var(--color-surface);
  font-weight: 600;
}

.lightbox__close,
.lightbox__prev,
.lightbox__next {
  position: absolute;
  z-index: 2;
  width: 3rem;
  height: 3rem;
  border: none;
  border-radius: var(--radius-full);
  background: var(--color-surface);
  color: var(--stone-900);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox__close {
  top: -3rem;
  right: 0;
}

@media (min-width: 48rem) {
  .lightbox__close {
    top: 0;
    right: -3.5rem;
  }
}

.lightbox__prev {
  left: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox__next {
  right: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
}

@media (max-width: 47.9375rem) {
  .lightbox__prev,
  .lightbox__next {
    bottom: 1rem;
    top: auto;
    transform: none;
  }

  .lightbox__prev {
    left: 25%;
  }

  .lightbox__next {
    right: 25%;
  }
}

/* Section backgrounds — alternate light grey gradients vs deep green (hero-aligned) */
.bg-surface {
  background: var(--color-surface);
}

.bg-muted {
  background: linear-gradient(168deg, var(--neutral-200) 0%, var(--neutral-100) 50%, var(--stone-50) 100%);
}

.bg-section-light {
  background: linear-gradient(
    168deg,
    var(--neutral-200) 0%,
    var(--neutral-100) 45%,
    var(--stone-100) 100%
  );
}

.bg-section-light-alt {
  background: linear-gradient(
    172deg,
    var(--stone-100) 0%,
    var(--neutral-100) 48%,
    var(--stone-50) 100%
  );
}

/* Light section tones — each band gets its own gradient flow */
.bg-section-tone-services {
  background: linear-gradient(
    136deg,
    var(--neutral-200) 0%,
    var(--neutral-100) 28%,
    var(--forest-50) 61%,
    var(--stone-100) 100%
  );
}

.bg-section-tone-about {
  background: linear-gradient(
    203deg,
    var(--stone-50) 0%,
    var(--neutral-100) 31%,
    var(--neutral-200) 58%,
    var(--green-50) 92%,
    var(--stone-100) 100%
  );
}

.bg-section-tone-why {
  background: linear-gradient(
    52deg,
    var(--stone-100) 0%,
    var(--neutral-100) 36%,
    var(--green-50) 68%,
    var(--stone-50) 100%
  );
}

.bg-section-tone-contact {
  background: linear-gradient(
    231deg,
    var(--neutral-200) 0%,
    var(--stone-100) 33%,
    var(--neutral-100) 69%,
    var(--forest-50) 100%
  );
}

/* Why + About — one section band, separate scroll targets for nav */
.about-why-section__panel#why-us,
.about-why-section__panel#about-us {
  scroll-margin-top: var(--nav-height);
}

.about-why-section__divider {
  margin: clamp(0.5rem, 2vw, 1.25rem) 0 clamp(1.25rem, 3vw, 2.25rem);
  border: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    color-mix(in oklch, var(--color-border) 75%, transparent) 15%,
    color-mix(in oklch, var(--color-border) 75%, transparent) 85%,
    transparent 100%
  );
}

.bg-section-mid,
.bg-section-warm {
  background: linear-gradient(
    168deg,
    var(--neutral-200) 0%,
    var(--neutral-100) 45%,
    var(--stone-100) 100%
  );
}

.bg-section-dark.section-block {
  position: relative;
  overflow: hidden;
}

.bg-section-dark.section-block > .container {
  position: relative;
  z-index: 1;
}

.bg-section-dark {
  color: var(--neutral-100);
}

/* Dark green bands — each section has its own gradient + overlay (hero stays separate) */
.bg-section-dark.bg-section-dark--work {
  background: linear-gradient(
    161deg,
    var(--forest-900) 0%,
    var(--green-900) 17%,
    var(--forest-800) 41%,
    var(--ground-900) 63%,
    var(--forest-800) 81%,
    var(--forest-900) 100%
  );
}

.bg-section-dark.bg-section-dark--work.section-block::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image: repeating-linear-gradient(
    -23deg,
    transparent,
    transparent 0.52rem,
    rgb(255 255 255 / 0.03) 0.52rem,
    rgb(255 255 255 / 0.03) 0.58rem
  );
}

.bg-section-dark.bg-section-dark--reviews {
  background:
    radial-gradient(ellipse 92% 58% at 72% 4%, rgb(255 255 255 / 0.075) 0%, transparent 48%),
    radial-gradient(ellipse 55% 45% at 18% 88%, rgb(0 0 0 / 0.15) 0%, transparent 50%),
    linear-gradient(
      41deg,
      var(--ground-900) 0%,
      var(--forest-900) 29%,
      var(--green-900) 55%,
      var(--forest-800) 79%,
      var(--ground-900) 100%
    );
}

.bg-section-dark.bg-section-dark--reviews.section-block::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image: repeating-linear-gradient(
    71deg,
    transparent,
    transparent 0.68rem,
    rgb(255 255 255 / 0.026) 0.68rem,
    rgb(255 255 255 / 0.026) 0.74rem
  );
}

.bg-section-dark.bg-section-dark--reviews.section-block::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(ellipse 65% 50% at 8% 96%, rgb(0 0 0 / 0.26) 0%, transparent 55%);
}

.bg-section-dark.bg-section-dark--service {
  background: linear-gradient(
    108deg,
    var(--ground-900) 0%,
    var(--forest-900) 26%,
    var(--forest-800) 44%,
    var(--green-900) 63%,
    var(--forest-900) 82%,
    var(--forest-800) 100%
  );
}

.bg-section-dark.bg-section-dark--service.section-block::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    repeating-linear-gradient(
      14deg,
      transparent,
      transparent 0.76rem,
      rgb(255 255 255 / 0.02) 0.76rem,
      rgb(255 255 255 / 0.02) 0.82rem
    ),
    linear-gradient(188deg, transparent 0%, rgb(0 0 0 / 0.2) 55%, transparent 100%);
}

.bg-section-dark.bg-section-dark--service.section-block::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(circle at 0% 45%, rgb(255 255 255 / 0.045) 0%, transparent 38%),
    radial-gradient(ellipse 80% 60% at 100% 0%, rgb(255 255 255 / 0.03) 0%, transparent 45%);
}

#service-area .map-wrap iframe {
  box-shadow:
    0 0.35rem 1rem rgb(0 0 0 / 0.35),
    0 0 0 1px rgb(255 255 255 / 0.08);
}
