/* ============================================================
   Our 6 Landscaping — Design System & Site Styles
   Static site · no build step · en-US
   ============================================================ */

/* ---------- Fonts (self-hosted, variable) ---------- */
@font-face {
  font-family: 'Oswald';
  font-style: normal;
  font-weight: 200 700;
  font-display: swap;
  src: url('../assets/fonts/oswald-var-latin.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('../assets/fonts/inter-var-latin.woff2') format('woff2');
}

/* ---------- Design tokens ---------- */
:root {
  /* Color */
  --ink: #131711;          /* near-black, green-tinted */
  --ink-2: #1e241c;
  --green: #2e7d32;        /* primary — match to logo green when file arrives */
  --green-dark: #1f5b23;
  --green-tint: #e9f2e9;
  --bg: #f6f7f4;           /* off-white */
  --white: #ffffff;
  --line: #e2e6df;
  --text: #2b302a;
  --muted: #566052;
  --on-dark-muted: #b9c2b6;

  /* Gradients: exactly one definition per pattern, one angle each.
     grad-green       = the "Let's Get Your Property Squared Away" band
     grad-black-green = the estimate-page hero pattern */
  --grad-green: linear-gradient(120deg, #17421c, var(--green-dark) 55%, #26692c);
  --grad-black-green: linear-gradient(115deg, var(--ink) 40%, #1c2b1e);

  /* Type */
  --font-head: 'Oswald', 'Arial Narrow', Impact, sans-serif;
  --font-body: 'Inter', -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;

  /* Layout */
  --container: 1180px;
  --radius: 10px;
  --radius-lg: 16px;
  --shadow: 0 1px 2px rgba(19, 23, 17, .06), 0 8px 24px rgba(19, 23, 17, .07);
  --shadow-lift: 0 2px 4px rgba(19, 23, 17, .08), 0 16px 40px rgba(19, 23, 17, .14);
  --section-pad: clamp(56px, 9vw, 104px);
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--green-dark); }
a:hover { color: var(--green); }
h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 600;
  line-height: 1.15;
  color: var(--ink);
  margin: 0 0 .5em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.1rem, 5.2vw, 3.4rem); text-transform: uppercase; letter-spacing: .01em; }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.4rem); text-transform: uppercase; letter-spacing: .01em; }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1em; }
ul { padding-left: 1.2em; }

:focus-visible {
  /* two-ring indicator: white inner ring + green outline = >=3:1 on light AND dark */
  outline: 3px solid var(--green);
  outline-offset: 2px;
  box-shadow: 0 0 0 2px var(--white);
  border-radius: 2px;
}
::placeholder { color: var(--muted); opacity: 1; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: absolute;
  left: 8px; top: -48px;
  z-index: 200;
  background: var(--ink);
  color: var(--white);
  padding: 10px 16px;
  border-radius: 0 0 8px 8px;
  text-decoration: none;
  transition: top .15s ease;
}
.skip-link:focus { top: 0; color: var(--white); }

.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(16px, 4vw, 28px);
}
.section { padding-block: var(--section-pad); }
.section--tint { background: var(--bg); }

/* Section headings */
.section-head { max-width: 720px; margin-bottom: clamp(28px, 5vw, 48px); }
.section-head--center { margin-inline: auto; text-align: center; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--green-dark);
  margin-bottom: 10px;
}
.eyebrow::before {
  content: '';
  width: 26px; height: 3px;
  background: var(--green);
  border-radius: 2px;
}
.section-head--center .eyebrow::after {
  content: '';
  width: 26px; height: 3px;
  background: var(--green);
  border-radius: 2px;
}
.section-head p { color: var(--muted); margin-bottom: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: var(--radius);
  padding: 13px 26px;
  cursor: pointer;
  transition: background-color .18s ease, border-color .18s ease, color .18s ease, transform .18s ease;
}
.btn:active { transform: translateY(1px); }
.btn--green { background: var(--green); color: var(--white); }
.btn--green:hover { background: var(--green-dark); color: var(--white); }
.btn--dark { background: var(--ink); color: var(--white); }
.btn--dark:hover { background: var(--ink-2); color: var(--white); }
.btn--outline-light { border-color: rgba(255,255,255,.85); color: var(--white); background: rgba(255,255,255,.04); }
.btn--outline-light:hover { background: var(--white); color: var(--ink); }
.btn--lg { padding: 16px 32px; font-size: 1.08rem; }
.btn .icon { width: 18px; height: 18px; flex: none; }

.icon { width: 20px; height: 20px; fill: currentColor; }

/* ============================================================
   Header
   ============================================================ */

/* Top bar */
.topbar {
  background: var(--ink);
  color: var(--on-dark-muted);
  font-size: .85rem;
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 40px;
  padding-block: 6px;
}
.topbar__contacts {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 22px;
  margin: 0; padding: 0;
  list-style: none;
}
.topbar a {
  color: var(--on-dark-muted);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.topbar a:hover { color: var(--white); }
.topbar .icon { width: 14px; height: 14px; fill: var(--green); }
.topbar__social { display: flex; align-items: center; gap: 4px; }
.topbar__social a { padding: 6px; border-radius: 6px; }
.topbar__social .icon { width: 16px; height: 16px; fill: var(--on-dark-muted); }
.topbar__social a:hover .icon { fill: var(--white); }
.topbar__badge {
  color: var(--white);
  font-weight: 600;
  white-space: nowrap;
}
.topbar__badge .icon { fill: var(--green); }

/* Main header */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .2s ease;
}
.header.is-scrolled { box-shadow: var(--shadow); }
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 76px;
}
.header__logo {
  flex: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.header__logo-mark { height: 54px; width: 54px; object-fit: contain; }
.header__logo-text {
  display: grid;
  gap: 2px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.28rem;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: .02em;
  color: var(--ink);
}
.header__logo-text small {
  font-size: .6rem;
  font-weight: 600;
  letter-spacing: .16em;
  color: var(--green-dark);
}

.nav { display: flex; align-items: center; }
.nav__list {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0; padding: 0;
  list-style: none;
}
.nav__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  font-weight: 600;
  font-size: .96rem;
  color: var(--ink);
  text-decoration: none;
  padding: 10px 13px;
  border-radius: 8px;
}
.nav__link:hover, .nav__link[aria-expanded="true"] { color: var(--green-dark); background: var(--green-tint); }
.nav__link[aria-current="page"] { color: var(--green-dark); }
.nav__caret { width: 12px; height: 12px; fill: currentColor; transition: transform .15s ease; }
.nav__link[aria-expanded="true"] .nav__caret { transform: rotate(180deg); }

.nav__item--dropdown { position: relative; }
.dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 250px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lift);
  padding: 8px;
  margin: 0;
  list-style: none;
  display: none;
  z-index: 110;
}
.dropdown.is-open { display: block; }
.dropdown a {
  display: block;
  padding: 9px 12px;
  border-radius: 7px;
  color: var(--text);
  text-decoration: none;
  font-size: .93rem;
}
.dropdown a:hover { background: var(--green-tint); color: var(--green-dark); }
/* "View All" sits first in the panel for touch/mobile users; on desktop
   pointers the parent item itself navigates, so the duplicate is hidden */
.dropdown__all { border-bottom: 1px solid var(--line); margin-bottom: 6px; padding-bottom: 6px; }
.dropdown__all a { font-weight: 600; color: var(--green-dark); }
@media (hover: hover) and (min-width: 1021px) {
  .dropdown__all { display: none; }
  /* invisible hover bridge across the 6px gap between parent and panel,
     so moving the pointer from parent into the panel cannot close it */
  .dropdown::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 0;
    right: 0;
    height: 8px;
  }
}

.header__cta { flex: none; }
.nav__mobile-cta { display: none; }

/* Mobile nav */
.nav-toggle {
  display: none;
  flex: none;
  background: none;
  border: 2px solid var(--line);
  border-radius: 8px;
  padding: 9px 11px;
  cursor: pointer;
  color: var(--ink);
}
.nav-toggle .icon { width: 22px; height: 22px; display: block; }
.nav-toggle .nav-toggle__close { display: none; }
.nav-toggle[aria-expanded="true"] .nav-toggle__open { display: none; }
.nav-toggle[aria-expanded="true"] .nav-toggle__close { display: block; }

@media (max-width: 1020px) {
  .topbar__contacts li:nth-child(1) { display: none; }  /* hide address first */
  .nav-toggle { display: inline-flex; }
  .header__cta { display: none; }
  .nav {
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-lift);
    display: none;
    max-height: calc(100dvh - 120px);
    overflow-y: auto;
  }
  .nav.is-open { display: block; }
  .nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px clamp(16px, 4vw, 28px) 20px;
  }
  .nav__link { width: 100%; justify-content: space-between; padding: 13px 10px; font-size: 1.05rem; }
  .dropdown {
    position: static;
    display: none;
    box-shadow: none;
    border: none;
    border-left: 3px solid var(--green-tint);
    border-radius: 0;
    margin: 0 0 4px 10px;
    padding: 0 0 0 6px;
    min-width: 0;
  }
  .dropdown.is-open { display: block; }
  .nav__mobile-cta { margin-top: 14px; display: grid; gap: 10px; }
}
@media (max-width: 640px) {
  .topbar__contacts li:nth-child(3) { display: none; } /* hide email too */
  .topbar__social { display: none; }
  .header__logo { gap: 9px; }
  .header__logo-mark { height: 44px; width: 44px; }
  .header__logo-text { font-size: 1.05rem; }
  .header__logo-text small { font-size: .5rem; }
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  background: var(--ink);
  color: var(--white);
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .38;
  filter: contrast(.9); /* client feedback: slightly reduced photo contrast */
}
.hero__inner {
  position: relative;
  padding-block: clamp(72px, 12vw, 150px);
  max-width: 800px;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(46, 125, 50, .22);
  border: 1px solid rgba(127, 191, 131, .5);
  color: #cfe6d1;
  font-weight: 600;
  font-size: .85rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 7px 16px;
  margin-bottom: 22px;
}
.hero__badge .icon { width: 15px; height: 15px; fill: #7fbf83; }
.hero h1 { color: var(--white); margin-bottom: .45em; }
.hero h1 .accent { color: #8fd193; }
.hero__sub {
  font-size: clamp(1.02rem, 1.6vw, 1.15rem);
  color: #d7ddd4;
  max-width: 620px;
  margin-bottom: 30px;
}
.hero__ctas { display: flex; flex-wrap: wrap; gap: 14px; }
.hero__note {
  margin-top: 22px;
  font-size: .9rem;
  color: var(--on-dark-muted);
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
}
.hero__note span { display: inline-flex; align-items: center; gap: 7px; }
.hero__note .icon { width: 15px; height: 15px; fill: var(--green); }

/* ============================================================
   Why Choose Us
   ============================================================ */
.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.feature {
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 4px solid var(--green);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
}
.feature__icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: var(--green-tint);
  display: grid;
  place-items: center;
  margin-bottom: 16px;
}
.feature__icon .icon { width: 26px; height: 26px; fill: var(--green-dark); }
.feature h3 { margin-bottom: .35em; }
.feature p { color: var(--muted); font-size: .95rem; margin: 0; }
/* Homepage trust cards are whole-card links; hover mirrors the service tiles below */
a.feature {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease;
}
a.feature:hover,
a.feature:focus-visible { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
@media (max-width: 980px) { .features { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .features { grid-template-columns: 1fr; } }

/* ============================================================
   Services grid
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: transform .18s ease, box-shadow .18s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.service-card__media { aspect-ratio: 4 / 3; overflow: hidden; }
.service-card__media img { width: 100%; height: 100%; object-fit: cover; }
.service-card__body { padding: 20px 22px 22px; display: flex; flex-direction: column; flex: 1; }
.service-card h3 { margin-bottom: .3em; }
.service-card h3 a { color: inherit; text-decoration: none; }
.service-card h3 a::after { content: ''; position: absolute; inset: 0; } /* whole-card click */
.service-card { position: relative; }
.service-card p { color: var(--muted); font-size: .94rem; margin: 0 0 14px; flex: 1; }
.service-card__list {
  list-style: none;
  margin: 0 0 14px;
  padding: 0;
  display: grid;
  gap: 7px;
  align-content: start;
  flex: 1;
}
.service-card__list li {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-size: .92rem;
  color: var(--muted);
}
.service-card__list .icon {
  width: 13px; height: 13px;
  fill: var(--green);
  flex: none;
  transform: translateY(1px);
}
.service-card__list a {
  color: inherit;
  text-decoration: none;
  position: relative;
  z-index: 1; /* stay clickable above the card's stretched link */
}
.service-card__list a:hover { color: var(--green-dark); text-decoration: underline; }
.service-card__more {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .9rem;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--green-dark);
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.service-card__more .icon { width: 15px; height: 15px; transition: transform .18s ease; }
.service-card:hover .service-card__more .icon { transform: translateX(4px); }
.services-cta { margin-top: 36px; text-align: center; }
@media (max-width: 980px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) {
  /* compact 2-column grid on mobile; odd last card spans full width */
  .services-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .services-grid > .service-card:last-child:nth-child(odd) { grid-column: 1 / -1; }
  .service-card__media { aspect-ratio: 16 / 10; }
  .service-card__body { padding: 13px 13px 15px; }
  .service-card h3 { font-size: .99rem; }
  .service-card__list { gap: 5px; margin-bottom: 11px; }
  .service-card__list li { font-size: .78rem; }
  .service-card__list .icon { width: 11px; height: 11px; }
  .service-card__more { font-size: .76rem; }
}

/* ============================================================
   Stats bar
   ============================================================ */
/* same deep-green band treatment as the cta-band (reviewer's Reference A) */
.stats { background: var(--grad-green); color: var(--white); }
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding-block: clamp(36px, 6vw, 56px);
  text-align: center;
}
.stat__num {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(2.1rem, 4.5vw, 3rem);
  line-height: 1;
  color: var(--white);
}
.stat__num sup { font-size: .55em; color: #cfe6d1; }
.stat__label {
  margin-top: 8px;
  font-size: .92rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: #ddedde;
}
@media (max-width: 700px) { .stats__grid { grid-template-columns: repeat(2, 1fr); row-gap: 34px; } }

/* ============================================================
   Gallery (category-filtered portfolio)
   ============================================================ */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: clamp(22px, 4vw, 34px);
}
.gallery-filter {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .88rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--text);
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: 999px;
  padding: 8px 18px;
  cursor: pointer;
  transition: background-color .15s ease, border-color .15s ease, color .15s ease;
}
.gallery-filter:hover { border-color: var(--green); color: var(--green-dark); }
.gallery-filter.is-active {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.gallery-item a {
  position: relative;
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow);
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .25s ease;
}
.gallery-item a:hover img { transform: scale(1.045); }
.gallery-item__tag {
  position: absolute;
  left: 10px; bottom: 10px;
  background: rgba(19, 23, 17, .78);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 500;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .07em;
  border-radius: 999px;
  padding: 5px 12px;
  pointer-events: none;
}
@media (max-width: 900px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) {
  /* compact 2-column grid on mobile; odd last tile spans full width */
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .gallery-grid > .gallery-item:last-child:nth-child(odd) { grid-column: 1 / -1; }
  .gallery-item__tag { left: 7px; bottom: 7px; font-size: .62rem; padding: 4px 9px; }
  .gallery-filter { font-size: .78rem; padding: 7px 13px; }
}

/* ============================================================
   Lightbox (gallery page)
   ============================================================ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(15, 18, 14, .93);
  display: grid;
  place-items: center;
  padding: clamp(14px, 4vw, 40px);
}
.lightbox[hidden] { display: none; }
.lightbox figure { margin: 0; max-width: min(1100px, 100%); }
.lightbox img {
  max-width: 100%;
  max-height: 78vh;
  width: auto;
  margin-inline: auto;
  border-radius: var(--radius);
  box-shadow: 0 10px 50px rgba(0, 0, 0, .5);
}
.lightbox figcaption {
  margin-top: 12px;
  text-align: center;
  color: var(--on-dark-muted);
  font-size: .92rem;
}
.lightbox__btn {
  position: absolute;
  display: grid;
  place-items: center;
  width: 46px; height: 46px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, .12);
  color: var(--white);
  cursor: pointer;
  transition: background-color .15s ease;
}
.lightbox__btn:hover { background: rgba(255, 255, 255, .28); }
.lightbox__btn .icon { width: 22px; height: 22px; fill: currentColor; }
.lightbox__close { top: 16px; right: 16px; }
.lightbox__prev { left: 10px; top: 50%; transform: translateY(-50%); }
.lightbox__next { right: 10px; top: 50%; transform: translateY(-50%); }
.lightbox__prev .icon { transform: rotate(180deg); }
@media (max-width: 640px) {
  .lightbox__prev { left: 4px; }
  .lightbox__next { right: 4px; }
  .lightbox img { max-height: 66vh; }
}

/* ============================================================
   Blog index
   ============================================================ */
.post-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.post-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}
.post-card__media { aspect-ratio: 16 / 10; overflow: hidden; background: var(--green-tint); }
.post-card__media img { width: 100%; height: 100%; object-fit: cover; }
.post-card__body { padding: 20px 22px 22px; display: flex; flex-direction: column; flex: 1; }
.post-card__date {
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--muted);
  margin-bottom: 6px;
}
.post-card h3 { font-size: 1.15rem; margin-bottom: .4em; }
.post-card h3 a { color: inherit; text-decoration: none; }
.post-card h3 a:hover { color: var(--green-dark); }
.post-card p { color: var(--muted); font-size: .93rem; flex: 1; margin-bottom: 14px; }
.post-card--soon {
  border-style: dashed;
  box-shadow: none;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 24px;
}
.post-card--soon .icon { width: 34px; height: 34px; fill: var(--green); margin-bottom: 12px; }
.post-card--soon h3 { font-size: 1.05rem; }
.post-card--soon p { flex: none; margin: 0; }
@media (max-width: 900px) { .post-grid { grid-template-columns: 1fr; max-width: 560px; margin-inline: auto; } }

/* ============================================================
   Before / After slider
   ============================================================ */
.ba-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(20px, 4vw, 36px);
}
.ba-grid--single {
  grid-template-columns: min(760px, 100%);
  justify-content: center;
}
.ba-slider { margin: 0; }
.ba-slider__frame {
  --ba-pos: 50%;
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--ink-2);
  box-shadow: var(--shadow-lift);
  cursor: ew-resize;
  touch-action: pan-y;
  user-select: none;
  -webkit-user-select: none;
}
.ba-slider__frame img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  pointer-events: none;
}
.ba-slider__before-layer {
  position: absolute;
  inset: 0;
  clip-path: inset(0 calc(100% - var(--ba-pos)) 0 0);
}
.ba-slider__divider {
  position: absolute;
  top: 0; bottom: 0;
  left: var(--ba-pos);
  width: 3px;
  transform: translateX(-50%);
  background: var(--white);
  box-shadow: 0 0 10px rgba(0, 0, 0, .45);
}
.ba-slider__handle {
  position: absolute;
  top: 50%;
  left: var(--ba-pos);
  transform: translate(-50%, -50%);
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--white);
  color: var(--ink);
  display: grid;
  place-items: center;
  box-shadow: 0 3px 14px rgba(0, 0, 0, .4);
  cursor: ew-resize;
}
.ba-slider__handle svg { width: 24px; height: 24px; }
.ba-slider__handle:hover { color: var(--green-dark); }
.ba-slider__label {
  position: absolute;
  top: 14px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .09em;
  color: var(--white);
  border-radius: 999px;
  padding: 5px 13px;
  pointer-events: none;
}
.ba-slider__label--before { left: 14px; background: rgba(19, 23, 17, .78); }
.ba-slider__label--after { right: 14px; background: var(--green); }
.ba-slider figcaption {
  margin-top: 13px;
  text-align: center;
  font-size: .92rem;
  color: var(--muted);
}
@media (max-width: 900px) { .ba-grid { grid-template-columns: 1fr; } }

/* ============================================================
   Process (booking steps)
   ============================================================ */
.process {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  counter-reset: step;
}
.step {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 20px 22px;
  box-shadow: var(--shadow);
}
.step__num {
  display: grid;
  place-items: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 14px;
}
.step h3 { font-size: 1.06rem; margin-bottom: .3em; }
.step p { color: var(--muted); font-size: .89rem; margin: 0; }
@media (max-width: 1020px) { .process { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px) { .process { grid-template-columns: 1fr 1fr; } }
@media (max-width: 460px) { .process { grid-template-columns: 1fr; } }

/* ============================================================
   Quote section
   ============================================================ */
.quote { background: var(--ink); color: var(--white); }
.quote__grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}
.quote__info h2 { color: var(--white); }
.quote__info .eyebrow { color: #8fd193; }
.quote__info > p { color: var(--on-dark-muted); }
/* MJ r3: the established card lift on every card group, site-wide.
   Same transform/shadow/timing as the service tiles and trust cards.
   .post-card--soon excluded: it is a dashed empty-state, not a card that
   should invite interaction. Gallery tiles keep their own zoom hover. */
.benefit, .city-card, .step, .side-card, article.feature,
.post-card:not(.post-card--soon), .reviews__track > li {
  transition: transform .18s ease, box-shadow .18s ease;
}
.benefit:hover, .city-card:hover, .step:hover, .side-card:hover,
article.feature:hover, .post-card:not(.post-card--soon):hover,
.reviews__track > li:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
}
@media (prefers-reduced-motion: reduce) {
  .benefit:hover, .city-card:hover, .step:hover, .side-card:hover,
  article.feature:hover, .post-card:not(.post-card--soon):hover,
  .reviews__track > li:hover { transform: none; }
}

.quote__booking { margin: 6px 0 4px; }
.quote__contacts { list-style: none; margin: 26px 0 0; padding: 0; display: grid; gap: 14px; }
.quote__contacts a { color: var(--white); text-decoration: none; }
.quote__contacts a:hover { color: #8fd193; }
.quote__contacts li { display: flex; align-items: flex-start; gap: 13px; }
.quote__contacts .icon { width: 20px; height: 20px; fill: var(--green); flex: none; margin-top: 3px; }
.quote__contacts small { display: block; color: var(--on-dark-muted); font-size: .82rem; letter-spacing: .06em; text-transform: uppercase; }

.form-card {
  background: var(--white);
  color: var(--text);
  border-radius: var(--radius-lg);
  padding: clamp(22px, 3.5vw, 36px);
  box-shadow: var(--shadow-lift);
}
.form-card h3 { font-size: 1.35rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 16px; }
.form-field--full { grid-column: 1 / -1; }
.form-field label {
  display: block;
  font-weight: 600;
  font-size: .88rem;
  margin-bottom: 5px;
  color: var(--ink);
}
.form-field input,
.form-field textarea {
  width: 100%;
  font: inherit;
  color: var(--text);
  background: var(--bg);
  border: 1.5px solid var(--line);
  border-radius: 8px;
  padding: 11px 13px;
}
.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(46, 125, 50, .18);
}
.form-field textarea { resize: vertical; min-height: 110px; }
.form-consent {
  grid-column: 1 / -1;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: .8rem;
  color: var(--muted);
  line-height: 1.5;
}
.form-consent input {
  width: 17px; height: 17px;
  margin-top: 2px;
  flex: none;
  accent-color: var(--green);
}
.form-card .btn { width: 100%; margin-top: 6px; }
.form-status { margin: 12px 0 0; font-weight: 600; display: none; }
.form-status.is-error { display: block; color: #b3261e; }
.form-status.is-success { display: block; color: var(--green-dark); }
@media (max-width: 900px) {
  .quote__grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   Testimonials
   ============================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}
.testimonial__stars { display: flex; gap: 3px; margin-bottom: 14px; }
.testimonial__stars .icon { width: 18px; height: 18px; fill: #e8a413; }
.testimonial blockquote { margin: 0 0 18px; font-size: .97rem; flex: 1; }
.testimonial figcaption { display: flex; align-items: center; gap: 12px; }
.testimonial__avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--green-tint);
  color: var(--green-dark);
  display: grid;
  place-items: center;
  font-family: var(--font-head);
  font-weight: 600;
  flex: none;
}
.testimonial__name { font-weight: 600; color: var(--ink); font-size: .95rem; }
.testimonial__meta { font-size: .8rem; color: var(--muted); }
.testimonials-note { margin-top: 22px; text-align: center; font-size: .85rem; color: var(--muted); }
@media (max-width: 900px) { .testimonials-grid { grid-template-columns: 1fr; max-width: 620px; margin-inline: auto; } }

/* ============================================================
   Google reviews carousel (hidden until real reviews exist)
   ============================================================ */
.reviews__viewport { overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: thin; }
.reviews__track {
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 4px;
  list-style: none;
}
.reviews__track > li {
  flex: 0 0 min(360px, 85vw);
  scroll-snap-align: start;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 22px;
  box-shadow: var(--shadow);
}
.reviews__track blockquote { margin: 0 0 14px; }
.reviews__nav { display: flex; justify-content: center; gap: 10px; margin-top: 18px; }
.reviews__btn {
  display: grid;
  place-items: center;
  width: 42px; height: 42px;
  border: 1.5px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  color: var(--green-dark);
  cursor: pointer;
  transition: border-color .18s ease, color .18s ease;
}
.reviews__btn:hover { border-color: var(--green); color: var(--green); }
.reviews__prev .icon { transform: rotate(180deg); }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { max-width: 780px; margin-inline: auto; display: grid; gap: 12px; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  font-weight: 600;
  color: var(--ink);
  font-size: 1.02rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .icon {
  width: 22px; height: 22px;
  flex: none;
  fill: var(--green-dark);
  transition: transform .2s ease;
}
.faq-item[open] summary .icon { transform: rotate(45deg); }
.faq-item[open] summary { color: var(--green-dark); }
.faq-item__body { padding: 0 22px 20px; color: var(--muted); }
.faq-item__body p { margin: 0; }

/* ============================================================
   Final CTA + map
   ============================================================ */
.cta-band {
  position: relative;
  /* kept dark enough that #cfe6d1/#ddedde text passes AA on every stop */
  background: var(--grad-green);
  color: var(--white);
  text-align: center;
}
.cta-band__inner { padding-block: clamp(56px, 8vw, 88px); max-width: 760px; margin-inline: auto; }
.cta-band h2 { color: var(--white); }
.cta-band p { color: #ddedde; font-size: 1.06rem; }
.cta-band .hero__ctas { justify-content: center; margin-top: 26px; }
.cta-band .btn--green { background: var(--ink); }
.cta-band .btn--green:hover { background: var(--ink-2); }

.map-section { padding-block: 0; }
.map-embed { position: relative; }
.map-embed iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: 0;
  filter: saturate(.9);
}
.map-areas {
  background: var(--bg);
  border-top: 1px solid var(--line);
}
.map-areas__inner { padding-block: 30px; text-align: center; }
.map-areas__inner strong {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--ink);
  font-weight: 600;
}
.map-areas ul {
  list-style: none;
  margin: 10px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 10px;
}
.map-areas li a {
  display: inline-block;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 15px;
  font-size: .88rem;
  color: var(--text);
  text-decoration: none;
}
.map-areas li a:hover { border-color: var(--green); color: var(--green-dark); }

/* ============================================================
   Interior pages
   ============================================================ */
.page-hero {
  background: var(--grad-black-green);
  color: var(--white);
}
.page-hero__inner { padding-block: clamp(44px, 7vw, 76px); max-width: 800px; }
.page-hero h1 { color: var(--white); margin-bottom: .25em; }
.page-hero p { color: #d7ddd4; font-size: 1.06rem; margin: 0; max-width: 640px; }
.breadcrumb {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0 0 14px;
  padding: 0;
  font-size: .85rem;
  color: var(--on-dark-muted);
}
.breadcrumb li + li::before { content: '/'; margin-right: 6px; opacity: .55; }
.breadcrumb a { color: var(--on-dark-muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb [aria-current] { color: #8fd193; }

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: clamp(28px, 5vw, 60px);
  align-items: start;
}
.about-copy h2 { font-size: clamp(1.5rem, 3vw, 2rem); }
.about-copy p { color: var(--text); }
.about-media img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lift);
}
.about-media figcaption {
  margin-top: 10px;
  font-size: .85rem;
  color: var(--muted);
  text-align: center;
}
.pullquote {
  border-left: 4px solid var(--green);
  background: var(--green-tint);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 18px 22px;
  margin: 26px 0;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--ink);
}
.pullquote small {
  display: block;
  margin-top: 6px;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: .84rem;
  color: var(--muted);
}
@media (max-width: 860px) { .about-grid { grid-template-columns: 1fr; } }

.page-hero .hero__ctas { margin-top: 26px; }
.section--sm { padding-block: clamp(40px, 6vw, 68px); }

/* Service pages */
.svc-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}
.svc-content h2 { font-size: clamp(1.35rem, 2.6vw, 1.8rem); margin-top: 1.7em; }
.svc-content h2:first-child { margin-top: 0; }
.svc-note { font-size: .88rem; color: var(--muted); }
.check-list {
  list-style: none;
  margin: 20px 0 8px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: .95rem;
}
.check-list .icon { width: 16px; height: 16px; fill: var(--green); flex: none; margin-top: 4px; }
/* Service icon rows pop on hover: same lift as the trust cards / image tiles */
.check-list li { transition: transform .18s ease, box-shadow .18s ease; }
.check-list li:hover,
.check-list li:focus-within { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
@media (prefers-reduced-motion: reduce) {
  .check-list li:hover,
  .check-list li:focus-within { transform: none; }
}
.check-list a { color: inherit; text-decoration: none; }
.check-list a:hover { color: var(--green-dark); text-decoration: underline; }
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 20px;
}
.benefit {
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 4px solid var(--green);
  border-radius: 8px;
  padding: 15px 17px;
  box-shadow: var(--shadow);
}
.benefit h3 { font-size: 1rem; margin-bottom: .3em; }
.benefit p { margin: 0; font-size: .88rem; color: var(--muted); }
.svc-sidebar { display: grid; gap: 20px; position: sticky; top: 100px; }
.side-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 22px;
  box-shadow: var(--shadow);
}
.side-card h3 {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: .07em;
  margin-bottom: 12px;
}
.side-nav { list-style: none; margin: 0; padding: 0; display: grid; gap: 2px; }
.side-nav a {
  display: block;
  padding: 8px 11px;
  border-radius: 7px;
  color: var(--text);
  text-decoration: none;
  font-size: .92rem;
}
.side-nav a:hover { background: var(--green-tint); color: var(--green-dark); }
.side-nav a[aria-current="page"] { background: var(--green); color: var(--white); font-weight: 600; }
.side-cta { background: var(--ink); border: none; text-align: center; }
.side-cta h3 { color: var(--white); }
.side-cta p { color: var(--on-dark-muted); font-size: .9rem; margin-bottom: 0; }
.side-cta .side-cta__tel {
  display: block;
  margin: 10px 0 14px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.35rem;
  color: #8fd193;
  text-decoration: none;
}
.side-cta .btn { width: 100%; }
.svc-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.svc-gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
@media (max-width: 900px) {
  .svc-layout { grid-template-columns: 1fr; }
  .svc-sidebar { position: static; }
}
@media (max-width: 640px) {
  .check-list { grid-template-columns: 1fr; }
  .benefit-grid { grid-template-columns: 1fr; }
  .svc-gallery { grid-template-columns: repeat(2, 1fr); gap: 10px; }
}

/* Service-areas overview */
.city-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.city-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 22px;
  box-shadow: var(--shadow);
  scroll-margin-top: 120px;
}
.city-card h3 { font-size: 1.1rem; margin-bottom: .3em; }
.city-card h3 a { color: inherit; text-decoration: none; }
.city-card h3 a:hover { color: var(--green-dark); }
.city-card p { font-size: .89rem; color: var(--muted); margin-bottom: 10px; }
.city-card a { font-size: .88rem; font-weight: 600; text-decoration: none; }
.city-card a:hover { text-decoration: underline; }
@media (max-width: 900px) { .city-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .city-grid { grid-template-columns: 1fr; gap: 12px; } }

/* Estimate page (contact): one continuous black-to-green gradient from the
   hero to the footer; hero and quote sections go transparent so there is no
   seam, and the light service-areas strip inverts. The form card stays a
   light surface and gets extra elevation to sit on the dark background. */
.page-estimate main { background: var(--grad-black-green); }
.page-estimate .page-hero,
.page-estimate .quote { background: none; }
.page-estimate .form-card { box-shadow: 0 4px 10px rgba(0, 0, 0, .35), 0 24px 60px rgba(0, 0, 0, .45); }
.page-estimate .map-areas { background: none; border-top-color: rgba(255, 255, 255, .16); }
.page-estimate .map-areas__inner strong { color: var(--white); }

/* Legal prose */
.prose { max-width: 780px; margin-inline: auto; }
.prose .updated { color: var(--muted); font-size: .9rem; margin-bottom: 2em; }
.prose h2 { font-size: 1.3rem; margin-top: 2.1em; }
.prose ul { margin: 0 0 1em; }
.prose li { margin-bottom: .45em; color: var(--text); }

/* Status pages (thank-you / 404) */
.status-hero { text-align: center; padding-block: clamp(64px, 10vw, 120px); }
.status-hero__inner { max-width: 620px; margin-inline: auto; }
.status-hero__code {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(4.5rem, 14vw, 7.5rem);
  line-height: 1;
  color: var(--green);
  letter-spacing: .02em;
}
.status-hero__icon {
  width: 84px; height: 84px;
  border-radius: 50%;
  background: var(--green-tint);
  display: grid;
  place-items: center;
  margin: 0 auto 22px;
}
.status-hero__icon .icon { width: 40px; height: 40px; fill: var(--green-dark); }
.status-hero p { color: var(--muted); font-size: 1.05rem; }
.status-hero .hero__ctas { justify-content: center; margin-top: 28px; }

/* ============================================================
   Footer
   ============================================================ */
.footer { background: var(--ink); color: var(--on-dark-muted); font-size: .93rem; }
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: clamp(28px, 5vw, 56px);
  padding-block: clamp(48px, 7vw, 72px);
}
.footer__logo {
  display: inline-block;
  background: var(--white);
  border-radius: 12px;
  padding: 14px 18px;
  margin-bottom: 18px;
}
.footer__logo img { width: 170px; height: auto; display: block; }
.footer__brand p { margin-bottom: 18px; }
.footer h2 {
  color: var(--white);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 18px;
}
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.footer a { color: var(--on-dark-muted); text-decoration: none; }
.footer a:hover { color: var(--white); }
.footer__contact li { display: flex; gap: 11px; align-items: flex-start; }
.footer__contact .icon { width: 17px; height: 17px; fill: var(--green); flex: none; margin-top: 3px; }
.footer__social { display: flex; gap: 8px; }
.footer__social a {
  display: grid;
  place-items: center;
  width: 38px; height: 38px;
  border: 1px solid #333a31;
  border-radius: 9px;
}
.footer__social a:hover { border-color: var(--green); background: rgba(46,125,50,.15); }
.footer__social .icon { width: 17px; height: 17px; fill: var(--on-dark-muted); }
.footer__social a:hover .icon { fill: var(--white); }
.footer__hours {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  color: #8fd193;
  font-weight: 600;
}
.footer__hours .icon { fill: #8fd193; width: 16px; height: 16px; }
.footer__bottom {
  border-top: 1px solid #262c24;
  padding-block: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px 24px;
  font-size: .84rem;
}
.footer__legal { display: flex; flex-wrap: wrap; gap: 18px; list-style: none; margin: 0; padding: 0; }
@media (max-width: 980px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer__grid { grid-template-columns: 1fr; } }
