:root {
  --bg: #f7f8f4;
  --bg-1: #145d2c;
  --surface: #ffffff;
  --text: #0f2418;
  --text-accent: #75e425;
  --text-muted: #4c6755;
  --accent: #70df20;
  --accent-dark: #145d2c;
  --hero-bottom: #1b4332;
  --hero-top: #2d6a4f;
  --lime: #95d5b2;
  --border: #dce5dd;
  --radius: 12px;
  --max: 1120px;
  --shadow: 0 20px 50px -18px rgba(27, 67, 50, 0.35);
  --font-display: "Archivo Black", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  padding-bottom: calc(4.75rem + env(safe-area-inset-bottom, 0px));
}

@media (min-width: 640px) {
  body {
    padding-bottom: calc(3.75rem + env(safe-area-inset-bottom, 0px));
  }
}

/* Fixed bottom credit — body padding-bottom above keeps footer content clear */
.builder-credit {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 40;
  padding: 0.65rem 1.25rem;
  padding-bottom: max(0.65rem, env(safe-area-inset-bottom, 0px));
  background: rgba(15, 36, 24, 0.94);
  color: rgba(255, 255, 255, 0.92);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  text-align: center;
  font-size: 0.8125rem;
  line-height: 1.45;
}

.builder-credit__text {
  margin: 0 auto;
  max-width: 40rem;
}

@media (min-width: 768px) {
  .builder-credit {
    font-size: 0.85rem;
    padding: 0.55rem 1.5rem;
    padding-bottom: max(0.55rem, env(safe-area-inset-bottom, 0px));
  }
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  letter-spacing: -0.02em;
  line-height: 1.05;
  font-weight: 400;
}

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

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

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.25rem;
}

@media (min-width: 768px) {
  .container {
    padding: 0 1.5rem;
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 248, 244, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
  flex-wrap: nowrap;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 0;
}

.site-logo__img {
  height: 2.75rem;
  width: auto;
  max-width: min(160px, 40vw);
  object-fit: contain;
  display: block;
}

@media (min-width: 768px) {
  .site-logo__img {
    height: 3.25rem;
    max-width: 220px;
  }
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 1.25rem;
  font-size: 0.9rem;
  font-weight: 500;
}

.site-nav a {
  color: var(--text);
  opacity: 0.85;
  padding: 0.25rem 0;
  border-bottom: 2px solid transparent;
  transition: opacity 0.15s, border-color 0.15s;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  opacity: 1;
  border-bottom-color: var(--accent-dark);
}

.site-header__cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.site-header__cta .btn svg {
  width: 1.125rem;
  height: 1.125rem;
  flex-shrink: 0;
}

/* ── Hamburger toggle ── */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
  border-radius: 8px;
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  transition: background 0.15s;
}

.nav-toggle:hover {
  background: rgba(0, 0, 0, 0.07);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
  transform-origin: center;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 767px) {
  .site-header > .container {
    padding-left: max(1.5rem, env(safe-area-inset-left, 0px));
    padding-right: max(1.5rem, env(safe-area-inset-right, 0px));
  }

  .nav-toggle {
    display: flex;
  }

  .site-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: var(--bg);
    border-bottom: 2px solid var(--border);
    flex-direction: column;
    gap: 0;
    padding: 0;
    box-shadow: 0 8px 24px rgba(15, 36, 24, 0.12);
    z-index: 49;
  }

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

  .site-nav a {
    padding: 1rem max(1.5rem, env(safe-area-inset-right, 0px)) 1rem
      max(1.5rem, env(safe-area-inset-left, 0px));
    font-size: 1rem;
    border-bottom: 1px solid var(--border);
    border-radius: 0;
  }

  .site-nav a:last-child {
    border-bottom: none;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem 1.15rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: transform 0.12s, box-shadow 0.12s, background 0.12s;
  text-decoration: none;
}

.btn:active {
  transform: scale(0.98);
}

.btn--primary {
  background: linear-gradient(135deg, var(--accent) 0%, #38ae1c 100%);
  color: #0d1f14;
  box-shadow: 0 0px 15px var(--accent);
}

.btn--primary:hover {
  box-shadow: 0 6px 28px rgba(45, 106, 79, 0.35);
  opacity: 0.9;
  transform: scale(1.01);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.12);
  color: #f4f9f5;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.2);
}

.btn--outline {
  background: var(--surface);
  color: var(--accent-dark);
  border: 2px solid var(--accent-dark);
}

.btn--outline:hover {
  background: rgba(45, 106, 79, 0.06);
}

.hero {
  /* ── Hero side padding: change --hero-padding-x (one value affects left & right). ──
     Examples: 1.25rem  |  clamp(1rem, 5vw, 2.5rem)  |  max(16px, env(safe-area-inset-left)) */
  --hero-padding-x: clamp(1.25rem, 5vw, 2rem);
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: linear-gradient(
    165deg,
    var(--hero-top) 0%,
    var(--hero-bottom) 20%,
    #0f2e22 100%
  );
  color: #f4f9f5;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

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

.hero__video--desktop {
  display: none;
}

@media (min-width: 768px) {
  .hero__video--mobile {
    display: none;
  }

  .hero__video--desktop {
    display: block;
  }
}

.hero__fallback {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.hero__media--fallback .hero__fallback {
  opacity: 1;
}

.hero__media--fallback .hero__video--mobile,
.hero__media--fallback .hero__video--desktop {
  display: none !important;
}

.hero__scrim {
  opacity: 0.4;
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    165deg,
    var(--accent) 0%,
    var(--accent-dark) 50%
  );
}

.hero__pattern {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.2;
  background: repeating-linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.03) 0 60px,
    transparent 60px 120px
  );
}

.hero__inner {
  position: relative;
  z-index: 1;
  padding: 3.5rem var(--hero-padding-x) 3rem;
  text-align: left;
}

@media (min-width: 768px) {
  .hero__inner {
    padding: 7.5rem var(--hero-padding-x) 8rem;
  }
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 1rem;
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #fff;
}

.hero__eyebrow-icon {
  width: 0.875rem;
  height: 0.875rem;
  flex-shrink: 0;
}

.eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--lime);
  margin-bottom: 1rem;
}

.hero h1 {
  font-size: clamp(2.25rem, 9vw, 5.25rem);
  margin: 0 0 1.25rem;
  color: #f4f9f5;
  line-height: 0.95;
}

.hero__heading-accent {
  display: block;
  color: var(--text-accent);
  margin-top: 0.06em;
}

.hero__lead {
  font-size: 1.1rem;
  max-width: 36rem;
  color: rgba(244, 249, 245, 0.88);
  margin: 0 0 2rem;
}

@media (min-width: 768px) {
  .hero__lead {
    font-size: 1.2rem;
  }
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 2.5rem;
  justify-content: flex-start;
}

.hero__actions .btn {
  flex: 1 1 auto;
}

@media (min-width: 480px) {
  .hero__actions .btn {
    flex: 0 0 auto;
  }
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(244, 249, 245, 0.9);
  justify-content: flex-start;
}

.hero__badges span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.hero__badges span::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.section {
  padding: 3rem 0;
}

@media (min-width: 768px) {
  .section {
    padding: 4.5rem 0;
  }
}

.section--muted {
  background: rgba(255, 255, 255, 0.65);
}

.section--reviews-teaser {
  text-align: center;
}

.reviews-teaser {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
}

.reviews-teaser__stars {
  width: min(20rem, 88vw);
  aspect-ratio: 93.83 / 19.2;
  flex-shrink: 0;
  background-color: var(--accent);
  -webkit-mask-image: url("../assets/5-star-icon.svg");
  mask-image: url("../assets/5-star-icon.svg");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
}

.reviews-teaser__title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.5vw, 2.75rem);
  margin: 0;
  line-height: 1.05;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--text);
}

.section__head {
  max-width: 40rem;
  margin-bottom: 1.25rem;
}

@media (max-width: 767px) {
  .section__head {
    margin-bottom: 0.5rem;
  }
}

.section__head h2 {
  font-size: clamp(1.85rem, 3.5vw, 2.75rem);
  margin: 0 0 0.75rem;
}

.section__head p {
  margin: 0;
  color: var(--text-muted);
  font-size: 1.05rem;
}

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

@media (min-width: 768px) {
  .grid-2 {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
  }
}

.feature-list {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  padding-left: 0;
  color: var(--text);
}

/* Lucide circle-check — stroke matches --accent-dark */
.feature-list li::before {
  content: "";
  flex-shrink: 0;
  width: 1.125rem;
  height: 1.125rem;
  margin-top: 0.2em;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232d6a4f' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='m9 12 2 2 4-4'/%3E%3C/svg%3E")
    center / contain no-repeat;
}

.cta-bar {
  position: relative;
  isolation: isolate;
  background: var(--bg-1);
  color: #f4f9f5;
  padding: 3rem 0;
  text-align: center;
}

.cta-bar::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 1;
  background: repeating-linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.03) 0 60px,
    transparent 60px 120px
  );
}

.cta-bar > .container {
  position: relative;
  z-index: 1;
}

.cta-bar h2 {
  margin: 0 0 0.5rem;
  font-size: clamp(3rem, 3vw, 4rem);
}

.cta-bar p {
  margin: 0 0 1.5rem;
  opacity: 0.9;
}

.cta-bar__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

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

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

@media (min-width: 900px) {
  .card-grid--3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 2px);
  padding: 1.5rem;
  box-shadow: 0 8px 30px rgba(15, 36, 24, 0.06);
}

.card h3 {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 0.6rem;
}

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

.gallery-card__img {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  margin-bottom: 1rem;
  overflow: hidden;
  background: linear-gradient(
    145deg,
    rgba(45, 106, 79, 0.35),
    rgba(149, 213, 178, 0.55)
  );
}

.gallery-card__img:not(.ba-compare) > img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-card__img.ba-compare {
  padding: 0;
}

.ba-compare__inner {
  --compare-pct: 50%;
  position: absolute;
  inset: 0;
}

.ba-compare__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  border: none;
  object-fit: cover;
  display: block;
}

.ba-compare__after {
  z-index: 0;
}

.ba-compare__before {
  z-index: 1;
  clip-path: polygon(
    0 0,
    var(--compare-pct, 50%) 0,
    var(--compare-pct, 50%) 100%,
    0 100%
  );
}

.ba-compare__divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--compare-pct, 50%);
  z-index: 2;
  width: 4px;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.95);
  box-shadow:
    -2px 0 8px rgba(0, 0, 0, 0.2),
    2px 0 8px rgba(0, 0, 0, 0.12);
  pointer-events: none;
}

.ba-compare__knob {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  width: 2.125rem;
  height: 2.125rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.98);
  border: 3px solid var(--accent-dark);
  box-shadow: 0 4px 12px rgba(15, 36, 24, 0.2);
}

.ba-compare__arrow {
  width: 0;
  height: 0;
  border-top: 0.275rem solid transparent;
  border-bottom: 0.275rem solid transparent;
  flex-shrink: 0;
}

.ba-compare__arrow--left {
  border-right: 0.35rem solid var(--accent-dark);
  margin-right: 0.025rem;
}

.ba-compare__arrow--right {
  border-left: 0.35rem solid var(--accent-dark);
  margin-left: 0.025rem;
}

.ba-compare__range {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
  z-index: 3;
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
}

.ba-compare__range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 3rem;
  height: 3rem;
}

.ba-compare__range::-moz-range-thumb {
  width: 3rem;
  height: 3rem;
  border: 0;
  background: transparent;
}

.gallery-card__tag {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent-dark);
  margin-bottom: 0.35rem;
}

.card > .gallery-card__tag {
  color: var(--accent-dark);
}

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

.pill {
  padding: 0.45rem 0.85rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
}

.review {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
}

.review__stars {
  color: var(--accent);
  font-size: 1rem;
  margin-bottom: 0.5rem;
  letter-spacing: 0.08em;
}

.review__stars-empty {
  opacity: 0.4;
  color: var(--text-muted);
}

.review p {
  margin: 0;
  color: var(--text);
  font-style: italic;
}

.review__meta {
  margin-top: 0.75rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
}

.form {
  max-width: 32rem;
  margin: 0 auto;
  text-align: left;
}

.form label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: var(--text);
}

.form input,
.form select,
.form textarea {
  width: 100%;
  padding: 0.65rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 1rem;
  margin-bottom: 1rem;
  background: var(--surface);
}

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

.form__hint {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: -0.75rem 0 1rem;
}

.form__note {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 1rem;
}

.site-footer {
  background: var(--bg-1);
  color: rgba(244, 249, 245, 0.88);
  padding: 3rem 0 2rem;
  font-size: 0.9rem;
}

.site-footer a {
  color: rgba(244, 249, 245, 0.88);
}

.site-footer a:hover {
  text-decoration: underline;
  color: var(--accent)
}

.site-footer__grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 640px) {
  .site-footer__grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

.site-footer h4 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgb(255, 255, 255);
  margin: 0 0 0.75rem;
}

.site-footer p {
  margin: 0.25rem 0;
}

.site-footer__bottom {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.85rem;
  color: rgba(244, 249, 245, 0.55);
}

.page-hero {
  padding: 3.5rem 0 2.5rem;
  background: linear-gradient(180deg, rgba(45, 106, 79, 0.12), transparent);
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  margin: 0 0 0.75rem;
}

.page-hero p {
  margin: 0 auto;
  max-width: 40rem;
  color: var(--text-muted);
  font-size: 1.1rem;
}

/* Inner page hero (services, gallery, reviews): left-aligned, container inside header */
.services-page .page-hero--services,
.gallery-page .page-hero--services,
.reviews-page .page-hero--services {
  text-align: left;
  background: transparent;
  padding-top: 3rem;
  padding-bottom: 0.5rem;
}

.services-page .page-hero--services p,
.gallery-page .page-hero--services p,
.reviews-page .page-hero--services p {
  margin-left: 0;
  margin-right: 0;
}

@media (min-width: 768px) {
  .services-page .page-hero--services,
  .gallery-page .page-hero--services,
  .reviews-page .page-hero--services {
    padding-top: 4rem;
    padding-bottom: 1rem;
  }
}

.reviews-page .page-hero--services {
  background: var(--surface);
}

.eyebrow--services {
  color: var(--accent-dark);
  margin-bottom: 1rem;
  letter-spacing: 0.14em;
}

.services-page .page-hero--services .eyebrow--services,
.gallery-page .page-hero--services .eyebrow--services,
.reviews-page .page-hero--services .eyebrow--services {
  margin-left: 0;
  margin-right: 0;
  max-width: none;
  text-align: left;
  color: var(--accent-dark);
}

.services-page .page-hero--services h1,
.gallery-page .page-hero--services h1,
.reviews-page .page-hero--services h1 {
  color: var(--text);
  max-width: none;
  line-height: 1.08;
}

.services-page__h1-line2 {
  white-space: nowrap;
}

@media (max-width: 380px) {
  .services-page .page-hero--services h1,
  .gallery-page .page-hero--services h1,
  .reviews-page .page-hero--services h1 {
    font-size: clamp(1.45rem, 7.5vw, 2rem);
  }
}

.services-page .page-hero--services .page-hero__lead,
.gallery-page .page-hero--services .page-hero__lead,
.reviews-page .page-hero--services .page-hero__lead {
  margin: 0;
  max-width: 32rem;
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.6;
}

.services-section,
.gallery-section,
.reviews-section {
  padding-top: 1.5rem;
}

@media (min-width: 768px) {
  .services-section,
  .gallery-section,
  .reviews-section {
    padding-top: 2rem;
  }
}

.service-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  margin-bottom: 1.125rem;
  border-radius: 10px;
  background: rgba(149, 213, 178, 0.45);
  color: var(--accent-dark);
}

.service-card__icon svg {
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
}

.service-card h3 {
  color: var(--text);
  font-size: 1.125rem;
  font-weight: 700;
}

.service-area-layout {
  display: grid;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 900px) {
  .service-area-layout {
    grid-template-columns: minmax(0, 1.06fr) minmax(260px, 1fr);
    gap: clamp(2rem, 5vw, 4rem);
  }
}

.service-area-main-col .eyebrow--area {
  color: var(--accent-dark);
  letter-spacing: 0.14em;
  margin-bottom: 1rem;
}

.service-area-main-col h1 {
  font-size: clamp(2rem, 4vw, 3.125rem);
  margin: 0 0 1rem;
  color: var(--text);
  letter-spacing: -0.03em;
  line-height: 1.02;
}

.service-area-lead {
  margin: 0;
  max-width: 36rem;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text-muted);
}

.service-area-chips {
  list-style: none;
  margin: 1.75rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.6rem;
}

.service-area-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1rem 0.5rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent-dark);
  background: rgba(149, 213, 178, 0.2);
  border: 1px solid var(--accent-dark);
  border-radius: 999px;
  line-height: 1.25;
}

.service-area-chip__pin {
  width: 0.9375rem;
  height: 0.9375rem;
  flex-shrink: 0;
  color: var(--accent-dark);
  overflow: visible;
}

.service-area-about {
  background: #eef1eb;
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 4px);
  padding: clamp(1.35rem, 3vw, 2rem);
  box-shadow: 0 12px 40px -28px rgba(15, 36, 24, 0.14);
}

.service-area-about h2 {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.8vw, 1.8125rem);
  margin: 0 0 1rem;
  color: var(--text);
  letter-spacing: -0.02em;
  font-weight: 400;
  line-height: 1.1;
}

.service-area-about__text {
  margin: 0 0 1rem;
  font-size: 0.975rem;
  line-height: 1.62;
  color: var(--text-muted);
}

.service-area-about__divider {
  border: 0;
  border-top: 1px solid var(--border);
  margin: 1.35rem 0 1.2rem;
}

.service-area-about__hours {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.service-area-about__clock {
  flex-shrink: 0;
  width: 2.875rem;
  height: 2.875rem;
  border-radius: 50%;
  background: var(--accent-dark);
  color: rgba(247, 248, 244, 0.96);
  display: grid;
  place-items: center;
}

.service-area-about__clock svg {
  display: block;
}

.service-area-about__hours-strong {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent-dark);
  line-height: 1.3;
}

.service-area-about__hours-sub {
  margin: 0.2rem 0 0;
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.stack {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

/* ── Page reveal intro ── */
#page-reveal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  pointer-events: all;
}

.reveal-strip {
  position: absolute;
  top: 0;
  width: 121px; /* 1px overlap prevents hairline gaps */
  height: 100vh;
  background: #145d2c;
  will-change: transform;
  animation: reveal-strip-fall 0.72s cubic-bezier(0.3, 0, 0.9, 0.7) forwards;
}

@keyframes reveal-strip-fall {
  from { transform: translateY(0); }
  to   { transform: translateY(110vh); }
}
