/* Green Thumb Cleaning — Site-wide layout */

*, *::before, *::after { box-sizing: border-box; }
html, body { overflow-x: hidden; max-width: 100%; }
body { margin: 0; background: #fff; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

/* ---------- Containers ---------- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-tight { max-width: 960px; margin: 0 auto; padding: 0 24px; }

section { padding: 80px 0; }
section.pad-sm { padding: 48px 0; }
section.pad-lg { padding: 112px 0; }

.eyebrow { display: inline-block; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--gt-forest);
  color: #fff;
  box-shadow: 0 1px 0 rgba(0,0,0,0.08);
}
.site-header .bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 72px;
}
.site-header .brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #fff;
}
.site-header .brand img { height: 40px; width: auto; }
.site-header nav { display: flex; gap: 22px; align-items: center; }
.site-header nav a {
  color: #fff;
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.02em;
  transition: opacity 140ms;
}
.site-header nav a:hover { opacity: 0.7; }
.site-header .nav-right { display: flex; align-items: center; gap: 14px; }
.site-header .phone {
  color: #ffc886;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  letter-spacing: 0.02em;
}
.site-header .phone:hover { color: #fff; }
.nav-dropdown { position: relative; }
.nav-dropdown > a::after { content: " \25BE"; font-size: 10px; opacity: 0.7; }
.nav-dropdown .menu {
  position: absolute;
  top: 100%;
  left: -12px;
  min-width: 260px;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 10px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px);
  transition: all 160ms ease;
}
.nav-dropdown:hover .menu,
.nav-dropdown:focus-within .menu {
  opacity: 1; pointer-events: auto; transform: translateY(0);
}
.nav-dropdown .menu a {
  display: block;
  color: var(--gt-forest);
  font-size: 13.5px;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-weight: 600;
}
.nav-dropdown .menu a:hover { background: var(--gt-sage-100); }

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.3);
  border-radius: 8px;
  color: #fff;
  padding: 8px 10px;
  font-size: 14px;
  cursor: pointer;
}

@media (max-width: 900px) {
  .site-header nav, .site-header .phone { display: none; }
  .menu-toggle { display: inline-block; }
  .site-header.open nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    background: var(--gt-forest);
    position: absolute;
    top: 72px; left: 0; right: 0;
    padding: 16px 24px 24px;
    border-top: 1px solid rgba(255,255,255,0.12);
  }
  .site-header.open nav a { padding: 10px 0; width: 100%; }
  .site-header.open .nav-dropdown .menu {
    position: static;
    background: rgba(255,255,255,0.06);
    box-shadow: none;
    opacity: 1; pointer-events: auto; transform: none;
    margin-top: 6px;
  }
  .site-header.open .nav-dropdown .menu a { color: #fff; }
  .site-header.open .nav-dropdown .menu a:hover { background: rgba(255,255,255,0.1); }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
  background: var(--gt-forest);
}
.hero .bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(
    100deg,
    rgba(34,66,49,0.92) 0%,
    rgba(34,66,49,0.72) 52%,
    rgba(34,66,49,0.35) 100%
  );
  z-index: 1;
}
.hero .container { position: relative; z-index: 2; padding: 72px 24px; width: 100%; }
.hero .eyebrow { color: var(--gt-orange-on-dark); margin-bottom: 18px; }
.hero h1 {
  color: #fff;
  font-size: clamp(40px, 5.4vw, 72px);
  line-height: 1.0;
  letter-spacing: -0.025em;
  font-weight: 800;
  margin: 0 0 18px;
  max-width: 920px;
  text-wrap: balance;
}
.hero .sub {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  opacity: 0.92;
  max-width: 560px;
  margin: 0 0 32px;
}
.hero .sub b { color: var(--gt-orange-on-dark); font-weight: 700; }

/* Hero form */
.hero-form {
  background: #fff;
  color: var(--gt-forest);
  border-radius: var(--radius-lg);
  padding: 18px;
  box-shadow: var(--shadow-lg);
  max-width: 780px;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.2fr) minmax(0, 0.8fr) minmax(0, 1.3fr) auto;
  gap: 10px;
  align-items: end;
  overflow: hidden;
}
.hero-form .field { display: flex; flex-direction: column; gap: 4px; }
.hero-form label {
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--gt-stone);
}
.hero-form input, .hero-form select {
  font-family: var(--font-body);
  font-size: 14px;
  padding: 10px 12px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  color: var(--gt-forest);
  background: #fff;
  outline: none;
  transition: border-color 140ms;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  box-sizing: border-box;
  -webkit-appearance: none;
  appearance: none;
  text-overflow: ellipsis;
}
.hero-form select {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' fill='none' stroke='%23224231' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 10px;
  padding-right: 28px;
}
.hero-form .field { min-width: 0; }
.hero-form input:focus, .hero-form select:focus {
  border-color: var(--gt-orange);
  box-shadow: 0 0 0 3px rgba(255,140,0,0.22);
}
.hero-form .btn { height: 44px; white-space: nowrap; }
.hero-form-help {
  margin-top: 10px;
  font-family: var(--font-body);
  font-size: 12.5px;
  color: rgba(255,255,255,0.82);
}
.hero-form-help b { color: var(--gt-orange-on-dark); font-weight: 700; }

@media (max-width: 900px) {
  .hero-form { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
  .hero-form .btn { grid-column: 1 / -1; }
}
@media (max-width: 520px) {
  .hero-form { grid-template-columns: minmax(0, 1fr); }
}

/* ---------- Trust strip ---------- */
.trust-strip {
  background: var(--gt-cream);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: 20px 0;
}
.trust-strip .container {
  display: flex;
  flex-wrap: wrap;
  gap: 28px 36px;
  align-items: center;
  justify-content: center;
  color: var(--gt-forest);
}
.trust-item {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.04em;
}
.trust-item svg { width: 20px; height: 20px; color: var(--gt-orange); stroke-width: 2; }
.trust-item .stars { color: var(--gt-orange); letter-spacing: 0.04em; }

/* ---------- Section headers ---------- */
.section-head { margin-bottom: 40px; text-align: center; }
.section-head .eyebrow { color: var(--gt-orange-text); margin-bottom: 10px; }
.section-head h2 {
  font-size: clamp(30px, 3.6vw, 46px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 800;
  color: var(--gt-forest);
  margin: 0 0 12px;
}
.section-head p {
  max-width: 640px;
  margin: 0 auto;
  color: var(--gt-stone);
  font-size: 17px;
  line-height: 1.55;
}
.section-head.align-left { text-align: left; }
.section-head.align-left p { margin: 0; }

/* ---------- Services grid ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.service-card {
  position: relative;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-md);
  text-decoration: none;
  color: var(--gt-forest);
  border: 1px solid rgba(0,0,0,0.02);
  transition: transform 180ms ease, box-shadow 180ms ease;
  overflow: hidden;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 14px;
}
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.service-card .leaf {
  position: absolute;
  top: 14px; right: 14px;
  width: 26px; opacity: 0.28;
}
.service-card h3 { font-size: 19px; font-weight: 800; margin: 0; }
.service-card p { font-size: 13.5px; color: var(--gt-stone); line-height: 1.5; margin: 0; }
.service-card .arrow {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gt-orange-text);
}

@media (max-width: 900px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .services-grid { grid-template-columns: 1fr; } }

/* ---------- How it works ---------- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.steps-grid.cols-4 { grid-template-columns: repeat(4, 1fr); gap: 16px; }
@media (max-width: 900px) {
  .steps-grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
}
.step {
  text-align: center;
  padding: 32px 24px;
  background: var(--gt-cream);
  border-radius: var(--radius-lg);
  position: relative;
}
.step .num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 54px;
  color: var(--gt-orange-text);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}
.step h3 { font-size: 20px; font-weight: 800; margin: 0 0 8px; color: var(--gt-forest); }
.step p { color: var(--gt-stone); font-size: 14.5px; line-height: 1.55; margin: 0; }
@media (max-width: 820px) { .steps-grid { grid-template-columns: 1fr; } }

/* ---------- Pricing snapshot ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.price-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-md);
  border: 1.5px solid var(--color-border);
  display: flex; flex-direction: column; gap: 10px;
  position: relative;
}
.price-card.featured {
  background: var(--gt-forest);
  color: #fff;
  border-color: transparent;
  box-shadow: var(--shadow-leaf);
}
.price-card.featured h3, .price-card.featured .price { color: #fff; }
.price-card h3 { font-size: 20px; font-weight: 800; color: var(--gt-forest); margin: 0; }
.price-card .price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 40px;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--gt-forest);
}
.price-card .price small {
  font-size: 14px;
  font-weight: 600;
  color: var(--gt-stone);
  letter-spacing: 0;
}
.price-card.featured .price small { color: rgba(255,255,255,0.75); }
.price-card ul { list-style: none; padding: 0; margin: 8px 0 0; }
.price-card li {
  font-size: 13.5px; line-height: 1.55;
  padding: 6px 0;
  color: var(--gt-stone);
  display: flex; align-items: flex-start; gap: 8px;
}
.price-card.featured li { color: rgba(255,255,255,0.88); }
.price-card li::before {
  content: "\2713";
  color: var(--gt-orange-text);
  font-weight: 800;
  flex-shrink: 0;
}
.price-card.featured li::before { color: var(--gt-orange-on-dark); }
.price-card .badge {
  position: absolute;
  top: -10px; right: 18px;
  background: var(--gt-orange);
  color: var(--gt-forest);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}
.price-card .btn { margin-top: 12px; width: 100%; }
@media (max-width: 900px) { .pricing-grid { grid-template-columns: 1fr; } }

/* ---------- 23-point checklist ---------- */
.checklist-wrap { background: var(--gt-cream); border-radius: var(--radius-xl); padding: 40px; }
.checklist-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.checklist-cols h4 {
  font-size: 16px; font-weight: 800; margin: 0 0 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--gt-sage);
  color: var(--gt-forest);
  letter-spacing: 0.02em;
}
.checklist-cols ul { list-style: none; padding: 0; margin: 0; }
.checklist-cols li {
  font-size: 14px; line-height: 1.5;
  padding: 6px 0 6px 22px;
  position: relative;
  color: var(--gt-forest);
}
.checklist-cols li::before {
  content: "";
  position: absolute; left: 0; top: 10px;
  width: 16px; height: 16px;
  background: var(--gt-sage);
  border-radius: 50%;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path d='M3.5 8.5l3 3 6-6' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-size: 12px 12px;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 780px) { .checklist-cols { grid-template-columns: 1fr; gap: 18px; } .checklist-wrap { padding: 24px; } }

/* ---------- Never Deep Clean Again band ---------- */
.ndca {
  background: var(--gt-forest);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.ndca::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(255,140,0,0.16), transparent 60%);
  pointer-events: none;
}
.ndca .inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
}
.ndca .eyebrow { color: var(--gt-orange-on-dark); margin-bottom: 14px; }
.ndca h2 {
  color: #fff;
  font-size: clamp(34px, 4.5vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  font-weight: 800;
  margin: 0 0 16px;
}
.ndca p {
  color: rgba(255,255,255,0.85);
  font-size: 17px;
  line-height: 1.55;
  margin: 0 0 24px;
  max-width: 560px;
}
.ndca .rotate-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.ndca .rotate-card h4 {
  color: #fff; font-size: 14px; margin: 0 0 10px;
  letter-spacing: 0.06em; text-transform: uppercase; font-weight: 700;
}
.ndca .rotate-card ul { list-style: none; padding: 0; margin: 0; }
.ndca .rotate-card li {
  color: rgba(255,255,255,0.88);
  font-size: 14.5px; padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.ndca .rotate-card li:last-child { border-bottom: none; }
@media (max-width: 900px) { .ndca .inner { grid-template-columns: 1fr; } }

/* ---------- The Clean-Again Promise ---------- */
.promise {
  background: var(--gt-cream);
  border-radius: var(--radius-xl);
  padding: 56px;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 0.6fr 1fr;
  gap: 48px;
  align-items: center;
}
.promise .mark {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.promise .mark img { width: 180px; opacity: 0.95; mix-blend-mode: multiply; }
.site-footer .brand img, .site-header .brand img { mix-blend-mode: normal; }
.promise .eyebrow { color: var(--gt-orange-text); margin-bottom: 12px; }
.promise h2 {
  font-size: clamp(30px, 3.6vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 800;
  color: var(--gt-forest);
  margin: 0 0 14px;
}
.promise .sub {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  color: var(--gt-orange-text);
  margin: 0 0 16px;
}
.promise p {
  color: var(--gt-forest);
  font-size: 16px;
  line-height: 1.6;
  margin: 0 0 8px;
}
.promise.with-photo { grid-template-columns: 0.45fr 1fr 0.75fr; align-items: center; }
.promise .promise-photo {
  width: 100%; height: 100%; max-height: 320px;
  object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-md);
}
@media (max-width: 820px) {
  .promise, .promise.with-photo { grid-template-columns: 1fr; padding: 32px; }
  .promise .mark { order: -1; }
  .promise .mark img { width: 120px; }
  .promise .promise-photo { max-height: 220px; }
}

/* ---------- Locations grid ---------- */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
.location-card {
  background: #fff;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 18px;
  text-decoration: none;
  color: var(--gt-forest);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  text-align: center;
  transition: all 160ms ease;
}
.location-card:hover {
  border-color: var(--gt-forest);
  background: var(--gt-forest);
  color: #fff;
  transform: translateY(-2px);
}
.location-card .nbhd {
  display: block;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 11.5px;
  color: var(--gt-stone);
  margin-top: 4px;
  letter-spacing: 0;
}
.location-card:hover .nbhd { color: rgba(255,255,255,0.7); }
@media (max-width: 900px) { .locations-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .locations-grid { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Testimonials ---------- */
.tests-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.test-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0,0,0,0.02);
  display: flex; flex-direction: column; gap: 14px;
}
.test-card .stars {
  color: var(--gt-orange);
  font-size: 16px;
  letter-spacing: 0.06em;
}
.test-card blockquote {
  margin: 0;
  color: var(--gt-forest);
  font-size: 15.5px;
  line-height: 1.55;
  font-weight: 500;
}
.test-card cite {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 700;
  font-size: 13px;
  color: var(--gt-stone);
  letter-spacing: 0.02em;
}
.test-card cite small {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--gt-stone);
}
@media (max-width: 900px) { .tests-grid { grid-template-columns: 1fr; } }

/* ---------- Stats ---------- */
.stats-strip { background: var(--gt-forest); color: #fff; padding: 56px 0; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat .num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(36px, 4.5vw, 56px);
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--gt-orange-on-dark);
  margin-bottom: 6px;
}
.stat .lbl {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.78);
}
@media (max-width: 720px) { .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 36px 20px; } }

/* ---------- Team ---------- */
.team {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.team .photo {
  aspect-ratio: 4 / 5;
  background-color: var(--gt-sage-100);
  background-size: cover;
  background-position: center;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}
.team .copy .eyebrow { color: var(--gt-orange-text); margin-bottom: 12px; }
.team .copy h2 {
  font-size: clamp(30px, 3.6vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 800;
  color: var(--gt-forest);
  margin: 0 0 16px;
}
.team .copy p {
  color: var(--gt-forest);
  font-size: 16.5px;
  line-height: 1.65;
  margin: 0 0 16px;
}
@media (max-width: 820px) { .team { grid-template-columns: 1fr; } }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin: 0 auto; }
.faq details {
  background: #fff;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  margin-bottom: 10px;
  transition: border-color 160ms;
}
.faq details[open] { border-color: var(--gt-forest); }
.faq summary {
  cursor: pointer;
  padding: 18px 22px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--gt-forest);
  list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  color: var(--gt-orange-text);
  font-size: 22px;
  font-weight: 800;
  transition: transform 160ms;
}
.faq details[open] summary::after { content: "\2212"; }
.faq .answer {
  padding: 0 22px 20px;
  color: var(--gt-forest);
  font-size: 15px;
  line-height: 1.6;
}

/* ---------- Final CTA ---------- */
.final-cta {
  background: linear-gradient(135deg, var(--gt-forest) 0%, #2b5641 100%);
  color: #fff;
  text-align: center;
  padding: 80px 0;
}
.final-cta .eyebrow { color: var(--gt-orange-on-dark); margin-bottom: 16px; }
.final-cta h2 {
  color: #fff;
  font-size: clamp(36px, 4.8vw, 60px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  font-weight: 800;
  margin: 0 0 28px;
  max-width: 820px;
  margin-left: auto; margin-right: auto;
}
.final-cta .btns { display: inline-flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--gt-bark);
  color: rgba(255,255,255,0.75);
  padding: 64px 0 20px;
  font-size: 14px;
}
.site-footer .cols {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.site-footer .brand img { height: 56px; margin-bottom: 14px; }
.site-footer .brand p { color: rgba(255,255,255,0.62); line-height: 1.55; max-width: 260px; }
.site-footer h5,
.site-footer .footer-col-head {
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gt-orange-on-dark);
  margin: 4px 0 14px;
  font-weight: 700;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 8px; }
.site-footer a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  transition: color 140ms;
}
.site-footer a:hover { color: #fff; }
.site-footer .contact a { display: block; margin-bottom: 6px; }
.site-footer .legal {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-size: 12px;
  color: rgba(255,255,255,0.45);
}
.site-footer .legal a { color: rgba(255,255,255,0.6); margin-left: 16px; }
@media (max-width: 900px) {
  .site-footer .cols { grid-template-columns: 1fr 1fr; gap: 32px; }
  .site-footer .legal { flex-direction: column; align-items: flex-start; }
}

/* ---------- Breadcrumbs ---------- */
.breadcrumbs {
  padding: 20px 0;
  font-size: 13px;
  color: var(--gt-stone);
  font-family: var(--font-display);
  font-weight: 600;
}
.breadcrumbs a { color: var(--gt-stone); text-decoration: none; }
.breadcrumbs a:hover { color: var(--gt-forest); }
.breadcrumbs .sep { margin: 0 8px; opacity: 0.5; }
.breadcrumbs .current { color: var(--gt-forest); }

/* ---------- Service page hero (smaller than home) ---------- */
.page-hero {
  background: var(--gt-forest);
  color: #fff;
  padding: 72px 0 56px;
  position: relative;
}
.page-hero .eyebrow { color: var(--gt-orange-on-dark); margin-bottom: 12px; }
.page-hero h1 {
  color: #fff;
  font-size: clamp(32px, 4.2vw, 52px);
  line-height: 1.04;
  letter-spacing: -0.02em;
  font-weight: 800;
  margin: 0 0 14px;
  max-width: 880px;
  min-height: 1.08em; /* reserve single-line height so short + long names align vertically */
  text-wrap: balance;
}
.page-hero .lede {
  font-size: 18px;
  line-height: 1.55;
  color: rgba(255,255,255,0.85);
  max-width: 680px;
  margin: 0 0 24px;
}
.page-hero .cta-row { display: flex; gap: 12px; flex-wrap: wrap; }

/* ---------- Two-column content layout ---------- */
.two-col {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 48px;
  align-items: start;
}
.two-col .sidebar {
  position: sticky;
  top: 100px;
  align-self: start;
}
.sidebar .quote-box {
  background: var(--gt-cream);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}
.sidebar .quote-box h4 {
  font-size: 18px; font-weight: 800; margin: 0 0 10px;
  color: var(--gt-forest);
}
@media (max-width: 900px) { .two-col { grid-template-columns: 1fr; } .two-col .sidebar { position: static; } }

/* Long-form prose styles (for service & location pages) */
.prose h2 {
  font-size: clamp(26px, 3.2vw, 36px);
  letter-spacing: -0.02em; font-weight: 800; color: var(--gt-forest);
  margin: 40px 0 14px;
}
.prose h3 {
  font-size: 22px; font-weight: 700; color: var(--gt-forest);
  margin: 28px 0 10px;
}
.prose p {
  font-size: 16.5px; line-height: 1.65; color: var(--gt-forest);
  margin: 0 0 16px;
}
.prose ul, .prose ol { padding-left: 22px; margin: 0 0 16px; }
.prose li { font-size: 16px; line-height: 1.65; color: var(--gt-forest); margin-bottom: 6px; }
.prose a { color: var(--gt-orange-text); font-weight: 700; text-decoration: underline; text-decoration-color: var(--gt-orange); text-underline-offset: 2px; }
.prose a:hover { text-decoration-thickness: 2px; }

/* In-content photos (service pages, hand pages) */
.prose-figure { margin: 28px 0; }
.prose-figure img {
  display: block; width: 100%; height: auto;
  max-height: 480px; object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.prose-figure figcaption { font-size: 13px; color: var(--gt-stone); margin-top: 10px; }

/* Jobber embed wrapper */
.jobber-embed {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 12px;
  min-height: 600px;
}

/* ---------- Stat card (at-a-glance metric on location pages) ---------- */
.stat-card {
  padding: 20px;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.stat-card .label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gt-orange-text);
  margin-bottom: 6px;
}
.stat-card .value {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 34px;
  line-height: 1;
  color: var(--gt-forest);
  letter-spacing: -0.02em;
}
.stat-card .detail {
  font-size: 13px;
  color: var(--gt-stone);
  margin-top: 6px;
  line-height: 1.5;
}

/* ---------- Icon circle (contact cards + location why-us) ---------- */
.icon-circle {
  width: 56px;
  height: 56px;
  background: var(--gt-sage-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}
.icon-circle-dark {
  width: 64px;
  height: 64px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

/* ---------- Neighborhood card (location pages) ---------- */
.nbhd-card {
  padding: 22px;
  position: relative;
  overflow: hidden;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.nbhd-card img.leaf-watermark {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 22px;
  opacity: 0.25;
  mix-blend-mode: multiply;
}
.nbhd-card h3 {
  font-size: 17px;
  font-weight: 800;
  color: var(--gt-forest);
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}
.nbhd-card p {
  margin: 0;
  color: var(--gt-stone);
  font-size: 13.5px;
  line-height: 1.6;
}

/* ---------- Section head sizes (consistent per context) ---------- */
.h-section {
  font-size: 30px;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--gt-forest);
  margin: 0 0 12px;
}
.h-section-lg { font-size: 32px; }

/* Answer-first lead paragraph — the self-contained 40–60 word answer AI engines
   extract. Styled as a confident lead, slightly larger than body. */
.ai-answer { line-height: 1.6; margin: 0 0 18px; }
/* Variant for forest/dark hero backgrounds (replaces inline color:#fff hacks). */
.ai-answer-invert { color: #fff; max-width: 700px; }

/* Anchored headings clear the 72px sticky header when jumped to (e.g. terms TOC). */
[id] { scroll-margin-top: 88px; }

/* Terms table-of-contents layout — sticky rail on desktop, stacks on mobile. */
.toc-layout { display: grid; grid-template-columns: 240px 1fr; gap: 48px; align-items: start; }
@media (max-width: 900px) {
  .toc-layout { grid-template-columns: 1fr; gap: 28px; }
  .toc-layout > aside { position: static !important; }
}

/* Reusable responsive grids — replace hand-coded inline grids that never collapsed. */
.grid-2, .grid-3, .grid-4 { display: grid; gap: 20px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
@media (max-width: 850px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

.stat-grid-4 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
/* Flex (not grid) so ragged last rows — 5, 7, or 8 cards — center instead of
   leaving left-aligned orphans. Basis math keeps exactly 3 per full row. */
.nbhd-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}
.nbhd-grid > .nbhd-card { flex: 0 1 calc((100% - 32px) / 3); min-width: 240px; }
@media (max-width: 900px) { .nbhd-grid > .nbhd-card { flex-basis: calc((100% - 16px) / 2); } }
@media (max-width: 560px) { .nbhd-grid > .nbhd-card { flex-basis: 100%; } }
@media (min-width: 740px) {
  .stat-grid-4 { grid-template-columns: 1fr 1fr; }
}

.map-layout {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  gap: 28px;
  align-items: stretch;
}
@media (max-width: 900px) {
  .map-layout { grid-template-columns: 1fr; }
}

/* ---------- Pricing table (location pricing section) ---------- */
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.pricing-table th {
  padding: 12px 16px;
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--gt-forest);
  color: #fff;
  text-align: left;
}
.pricing-table th.num { text-align: right; }
.pricing-table td { padding: 14px 16px; font-size: 14.5px; border-top: 1px solid var(--color-border); }
.pricing-table td.label { font-weight: 700; color: var(--gt-forest); }
.pricing-table td.detail { color: var(--gt-stone); font-size: 14px; }
.pricing-table td.num { text-align: right; font-weight: 700; font-size: 15px; }
.pricing-table td.num-accent { color: var(--gt-orange-text); }
.pricing-table td.num-dark { color: var(--gt-forest); }
