/* ─── Grubach Landscaping — Shared Stylesheet ─────────────────────────────
   Production-ready CSS for all pages. Replaces React inline styles.
   Font: League Spartan (local) + Barlow (Google Fonts)
   Brand: #3d9f42 green · #1b1b1b dark · #f4f4f4 gray
───────────────────────────────────────────────────────────────────────── */

@font-face {
  font-family: 'League Spartan';
  src: url('fonts/LeagueSpartan-VariableFont_wght.ttf') format('truetype');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Barlow', sans-serif; background: #fff; color: #3a3a3a; -webkit-font-smoothing: antialiased; line-height: 1; }
img { display: block; max-width: 100%; }
a { text-decoration: none; }
input, select, textarea, button { font-family: inherit; }
ul { list-style: none; }

:root {
  --accent:       #3d9f42;
  --accent-dark:  #2e7a31;
  --accent-light: #edf7ee;
  --dark-bg:      #1b1b1b;
  --gray-bg:      #f4f4f4;
  --border:       #e8e8e8;
  --green-light:  #7ec882;
  --text:         #3a3a3a;
  --muted:        #666;
}

/* ─── Utilities ─────────────────────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.text-center { text-align: center; }
.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* ─── Eyebrow labels ────────────────────────────────────────────────────── */
.eyebrow {
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 16px;
  display: flex; align-items: center; gap: 10px;
}
.eyebrow--light { color: var(--green-light); }
.eyebrow--center { justify-content: center; }
.eyebrow-line { width: 24px; height: 1.5px; background: currentColor; flex-shrink: 0; }

/* ─── Headings ──────────────────────────────────────────────────────────── */
.h-display {
  font-family: 'League Spartan', sans-serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800; line-height: 1.1;
  letter-spacing: -0.025em; text-wrap: balance;
  color: #1b1b1b;
}
.h-display--white { color: #fff; }
.h-display--xl {
  font-size: clamp(44px, 6vw, 78px);
  line-height: 1.0; letter-spacing: -0.025em;
}
.h-display--lg { font-size: clamp(36px, 5vw, 64px); line-height: 1.05; }

.h-card {
  font-family: 'League Spartan', sans-serif;
  font-size: 22px; font-weight: 700;
  letter-spacing: -0.01em; color: #1b1b1b;
}
.h-card--white { color: #fff; }
.h-card--lg { font-size: 24px; }

/* ─── Body copy ─────────────────────────────────────────────────────────── */
.body-lg { font-size: 17px; color: var(--muted); line-height: 1.7; }
.body-md { font-size: 16px; color: var(--muted); line-height: 1.7; }
.body-sm { font-size: 15px; color: #555; line-height: 1.65; }
.body-xs { font-size: 14px; color: #666; line-height: 1.65; }
.body-muted-light { color: #888; }
.body-white { color: #bbb; }

/* ─── Buttons ───────────────────────────────────────────────────────────── */
.btn {
  display: inline-block;
  font-weight: 600; border: none; border-radius: 6px;
  cursor: pointer; letter-spacing: 0.01em;
  transition: background 150ms ease-out, color 150ms ease-out, border-color 150ms ease-out;
}
.btn-primary {
  background: var(--accent); color: #fff;
  padding: 15px 36px; font-size: 16px;
}
.btn-primary:hover { background: var(--accent-dark); }
.btn-primary--sm { padding: 13px 32px; font-size: 15px; }

.btn-outline-green {
  background: transparent; color: var(--accent);
  border: 1.5px solid var(--accent);
  padding: 12px 32px; font-size: 15px;
}
.btn-outline-green:hover { background: var(--accent-light); }

.btn-outline-white {
  background: transparent; color: #fff;
  border: 1.5px solid rgba(255,255,255,0.25);
  padding: 14px 32px; font-size: 16px; font-weight: 500;
}
.btn-outline-white:hover { border-color: rgba(255,255,255,0.6); }

.btn-white-inverse {
  background: #fff; color: var(--accent);
  padding: 15px 40px; font-size: 16px; flex-shrink: 0;
}
.btn-white-inverse:hover { background: var(--accent-light); }

.btn-full { width: 100%; text-align: center; display: block; }

/* ─── Site Header ───────────────────────────────────────────────────────── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 200ms ease-out, border-color 200ms ease-out, box-shadow 200ms ease-out;
}
.site-header.scrolled,
.site-header.is-opaque {
  background: #fff;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}
.site-header__inner {
  max-width: 1200px; margin: 0 auto;
  padding: 0 32px; height: 112px;
  display: flex; align-items: center; justify-content: space-between;
}
/* Logo — show inverted on transparent header, color on white */
.logo-color   { display: none; }
.logo-inverted { display: block; }
.site-header.scrolled .logo-color,
.site-header.is-opaque .logo-color   { display: block; }
.site-header.scrolled .logo-inverted,
.site-header.is-opaque .logo-inverted { display: none; }
.site-header__logo img { height: 88px !important; width: auto !important; }
.site-footer img { width: auto !important; height: 48px !important; }

.site-header__nav {
  display: flex; align-items: center; gap: 36px;
}
.nav-link {
  font-size: 15px; font-weight: 500;
  color: #fff; padding-bottom: 2px;
  border-bottom: 2px solid transparent;
  transition: color 150ms, border-color 150ms;
}
.site-header.scrolled .nav-link,
.site-header.is-opaque .nav-link { color: #3a3a3a; }
.nav-link:hover,
.nav-link.active { color: var(--accent); }
.nav-link.active { border-bottom-color: var(--accent); }
.nav-cta {
  font-size: 14px; font-weight: 600;
  background: var(--accent); color: #fff;
  border-radius: 6px; padding: 10px 22px;
  transition: background 150ms ease-out;
}
.nav-cta:hover { background: var(--accent-dark); }

/* Mobile nav toggle */
.nav-toggle {
  display: none; background: none; border: none;
  cursor: pointer; padding: 8px; color: #fff;
  transition: color 150ms;
}
.site-header.scrolled .nav-toggle,
.site-header.is-opaque .nav-toggle { color: #3a3a3a; }
.mobile-nav {
  display: none;
  position: fixed; top: 112px; left: 0; right: 0;
  background: #fff; border-bottom: 1px solid var(--border);
  padding: 16px 32px 24px; z-index: 199;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  flex-direction: column; gap: 0;
}
.mobile-nav.is-open { display: flex; }
.mobile-nav .nav-link {
  color: #3a3a3a; border-bottom: 1px solid var(--border);
  padding: 16px 0; font-size: 17px; display: block; min-height: 52px;
  display: flex; align-items: center;
}
.mobile-nav .nav-link:last-of-type { border-bottom: none; }
.mobile-nav .nav-cta { margin-top: 16px; display: block; text-align: center; padding: 16px; font-size: 16px; }

@media (max-width: 768px) {
  .site-header__nav { display: none; }
  .nav-toggle { display: block; }
}

/* ─── Hero ──────────────────────────────────────────────────────────────── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; flex-direction: column; justify-content: center;
  background: #1b1b1b; overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0;
  background-image: url('assets/photos/lawn-highrise.jpeg');
  background-size: cover; background-position: center 35%;
  opacity: 0.35;
}
/* Split background */
.hero__bg-split {
  position: absolute; inset: 0; display: flex;
  width: 100%; height: 100%;
}
.hero__bg-half {
  flex: 1; height: 100%; background-size: cover; opacity: 0.38;
}
.hero__bg-half--left {
  background-image: url('assets/photos/lawn-highrise.jpeg');
  background-position: center 35%;
}
.hero__bg-half--right {
  background-image: url('assets/photos/snow-plow-night.jpeg');
  background-position: center 60%;
}
/* Thin diagonal divider line */
.hero__bg-divider {
  position: absolute; top: 0; bottom: 0;
  left: 50%; width: 2px;
  background: linear-gradient(to bottom, transparent 0%, rgba(255,255,255,0.15) 30%, rgba(255,255,255,0.25) 50%, rgba(255,255,255,0.15) 70%, transparent 100%);
  transform: skewX(-3deg);
  pointer-events: none;
}
/* Season labels */
.hero__season-label {
  position: absolute; bottom: 80px; z-index: 2;
  font-family: 'Barlow', sans-serif;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  display: flex; align-items: center; gap: 8px;
}
.hero__season-label--left  { left: calc(25% - 60px); }
.hero__season-label--right { right: calc(25% - 60px); }
.hero__season-label::before {
  content: ''; display: block;
  width: 20px; height: 1px;
  background: rgba(255,255,255,0.35);
}
@media (max-width: 768px) {
  .hero__season-label { display: none; }
}
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(27,27,27,0.92) 45%, rgba(27,27,27,0.5) 100%);
}
.hero__content {
  position: relative; z-index: 1;
  max-width: 1200px; margin: 0 auto;
  padding: 200px 32px 96px; width: 100%;
}
.hero__inner { max-width: 720px; }
.hero__eyebrow {
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: #7ec882; margin-bottom: 20px;
  display: flex; align-items: center; gap: 10px;
}
.hero__h1 {
  font-family: 'League Spartan', sans-serif;
  font-size: clamp(44px, 6vw, 78px);
  font-weight: 800; line-height: 1.0;
  letter-spacing: -0.025em; color: #fff;
  margin-bottom: 28px; text-wrap: balance;
}
.hero__h1 .accent { color: var(--accent); }
.hero__sub {
  font-size: clamp(16px, 1.8vw, 20px);
  color: #bbb; line-height: 1.65;
  margin-bottom: 44px; max-width: 580px;
}
.hero__btns { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.hero__stats { display: flex; gap: 48px; margin-top: 64px; flex-wrap: wrap; }
.stat__num {
  font-family: 'League Spartan', sans-serif;
  font-size: 28px; font-weight: 700; color: #fff; margin-bottom: 4px;
}
.stat__label { font-size: 13px; color: #666; letter-spacing: 0.04em; }
.hero__scroll-hint {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  z-index: 1; opacity: 0.4; animation: bounce 2s infinite; color: #fff;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ─── Core Values ───────────────────────────────────────────────────────── */
.values { background: #fff; padding: 96px 32px; }
.values__header { text-align: center; margin-bottom: 56px; }
.values__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.value-card {
  background: #f4f4f4; border-radius: 8px;
  padding: 32px 28px; border: 1px solid #e8e8e8;
  transition: border-color 150ms, box-shadow 150ms;
}
.value-card:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 20px rgba(61,159,66,0.08);
}
.value-card--wide {
  grid-column: span 4;
  display: grid; grid-template-columns: auto 1fr 1fr;
  gap: 0 40px; align-items: start;
}
.value-card--wide .value-card__title { grid-column: 2; }
.value-card--wide .value-card__sub   { grid-column: 2; }
.value-card--wide .value-card__copy  { grid-column: 3; grid-row: 1 / 4; align-self: center; }
.value-card__num {
  font-family: 'League Spartan', sans-serif;
  font-size: 13px; font-weight: 800;
  letter-spacing: 0.1em; color: var(--accent);
  margin-bottom: 16px;
}
.value-card__title {
  font-family: 'League Spartan', sans-serif;
  font-size: 22px; font-weight: 800;
  letter-spacing: -0.01em; color: #1b1b1b;
  margin-bottom: 6px;
}
.value-card__sub {
  font-size: 13px; font-weight: 600;
  color: #888; letter-spacing: 0.04em;
  text-transform: uppercase; margin-bottom: 16px;
}
.value-card__copy {
  font-size: 14px; color: #666; line-height: 1.7;
}

@media (max-width: 768px) {
  .values__grid { grid-template-columns: 1fr 1fr; }
  .value-card--wide { grid-column: span 2; grid-template-columns: 1fr; }
  .value-card--wide .value-card__title,
  .value-card--wide .value-card__sub,
  .value-card--wide .value-card__copy { grid-column: 1; grid-row: auto; }
}
@media (max-width: 480px) {
  .values__grid { grid-template-columns: 1fr; }
  .value-card--wide { grid-column: span 1; }
}

/* ─── Pain Section ──────────────────────────────────────────────────────── */
.pain { background: var(--gray-bg); padding: 96px 32px; }
.pain__grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 96px; align-items: center;
}
.pain__list { display: flex; flex-direction: column; }
.pain__item {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 20px 0; border-bottom: 1px solid #e0e0e0;
}
.pain__item:last-child { border-bottom: none; }
.pain__icon {
  width: 28px; height: 28px; border-radius: 6px; background: #ffe8e8;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 1px;
}
.pain__text { font-size: 16px; color: #3a3a3a; line-height: 1.55; }
.pain__quote {
  margin-top: 32px; padding: 24px 28px;
  background: #1b1b1b; border-radius: 8px;
  border-left: 4px solid var(--accent);
  font-size: 16px; font-weight: 500; color: #fff; line-height: 1.6;
}

/* ─── Uniques / Differentiators ─────────────────────────────────────────── */
.uniques { background: #1b1b1b; padding: 96px 32px; }
.uniques__cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.unique-card {
  background: #242424; border-radius: 8px;
  padding: 36px 32px; border: 1px solid #333;
  transition: border-color 150ms;
}
.unique-card:hover { border-color: var(--accent); }
.unique-card__icon {
  width: 56px; height: 56px; border-radius: 8px;
  background: rgba(61,159,66,0.1);
  display: flex; align-items: center; justify-content: center; margin-bottom: 24px;
}
.unique-card__label {
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 10px;
}
.unique-card__headline {
  font-family: 'League Spartan', sans-serif;
  font-size: 24px; font-weight: 700; letter-spacing: -0.01em;
  color: #fff; margin-bottom: 14px;
}
.unique-card__copy { font-size: 15px; color: #888; line-height: 1.7; }

/* ─── Process ───────────────────────────────────────────────────────────── */
.process { background: #fff; padding: 96px 32px; }
.process__steps {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 0; position: relative;
}
.process__connector {
  position: absolute; top: 40px; left: 12.5%; right: 12.5%;
  height: 1px; background: #e0e0e0;
}
.process__step { padding: 0 24px; text-align: center; position: relative; z-index: 1; }
.process__num {
  width: 80px; height: 80px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 28px;
}
.process__num--active { background: var(--accent); box-shadow: 0 4px 16px rgba(61,159,66,0.3); }
.process__num--inactive { background: #fff; border: 2px solid #e0e0e0; box-shadow: 0 2px 8px rgba(0,0,0,0.06); }
.process__num span {
  font-family: 'League Spartan', sans-serif; font-size: 20px; font-weight: 800;
}
.process__num--active span { color: #fff; }
.process__num--inactive span { color: #bbb; }
.process__title {
  font-family: 'League Spartan', sans-serif;
  font-size: 22px; font-weight: 700; letter-spacing: -0.01em;
  color: #1b1b1b; margin-bottom: 12px;
}
.process__copy { font-size: 14px; color: #777; line-height: 1.7; }
.process__cta { text-align: center; margin-top: 64px; }

/* ─── Service Cards ─────────────────────────────────────────────────────── */
.services-section { background: var(--gray-bg); padding: 96px 32px; }
.services__grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; }
.service-card {
  background: #fff; border-radius: 8px; overflow: hidden;
  border: 1px solid var(--border); display: flex;
  transition: box-shadow 150ms, transform 150ms;
}
.service-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,0.1); transform: translateY(-2px); }
.service-card__photo { width: 180px; flex-shrink: 0; overflow: hidden; background: #e0e0e0; }
.service-card__photo img { width: 100%; height: 100%; object-fit: cover; }
.service-card__body { padding: 24px; display: flex; flex-direction: column; justify-content: center; }
.service-card__label {
  font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 8px;
}
.service-card__copy { font-size: 15px; color: #666; line-height: 1.65; }

/* ─── Guarantee ─────────────────────────────────────────────────────────── */
.guarantee { background: #1b1b1b; padding: 96px 32px; position: relative; overflow: hidden; }
.guarantee__accent {
  position: absolute; top: -120px; right: -120px;
  width: 480px; height: 480px; border-radius: 50%;
  background: rgba(61,159,66,0.06); pointer-events: none;
}
.guarantee__grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 96px; align-items: center; position: relative; z-index: 1;
}
.guarantee__quote-block {
  border-left: 4px solid var(--accent); padding-left: 32px; margin-bottom: 40px;
}
.guarantee__blockquote {
  font-family: 'League Spartan', sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800; line-height: 1.1; letter-spacing: -0.02em; color: #fff;
}
.guarantee__copy { font-size: 17px; color: #888; line-height: 1.7; margin-bottom: 40px; }
.proof-list { display: flex; flex-direction: column; }
.proof-item {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 20px 0; border-bottom: 1px solid #2a2a2a;
}
.proof-item:last-child { border-bottom: none; }
.proof-icon {
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(61,159,66,0.15); border: 1.5px solid var(--accent);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 2px;
}
.proof-text { font-size: 16px; color: #bbb; line-height: 1.55; }

/* ─── Who We Serve ──────────────────────────────────────────────────────── */
.who-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.who-card {
  border-radius: 8px; overflow: hidden;
  border: 1px solid var(--border);
  transition: box-shadow 150ms, transform 150ms;
}
.who-card:hover { box-shadow: 0 8px 28px rgba(0,0,0,0.1); transform: translateY(-3px); }
.who-card__photo { height: 200px; overflow: hidden; background: #e8e8e8; position: relative; }
.who-card__photo img { width: 100%; height: 100%; object-fit: cover; }
.who-card__photo::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(27,27,27,0.5) 100%);
}
.who-card__body { padding: 24px; }
.who-card__title {
  font-family: 'League Spartan', sans-serif; font-size: 22px; font-weight: 700;
  letter-spacing: -0.01em; color: #1b1b1b; margin-bottom: 10px;
}
.who-card__copy { font-size: 14px; color: #666; line-height: 1.65; }
.service-area-bar {
  margin-top: 64px; padding: 28px 40px;
  background: var(--accent-light); border-radius: 8px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; flex-wrap: wrap; border: 1px solid #c8e6c9;
}
.service-area-bar__text {
  display: flex; align-items: center; gap: 16px;
  font-size: 16px; font-weight: 500; color: #1b1b1b;
}

/* ─── Service Areas (SEO section) ───────────────────────────────────────── */
.service-areas { background: #fff; padding: 72px 32px; border-top: 1px solid var(--border); }
.service-areas__cities { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.city-pill {
  font-size: 14px; font-weight: 500; color: #3a3a3a;
  background: var(--gray-bg); border: 1px solid var(--border);
  border-radius: 100px; padding: 7px 16px;
  transition: background 150ms, border-color 150ms, color 150ms;
}
.city-pill:hover {
  background: var(--accent-light); border-color: var(--accent); color: var(--accent-dark);
}

/* ─── Client Logo Bar ───────────────────────────────────────────────────── */
.logo-bar {
  overflow: hidden; margin-bottom: 56px;
  padding: 8px 0;
  mask-image: linear-gradient(to right, transparent 0%, #000 10%, #000 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 10%, #000 90%, transparent 100%);
}
.logo-bar__track {
  display: flex; align-items: center; gap: 56px;
  animation: logo-scroll 30s linear infinite;
  width: max-content; padding: 0 32px;
}
.logo-bar__track img {
  height: 56px !important; width: auto !important;
  max-width: 180px !important;
  object-fit: contain;
  opacity: 0.9;
  flex-shrink: 0;
  transition: opacity 200ms;
}
.logo-bar__track img:hover { opacity: 1; }
@keyframes logo-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .logo-bar__track { animation: none; }
}

/* ─── Testimonials ──────────────────────────────────────────────────────── */
.testimonials { background: #fff; padding: 96px 32px; }
.testimonials__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.testimonial-card {
  background: #f4f4f4;
  border: 1px solid #e8e8e8;
  border-radius: 8px; padding: 28px 26px;
}
.testimonial-card__quote { font-size: 15px; color: #444; line-height: 1.7; margin-bottom: 20px; }
.testimonial-card__name { font-size: 14px; font-weight: 600; color: #1b1b1b; display: block; }
.testimonial-card__meta { font-size: 12px; color: #888; }

/* ─── FAQ ───────────────────────────────────────────────────────────────── */
.faq { background: var(--gray-bg); padding: 96px 32px; }
.faq__list { max-width: 800px; margin: 0 auto; }
.faq__item { border-bottom: 1px solid #e0e0e0; }
.faq__item:last-child { border-bottom: none; }
.faq__btn {
  width: 100%; background: none; border: none; text-align: left; cursor: pointer;
  padding: 22px 0; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  font-family: 'League Spartan', sans-serif; font-size: 20px; font-weight: 700; color: #1b1b1b;
  transition: color 150ms;
}
.faq__btn:hover { color: var(--accent); }
.faq__chevron { flex-shrink: 0; transition: transform 200ms ease-out; color: var(--accent); }
.faq__item.is-open .faq__chevron { transform: rotate(180deg); }
.faq__answer { display: none; padding: 0 0 22px; font-size: 16px; color: #555; line-height: 1.75; }
.faq__item.is-open .faq__answer { display: block; }

/* ─── Contact ───────────────────────────────────────────────────────────── */
.contact-section { background: var(--gray-bg); padding: 96px 32px; }
.contact-section__grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 560px; gap: 80px; align-items: start;
}
.contact-checks { display: flex; flex-direction: column; gap: 24px; margin-bottom: 48px; }
.contact-check { display: flex; gap: 16px; align-items: flex-start; }
.contact-check__icon {
  width: 36px; height: 36px; border-radius: 6px; background: var(--accent-light);
  flex-shrink: 0; display: flex; align-items: center; justify-content: center;
}
.contact-check__title { font-size: 15px; font-weight: 600; color: #1b1b1b; margin-bottom: 2px; }
.contact-check__desc { font-size: 14px; color: #777; }
.contact-direct {
  padding: 24px 28px; background: #fff;
  border-radius: 8px; border: 1px solid var(--border);
}
.contact-form-card {
  background: #fff; border-radius: 10px; padding: 40px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08); border: 1px solid var(--border);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0 16px; }
.form-group { margin-bottom: 18px; }
.form-label {
  font-size: 13px; font-weight: 600; color: #3a3a3a;
  display: block; margin-bottom: 6px;
}
.form-label span { font-weight: 400; color: #aaa; }
.form-input {
  font-size: 15px; width: 100%; padding: 11px 14px;
  border: 1.5px solid #d9d9d9; border-radius: 6px;
  outline: none; color: #3a3a3a; background: #fff;
  transition: border-color 150ms;
}
.form-input:focus { border-color: var(--accent); }
textarea.form-input { resize: vertical; }
.form-fine {
  font-size: 12px; color: #aaa; text-align: center; margin-top: 12px;
}

/* ─── CTA Banner ────────────────────────────────────────────────────────── */
.cta-banner { background: var(--accent); padding: 64px 32px; }
.cta-banner__inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center;
  justify-content: space-between; gap: 32px; flex-wrap: wrap;
}
.cta-banner__headline {
  font-family: 'League Spartan', sans-serif;
  font-size: clamp(24px, 3vw, 38px); font-weight: 800;
  letter-spacing: -0.02em; color: #fff; margin-bottom: 8px;
}
.cta-banner__sub { font-size: 17px; color: rgba(255,255,255,0.8); }

/* ─── Page Hero (interior) ──────────────────────────────────────────────── */
.page-hero {
  position: relative; background: #1b1b1b;
  padding: 200px 32px 96px; overflow: hidden;
}
.page-hero__bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center; opacity: 0.25;
}
.page-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(27,27,27,0.96) 50%, rgba(27,27,27,0.6) 100%);
}
.page-hero__content { max-width: 1200px; margin: 0 auto; position: relative; z-index: 1; }
.page-hero__h1 {
  font-family: 'League Spartan', sans-serif;
  font-size: clamp(36px, 5vw, 64px); font-weight: 800;
  line-height: 1.05; letter-spacing: -0.025em;
  color: #fff; max-width: 720px; margin-bottom: 20px; text-wrap: balance;
}
.page-hero__sub { font-size: clamp(16px, 1.6vw, 18px); color: #aaa; line-height: 1.7; max-width: 560px; }

/* ─── Breadcrumb ────────────────────────────────────────────────────────── */
.breadcrumb {
  font-size: 13px; color: #555;
  padding: 14px 32px; background: #fff;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 8px;
}
.breadcrumb a { color: var(--accent); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb__sep { color: #ccc; }

/* ─── Service Detail (services page) ───────────────────────────────────── */
.service-detail-section { padding: 80px 32px; }
.service-detail-section:nth-child(odd)  { background: #fff; }
.service-detail-section:nth-child(even) { background: var(--gray-bg); }
.service-detail {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.service-detail--reverse .service-detail__photo { order: -1; }
.service-detail__label {
  font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 14px;
}
.service-detail__h2 {
  font-family: 'League Spartan', sans-serif;
  font-size: clamp(28px, 3.5vw, 44px); font-weight: 800;
  letter-spacing: -0.02em; color: #1b1b1b; margin-bottom: 20px; line-height: 1.05;
}
.service-detail__copy { font-size: 16px; color: #666; line-height: 1.75; margin-bottom: 28px; }
.service-bullets { display: flex; flex-direction: column; gap: 10px; }
.bullet-item { display: flex; gap: 12px; align-items: flex-start; }
.bullet-icon {
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--accent-light); border: 1.5px solid var(--accent);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 2px;
}
.bullet-text { font-size: 15px; color: #444; line-height: 1.5; }
.service-detail__photo { border-radius: 10px; overflow: hidden; min-height: 320px; }
.service-detail__photo img { width: 100%; height: 100%; object-fit: cover; min-height: 320px; display: block; }

/* ─── Footer ────────────────────────────────────────────────────────────── */
.site-footer { background: #1b1b1b; padding: 64px 32px 32px; }
.site-footer__grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
  margin-bottom: 56px; border-bottom: 1px solid #2a2a2a; padding-bottom: 56px;
}
.site-footer__tagline { font-size: 15px; color: #888; line-height: 1.7; max-width: 300px; margin-bottom: 24px; }
.site-footer__address { font-size: 14px; color: #666; line-height: 1.8; font-style: normal; }
.footer-nav-heading {
  font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 20px;
}
.footer-link { font-size: 14px; color: #888; display: block; padding: 4px 0; transition: color 150ms; }
.footer-link:hover { color: #fff; }
.site-footer__bottom {
  max-width: 1200px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
}
.site-footer__copy { font-size: 13px; color: #555; }
.footer-email { color: var(--accent); }
.site-footer__members { display: flex; flex-direction: column; justify-content: flex-start; }
.site-footer__members-label {
  font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: #3d9f42 !important; margin-bottom: 20px;
}
.site-footer__members-logos { display: flex; flex-direction: row; align-items: center; gap: 24px; flex-wrap: nowrap; }
.site-footer__members-logos .acmo-badge {
  background: #fff; border-radius: 6px; padding: 6px 12px; display: flex; align-items: center; flex-shrink: 0;
}
.site-footer__members-logos img { height: 32px !important; width: auto !important; display: block; flex-shrink: 0; }

/* ─── Shared section header block ───────────────────────────────────────── */
.section-header { text-align: center; margin-bottom: 64px; }
.section-header--left { text-align: left; }

/* ─── Responsive ────────────────────────────────────────────────────────── */

/* Tablet */
@media (max-width: 1024px) {
  .container { padding: 0 24px; }
  .service-detail { gap: 48px; }
  .pain__grid { gap: 56px; }
  .guarantee__grid { gap: 56px; }
}

/* Mobile landscape + large phones (≤768px) */
@media (max-width: 768px) {
  /* Utility */
  .container { padding: 0 20px; }

  /* Nav */
  .site-header__nav { display: none; }
  .nav-toggle { display: block; }

  /* Section padding — tighter on mobile */
  .pain,
  .uniques,
  .process,
  .services-section,
  .guarantee,
  .testimonials,
  .faq,
  .service-areas { padding: 64px 20px; }
  .contact-section { padding: 64px 20px; }
  .cta-banner { padding: 48px 20px; }
  .page-hero { padding: 112px 20px 56px; }
  .service-detail-section { padding: 56px 20px; }

  /* Hero */
  .hero__content { padding: 112px 20px 64px; }
  .hero__btns { flex-wrap: wrap; gap: 12px; }
  .hero__stats { gap: 32px; flex-wrap: wrap; }

  /* Grids → single column */
  .pain__grid,
  .guarantee__grid,
  .contact-section__grid { grid-template-columns: 1fr; gap: 40px; }
  .uniques__cards { grid-template-columns: 1fr; gap: 16px; }
  .testimonials__grid { grid-template-columns: 1fr; gap: 16px; }
  .who-cards { grid-template-columns: 1fr; gap: 16px; }

  /* Process → 2 col on tablet */
  .process__steps { grid-template-columns: 1fr 1fr; gap: 32px; }
  .process__connector { display: none; }
  .process__step { padding: 0 8px; }
  .process__cta { margin-top: 40px; }

  /* Services grid */
  .services__grid { grid-template-columns: 1fr; gap: 16px; }
  .service-card { flex-direction: column; }
  .service-card__photo { width: 100%; height: 180px; }

  /* Service details */
  .service-detail { grid-template-columns: 1fr; gap: 32px; }
  .service-detail--reverse .service-detail__photo { order: 0; }
  .service-detail__photo { min-height: 240px; }
  .service-detail__photo img { min-height: 240px; }

  /* Section headers */
  .section-header { margin-bottom: 40px; }

  /* CTA banner */
  .cta-banner__inner { flex-direction: column; text-align: center; }
  .cta-banner__inner .btn { width: 100%; text-align: center; }

  /* Service area bar */
  .service-area-bar { flex-direction: column; text-align: center; padding: 24px 20px; }
  .service-area-bar__text { justify-content: center; }

  /* Footer */
  .site-footer { padding: 48px 20px 24px; }
  .site-footer__grid { grid-template-columns: 1fr; gap: 32px; padding-bottom: 40px; margin-bottom: 40px; }

  /* Breadcrumb */
  .breadcrumb { padding: 12px 20px; }

  /* Contact form card */
  .contact-form-card { padding: 28px 20px; }
  .contact-direct { padding: 18px 20px; }

  /* FAQ */
  .faq__btn { font-size: 17px; }

  /* Cities pill wrap */
  .service-areas__cities { gap: 8px; }
}

/* Small phones (≤480px) */
@media (max-width: 480px) {
  /* Hero */
  .hero__stats { gap: 24px; }
  .hero__btns { flex-direction: column; align-items: stretch; }
  .hero__btns .btn { text-align: center; display: block; }
  .stat__num { font-size: 24px; }

  /* Process → single column */
  .process__steps { grid-template-columns: 1fr; gap: 28px; }

  /* Forms */
  .form-row { grid-template-columns: 1fr; }

  /* Unique cards */
  .unique-card { padding: 28px 20px; }

  /* Pain section spacing */
  .pain__grid { gap: 32px; }

  /* Guarantee */
  .guarantee__grid { gap: 32px; }
  .guarantee__quote-block { padding-left: 20px; }

  /* Page hero */
  .page-hero { padding: 100px 20px 48px; }

  /* Proof list */
  .proof-text { font-size: 15px; }

  /* Service detail */
  .service-detail__copy { font-size: 15px; }

  /* Section headers spacing */
  .section-header { margin-bottom: 32px; }

  /* Footer bottom */
  .site-footer__bottom { flex-direction: column; align-items: flex-start; gap: 6px; }

  /* City pills */
  .city-pill { font-size: 13px; padding: 6px 14px; }

  /* Testimonials */
  .testimonial-card { padding: 22px 18px; }

  /* FAQ answer font */
  .faq__answer { font-size: 15px; }

  /* Buttons — full width on smallest screens */
  .btn-primary--sm { padding: 12px 24px; }
}
