/* ============================================================
   COMPONENTS — Carolina Sod Solutions
   Nav, buttons, forms, cards, footer, shared UI
   ============================================================ */

/* ── Site Header / Nav ───────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  padding-block: .55rem;
  background: transparent;
  transition: background var(--dur-m) var(--ease),
              box-shadow var(--dur-m) var(--ease),
              padding var(--dur-m) var(--ease),
              top var(--dur-m) var(--ease);
}

/* When a top-bar is present, push header below it until scroll */
body.has-top-bar .site-header { top: 36px; }
body.has-top-bar.scrolled .site-header { top: 0; }

.site-header.scrolled {
  background: var(--white);
  box-shadow: 0 1px 0 var(--border), 0 2px 24px rgba(0,0,0,.06);
  padding-block: .4rem;
}

/* Inner pages always show solid nav */
.site-header.always-solid {
  background: var(--white);
  box-shadow: 0 1px 0 var(--border), 0 2px 24px rgba(0,0,0,.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

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

.site-logo__img {
  display: block;
  height: 54px;
  width: auto;
  transition: height var(--dur-m) var(--ease);
}

.site-header.scrolled .site-logo__img { height: 44px; }

/* Primary nav */
.primary-nav {
  display: flex;
  align-items: center;
  gap: .15rem;
}

.primary-nav a {
  font-family: var(--font-body);
  font-size: .88rem;
  font-weight: 500;
  letter-spacing: -.005em;
  color: var(--text-muted);
  padding: .45rem .85rem;
  border-radius: var(--radius-s);
  transition: color var(--dur-s), background var(--dur-s);
}

.primary-nav a:hover {
  color: var(--text-dark);
  background: var(--green-50);
}

.primary-nav a.active {
  color: var(--green-700);
}

/* When header is transparent, nav links are white */
.site-header:not(.scrolled):not(.always-solid) .primary-nav a {
  color: rgba(255,255,255,.82);
}
.site-header:not(.scrolled):not(.always-solid) .primary-nav a:hover {
  color: var(--white);
  background: rgba(255,255,255,.1);
}
.site-header:not(.scrolled):not(.always-solid) .primary-nav a.active {
  color: var(--white);
}

/* Dropdown */
.nav-item {
  position: relative;
}

/* Invisible hover bridge so the cursor doesn't lose :hover
   when traveling between the nav link and the dropdown */
.nav-item::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: .85rem;
  pointer-events: none;
}
.nav-item:hover::after,
.nav-item:focus-within::after {
  pointer-events: auto;
}

.nav-item .dropdown {
  position: absolute;
  top: calc(100% + .6rem);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 220px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-m);
  box-shadow: var(--shadow-l);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dur-m), transform var(--dur-m);
}

.nav-item:hover .dropdown,
.nav-item:focus-within .dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.dropdown a {
  display: block;
  padding: .65rem 1.1rem;
  font-size: .845rem;
  font-weight: 400;
  color: var(--text-body) !important;
  background: transparent !important;
  border-radius: 0;
  transition: background var(--dur-s), color var(--dur-s);
}

.dropdown a:hover {
  background: var(--green-50) !important;
  color: var(--green-700) !important;
}

.dropdown a:first-child { border-radius: var(--radius-m) var(--radius-m) 0 0; }
.dropdown a:last-child  { border-radius: 0 0 var(--radius-m) var(--radius-m); }
.dropdown a + a { border-top: 1px solid var(--border); }

/* Header actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-shrink: 0;
}

.header-phone {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-family: var(--font-mono);
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .02em;
  color: var(--text-muted);
  transition: color var(--dur-s);
}

.header-phone:hover { color: var(--green-700); }

.header-phone svg { color: var(--green-600); flex-shrink: 0; }

.site-header:not(.scrolled):not(.always-solid) .header-phone {
  color: rgba(255,255,255,.82);
}
.site-header:not(.scrolled):not(.always-solid) .header-phone svg {
  color: rgba(255,255,255,.7);
}
.site-header:not(.scrolled):not(.always-solid) .header-phone:hover {
  color: var(--white);
}

/* Hide header-phone when top-bar already shows the number */
body.has-top-bar .header-phone { display: none; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: transform var(--dur-m), opacity var(--dur-m);
  transform-origin: center;
}

.site-header:not(.scrolled):not(.always-solid) .hamburger span {
  background: var(--white);
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 850;
  background: var(--white);
  padding: 5rem var(--gutter) 2rem;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform var(--dur-l) var(--ease);
}

.mobile-nav.open { transform: translateX(0); }

.mobile-nav a {
  display: block;
  font-family: var(--font-body);
  font-size: var(--step-2);
  font-weight: 600;
  color: var(--text-dark);
  padding: .65rem 0;
  border-bottom: 1px solid var(--border);
}

.mobile-nav a:hover { color: var(--green-700); }

.mobile-nav .mobile-nav-sub a {
  font-size: var(--step-1);
  padding-left: 1rem;
  color: var(--text-muted);
  font-weight: 400;
}

.mobile-nav-footer {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .875rem;
  letter-spacing: .01em;
  padding: .8rem 1.6rem;
  border-radius: var(--radius-m);
  transition: background var(--dur-m) var(--ease),
              color var(--dur-m),
              transform var(--dur-s) var(--ease-bounce),
              box-shadow var(--dur-m);
  white-space: nowrap;
  cursor: pointer;
}

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

/* Primary — rich green */
.btn-primary {
  background: var(--green-700);
  color: var(--white);
  box-shadow: 0 2px 12px rgba(39,92,42,.25);
}

.btn-primary:hover {
  background: var(--green-800);
  box-shadow: 0 6px 24px rgba(39,92,42,.35);
  transform: translateY(-1px);
}

/* Gold — premium CTA */
.btn-gold {
  background: var(--gold);
  color: var(--white);
  box-shadow: var(--shadow-amber);
}

.btn-gold:hover {
  background: var(--gold-dark);
  box-shadow: 0 8px 28px rgba(176,125,26,.40);
  transform: translateY(-1px);
}

/* Secondary — outline green */
.btn-secondary {
  background: transparent;
  color: var(--green-700);
  border: 1.5px solid var(--green-600);
}

.btn-secondary:hover {
  background: var(--green-50);
  border-color: var(--green-700);
}

/* Outline — for light backgrounds */
.btn-outline {
  background: transparent;
  color: var(--green-700);
  border: 1.5px solid var(--green-600);
}

.btn-outline:hover {
  background: var(--green-50);
  border-color: var(--green-700);
  color: var(--green-800);
}

/* Large size modifier */
.btn-lg {
  padding: .85rem 2rem;
  font-size: .95rem;
}

/* Outline light — for dark backgrounds */
.btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.45);
}

.btn-outline-light:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.75);
}

/* Ghost — for light backgrounds */
.btn-ghost {
  background: transparent;
  color: var(--text-body);
  border: 1.5px solid var(--border-mid);
}

.btn-ghost:hover {
  background: var(--cream);
  border-color: var(--text-muted);
}

/* Dark */
.btn-dark {
  background: var(--green-800);
  color: var(--white);
}
.btn-dark:hover {
  background: var(--green-900);
  transform: translateY(-1px);
  box-shadow: var(--shadow-m);
}

.btn--lg { font-size: .95rem; padding: .95rem 2rem; }
.btn--sm { font-size: .8rem;  padding: .55rem 1.1rem; }

/* Arrow link */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .85rem;
  font-weight: 600;
  color: var(--green-700);
  transition: gap var(--dur-s) var(--ease-bounce), color var(--dur-s);
}

.link-arrow:hover { gap: .75rem; color: var(--green-800); }
.link-arrow--white { color: rgba(255,255,255,.85); }
.link-arrow--white:hover { color: var(--white); gap: .75rem; }

/* ── Forms ───────────────────────────────────────────────── */
.form-group { display: flex; flex-direction: column; gap: .35rem; }

.form-label {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text-body);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: .8rem 1rem;
  background: var(--white);
  border: 1.5px solid var(--border-mid);
  border-radius: var(--radius-m);
  font-size: .9rem;
  color: var(--text-body);
  transition: border-color var(--dur-s), box-shadow var(--dur-s);
}

.form-input::placeholder,
.form-textarea::placeholder { color: #a0a8a0; }

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--green-600);
  box-shadow: 0 0 0 3px rgba(61,140,65,.12);
  outline: none;
}

.form-textarea { resize: vertical; min-height: 90px; }

/* Quote card (light, for sidebars) */
.quote-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-l);
  padding: 1.75rem;
  box-shadow: var(--shadow-l);
}

.quote-card__header { margin-bottom: 1.25rem; }

.quote-card__title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
}

.quote-card__title span { color: var(--green-700); }

.quote-card__sub {
  font-size: .875rem;
  color: var(--text-muted);
  margin-top: .3rem;
  max-width: none;
}

.quote-trust {
  margin-top: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  flex-wrap: wrap;
}

.quote-trust__item {
  display: flex;
  align-items: center;
  gap: .35rem;
  font-size: .78rem;
  color: var(--text-muted);
}

.quote-trust__item svg { color: var(--green-600); flex-shrink: 0; }

/* ── Service card ────────────────────────────────────────── */
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-l);
  overflow: hidden;
  transition: box-shadow var(--dur-m), transform var(--dur-m) var(--ease);
}

.service-card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-3px);
}

.service-card__img {
  aspect-ratio: 4/3;
  overflow: hidden;
}

.service-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .65s var(--ease);
}

.service-card:hover .service-card__img img { transform: scale(1.04); }

.service-card__body { padding: 1.5rem 1.6rem 1.75rem; }

.service-card__label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--green-700);
  background: var(--green-50);
  border: 1px solid var(--green-100);
  padding: .22rem .7rem;
  border-radius: 50px;
  margin-bottom: .85rem;
}

.service-card__title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: .5rem;
  color: var(--text-dark);
}

.service-card__text {
  font-size: .9rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  max-width: none;
}

/* Featured side-by-side card */
.service-card--featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.service-card--featured .service-card__img {
  aspect-ratio: unset;
  height: 100%;
  min-height: 280px;
}

.service-card--featured .service-card__body {
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-card--featured .service-card__title { font-size: 1.7rem; }

/* Compact side card */
.service-card--side {
  display: grid;
  grid-template-columns: 180px 1fr;
}

.service-card--side .service-card__img {
  aspect-ratio: unset;
  height: 100%;
  min-height: 140px;
}

.service-card--side .service-card__body { padding: 1.25rem 1.4rem; }
.service-card--side .service-card__title { font-size: 1.1rem; }
.service-card--side .service-card__text {
  font-size: .85rem;
  margin-bottom: .75rem;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ── Stat block ──────────────────────────────────────────── */
.stat-block { text-align: center; }

.stat-block__num {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4.2vw, 3.2rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1;
  letter-spacing: -.035em;
}

.stat-block__label {
  font-family: var(--font-mono);
  font-size: .72rem;
  font-weight: 500;
  color: rgba(255,255,255,.6);
  text-transform: uppercase;
  letter-spacing: .02em;
  margin-top: .55rem;
}

/* ── Process step ────────────────────────────────────────── */
.process-step {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .6rem;
}

.process-step__num {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--green-400);
  line-height: 1;
  opacity: .8;
}

.process-step__title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
}

.process-step__text {
  font-size: .9rem;
  font-weight: 300;
  color: rgba(255,255,255,.65);
  line-height: 1.75;
  max-width: 28ch;
}

.process-step__divider {
  width: 28px;
  height: 2px;
  background: var(--green-400);
  opacity: .5;
  margin: .4rem 0;
}

/* ── Check list ──────────────────────────────────────────── */
.check-list {
  display: flex;
  flex-direction: column;
  gap: .65rem;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  font-size: .92rem;
  font-weight: 400;
  color: var(--text-body);
  line-height: 1.55;
}

.check-list li::before {
  content: '';
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 1px;
  background: var(--green-600);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

.check-list--dark li { color: rgba(255,255,255,.82); }
.check-list--dark li::before { background-color: var(--green-400); }

/* ── Location card ───────────────────────────────────────── */
.location-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-m);
  padding: 1.1rem 1.25rem;
  transition: background var(--dur-m), border-color var(--dur-m), transform var(--dur-m), box-shadow var(--dur-m);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.location-card:hover {
  background: var(--green-50);
  border-color: var(--green-400);
  transform: translateX(3px);
  box-shadow: var(--shadow-s);
}

.location-card:hover .location-card__arrow { color: var(--green-700); }

.location-card__name {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -.015em;
  color: var(--text-dark);
}

.location-card__sub {
  font-family: var(--font-mono);
  font-size: .68rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: .25rem;
}

.location-card__arrow {
  color: var(--green-500);
  flex-shrink: 0;
  transition: color var(--dur-m);
}

/* ── Why section ─────────────────────────────────────────── */
.why-section {
  background: var(--cream);
}

.why-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: end;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 3rem;
}

.why-top h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.2;
  margin: 0;
}

.why-top h2 em {
  font-style: italic;
  color: var(--green-700);
}

.why-top > p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-muted);
  max-width: 46ch;
  margin: 0;
}

.why-cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.why-col {
  padding: 0 2rem 0 0;
  border-right: 1px solid var(--border);
}

.why-col:first-child { padding-left: 0; }
.why-col:last-child  { border-right: none; padding-right: 0; }
.why-col + .why-col  { padding-left: 2rem; }

.why-col__n {
  display: block;
  font-family: var(--font-body);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .14em;
  color: var(--green-600);
  text-transform: uppercase;
  margin-bottom: .85rem;
}

.why-col__title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.25;
  margin-bottom: .65rem;
}

.why-col__body {
  font-size: .88rem;
  line-height: 1.75;
  color: var(--text-muted);
}

/* ── FAQ ─────────────────────────────────────────────────── */
.faq-item { border-bottom: 1px solid var(--border); }

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 0;
  cursor: pointer;
  user-select: none;
  gap: 1rem;
}

.faq-question h4 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.35;
  transition: color var(--dur-s);
}

.faq-question:hover h4 { color: var(--green-700); }

.faq-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--cream);
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--dur-m), border-color var(--dur-m), transform var(--dur-m);
}

.faq-item.open .faq-icon {
  background: var(--green-600);
  border-color: var(--green-600);
  color: #fff;
  transform: rotate(45deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows var(--dur-m) var(--ease);
}

.faq-item.open .faq-answer { grid-template-rows: 1fr; }

.faq-answer-inner { overflow: hidden; }
.faq-answer p { padding-bottom: 1.2rem; font-size: .92rem; max-width: 70ch; }

/* ── Section heading ─────────────────────────────────────── */
.section-head { margin-bottom: var(--space-2xl); }

.section-head--center { text-align: center; }
.section-head--center p { margin-inline: auto; }

.section-head h2 { margin-top: .5rem; margin-bottom: .75rem; }
.section-head p   { font-size: var(--step-1); max-width: 52ch; }

/* ── Breadcrumb ──────────────────────────────────────────── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: .6rem;
  flex-wrap: wrap;
  font-family: var(--font-mono);
  font-size: .72rem;
  font-weight: 400;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
}

.breadcrumb a { color: rgba(255,255,255,.55); transition: color var(--dur-s); }
.breadcrumb a:hover { color: rgba(255,255,255,.9); }
.breadcrumb span { color: rgba(255,255,255,.92); }
.breadcrumb svg { opacity: .5; }

/* ── Inner page hero ─────────────────────────────────────── */
.inner-hero {
  position: relative;
  min-height: 72vh;
  display: flex;
  align-items: center;
  padding-top: 9rem;
  padding-bottom: 6.5rem;
  overflow: hidden;
  background: var(--green-900);
}

.inner-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 40%;
  z-index: 0;
}

.inner-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    105deg,
    rgba(8,18,8,.90) 0%,
    rgba(8,18,8,.74) 55%,
    rgba(8,18,8,.48) 100%
  );
}

.inner-hero__content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.inner-hero__badges {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.4rem;
  flex-wrap: wrap;
}

.inner-hero__badge {
  display: flex;
  align-items: center;
  gap: .55rem;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 6px;
  padding: .5rem .85rem;
  backdrop-filter: blur(4px);
}

.inner-hero__badge-icon { color: var(--green-400); flex-shrink: 0; display: flex; }

.inner-hero__badge-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.inner-hero__badge-text strong {
  font-family: var(--font-body);
  font-size: .85rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: -.01em;
}

.inner-hero__badge-text span {
  font-family: var(--font-mono);
  font-size: .68rem;
  letter-spacing: .03em;
  color: rgba(255,255,255,.55);
}

.inner-hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: .55rem;
  flex-wrap: wrap;
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .02em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: 1.25rem;
}

.inner-hero__breadcrumb a { color: rgba(255,255,255,.5); transition: color var(--dur-s); }
.inner-hero__breadcrumb a:hover { color: rgba(255,255,255,.85); }
.inner-hero__breadcrumb span { color: rgba(255,255,255,.85); }

.inner-hero__headline {
  color: var(--white);
  font-size: clamp(2.3rem, 5vw, 4.2rem);
  font-weight: 600;
  line-height: 1.0;
  letter-spacing: -.035em;
  margin: 0 0 1.1rem;
  font-family: var(--font-serif);
}

.inner-hero__accent {
  color: var(--white);
  font-family: var(--font-editorial);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -.03em;
  font-size: 1.12em;
  line-height: .9;
}

.inner-hero__sub {
  font-size: clamp(.9rem, 1.3vw, 1.03rem);
  font-weight: 300;
  color: rgba(255,255,255,.7);
  line-height: 1.72;
  max-width: 54ch;
  margin-bottom: 1.6rem;
}

.inner-hero__sub strong { color: var(--white); font-weight: 600; }

.inner-hero__checks {
  display: flex;
  gap: 1.4rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.inner-hero__check {
  display: flex;
  align-items: center;
  gap: .45rem;
  font-size: .9rem;
  color: rgba(255,255,255,.82);
}

.inner-hero__check svg { color: var(--green-400); flex-shrink: 0; }

@media (max-width: 768px) {
  .inner-hero { min-height: 60vh; padding-top: 7rem; padding-bottom: 3rem; }
  .inner-hero__headline { font-size: clamp(1.75rem, 8vw, 2.5rem); }
  .inner-hero__overlay { background: rgba(8,18,8,.82); }
}

/* Sod-type detail grid (intro + spec card) */
@media (max-width: 900px) {
  .sod-detail-grid {
    grid-template-columns: 1fr !important;
  }
  .sod-detail-grid > div:last-child {
    position: static !important;
  }
}

/* ── Legacy page-hero (kept for location pages) ──────────── */
.page-hero {
  position: relative;
  min-height: 38vh;
  display: flex;
  align-items: flex-end;
  padding-top: 9rem;
  padding-bottom: var(--space-2xl);
  background: var(--green-800);
  overflow: hidden;
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: .28;
}

.page-hero__content {
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  color: var(--white);
  font-family: var(--font-serif);
  margin-top: .75rem;
}

/* ── Inline CTA strip ────────────────────────────────────── */
.cta-strip {
  background: var(--green-700);
  padding: 1.25rem var(--gutter);
}

.cta-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  max-width: var(--container);
  margin-inline: auto;
}

.cta-strip p {
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255,255,255,.9);
  max-width: none;
}

/* ── Trust bar ───────────────────────────────────────────── */
.trust-bar {
  background: var(--green-800);
  padding: 2.25rem var(--gutter);
}

.trust-bar-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  max-width: var(--container);
  margin-inline: auto;
}

.trust-bar-divider {
  width: 1px;
  height: 2.5rem;
  background: rgba(255,255,255,.15);
  flex-shrink: 0;
  margin: 0 3rem;
}

/* ── Google badge ────────────────────────────────────────── */
.google-badge {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: .6rem 1.2rem;
  box-shadow: var(--shadow-s);
}

.google-badge__logo { font-size: 1rem; font-weight: 800; }
.google-badge__logo span:nth-child(1) { color: #4285F4; }
.google-badge__logo span:nth-child(2) { color: #EA4335; }
.google-badge__logo span:nth-child(3) { color: #FBBC04; }
.google-badge__logo span:nth-child(4) { color: #4285F4; }
.google-badge__logo span:nth-child(5) { color: #34A853; }
.google-badge__logo span:nth-child(6) { color: #EA4335; }

.google-badge__stars { display: flex; gap: 2px; color: #FBBC04; font-size: .85rem; }
.google-badge__num   { font-size: .9rem; font-weight: 700; color: var(--text-body); }
.google-badge__count { font-size: .75rem; color: var(--text-muted); }

/* ── Footer ──────────────────────────────────────────────── */
.site-footer {
  background: var(--green-900);
  color: var(--white);
  padding-top: 3.5rem;
  padding-bottom: 1.25rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer-brand__logo {
  display: inline-flex;
  align-items: center;
  margin-bottom: 1rem;
  line-height: 1;
  transition: opacity var(--dur-s);
}

.footer-brand__logo img {
  display: block;
  height: 72px;
  width: auto;
}

.footer-brand__logo:hover { opacity: .85; }

.footer-brand__tagline {
  font-family: var(--font-body);
  font-size: .85rem;
  font-weight: 400;
  color: rgba(255,255,255,.5);
  margin-bottom: 1.1rem;
  line-height: 1.5;
  max-width: 28ch;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: .6rem;
  margin-bottom: .5rem;
  font-family: var(--font-mono);
  font-size: .78rem;
  letter-spacing: .01em;
  color: rgba(255,255,255,.65);
  line-height: 1.4;
}

.footer-contact-item svg { color: var(--green-400); flex-shrink: 0; }
.footer-contact-item a   { color: rgba(255,255,255,.65); transition: color var(--dur-s); }
.footer-contact-item a:hover { color: var(--white); }

.footer-col__heading {
  font-family: var(--font-mono);
  font-size: .66rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--green-300);
  margin-bottom: .75rem;
  display: flex;
  align-items: center;
  gap: .5rem;
}
.footer-col__heading::before {
  content: '';
  width: 12px;
  height: 1px;
  background: var(--green-400);
  opacity: .6;
}

.footer-col ul { display: flex; flex-direction: column; gap: .3rem; }
.footer-col li { font-family: var(--font-mono); font-size: .78rem; }

.footer-col a {
  font-family: var(--font-body);
  font-size: .84rem;
  font-weight: 400;
  color: rgba(255,255,255,.62);
  transition: color var(--dur-s), padding-left var(--dur-s);
}

.footer-col a:hover { color: var(--white); padding-left: .2rem; }

.footer-bottom {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-family: var(--font-mono);
  font-size: .76rem;
  letter-spacing: .02em;
  color: rgba(255,255,255,.4);
  max-width: none;
}

.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a {
  font-family: var(--font-mono);
  font-size: .74rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  transition: color var(--dur-s);
}
.footer-bottom-links a:hover { color: rgba(255,255,255,.75); }

/* ── Mobile sticky CTA bar ───────────────────────────────── */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 800;
  background: var(--white);
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 20px rgba(0,0,0,.1);
  padding: .75rem var(--gutter);
}

.mobile-cta-bar-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .5rem;
}

.mobile-cta-bar .btn { width: 100%; justify-content: center; }

/* ── Areas grid ──────────────────────────────────────────── */
.areas-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--space-2xl);
  align-items: center;
}

.areas-locations {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .65rem;
}

/* ── Final CTA ───────────────────────────────────────────── */
.final-cta-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: var(--space-2xl);
  align-items: center;
}

.final-cta-phone {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--white);
  transition: color var(--dur-s);
  margin-top: 1.75rem;
}

.final-cta-phone:hover { color: rgba(255,255,255,.8); }
.final-cta-phone svg   { color: var(--green-400); flex-shrink: 0; }

.final-cta-phone span {
  display: block;
  font-family: var(--font-mono);
  font-size: .7rem;
  font-weight: 400;
  color: rgba(255,255,255,.5);
  text-transform: uppercase;
  letter-spacing: .08em;
}

.final-cta-phone strong {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: -.025em;
  color: var(--white);
  display: block;
}

/* Services grid (homepage) */
.services-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 1.25rem;
}

.services-side {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.services-cta {
  text-align: center;
  margin-top: var(--space-l);
}

/* ── Process grid ────────────────────────────────────────── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-l);
  position: relative;
}

.process-grid::before {
  content: '';
  position: absolute;
  top: 1.8rem;
  left: calc(25% / 2);
  right: calc(25% / 2);
  height: 1px;
  background: linear-gradient(to right,
    transparent,
    rgba(90,170,94,.35) 15%,
    rgba(90,170,94,.35) 85%,
    transparent
  );
  z-index: 0;
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .primary-nav    { display: none; }
  .header-actions { display: none; }
  .hamburger      { display: flex; }
  .mobile-nav     { display: block; }
  .mobile-cta-bar { display: block; }
  body            { padding-bottom: 72px; }

  .site-header      { padding-block: .8rem; }
  .site-logo__mark  { font-size: 1.15rem; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--space-l); }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .cta-strip-inner { flex-direction: column; text-align: center; }

  .why-top { grid-template-columns: 1fr; gap: 1.25rem; }

  .why-cols {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem 0;
  }
  .why-col { border-right: none; padding-right: 0; }
  .why-col + .why-col { padding-left: 0; }
  .why-col:nth-child(odd)  { border-right: 1px solid var(--border); padding-right: 2rem; }
  .why-col:nth-child(even) { padding-left: 2rem; }

  .areas-grid,
  .final-cta-grid { grid-template-columns: 1fr; }

  .services-grid { grid-template-columns: 1fr; }
  .service-card--featured { grid-template-columns: 1fr 1fr; }
  .services-side { flex-direction: row; }
  .service-card--side { flex: 1; grid-template-columns: 130px 1fr; }

  .process-grid { grid-template-columns: 1fr 1fr; }
  .process-grid::before { display: none; }
}

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; }

  .service-card--featured { grid-template-columns: 1fr; }
  .service-card--featured .service-card__img { min-height: 220px; }

  .services-side { flex-direction: column; }
  .service-card--side { grid-template-columns: 1fr; }
  .service-card--side .service-card__img { min-height: 160px; }

  .process-grid { grid-template-columns: 1fr; }
  .areas-locations { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .why-cols { grid-template-columns: 1fr; }
  .why-col:nth-child(odd) { border-right: none; padding-right: 0; }
  .why-col:nth-child(even) { padding-left: 0; }
  .why-col + .why-col { border-top: 1px solid var(--border); padding-top: 2rem; padding-left: 0; }
}

/* ── Service page split layout ───────────────────────────── */
.svc-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--border);
}

.svc-stat {
  padding: 2rem 1.75rem;
  border-right: 1px solid var(--border);
  text-align: center;
}

.svc-stat:last-child { border-right: none; }

.svc-stat__num {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--ink);
  line-height: 1;
  margin-bottom: .4rem;
}

.svc-stat__num--green { color: var(--green-700); }

.svc-stat__label {
  font-size: .8rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.svc-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  min-height: 500px;
}

.svc-split__img {
  position: relative;
  overflow: hidden;
  min-height: 400px;
}

.svc-split__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.svc-split__body {
  padding: 5rem 5vw 5rem 4.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #fff;
}

.svc-split--cream .svc-split__body { background: var(--cream); }

.svc-split__body h2 {
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  line-height: 1.15;
  margin-bottom: 1rem;
  color: var(--ink);
}

.svc-split__body p {
  color: var(--text-body);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.svc-split__eyebrow {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--green-700);
  margin-bottom: .65rem;
  display: block;
}

.svc-split__highlights {
  display: flex;
  flex-direction: column;
  gap: .85rem;
  margin: 1.25rem 0 1.75rem;
}

.svc-split__highlight {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
}

.svc-split__highlight-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--green-50, #f0faf0);
  border: 1px solid var(--green-200, #c3e6c3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--green-700);
  margin-top: .1rem;
}

.svc-split__highlight-text strong {
  display: block;
  font-size: .88rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: .15rem;
}

.svc-split__highlight-text span {
  font-size: .82rem;
  color: var(--text-muted);
  line-height: 1.5;
}

@media (max-width: 900px) {
  .svc-split { grid-template-columns: 1fr; }
  .svc-split__img { min-height: 300px; order: -1 !important; }
  .svc-split__body { padding: 3rem 1.5rem; }
  .svc-stats { grid-template-columns: repeat(2, 1fr); }
  .svc-stat:nth-child(2) { border-right: none; }
  .svc-stat:nth-child(3) { border-top: 1px solid var(--border); }
  .svc-stat:nth-child(4) { border-top: 1px solid var(--border); }
}

@media (max-width: 520px) {
  .svc-stats { grid-template-columns: 1fr 1fr; }
}

/* ── Inner-page sectioned layout ─────────────────────────── */
.inner-page-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: var(--space-2xl);
  align-items: start;
}

.inner-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: start;
}

.inner-page-areas {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.inner-page-area-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-m);
  padding: 1.25rem 1.25rem 1rem;
}

.inner-page-area-card__name {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: .72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--green-700);
  margin-bottom: .8rem;
  padding-bottom: .55rem;
  border-bottom: 1px solid var(--border);
}

.inner-page-area-card ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: .3rem;
  margin: 0;
}

.inner-page-area-card ul li {
  font-size: .85rem;
  color: var(--text-muted);
}

.inner-page-area-card ul li a {
  color: var(--amber);
  transition: opacity .15s;
}

.inner-page-area-card ul li a:hover { opacity: .75; }

.page-final-cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.page-final-phone {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--white);
  font-size: 1.6rem;
  font-family: var(--font-serif);
  font-weight: 600;
  letter-spacing: -.025em;
  margin-top: 1.5rem;
  transition: opacity .2s;
}

.page-final-phone:hover { opacity: .85; }
.page-final-phone svg { color: var(--green-400); flex-shrink: 0; }

@media (max-width: 1024px) {
  .inner-page-grid { grid-template-columns: 1fr; }
  .inner-page-grid > div:last-child { position: static !important; }
}

@media (max-width: 860px) {
  .inner-two-col { grid-template-columns: 1fr; gap: 2.5rem; }
  .inner-page-areas { grid-template-columns: repeat(2, 1fr); }
  .page-final-cta { grid-template-columns: 1fr; gap: 2.5rem; }
}

@media (max-width: 480px) {
  .inner-page-areas { grid-template-columns: 1fr; }
}

/* ── Process layout ──────────────────────────────────────── */
.process-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.process-steps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.process-step-item {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--radius-m);
  padding: 1.25rem 1.1rem;
}

.process-step-item__num {
  font-family: var(--font-editorial);
  font-style: italic;
  font-size: 1.85rem;
  font-weight: 400;
  color: var(--green-400);
  line-height: 1;
  margin-bottom: .6rem;
  letter-spacing: -.02em;
}

.process-step-item h3 {
  color: var(--white);
  font-size: .92rem;
  font-weight: 700;
  margin-bottom: .35rem;
  line-height: 1.3;
}

.process-step-item p {
  color: rgba(255,255,255,.52);
  font-size: .82rem;
  line-height: 1.55;
  margin: 0;
}

@media (max-width: 860px) {
  .process-layout { grid-template-columns: 1fr; gap: 2.5rem; }
}

@media (max-width: 600px) {
  .process-steps-grid { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════════════════════════
   EDITORIAL DESIGN SYSTEM
   Magazine-style components for inner pages
   ════════════════════════════════════════════════════════════ */

/* ── Section eyebrow with number ─────────────────────────── */
.ed-tag {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  font-family: var(--font-mono);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--green-700);
  margin-bottom: 1rem;
}

.ed-tag__num {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: .72rem;
  letter-spacing: .04em;
  color: var(--green-700);
  line-height: 1;
  opacity: .55;
}

.ed-tag__rule {
  width: 2rem;
  height: 1px;
  background: var(--green-600);
  opacity: .35;
}

.ed-tag--light {
  color: rgba(255,255,255,.65);
}
.ed-tag--light .ed-tag__num { color: rgba(255,255,255,.5); opacity: 1; }
.ed-tag--light .ed-tag__rule { background: rgba(255,255,255,.3); opacity: 1; }

/* ── Editorial display heading ───────────────────────────── */
.ed-display {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(2.1rem, 4.6vw, 3.6rem);
  line-height: 1.02;
  letter-spacing: -.035em;
  color: var(--text-dark);
  margin: 0;
}

.ed-display em {
  font-family: var(--font-editorial);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -.02em;
  color: var(--text-dark);
  font-size: 1.08em;
  line-height: .95;
}

.ed-display--light { color: var(--white); }
.ed-display--light em { color: var(--white); }

/* ── Editorial intro (asymmetric magazine layout) ────────── */
.ed-intro {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: start;
}

.ed-intro__head {
  position: sticky;
  top: 7rem;
}

.ed-intro__lead {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 1.7vw, 1.28rem);
  line-height: 1.55;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  font-weight: 500;
  letter-spacing: -.01em;
  max-width: 56ch;
}

.ed-intro__lead::first-letter {
  font-family: var(--font-editorial);
  font-weight: 400;
  font-style: italic;
  font-size: 3.8em;
  line-height: .82;
  float: left;
  padding: .08em .12em 0 0;
  color: var(--text-dark);
}

.ed-intro__lead em {
  font-family: var(--font-editorial);
  font-style: italic;
  font-weight: 400;
  color: var(--text-dark);
  font-size: 1.1em;
  line-height: 1;
}

.ed-intro__body p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
  max-width: 60ch;
}

.ed-intro__body p strong { color: var(--text-body); }

.ed-intro__signoff {
  margin-top: 2rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-mono);
  font-size: .78rem;
  letter-spacing: .02em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.ed-intro__signoff strong {
  font-family: var(--font-mono);
  font-weight: 500;
  color: var(--text-dark);
}

@media (max-width: 900px) {
  .ed-intro { grid-template-columns: 1fr; gap: 2rem; }
  .ed-intro__head { position: static; }
}

/* ── Manifesto / Statement panel (dark green hero) ──────── */
.manifesto {
  background: var(--green-900);
  color: var(--white);
  padding: clamp(4rem, 7vw, 7rem) 0;
  position: relative;
  overflow: hidden;
}

.manifesto::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(90,170,94,.10), transparent 50%),
    radial-gradient(circle at 85% 80%, rgba(176,125,26,.05), transparent 45%);
  pointer-events: none;
}

.manifesto__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
}

.manifesto__quote {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(1.9rem, 3.4vw, 2.9rem);
  line-height: 1.15;
  color: var(--white);
  letter-spacing: -.025em;
  margin: 0 0 1.75rem;
}

.manifesto__quote em {
  font-family: var(--font-editorial);
  font-style: italic;
  font-weight: 400;
  color: var(--white);
  font-size: 1.1em;
  line-height: .95;
}

.manifesto__quote span {
  color: var(--green-400);
  font-family: var(--font-editorial);
  font-style: italic;
  font-weight: 400;
  font-size: 1.08em;
}

.manifesto__sig {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-mono);
  font-size: .76rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
}

.manifesto__sig::before {
  content: '';
  width: 2rem;
  height: 1px;
  background: rgba(255,255,255,.35);
  flex-shrink: 0;
}

.manifesto__sig strong {
  font-family: var(--font-mono);
  font-weight: 500;
  color: var(--white);
}

.manifesto__pillars {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.manifesto__pillar {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.1rem;
  align-items: start;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,.10);
}

.manifesto__pillar:last-child { border-bottom: none; padding-bottom: 0; }

.manifesto__pillar-n {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: .78rem;
  color: var(--green-400);
  line-height: 1;
  padding-top: .35rem;
  min-width: 2.5rem;
  letter-spacing: .02em;
}

.manifesto__pillar-title {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: .45rem;
  letter-spacing: -.015em;
}

.manifesto__pillar-body {
  font-size: .95rem;
  line-height: 1.6;
  color: rgba(255,255,255,.6);
  margin: 0;
}

@media (max-width: 900px) {
  .manifesto__inner { grid-template-columns: 1fr; gap: 3rem; }
}

/* ── Tier / Package cards (conversion-focused) ──────────── */
.tier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}

.tier-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-l);
  padding: 2.25rem 1.9rem 2rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform var(--dur-m) var(--ease),
              box-shadow var(--dur-m),
              border-color var(--dur-m);
}

.tier-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-l);
  border-color: var(--green-100);
}

.tier-card--featured {
  background: var(--green-900);
  color: var(--white);
  border-color: var(--green-700);
  box-shadow: 0 16px 48px rgba(28,63,30,.25);
  transform: translateY(-8px);
}

.tier-card--featured:hover {
  transform: translateY(-12px);
  box-shadow: 0 22px 64px rgba(28,63,30,.32);
  border-color: var(--green-600);
}

.tier-card__badge {
  position: absolute;
  top: -.7rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--white);
  font-family: var(--font-mono);
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: .4rem 1rem;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(176,125,26,.35);
}

.tier-card__eyebrow {
  font-family: var(--font-mono);
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--green-700);
  margin-bottom: .65rem;
}

.tier-card--featured .tier-card__eyebrow { color: var(--green-400); }

.tier-card__name {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.55rem;
  color: var(--text-dark);
  margin-bottom: .35rem;
  letter-spacing: -.015em;
}

.tier-card--featured .tier-card__name { color: var(--white); }

.tier-card__pitch {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: .98rem;
  line-height: 1.55;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.tier-card--featured .tier-card__pitch {
  color: rgba(255,255,255,.78);
  border-bottom-color: rgba(255,255,255,.12);
}

.tier-card__includes {
  list-style: none;
  padding: 0;
  margin: 0 0 1.75rem;
  display: flex;
  flex-direction: column;
  gap: .7rem;
  flex-grow: 1;
}

.tier-card__includes li {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .9rem;
  color: var(--text-body);
  line-height: 1.5;
}

.tier-card__includes li svg {
  flex-shrink: 0;
  margin-top: .2rem;
  color: var(--green-600);
}

.tier-card--featured .tier-card__includes li { color: rgba(255,255,255,.85); }
.tier-card--featured .tier-card__includes li svg { color: var(--green-400); }

.tier-card .btn { width: 100%; justify-content: center; }

@media (max-width: 900px) {
  .tier-grid { grid-template-columns: 1fr; gap: 1.25rem; }
  .tier-card--featured { transform: none; }
  .tier-card--featured:hover { transform: translateY(-4px); }
}

/* ── Testimonials ────────────────────────────────────────── */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testi-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-l);
  padding: 2.25rem 1.95rem 1.95rem;
  display: flex;
  flex-direction: column;
  transition: transform var(--dur-m), box-shadow var(--dur-m);
  position: relative;
}

.testi-card::before {
  content: '\201C';
  position: absolute;
  top: .3rem;
  left: 1.3rem;
  font-family: var(--font-editorial);
  font-style: italic;
  font-size: 4rem;
  line-height: 1;
  color: var(--green-100);
  font-weight: 400;
  pointer-events: none;
}

.testi-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-m);
}

.testi-stars {
  color: #FBBC04;
  font-size: .85rem;
  letter-spacing: .1em;
  margin-bottom: 1rem;
  position: relative;
}

.testi-quote {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--text-dark);
  margin: 0 0 1.5rem;
  flex-grow: 1;
  letter-spacing: -.01em;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: .85rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}

.testi-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--green-100);
  color: var(--green-800);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: .82rem;
  letter-spacing: .02em;
  flex-shrink: 0;
}

.testi-author__name {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: .92rem;
  color: var(--text-dark);
  line-height: 1.3;
  letter-spacing: -.01em;
}

.testi-author__meta {
  font-family: var(--font-mono);
  font-size: .68rem;
  color: var(--text-muted);
  line-height: 1.4;
  margin-top: .25rem;
  letter-spacing: .02em;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .testi-grid { grid-template-columns: 1fr; }
}

/* ── Featured + grid (one big card + row of small) ──────── */
.feat-stack {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 1.5rem;
}

.feat-hero {
  position: relative;
  border-radius: var(--radius-l);
  overflow: hidden;
  min-height: 460px;
  display: flex;
  align-items: flex-end;
  background: var(--green-900);
}

.feat-hero__img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.feat-hero__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8,18,8,.1) 0%, rgba(8,18,8,.85) 100%);
}

.feat-hero__content {
  position: relative;
  padding: 2.5rem 2.25rem;
  color: var(--white);
  width: 100%;
}

.feat-hero__pill {
  display: inline-block;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.2);
  color: var(--white);
  font-family: var(--font-mono);
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: .35rem .85rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}

.feat-hero__title {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(1.85rem, 3.2vw, 2.5rem);
  line-height: 1.02;
  margin-bottom: .65rem;
  color: var(--white);
  letter-spacing: -.03em;
}

.feat-hero__title em {
  font-family: var(--font-editorial);
  font-style: italic;
  font-weight: 400;
  color: var(--white);
  font-size: 1.1em;
  line-height: .95;
}

.feat-hero__sub {
  font-size: .98rem;
  line-height: 1.65;
  color: rgba(255,255,255,.82);
  margin-bottom: 1.5rem;
  max-width: 38ch;
}

.feat-hero__cta {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: var(--white);
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: .76rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255,255,255,.4);
  padding-bottom: .4rem;
  transition: color var(--dur-s), border-color var(--dur-s);
}

.feat-hero__cta:hover {
  color: var(--green-400);
}

.feat-side {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.feat-mini {
  position: relative;
  border-radius: var(--radius-l);
  overflow: hidden;
  flex: 1;
  min-height: 215px;
  display: flex;
  align-items: flex-end;
  background: var(--green-800);
  transition: transform var(--dur-m);
}

.feat-mini:hover { transform: translateY(-3px); }

.feat-mini__img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.feat-mini__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8,18,8,.15) 0%, rgba(8,18,8,.78) 100%);
}

.feat-mini__content {
  position: relative;
  padding: 1.35rem 1.5rem;
  color: var(--white);
  width: 100%;
}

.feat-mini__title {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.22rem;
  margin-bottom: .3rem;
  color: var(--white);
  letter-spacing: -.02em;
}

.feat-mini__sub {
  font-family: var(--font-mono);
  font-size: .68rem;
  color: rgba(255,255,255,.65);
  line-height: 1.45;
  letter-spacing: .02em;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .feat-stack { grid-template-columns: 1fr; }
  .feat-side { flex-direction: row; }
  .feat-mini { min-height: 180px; flex: 1; }
}

@media (max-width: 600px) {
  .feat-side { flex-direction: column; }
}

/* ── Coverage pill row ───────────────────────────────────── */
.cov-row {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
}

.cov-pill {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .65rem 1.15rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: .8rem;
  letter-spacing: .02em;
  color: var(--text-body);
  transition: background var(--dur-s), border-color var(--dur-s), color var(--dur-s);
}

.cov-pill::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green-500);
  flex-shrink: 0;
}

.cov-pill:hover {
  background: var(--green-50);
  border-color: var(--green-200, var(--green-100));
  color: var(--green-800);
}

/* ── Mega CTA (final, conversion-tier) ──────────────────── */
.mega-cta {
  background: var(--green-900);
  color: var(--white);
  padding: clamp(4rem, 7vw, 6.5rem) 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.mega-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% -10%, rgba(90,170,94,.18), transparent 55%),
    radial-gradient(circle at 50% 110%, rgba(176,125,26,.08), transparent 45%);
}

.mega-cta__inner {
  position: relative;
  max-width: 820px;
  margin-inline: auto;
}

.mega-cta__eyebrow {
  font-family: var(--font-mono);
  font-size: .74rem;
  font-weight: 500;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  margin-bottom: 1.25rem;
}

.mega-cta__headline {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(2.4rem, 5.4vw, 3.9rem);
  line-height: 1.0;
  letter-spacing: -.035em;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.mega-cta__headline em {
  font-family: var(--font-editorial);
  font-style: italic;
  font-weight: 400;
  color: var(--white);
  font-size: 1.08em;
  line-height: .95;
}

.mega-cta__sub {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255,255,255,.7);
  max-width: 52ch;
  margin: 0 auto 2.5rem;
}

.mega-cta__phone {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(2.4rem, 6vw, 3.6rem);
  letter-spacing: -.03em;
  color: var(--white);
  line-height: 1;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255,255,255,.25);
  transition: color var(--dur-s), border-color var(--dur-s);
}

.mega-cta__phone:hover {
  color: var(--green-400);
}

.mega-cta__phone svg {
  color: var(--green-400);
  flex-shrink: 0;
  width: clamp(28px, 4vw, 40px);
  height: clamp(28px, 4vw, 40px);
}

.mega-cta__trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem 2.5rem;
  margin-top: 2.25rem;
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .02em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
}

.mega-cta__trust span {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}

.mega-cta__trust svg {
  color: var(--green-400);
}

/* ── Promise strip (inline values bar) ──────────────────── */
.promise-strip {
  background: var(--white);
  border-block: 1px solid var(--border);
  padding: 1.75rem 0;
}

.promise-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem 2rem;
  align-items: center;
}

.promise-item {
  display: flex;
  align-items: center;
  gap: .9rem;
}

.promise-item__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--green-50);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-700);
  flex-shrink: 0;
}

.promise-item__txt strong {
  display: block;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: .9rem;
  color: var(--text-dark);
  line-height: 1.25;
  letter-spacing: -.005em;
}

.promise-item__txt span {
  font-size: .76rem;
  color: var(--text-muted);
  line-height: 1.3;
}

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

@media (max-width: 500px) {
  .promise-strip__grid { grid-template-columns: 1fr; }
}

/* ── Inline page hero stats (overlapping hero) ──────────── */
.hero-stat-strip {
  background: var(--white);
  border-radius: var(--radius-l);
  box-shadow: var(--shadow-l);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: -3rem;
  position: relative;
  z-index: 5;
  border: 1px solid var(--border);
}

.hero-stat-strip .stat-cell {
  padding: 1.6rem 1.5rem;
  border-right: 1px solid var(--border);
  text-align: left;
}

.hero-stat-strip .stat-cell:last-child { border-right: none; }

.stat-cell__num {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 2rem;
  line-height: 1;
  color: var(--text-dark);
  margin-bottom: .35rem;
  letter-spacing: -.035em;
}

.stat-cell__num em {
  font-family: var(--font-editorial);
  font-style: italic;
  font-weight: 400;
  color: var(--text-dark);
  font-size: 1.1em;
  line-height: .95;
}

.stat-cell__label {
  font-family: var(--font-mono);
  font-size: .68rem;
  color: var(--text-muted);
  line-height: 1.45;
  letter-spacing: .02em;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .hero-stat-strip { grid-template-columns: repeat(2, 1fr); margin-top: -2rem; }
  .hero-stat-strip .stat-cell:nth-child(2) { border-right: none; }
  .hero-stat-strip .stat-cell:nth-child(3),
  .hero-stat-strip .stat-cell:nth-child(4) { border-top: 1px solid var(--border); }
}

@media (max-width: 500px) {
  .hero-stat-strip { grid-template-columns: 1fr; }
  .hero-stat-strip .stat-cell { border-right: none; border-top: 1px solid var(--border); }
  .hero-stat-strip .stat-cell:first-child { border-top: none; }
}

/* ── Designed process steps (light variant) ─────────────── */
.proc-light {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem 1.75rem;
}

.proc-step {
  position: relative;
  padding: 2rem 1.75rem 1.85rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-l);
  transition: transform var(--dur-m), box-shadow var(--dur-m);
}

.proc-step:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-m);
}

.proc-step__num {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: .72rem;
  line-height: 1;
  color: var(--text-muted);
  position: absolute;
  top: 1.5rem;
  right: 1.75rem;
  letter-spacing: .04em;
}

.proc-step__label {
  font-family: var(--font-mono);
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--green-700);
  margin-bottom: .85rem;
}

.proc-step__title {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--text-dark);
  margin-bottom: .6rem;
  letter-spacing: -.02em;
  line-height: 1.2;
  max-width: 90%;
}

.proc-step__body {
  font-size: .92rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0;
  max-width: 95%;
}

@media (max-width: 768px) {
  .proc-light { grid-template-columns: 1fr; }
}

/* ── Section heading center editorial ────────────────────── */
.ed-head-center {
  text-align: center;
  max-width: 680px;
  margin: 0 auto var(--space-2xl);
}

.ed-head-center .ed-tag {
  justify-content: center;
}

.ed-head-center p {
  margin-top: 1.25rem;
  margin-inline: auto;
  max-width: 56ch;
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* ── Pull quote (mid-content emphasis) ──────────────────── */
.pull-quote {
  border-left: 3px solid var(--green-500);
  padding: 1rem 0 1rem 1.75rem;
  margin: 2rem 0;
  font-family: var(--font-editorial);
  font-style: italic;
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 1.4;
  color: var(--text-dark);
  letter-spacing: -.01em;
}

/* ──────────────────────────────────────────────────────────
   Responsive overrides for inline-styled grid layouts.
   These templates use `style="display:grid;grid-template-columns:..."`
   for layout. Inline styles can't carry media queries, so we
   force responsive behavior here via attribute selectors.
   ────────────────────────────────────────────────────────── */

/* Tablet: collapse 3- and 4-column grids to 2 columns */
@media (max-width: 1024px) {
  [style*="grid-template-columns:repeat(4,1fr)"],
  [style*="grid-template-columns: repeat(4,1fr)"],
  [style*="grid-template-columns:repeat(4, 1fr)"] {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  [style*="grid-template-columns:1fr 380px"],
  [style*="grid-template-columns: 1fr 380px"] {
    grid-template-columns: 1fr !important;
  }
  [style*="grid-template-columns:1fr 1.4fr"],
  [style*="grid-template-columns: 1fr 1.4fr"] {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }
}

/* Mobile: collapse every multi-column inline grid to a single column */
@media (max-width: 768px) {
  [style*="grid-template-columns:repeat(2,1fr)"],
  [style*="grid-template-columns: repeat(2,1fr)"],
  [style*="grid-template-columns:repeat(2, 1fr)"],
  [style*="grid-template-columns:repeat(3,1fr)"],
  [style*="grid-template-columns: repeat(3,1fr)"],
  [style*="grid-template-columns:repeat(3, 1fr)"],
  [style*="grid-template-columns:repeat(4,1fr)"],
  [style*="grid-template-columns: repeat(4,1fr)"],
  [style*="grid-template-columns:repeat(4, 1fr)"],
  [style*="grid-template-columns:1fr 1fr 1fr"],
  [style*="grid-template-columns: 1fr 1fr 1fr"],
  [style*="grid-template-columns:1fr 1fr"],
  [style*="grid-template-columns: 1fr 1fr"],
  [style*="grid-template-columns:1fr 380px"],
  [style*="grid-template-columns: 1fr 380px"],
  [style*="grid-template-columns:1fr 1.4fr"],
  [style*="grid-template-columns: 1fr 1.4fr"] {
    grid-template-columns: 1fr !important;
    gap: 1.25rem !important;
  }

  /* Make sure card images don't get squished on mobile */
  .service-card__img img {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
  }

  /* Card body breathing room on mobile */
  .service-card__body {
    padding: 1.25rem 1.25rem 1.5rem !important;
  }
}

/* Extra-small phones: tighten spacing further */
@media (max-width: 420px) {
  .container {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
}

/* ──────────────────────────────────────────────────────────
   Global mobile safety — prevent horizontal overflow site-wide,
   and tighten down editorial/Blade components that don't have
   inline grids but still need mobile work.
   ────────────────────────────────────────────────────────── */
html, body { overflow-x: hidden; max-width: 100%; }

@media (max-width: 768px) {
  /* Prevent any element from causing horizontal scroll */
  body, .container { max-width: 100vw; }

  /* Featured "Sod Installation" stack on location pages — the .feat-stack
     contains a hero card + a `.feat-side` 2-col mini grid. Stack everything. */
  .feat-stack { display: flex !important; flex-direction: column; gap: 1rem !important; }
  .feat-side  { display: grid !important; grid-template-columns: 1fr !important; gap: 1rem; }
  .feat-hero, .feat-mini { min-height: 200px !important; }
  .feat-hero__title { font-size: 1.75rem !important; }
  .feat-mini__title { font-size: 1.1rem !important; }

  /* Cov-row pill list — keep pills full-width-ish, no overflow */
  .cov-row {
    display: flex !important;
    flex-wrap: wrap;
    gap: .6rem !important;
    justify-content: flex-start !important;
  }
  .cov-pill {
    flex: 0 1 auto;
    max-width: 100%;
    font-size: .9rem !important;
    padding: .55rem 1rem !important;
    word-break: break-word;
  }

  /* Editorial section headings shouldn't break per-word.
     Allow them to use available width and shrink as needed. */
  .ed-display,
  .ed-display em {
    font-size: clamp(1.6rem, 7vw, 2.4rem) !important;
    line-height: 1.15 !important;
    word-break: normal;
    overflow-wrap: break-word;
    hyphens: none;
  }

  /* Floating stat strip — hide entirely on mobile (too tall, low value) */
  .hero-stat-strip { display: none !important; }
  .hero-stat-strip + * { margin-top: 0 !important; }

  /* Testimonial grid → single column */
  .testi-grid {
    grid-template-columns: 1fr !important;
    gap: 1.25rem !important;
  }

  /* Mega-CTA trust row → wrap nicely */
  .mega-cta__trust {
    flex-wrap: wrap;
    justify-content: center;
    gap: .9rem !important;
    font-size: .82rem !important;
  }

  /* Editorial intro (lead text + body columns) → single column */
  .ed-intro {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }

  /* Tier grid (sod variety cards on /sod-types) → safety net */
  .tier-grid {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }
}

