/* ============================================================
   main.css — Baton Rouge Sod WordPress Theme
   Terrain Green-Organic Design System
   Consolidated from 54 source HTML files
   ============================================================ */

/* ============================================================
   SHARED BASE STYLES
   ============================================================ */

/* ========================================
   CSS RESET & VARIABLES
   ======================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --forest: #1c3a1c;
  --forest-mid: #2d5a2d;
  --green: #3a7a3a;
  --green-lt: #5a9e5a;
  --moss: #7ab87a;
  --cream: #f7f3ec;
  --sand: #ede8df;
  --warm: #d4c9b0;
  --earth: #8b6914;
  --gold: #c9a84c;
  --dark: #111810;
  --mid: #4a5545;
  --muted: #7a876f;
  --white: #fdfcf9;
  --card-bg: #f2ede4;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'DM Sans', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.75;
  color: var(--dark);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
svg { max-width: 100%; }
svg:not([width]):not([style*="width"]) { width: 24px; height: 24px; }
/* Prevent Thrive/plugin SVGs from rendering at massive sizes */
main svg, .entry-content svg, .page-content svg {
  max-width: 80px;
  max-height: 80px;
}
/* Our explicit icon containers get proper sizing */
.icon svg, .feature-icon svg, .step-icon svg, .chip-icon svg,
.info-icon svg, .contact-icon svg, .benefit-icon svg {
  width: 24px;
  height: 24px;
  max-width: none;
  max-height: none;
}
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

/* ========================================
   SKIP TO CONTENT (Accessibility)
   ======================================== */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 10000;
  background: var(--forest);
  color: #fff;
  padding: 12px 24px;
  border-radius: 0 0 8px 8px;
  font-weight: 500;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 0;
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}

/* ========================================
   FOCUS STATES
   ======================================== */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}

/* ========================================
   UTILITY
   ======================================== */
.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 48px;
}

.section-label {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--moss);
  margin-bottom: 20px;
}
.section-label::before,
.section-label::after {
  content: '';
  height: 1px;
  width: 40px;
  background: var(--moss);
}

.section-label--light { color: var(--moss); }
.section-label--light::before,
.section-label--light::after { background: var(--moss); }

h1, h2, h3, h4 { font-family: var(--font-serif); font-weight: 900; line-height: 1.1; }

h1 { font-size: clamp(36px, 6vw, 64px); }
h2.section-title { font-size: clamp(32px, 5vw, 52px); margin-bottom: 32px; }
h2.section-title em,
h1 em {
  font-style: italic;
  color: var(--green-lt);
}

.dark-section h2.section-title em,
.dark-section h1 em {
  color: var(--moss);
}

/* ========================================
   GRID LAYOUTS
   ======================================== */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 900px) { .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .grid-3 { grid-template-columns: 1fr; } }

/* Standalone card links (used in types-of-grass, service-areas) */
a.card-link,
.grid-3 .card-link {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 20px 24px;
  background: var(--white);
  border: 1px solid var(--sand);
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  color: var(--forest);
  transition: all 0.25s ease;
}
a.card-link:hover,
.grid-3 .card-link:hover {
  border-color: var(--green);
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}
a.card-link span,
.grid-3 .card-link span {
  font-size: 13px;
  font-weight: 400;
  color: var(--muted);
}

/* Area chips (service-areas additional cities) */
.area-chip {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  background: var(--white);
  border: 1px solid var(--sand);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  color: var(--mid);
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 36px;
  border-radius: 100px;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green);
  color: white;
  padding: 16px 32px;
  border-radius: 100px;
  font-size: 16px;
  font-weight: 600;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
  border: none;
  text-decoration: none;
}
.btn-primary:hover { background: var(--green-lt); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(58,122,58,0.35); }

/* White variant for dark CTA sections (used as .btn.btn-primary) */
.btn.btn-primary {
  background: var(--white);
  color: var(--forest);
  border-color: var(--white);
}
.btn.btn-primary:hover { background: var(--cream); border-color: var(--cream); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.08); transform: translateY(-2px); }

.btn-green {
  background: var(--forest);
  color: var(--white);
  border-color: var(--forest);
}
.btn-green:hover { background: var(--forest-mid); transform: translateY(-2px); }

.btn-green-outline {
  background: transparent;
  color: var(--forest);
  border-color: var(--forest);
}
.btn-green-outline:hover { background: var(--forest); color: var(--white); transform: translateY(-2px); }

/* ========================================
   NAVIGATION
   ======================================== */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 10000;
  padding: 16px 0;
  background: rgba(28, 58, 28, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: background 0.35s ease, padding 0.35s ease, box-shadow 0.35s ease;
}

/* Pages with hero sections: nav starts transparent over the hero image */
.has-hero .site-nav {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.site-nav.scrolled,
.has-hero .site-nav.scrolled {
  background: rgba(28, 58, 28, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 10px 0;
  box-shadow: 0 2px 24px rgba(0,0,0,0.15);
}

.site-nav .nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 48px;
  height: auto;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif);
  font-weight: 900;
  font-size: 22px;
  color: var(--white);
}
.nav-logo .accent { color: var(--moss); }
.nav-logo svg { width: 28px; height: 28px; flex-shrink: 0; }

.site-nav .nav-links {
  display: flex !important;
  align-items: center;
  gap: 28px;
}
.site-nav .nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 15px;
  font-weight: 400;
  transition: color 0.2s;
}
.site-nav .nav-links a:hover { color: var(--white); }

.nav-cart {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.85) !important;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s, transform 0.2s;
}
.nav-cart:hover { color: var(--white) !important; }
.nav-cart svg { transition: transform 0.3s ease; }
.nav-cart:hover svg { transform: scale(1.2); }
.nav-cart-label { display: none; }

.nav-cta {
  padding: 10px 24px;
  border-radius: 100px;
  background: var(--green);
  color: var(--white) !important;
  font-weight: 600 !important;
  font-size: 14px !important;
  transition: all 0.3s;
}
.nav-cta:hover { background: var(--green-lt); transform: translateY(-1px); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(17, 24, 16, 0.97);
  backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.mobile-menu.open { display: flex; opacity: 1; }
.mobile-menu a {
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 700;
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--moss); }
.mobile-menu .btn { margin-top: 16px; font-family: var(--font-sans); font-size: 16px; }

/* ---- Desktop Dropdown Sub-Menus ---- */
.nav-dropdown {
  position: relative;
}
.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: rgba(255,255,255,0.85);
  font-size: 15px;
  font-weight: 400;
  transition: color 0.2s;
  cursor: pointer;
}
.nav-dropdown-trigger:hover { color: var(--white); }
.nav-dropdown-trigger svg { transition: transform 0.25s ease; }
.nav-dropdown:hover .nav-dropdown-trigger svg { transform: rotate(180deg); }

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 200px;
  background: var(--forest);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  z-index: 100;
}
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu a {
  display: block;
  padding: 10px 20px;
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  font-weight: 400;
  transition: all 0.2s;
  white-space: nowrap;
}
.nav-dropdown-menu a:hover {
  background: rgba(255,255,255,0.08);
  color: var(--white);
  padding-left: 24px;
}

/* ---- Mobile Sub-Menu Links ---- */
.mobile-menu .mob-sub {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-left: 24px;
}
.mobile-menu .mob-sub a {
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 400;
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
}
.mobile-menu .mob-sub a:hover { color: var(--moss); }

@media (max-width: 900px) {
  .site-nav .nav-links { display: none !important; }
  .site-nav .hamburger { display: flex; }
}

/* ========================================
   INTERIOR HERO
   ======================================== */
.interior-hero {
  position: relative;
  min-height: 40vh;
  display: flex;
  align-items: flex-end;
  background: linear-gradient(165deg, var(--dark) 0%, var(--forest) 40%, #142e14 70%, var(--dark) 100%);
  overflow: hidden;
  padding-top: 80px;
}
.interior-hero[style*="background-image"] {
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
@media (max-width: 768px) {
  /* Fixed attachment causes issues on mobile, fall back to scroll */
  .interior-hero[style*="background-image"] {
    background-attachment: scroll;
  }
}
.interior-hero .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(165deg, rgba(14,31,14,0.88) 0%, rgba(28,58,28,0.72) 60%, rgba(14,31,14,0.60) 100%);
  z-index: 1;
}
.interior-hero .interior-hero-content { z-index: 2; }

.interior-hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: 60px 0 80px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 400;
  color: rgba(255,255,255,0.5);
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.breadcrumb a {
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.breadcrumb a:hover { color: var(--moss); }
.breadcrumb .separator { color: rgba(255,255,255,0.3); }
.breadcrumb .current { color: var(--moss); font-weight: 500; }

.interior-hero h1 { color: var(--white); margin-bottom: 16px; }
.interior-hero h1 em { color: var(--moss); }

.interior-hero-desc {
  font-size: 18px;
  font-weight: 300;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  max-width: 600px;
}

/* ========================================
   SECTIONS
   ======================================== */
.section-cream { background: var(--cream); }
.section-sand { background: var(--sand); }
.section-dark {
  background: linear-gradient(170deg, var(--forest) 0%, var(--dark) 100%);
  color: var(--white);
}

section {
  padding: 100px 0;
}

@media (max-width: 900px) {
  section { padding: 64px 0; }
}
@media (max-width: 600px) {
  section { padding: 48px 0; }
}

/* ========================================
   INTRO / BODY CONTENT
   ======================================== */
.intro-content {
  max-width: 720px;
}
.intro-content p,
.body-content p {
  color: var(--mid);
  margin-bottom: 20px;
}
.intro-content p:last-child,
.body-content p:last-child { margin-bottom: 0; }

.body-content {
  max-width: 720px;
}

/* Image layouts */
.content-with-image {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.content-image {
  border-radius: 20px;
  overflow: hidden;
}
.content-image img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 20px;
}
.image-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.image-gallery img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 16px;
}
@media (max-width: 900px) {
  .content-with-image { grid-template-columns: 1fr; }
  .content-image img { height: 280px; }
  .image-gallery { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 500px) {
  .image-gallery { grid-template-columns: 1fr; }
}

/* ========================================
   VALUE CARDS (About page differentiators)
   ======================================== */
.value-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.value-card {
  background: var(--white);
  border-radius: 20px;
  padding: 36px 28px;
  border: 1px solid rgba(0,0,0,0.04);
  transition: all 0.4s ease;
}
.value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(28,58,28,0.1);
}

.value-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.value-card-icon svg {
  width: 26px;
  height: 26px;
  color: var(--green);
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
}
.value-card:hover .value-card-icon svg { transform: scale(1.25); }

.value-card h3 {
  font-size: 24px;
  font-weight: 900;
  color: var(--forest);
  margin-bottom: 12px;
}
.value-card p {
  color: var(--mid);
  font-size: 16px;
  line-height: 1.75;
}

@media (max-width: 700px) {
  .value-grid { grid-template-columns: 1fr; }
}

/* ========================================
   SERVICE AREA LIST
   ======================================== */
.area-list {
  max-width: 720px;
  margin-top: 32px;
}
.area-item {
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  display: flex;
  gap: 12px;
  align-items: baseline;
  font-size: 17px;
  transition: transform 0.2s ease;
  cursor: default;
}
.area-item:hover { transform: translateX(6px); }
.area-item:hover strong { color: var(--gold); }
.area-item:last-child { border-bottom: none; }
.area-item strong {
  color: var(--moss);
  font-weight: 600;
  min-width: 220px;
  flex-shrink: 0;
}
.area-item span {
  color: rgba(255,255,255,0.65);
}

@media (max-width: 600px) {
  .area-item {
    flex-direction: column;
    gap: 4px;
  }
  .area-item strong { min-width: unset; }
}

/* ========================================
   FINAL CTA
   ======================================== */
.final-cta {
  text-align: center;
}
.final-cta h2.section-title { color: var(--white); }
.final-cta p {
  color: rgba(255,255,255,0.7);
  font-size: 18px;
  max-width: 620px;
  margin: 0 auto 36px;
  line-height: 1.75;
}
.final-cta .hero-buttons {
  justify-content: center;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

/* ========================================
   FOOTER
   ======================================== */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer-logo {
  font-family: var(--font-serif);
  font-weight: 900;
  font-size: 22px;
  color: var(--white);
}
.footer-logo .accent { color: var(--moss); }
.footer-brand p { font-size: 15px; line-height: 1.7; }

.footer-col h4 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-col a {
  display: block;
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  padding: 5px 0;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--moss); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 15px;
}
.footer-contact-item svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 3px;
  color: var(--moss);
}
.footer-contact-item svg { transition: transform 0.3s ease; }
.footer-contact-item:hover svg { transform: scale(1.2); color: var(--moss); }


.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}
.footer-social a:hover { color: var(--moss); }
.footer-social svg { width: 18px; height: 18px; }

@media (max-width: 800px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 500px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}

/* ========================================
   SCROLL REVEAL
   ======================================== */
.reveal, .card-reveal {
  opacity: 1;
  transform: none;
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.js-ready .reveal, .js-ready .card-reveal {
  opacity: 0;
  transform: translateY(20px);
}
.js-ready .reveal.visible, .js-ready .card-reveal.visible,
.reveal.visible, .card-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
/* Failsafe: never hide content for more than 1.5s */
.js-ready .reveal, .js-ready .card-reveal {
  animation: reveal-failsafe 0s 1.5s forwards;
}
.js-ready .reveal.visible, .js-ready .card-reveal.visible {
  animation: none;
}
@keyframes reveal-failsafe {
  to { opacity: 1; transform: translateY(0); }
}

.reveal-stagger > * {
  opacity: 1;
  transform: none;
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.js-ready .reveal-stagger > * {
  opacity: 0;
  transform: translateY(24px);
  animation: reveal-failsafe 0s 1.5s forwards;
}
.reveal-stagger.visible > * {
  animation: none;
}
.reveal-stagger.visible > *:nth-child(1) { transition-delay: 0.05s; opacity: 1; transform: translateY(0); }
.reveal-stagger.visible > *:nth-child(2) { transition-delay: 0.12s; opacity: 1; transform: translateY(0); }
.reveal-stagger.visible > *:nth-child(3) { transition-delay: 0.19s; opacity: 1; transform: translateY(0); }
.reveal-stagger.visible > *:nth-child(4) { transition-delay: 0.26s; opacity: 1; transform: translateY(0); }
.reveal-stagger.visible > *:nth-child(5) { transition-delay: 0.33s; opacity: 1; transform: translateY(0); }
.reveal-stagger.visible > *:nth-child(6) { transition-delay: 0.40s; opacity: 1; transform: translateY(0); }

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 600px) {
  .interior-hero-content { padding: 40px 0 60px; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; text-align: center; }
  h1 { font-size: clamp(32px, 8vw, 42px); }
}


/* ============================================================
   HOMEPAGE
   ============================================================ */

.container-wide {
      max-width: 1320px;
    }

.section { padding: 100px 0; }

.section.alt { background: var(--sand); }

.section-label::before, .section-label::after { content: ''; width: 28px; height: 1px; background: currentColor; opacity: 0.5; }

.section-title {
      font-family: var(--font-serif);
      font-size: clamp(32px, 4.5vw, 52px);
      font-weight: 900;
      line-height: 1.1;
      color: var(--dark);
      margin-bottom: 20px;
    }

.section-title em { font-style: italic; color: var(--green); font-weight: 900; }

.section-body {
      font-size: 19px;
      color: var(--mid);
      line-height: 1.6;
      font-weight: 300;
    }

.btn-secondary {
      display: inline-flex; align-items: center; gap: 8px;
      background: transparent; color: white;
      padding: 16px 32px; border-radius: 100px;
      font-size: 16px; font-weight: 600;
      border: 2px solid rgba(255,255,255,0.5);
      transition: border-color 0.2s, background 0.2s, transform 0.2s;
      cursor: pointer;
    }

.btn-secondary:hover { border-color: white; background: rgba(255,255,255,0.1); transform: translateY(-2px); }

.btn-white {
      display: inline-flex; align-items: center; gap: 8px;
      background: white; color: var(--forest);
      padding: 16px 32px; border-radius: 100px;
      font-size: 16px; font-weight: 600;
      transition: background 0.2s, transform 0.2s;
      cursor: pointer; border: none;
    }

.btn-white:hover { background: var(--cream); transform: translateY(-2px); }

/* ===================== LANDING-PAGE NAV (scoped — does NOT affect .site-nav) ===================== */
.landing-nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      background: rgba(28,58,28,0.25);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      transition: background 0.3s;
    }

.landing-nav.scrolled { background: rgba(14,31,14,0.95); }

.landing-nav .nav-logo span { color: var(--moss); font-style: italic; }

.landing-nav .nav-mobile-cta {
      display: none; align-items: center; gap: 8px;
      background: var(--green); color: white;
      padding: 10px 20px; border-radius: 100px; font-size: 16px; font-weight: 600;
    }

.landing-nav .nav-hamburger {
      display: none; flex-direction: column; gap: 5px;
      cursor: pointer; padding: 4px; background: none; border: none;
    }

.landing-nav .nav-hamburger span { display: block; width: 24px; height: 2px; background: white; border-radius: 2px; transition: all 0.3s; }

.landing-nav .nav-mobile-menu {
      display: none; flex-direction: column;
      background: var(--forest); padding: 16px 24px 24px; gap: 4px;
    }

.landing-nav .nav-mobile-menu.open { display: flex; }

.landing-nav .nav-mobile-menu a {
      color: rgba(255,255,255,0.85); font-size: 16px; font-weight: 500;
      padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.07);
    }

.landing-nav .nav-mobile-menu a:last-child { border-bottom: none; }

/* ===================== HERO ===================== */
.hero {
      min-height: 100vh;
      position: relative;
      display: flex;
      align-items: center;
      overflow: hidden;
    }

/* Sticky/parallax bg via background-attachment:fixed */
.hero-bg {
      position: absolute; inset: 0;
      background: url('https://batonrougesod.com/wp-content/uploads/2020/12/Sod-Delivery-service-2.jpg') center/cover no-repeat fixed;
      z-index: 0;
    }

.hero-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(135deg, rgba(14,31,14,0.88) 0%, rgba(28,58,28,0.72) 60%, rgba(14,31,14,0.60) 100%);
      z-index: 1;
    }

/* Hero wrapper: full width, content left + bottom-right panel */
.hero-content {
      position: relative; z-index: 2;
      width: 100%;
      padding: 100px 0 80px;
      display: grid;
      grid-template-columns: 5fr 3fr;
      grid-template-rows: auto auto;
      column-gap: 48px;
      align-items: end;
    }

/* Badge, h1, sub, desc, buttons all in left column spanning both rows */
.hero-main {
      grid-column: 1;
      grid-row: 1 / 3;
    }

.hero-bottom-right {
      grid-column: 2;
      grid-row: 2;
      display: flex;
      align-items: flex-end;
      justify-content: flex-end;
      padding-bottom: 40px;
      padding-left: 40px;
    }

.hero-badge {
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.18);
      border-radius: 100px;
      padding: 8px 20px;
      font-size: 15px; font-weight: 600; color: var(--moss);
      letter-spacing: 0.5px; margin-bottom: 28px;
    }

.hero h1 {
      font-family: var(--font-serif);
      font-size: clamp(48px, 7vw, 86px);
      font-weight: 900; line-height: 1.0; color: white; margin-bottom: 18px;
    }

.hero h1 em { font-style: italic; color: var(--moss); }

.hero-h1-sub { font-size: 0.55em; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.7); display: block; margin-top: 8px; }

.hero-sub {
      font-size: 24px; font-weight: 300;
      color: rgba(255,255,255,0.75);
      line-height: 1.5; margin-bottom: 16px;
      font-family: var(--font-sans);
    }

.hero-desc {
      font-size: 19px; color: rgba(255,255,255,0.60);
      line-height: 1.55; font-weight: 300; max-width: 580px; margin-bottom: 36px;
    }

/* Benefits card - right side of hero bottom */
.hero-benefits {
      display: flex; flex-direction: column; gap: 14px;
      padding: 22px 26px;
      background: rgba(255,255,255,0.07);
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 18px;
      backdrop-filter: blur(10px);
    }

.hero-benefit {
      display: flex; align-items: center; gap: 10px;
      font-size: 16px; font-weight: 600; color: rgba(255,255,255,0.85);
      transition: transform 0.2s ease, color 0.2s ease;
      cursor: default; border-radius: 10px; padding: 6px 10px;
    }

.hero-benefit svg { width: 18px; height: 18px; fill: var(--moss); flex-shrink: 0; }

.hero-reviews {
      display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
    }

.hero-review-avatars { display: flex; }

.hero-review-avatars span {
      width: 36px; height: 36px; border-radius: 50%;
      border: 2px solid rgba(255,255,255,0.3);
      background: var(--forest-mid);
      display: flex; align-items: center; justify-content: center;
      font-size: 14px; font-weight: 700; color: white;
      margin-left: -8px;
      transition: transform 0.2s ease, border-color 0.2s ease;
      cursor: pointer;
    }

.hero-review-avatars span:first-child { margin-left: 0; }

.hero-review-stars { display: flex; gap: 3px; }

.hero-review-stars svg { width: 16px; height: 16px; fill: var(--gold); }

.hero-review-text { font-size: 16px; color: rgba(255,255,255,0.65); font-weight: 400; }

.hero-review-text strong { color: white; font-weight: 600; }

.hero-stats {
      display: flex; gap: 24px; flex-wrap: nowrap;
      padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.12);
    }

.hero-stat {
      padding: 12px 16px; border-radius: 12px;
      transition: background 0.3s, transform 0.3s var(--ease-out);
      cursor: default;
    }

.hero-stat:hover { background: rgba(255,255,255,0.08); transform: translateY(-4px); }

.hero-stat-num {
      font-family: var(--font-serif); font-size: 32px; font-weight: 900; color: white;
      transition: transform 0.3s var(--ease-out);
    }

.hero-stat:hover .hero-stat-num { transform: scale(1.1); color: var(--gold); }

.hero-stat-label { font-size: 14px; color: rgba(255,255,255,0.5); font-weight: 400; margin-top: 2px; transition: color 0.3s; }

.hero-stat:hover .hero-stat-label { color: var(--gold); }

/* ===================== WHY US / PAIN POINTS ===================== */
.why-header {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 40px; align-items: stretch;
    }

.why-header-right {
      border-radius: 20px; overflow: hidden; min-height: 500px;
    }

.why-header-right img {
      width: 100%; height: 100%; object-fit: cover; display: block;
    }

.why-header-body {
      font-size: 19px; color: var(--mid); font-weight: 300; line-height: 1.6; margin-top: 16px; margin-bottom: 24px;
    }

.pain-grid { display: flex; flex-direction: column; gap: 12px; }

.pain-card {
      background: rgba(58,122,58,0.06); border-radius: 16px; padding: 18px;
      border: 1px solid rgba(58,122,58,0.1);
      box-shadow: none;
      transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
    }

.pain-card-top {
      display: flex; align-items: center; gap: 14px; margin-bottom: 14px;
    }

.pain-icon {
      width: 44px; height: 44px; flex-shrink: 0;
      background: rgba(58,122,58,0.08);
      border-radius: 12px;
      display: flex; align-items: center; justify-content: center;
      transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
    }

.pain-icon svg { width: 24px; height: 24px; fill: var(--green); }

.pain-card h3 {
      font-family: var(--font-serif); font-size: 20px; font-weight: 900;
      color: var(--forest); line-height: 1.25; margin: 0;
    }

.pain-card p { font-size: 16px; color: var(--mid); line-height: 1.6; font-weight: 300; }

/* Full-width container override for this section */
.grass-section { background: var(--cream); padding: 100px 0; }

.grass-container { max-width: 1400px; margin: 0 auto; padding: 0 24px; }

.grass-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

.grass-card {
      background: var(--white); border-radius: 20px; overflow: hidden;
      box-shadow: 0 4px 20px rgba(0,0,0,0.06);
      transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
    }

.grass-card:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(58,122,58,0.15); }

.grass-card img { transition: transform 0.5s ease; }

.grass-card:hover img { transform: scale(1.07); }

.grass-card-img {
      height: 260px; position: relative; overflow: hidden;
    }

.grass-card-img img {
      height: 100%; width: 100%; object-fit: cover;
      transition: transform 0.5s var(--ease-out);
    }

.grass-card:hover .grass-card-img img { transform: scale(1.06); }

.grass-tag {
      position: absolute; top: 14px; left: 14px;
      background: var(--green); color: white;
      font-size: 14px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
      padding: 5px 12px; border-radius: 100px;
    }

.grass-card-body { padding: 28px; }

.grass-card-body h3 {
      font-family: var(--font-serif); font-size: 24px; font-weight: 900; color: var(--forest); margin-bottom: 10px;
    }

.grass-card-body p { font-size: 17px; color: var(--mid); font-weight: 300; line-height: 1.6; margin-bottom: 16px; }

.grass-traits { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 20px; max-height: 76px; overflow: hidden; }

.grass-trait {
      font-size: 12px; font-weight: 700; color: var(--green);
      background: rgba(58,122,58,0.08);
      border: 1.5px solid rgba(58,122,58,0.18);
      padding: 5px 11px; border-radius: 100px;
      cursor: default; white-space: nowrap;
      transition: background 0.22s ease, color 0.22s ease, border-color 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
    }

.grass-trait:hover {
      background: var(--green);
      color: white;
      border-color: var(--green);
      transform: translateY(-2px);
      box-shadow: 0 6px 18px rgba(58,122,58,0.28);
    }

.grass-link {
      font-size: 16px; font-weight: 600; color: var(--green);
      display: flex; align-items: center; gap: 6px; transition: gap 0.2s;
    }

.grass-link:hover { gap: 10px; }

/* ===================== GRASS FINDER ===================== */
.finder-section {
      background: linear-gradient(160deg, #152b15 0%, var(--forest) 50%, #0e1f0e 100%);
      padding: 100px 0; overflow: hidden; position: relative;
    }

.finder-section::before {
      content: ''; position: absolute; top: -150px; left: -100px;
      width: 550px; height: 550px;
      background: radial-gradient(circle, rgba(58,122,58,0.28) 0%, transparent 70%);
      pointer-events: none;
    }

.finder-section::after {
      content: ''; position: absolute; bottom: -100px; right: -100px;
      width: 450px; height: 450px;
      background: radial-gradient(circle, rgba(122,184,122,0.14) 0%, transparent 70%);
      pointer-events: none;
    }

.finder-inner { max-width: 1000px; margin: 0 auto; text-align: center; position: relative; z-index: 1; }

.finder-inner .section-label { justify-content: center; color: var(--moss); }

.finder-inner .section-label::before, .finder-inner .section-label::after { color: var(--moss); }

.finder-inner .section-title { color: white; margin-bottom: 10px; }

.finder-intro { font-size: 19px; color: rgba(255,255,255,0.5); max-width: 680px; margin: 0 auto 52px; font-weight: 300; line-height: 1.7; }

/* Question group label */
.finder-q-label {
      font-size: 14px; text-transform: uppercase; letter-spacing: 2.5px; font-weight: 700;
      color: rgba(255,255,255,0.38); font-weight: 600; margin-bottom: 16px;
      display: flex; align-items: center; justify-content: center; gap: 14px;
    }

.finder-q-label::before, .finder-q-label::after {
      content: ''; flex: 1; max-width: 100px; height: 1px; background: rgba(255,255,255,0.1);
    }

/* 3 cards side-by-side */
.finder-cards {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
      margin-bottom: 12px;
    }

.finder-card {
      position: relative; overflow: hidden;
      padding: 30px 16px 26px;
      border-radius: 16px;
      border: 2px solid rgba(255,255,255,0.07);
      background: rgba(255,255,255,0.03);
      cursor: pointer; font-family: var(--font-sans);
      display: flex; flex-direction: column; align-items: center; gap: 14px;
      text-align: center;
      transition: border-color 0.3s, background 0.3s, transform 0.3s var(--ease-out), box-shadow 0.3s;
    }

/* Inner glow overlay */
.finder-card::before {
      content: ''; position: absolute; inset: 0;
      background: linear-gradient(160deg, rgba(122,184,122,0.14) 0%, transparent 65%);
      opacity: 0; transition: opacity 0.35s;
    }

.finder-card:hover::before, .finder-card.active::before { opacity: 1; }

.finder-card:hover {
      border-color: rgba(122,184,122,0.35);
      background: rgba(255,255,255,0.05);
      transform: translateY(-5px);
      box-shadow: 0 14px 40px rgba(0,0,0,0.3);
    }

.finder-card.active {
      border-color: var(--moss);
      background: rgba(122,184,122,0.08);
      transform: translateY(-7px);
      box-shadow: 0 0 0 1px rgba(122,184,122,0.3), 0 20px 50px rgba(0,0,0,0.35);
    }

/* Big icon circle */
.finder-card-icon {
      position: relative; z-index: 1;
      width: 88px; height: 88px; border-radius: 50%;
      background: rgba(255,255,255,0.05);
      border: 2px solid rgba(255,255,255,0.09);
      display: flex; align-items: center; justify-content: center;
      transition: all 0.35s var(--ease-out);
    }

.finder-card-icon svg {
      width: 40px; height: 40px; fill: rgba(255,255,255,0.35);
      transition: fill 0.3s, transform 0.35s var(--ease-out);
    }

.finder-card:hover .finder-card-icon {
      border-color: rgba(122,184,122,0.4);
      background: rgba(122,184,122,0.12);
      box-shadow: 0 0 20px rgba(122,184,122,0.2);
    }

.finder-card:hover .finder-card-icon svg { fill: var(--moss); transform: scale(1.12); }

.finder-card.active .finder-card-icon {
      border-color: var(--moss);
      background: rgba(122,184,122,0.22);
      box-shadow: 0 0 32px rgba(122,184,122,0.35);
    }

.finder-card.active .finder-card-icon svg { fill: white; transform: scale(1.12); }

/* Selected badge */
.finder-card-check {
      position: absolute; top: 11px; right: 11px; z-index: 2;
      width: 26px; height: 26px; border-radius: 50%;
      background: var(--moss); display: flex; align-items: center; justify-content: center;
      opacity: 0; transform: scale(0.4) rotate(-90deg);
      transition: all 0.3s var(--ease-out);
    }

.finder-card-check svg { width: 14px; height: 14px; fill: white; }

.finder-card.active .finder-card-check { opacity: 1; transform: scale(1) rotate(0deg); }

.finder-card-name {
      position: relative; z-index: 1;
      font-size: 18px; font-weight: 700; color: rgba(255,255,255,0.7); line-height: 1.2;
      transition: color 0.25s;
    }

.finder-card:hover .finder-card-name, .finder-card.active .finder-card-name { color: white; }

.finder-card-sub {
      position: relative; z-index: 1;
      font-size: 14px; color: rgba(255,255,255,0.28); font-weight: 300; line-height: 1.5;
    }

/* Sun row: gold glow on active */
.finder-cards.sun-row .finder-card.active {
      border-color: var(--gold);
      background: rgba(201,168,76,0.1);
      box-shadow: 0 0 0 1px rgba(201,168,76,0.3), 0 20px 50px rgba(0,0,0,0.35);
    }

.finder-cards.sun-row .finder-card.active .finder-card-icon {
      border-color: var(--gold);
      background: rgba(201,168,76,0.2);
      box-shadow: 0 0 32px rgba(201,168,76,0.45);
    }

.finder-cards.sun-row .finder-card.active .finder-card-icon svg { fill: var(--gold); }

.finder-cards.sun-row .finder-card.active .finder-card-check { background: var(--gold); }

.finder-cards.sun-row .finder-card:hover .finder-card-icon svg { fill: var(--gold); }

.finder-cards.sun-row .finder-card:hover .finder-card-icon {
      border-color: rgba(201,168,76,0.4);
      background: rgba(201,168,76,0.1);
      box-shadow: 0 0 18px rgba(201,168,76,0.25);
    }

.finder-cards.sun-row .finder-card:hover { border-color: rgba(201,168,76,0.35); }

.finder-cards.traffic .finder-card {
      background: rgba(0,0,0,0.12);
      border-color: rgba(255,255,255,0.05);
    }

.finder-cards.traffic .finder-card:hover { background: rgba(122,184,122,0.06); }

.finder-cards.traffic .finder-card.active { background: rgba(122,184,122,0.1); }

/* Separator between the two rows */
.finder-sep {
      display: flex; align-items: center; gap: 16px; margin: 28px 0 24px;
    }

.finder-sep::before, .finder-sep::after {
      content: ''; flex: 1; height: 1px; background: rgba(255,255,255,0.07);
    }

.finder-sep span {
      font-size: 14px; color: rgba(255,255,255,0.2); text-transform: uppercase; font-weight: 700;
      letter-spacing: 2px; font-weight: 600;
    }

/* Result */
.finder-result {
      display: none; margin-top: 36px;
      border-radius: 20px; overflow: hidden;
      position: relative; z-index: 1;
    }

@keyframes finderIn {
      from { opacity: 0; transform: translateY(22px) scale(0.97); }
      to   { opacity: 1; transform: translateY(0) scale(1); }
    }

.finder-result.show {
      display: grid; grid-template-columns: 1fr auto;
      animation: finderIn 0.45s var(--ease-out);
    }

.finder-result-body {
      background: rgba(255,255,255,0.07);
      border: 1px solid rgba(122,184,122,0.25);
      border-right: none; border-radius: 20px 0 0 20px;
      padding: 36px 40px; text-align: left;
    }

.finder-result-eyebrow {
      font-size: 11px; text-transform: uppercase; letter-spacing: 2.5px;
      color: var(--moss); font-weight: 600; margin-bottom: 10px;
    }

.finder-result h3 {
      font-family: var(--font-serif); font-size: 32px; font-weight: 900;
      color: white; margin-bottom: 14px; line-height: 1.15;
    }

.finder-result p { font-size: 18px; color: rgba(255,255,255,0.6); font-weight: 300; line-height: 1.6; }

.finder-result-cta {
      background: var(--moss);
      border: 1px solid var(--moss); border-left: none;
      border-radius: 0 20px 20px 0;
      padding: 40px 32px;
      display: flex; flex-direction: column; align-items: center; justify-content: center;
      gap: 20px; flex-shrink: 0; min-width: 140px;
    }

.finder-result-cta-label {
      font-size: 14px; text-transform: uppercase; letter-spacing: 2px; font-weight: 700;
      color: rgba(255,255,255,0.7); font-weight: 600;
      writing-mode: vertical-rl; text-orientation: mixed;
    }

@media (max-width: 860px) {
      .finder-cards { gap: 8px; }
      .finder-card { padding: 24px 12px 20px; }
      .finder-card-icon { width: 70px; height: 70px; }
      .finder-card-icon svg { width: 32px; height: 32px; }
      .finder-card-name { font-size: 16px; }
    }

@media (max-width: 640px) {
      .finder-result.show { grid-template-columns: 1fr; }
      .finder-result-body { border-right: 1px solid rgba(122,184,122,0.25); border-bottom: none; border-radius: 20px 20px 0 0; }
      .finder-result-cta { border-left: 1px solid var(--moss); border-radius: 0 0 20px 20px; flex-direction: row; padding: 24px 28px; min-width: unset; }
      .finder-result-cta-label { writing-mode: horizontal-tb; }
    }

@media (max-width: 480px) {
      .finder-cards { grid-template-columns: 1fr; gap: 8px; }
      .finder-card { flex-direction: row; text-align: left; padding: 18px 20px; gap: 16px; }
      .finder-card-icon { width: 54px; height: 54px; flex-shrink: 0; border-radius: 50%; }
      .finder-card-icon svg { width: 26px; height: 26px; }
    }

/* ===================== SERVICES TABS ===================== */
.services-tabs { display: flex; gap: 12px; margin-bottom: 40px; }

.svc-tab {
      display: flex; align-items: center; gap: 10px;
      padding: 14px 28px; border-radius: 100px;
      font-size: 16px; font-weight: 600; cursor: pointer;
      border: 2px solid transparent;
      transition: all 0.25s; font-family: var(--font-sans);
      background: rgba(58,122,58,0.06); color: var(--mid); border-color: transparent;
    }

.svc-tab svg { width: 20px; height: 20px; fill: var(--muted); transition: fill 0.2s; }

.svc-tab:hover { border-color: var(--green); color: var(--green); }

.svc-tab:hover svg { fill: var(--green); }

.svc-tab.active { background: var(--green); color: white; border-color: var(--green); }

.svc-tab.active svg { fill: white; }

.svc-panel { display: none; }

.svc-panel.active { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }

.svc-image {
      height: 460px; position: sticky; top: 120px; align-self: start;
      box-shadow: 0 20px 60px rgba(0,0,0,0.12); border-radius: 24px;
    }

.svc-image-inner { overflow: hidden; border-radius: 24px; height: 100%; position: relative; }

.svc-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease-out); display: block; }

.svc-image:hover img { transform: scale(1.03); }

.svc-badge {
      position: absolute; bottom: 20px; left: 20px;
      background: white; border-radius: 14px; padding: 14px 18px;
      display: flex; align-items: center; gap: 12px;
      box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    }

.svc-badge-icon { width: 40px; height: 40px; background: var(--green); border-radius: 10px; display: flex; align-items: center; justify-content: center; }

.svc-badge-icon svg { width: 20px; height: 20px; fill: white; }

.svc-badge strong { font-size: 19px; font-weight: 700; display: block; line-height: 1.2; }

.svc-badge span { font-size: 14px; color: var(--muted); }

.svc-content h3 {
      font-family: var(--font-serif); font-size: clamp(30px, 4vw, 44px);
      font-weight: 900; margin-bottom: 16px; line-height: 1.15;
    }

.svc-content h3 em { font-style: italic; color: var(--green); }

.svc-content p { font-size: 19px; color: var(--mid); font-weight: 300; line-height: 1.75; margin-bottom: 28px; }

.svc-list { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }

.svc-list li {
      display: flex; align-items: flex-start; gap: 12px;
      font-size: 18px; color: var(--dark); font-weight: 400; line-height: 1.5;
      transition: transform 0.2s ease, color 0.2s ease;
      padding: 6px 8px; border-radius: 8px; cursor: default;
    }

.svc-list li:hover { transform: translateX(6px); color: var(--green); }

.svc-list li svg { width: 20px; height: 20px; fill: var(--green); flex-shrink: 0; margin-top: 2px; transition: transform 0.25s ease; }

.svc-list li:hover svg { transform: scale(1.3); }

/* ===================== HOW IT WORKS ===================== */
.steps-grid {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
      align-items: start; justify-content: center;
      position: relative; margin-bottom: 48px;
    }

.step-item {
      text-align: center; position: relative; padding: 24px 16px;
      border-radius: 20px;
      transition: background 0.3s;
    }

.step-item:hover { background: rgba(58,122,58,0.04); }

.step-num {
      font-family: var(--font-serif);
      font-size: 20px; font-weight: 900;
      color: var(--green); letter-spacing: 2px;
      margin-bottom: 16px; display: block; user-select: none;
      transition: color 0.3s;
    }

.step-item:hover .step-num { color: var(--gold); }

.step-icon-wrap {
      width: 110px; height: 110px;
      background: rgba(58,122,58,0.10);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 20px;
      position: relative; z-index: 1;
      transition: width 0.4s var(--ease-out), height 0.4s var(--ease-out), background 0.3s, transform 0.3s var(--ease-out);
      border: 3px solid rgba(58,122,58,0.15);
    }

.step-icon-wrap svg {
      width: 48px; height: 48px; fill: var(--green);
      transition: width 0.4s var(--ease-out), height 0.4s var(--ease-out), fill 0.3s;
    }

.step-item:hover .step-icon-wrap {
      width: 118px; height: 118px;
      background: rgba(58,122,58,0.16);
      border-color: rgba(58,122,58,0.3);
      transform: translateY(-4px);
    }

.step-item:hover .step-icon-wrap svg { width: 54px; height: 54px; fill: var(--forest); }

.step-item h4 { font-size: 22px; font-weight: 700; margin-bottom: 10px; transition: color 0.3s; }

.step-item:hover h4 { color: var(--green); }

.step-item p { font-size: 17px; color: var(--mid); font-weight: 300; line-height: 1.55; }

.step-result {
      text-align: center; padding: 32px; background: rgba(58,122,58,0.03);
      border-radius: 20px; border: 1px solid rgba(58,122,58,0.08);
      max-width: 480px; margin: 0 auto; cursor: default;
      transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out), background 0.3s, border-color 0.3s;
    }

.step-result:hover {
      transform: translateY(-6px);
      box-shadow: 0 16px 48px rgba(201,168,76,0.2);
      background: rgba(201,168,76,0.06);
      border-color: var(--gold);
    }

.step-result .step-icon-wrap {
      width: 90px; height: 90px; background: var(--green); border-color: var(--green);
      transition: transform 0.35s var(--ease-out), background 0.3s, border-color 0.3s;
    }

.step-result:hover .step-icon-wrap {
      transform: scale(1.15);
      background: var(--gold);
      border-color: var(--gold);
    }

.step-result .step-icon-wrap svg { fill: white; width: 42px; height: 42px; transition: transform 0.3s; }

.step-result:hover .step-icon-wrap svg { transform: scale(1.1); }

.step-result h4 { font-size: 24px; font-weight: 900; color: var(--forest); font-family: var(--font-serif); transition: color 0.3s; }

.step-result:hover h4 { color: var(--green); }

.step-result p { font-size: 18px; color: var(--mid); font-weight: 300; line-height: 1.6; transition: color 0.3s; }

.step-result:hover p { color: var(--dark); }

/* ===================== CALCULATOR ===================== */
.calc-wrap {
      background: white; border-radius: 24px; padding: 48px;
      box-shadow: 0 8px 40px rgba(0,0,0,0.07); max-width: 700px; margin: 0 auto;
    }

.calc-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 24px; }

.calc-label { display: block; font-size: 16px; font-weight: 600; color: var(--mid); margin-bottom: 8px; }

.calc-input {
      width: 100%; padding: 14px 18px; border-radius: 12px;
      border: 2px solid rgba(0,0,0,0.08); font-size: 18px;
      font-family: var(--font-sans); color: var(--dark); background: var(--cream);
      transition: border-color 0.2s; outline: none; -webkit-appearance: none;
    }

.calc-input:focus { border-color: var(--green); }

.calc-result {
      display: none; margin-top: 28px; padding: 28px;
      background: var(--forest); border-radius: 16px; color: white; text-align: center;
    }

.calc-result.show { display: block; }

.calc-result-num { font-family: var(--font-serif); font-size: 52px; font-weight: 900; color: var(--moss); }

.calc-result-label { font-size: 16px; color: rgba(255,255,255,0.55); margin-top: 4px; }

.calc-result-detail { font-size: 17px; color: rgba(255,255,255,0.7); margin-top: 12px; font-weight: 300; line-height: 1.55; }

/* ===================== PROJECT GALLERY ===================== */
.gallery-section { background: var(--dark); padding: 100px 0; }

.gallery-section .section-label { justify-content: center; color: var(--moss); }

.gallery-section .section-label::before, .gallery-section .section-label::after { color: var(--moss); }

.gallery-section .section-title { color: white; text-align: center; }

.gallery-subtitle { font-size: 19px; color: rgba(255,255,255,0.5); text-align: center; font-weight: 300; max-width: 480px; margin: 0 auto 56px; line-height: 1.6; }

.gallery-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr;
      grid-template-rows: 280px 280px;
      gap: 12px;
    }

.gallery-item {
      border-radius: 16px; overflow: hidden; position: relative; cursor: pointer;
      transition: box-shadow 0.35s ease;
    }

.gallery-item:first-child { grid-row: 1 / 3; }

.gallery-item img {
      width: 100%; height: 100%; object-fit: cover;
      transition: transform 0.5s var(--ease-out);
    }

.gallery-item:hover img { transform: scale(1.06); }

.gallery-item-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(to top, rgba(14,31,14,0.75) 0%, transparent 50%);
      opacity: 0; transition: opacity 0.3s;
      display: flex; align-items: flex-end; padding: 20px;
    }

.gallery-item:hover .gallery-item-overlay { opacity: 1; }

.gallery-item-label {
      font-size: 16px; font-weight: 600; color: white;
      display: flex; align-items: center; gap: 6px;
    }

.gallery-item-label svg { width: 16px; height: 16px; fill: var(--moss); }

.gallery-cta { text-align: center; margin-top: 40px; }

/* ===================== TESTIMONIALS ===================== */
.reviews-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

.review-card {
      background: var(--white);
      border-radius: 24px;
      padding: 36px 32px 28px;
      box-shadow: 0 4px 24px rgba(0,0,0,0.06);
      border: 1px solid rgba(0,0,0,0.07);
      display: flex; flex-direction: column; gap: 20px;
      transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
      position: relative;
    }

.review-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,0.10); }

.review-card-quote {
      font-family: var(--font-serif);
      font-size: 72px; line-height: 1;
      color: var(--gold); opacity: 0.5;
      position: absolute; top: 20px; right: 28px;
      pointer-events: none;
      transition: opacity 0.3s, transform 0.3s, color 0.3s;
    }

.review-card:hover .review-card-quote { opacity: 0.85; transform: scale(1.15); color: var(--gold); }

.review-stars { display: flex; gap: 3px; margin-bottom: 4px; }

.review-stars svg { width: 16px; height: 16px; fill: var(--gold); transition: transform 0.2s ease, fill 0.2s; cursor: default; }

.review-stars svg:hover { transform: scale(1.4); fill: #ffcc00; }

.review-card:hover .review-stars svg { transform: scale(1.1); }

.review-text {
      font-size: 16px; color: var(--mid); font-weight: 400;
      line-height: 1.55; flex: 1; transition: color 0.3s;
      font-style: italic;
    }

.review-card-footer {
      display: flex; align-items: center; justify-content: space-between;
      padding-top: 16px;
      border-top: 1px solid rgba(0,0,0,0.06);
    }

.review-footer-left { display: flex; align-items: center; gap: 12px; }

.review-avatar {
      width: 44px; height: 44px; border-radius: 50%;
      background: linear-gradient(135deg, var(--forest-mid), var(--green));
      display: flex; align-items: center; justify-content: center;
      font-size: 15px; font-weight: 700; color: white;
      flex-shrink: 0; font-family: var(--font-sans);
    }

.review-author { font-size: 15px; font-weight: 700; color: var(--dark); margin-bottom: 2px; transition: color 0.3s; }

.review-card:hover .review-author { color: var(--green); }

.review-card:hover .review-avatar { transform: scale(1.1); box-shadow: 0 4px 12px rgba(58,122,58,0.2); }

.review-verified {
      font-size: 12px; color: var(--muted); display: flex; align-items: center; gap: 4px;
    }

.review-verified svg { width: 12px; height: 12px; fill: var(--green); transition: transform 0.3s; }

.review-card:hover .review-verified svg { transform: scale(1.2); }

.review-google-logo { display: flex; align-items: center; opacity: 0.85; transition: opacity 0.3s, transform 0.3s; }

.review-card:hover .review-google-logo { opacity: 1; transform: scale(1.1); }

.review-google-logo svg { width: 22px; height: 22px; }

/* ===================== SERVICE AREAS ===================== */
.areas-top { display: grid; grid-template-columns: 11fr 9fr; gap: 40px; align-items: start; margin-bottom: 48px; }

.areas-cloud { display: flex; flex-wrap: wrap; gap: 10px; }

.area-tag {
      display: flex; align-items: center; gap: 6px;
      background: white; border: 1px solid rgba(0,0,0,0.08);
      border-radius: 100px; padding: 8px 16px;
      font-size: 16px; font-weight: 500; color: var(--mid);
      transition: background 0.2s, color 0.2s, transform 0.2s, border-color 0.2s, box-shadow 0.2s;
    }

.area-tag:hover { background: var(--green); color: white; transform: translateY(-2px); }

.area-tag:hover svg { fill: white; }

.area-tag svg { width: 14px; height: 14px; fill: var(--green); }

.areas-map {
      height: 420px; border-radius: 20px;
      box-shadow: 0 20px 60px rgba(0,0,0,0.12);
      border: 3px solid white; position: relative;
      transition: box-shadow 0.35s ease, transform 0.35s ease;
    }

.areas-map iframe { width: 100%; height: 100%; display: block; }

.areas-map-badge {
      position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%);
      background: white; border-radius: 100px; padding: 10px 20px;
      display: flex; align-items: center; gap: 8px; white-space: nowrap;
      box-shadow: 0 4px 20px rgba(0,0,0,0.15);
      font-size: 16px; font-weight: 600; color: var(--dark);
    }

/* ===================== SERVICES TABS ===================== */
.svc-tab-helper {
      font-size: 14px; text-transform: uppercase; letter-spacing: 2px;
      color: var(--muted); font-weight: 700; margin-bottom: 10px;
    }

/* ===================== CONTACT ===================== */
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }

.contact-sticky { position: sticky; top: 120px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.form-group { margin-bottom: 10px; }

.form-group label { display: block; font-size: 16px; font-weight: 600; color: var(--mid); margin-bottom: 6px; }

.form-group input, .form-group select, .form-group textarea {
      width: 100%; padding: 14px 18px; border-radius: 12px;
      border: 2px solid rgba(0,0,0,0.08); font-size: 17px;
      font-family: var(--font-sans); color: var(--dark); background: var(--cream);
      transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s; outline: none; -webkit-appearance: none;
    }

.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--green); }

.form-group input:hover, .form-group select:hover, .form-group textarea:hover { border-color: var(--green-lt); }

.form-group textarea { resize: vertical; min-height: 120px; }

.contact-sticky:hover { box-shadow: 0 20px 60px rgba(0,0,0,0.1); transform: translateY(-4px); }

.form-consent { font-size: 15px; color: var(--muted); margin-top: 12px; line-height: 1.6; }

.contact-info-item { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 28px; }

.contact-info-icon {
      width: 44px; height: 44px; background: rgba(58,122,58,0.1);
      border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    }

.contact-info-icon svg { width: 20px; height: 20px; fill: var(--green); }

.contact-info-item strong { font-size: 18px; font-weight: 600; display: block; margin-bottom: 4px; }

.contact-info-item p { font-size: 17px; color: var(--mid); font-weight: 300; }

/* ===================== CTA ===================== */
.cta-section {
      background: var(--forest); padding: 120px 0; text-align: center; position: relative; overflow: hidden;
    }

.cta-section::before {
      content: ''; position: absolute; top: -100px; right: -100px;
      width: 500px; height: 500px;
      background: radial-gradient(circle, rgba(58,122,58,0.2) 0%, transparent 70%); pointer-events: none;
    }

.cta-section .section-label { justify-content: center; color: var(--moss); }

.cta-section .section-label::before, .cta-section .section-label::after { color: var(--moss); }

.cta-section .section-title { color: white; text-align: center; }

.cta-section .section-body { color: rgba(255,255,255,0.6); max-width: 520px; margin: 0 auto 40px; text-align: center; }

.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===================== FOOTER ===================== */
footer { background: #0e1f0e; padding: 72px 0 32px; }

.footer-heading { font-size: 14px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 16px; }

.footer-links { display: flex; flex-direction: column; gap: 10px; }

.footer-links a { font-size: 17px; color: rgba(255,255,255,0.55); font-weight: 300; transition: color 0.2s; }

.footer-links a:hover { color: white; }

.footer-contact { font-size: 17px; color: rgba(255,255,255,0.55); font-weight: 300; line-height: 1.45; }

.footer-contact a { color: var(--moss); transition: color 0.2s; }

.footer-contact a:hover { color: white; }

.footer-bottom p { font-size: 15px; color: rgba(255,255,255,0.3); }

.footer-bottom-links { display: flex; gap: 24px; }

.footer-bottom-links a { font-size: 15px; color: rgba(255,255,255,0.3); transition: color 0.2s; }

.footer-bottom-links a:hover { color: rgba(255,255,255,0.7); }

/* ===================== STICKY MOBILE BAR ===================== */
.sticky-bar {
      display: none; position: fixed; bottom: 0; left: 0; right: 0;
      z-index: 200; background: var(--forest); padding: 12px 24px; gap: 12px;
    }

.sticky-bar a {
      flex: 1; display: flex; align-items: center; justify-content: center;
      gap: 8px; padding: 14px; border-radius: 12px;
      font-size: 16px; font-weight: 600; color: white;
    }

.sticky-bar a:first-child { background: var(--green); }

.sticky-bar a:last-child { background: rgba(255,255,255,0.1); }

.sticky-bar svg { width: 18px; height: 18px; fill: white; }

/* ===================== REVEAL ===================== */
.reveal, .card-reveal {
      opacity: 1; transform: none;
      transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out);
    }
.js-ready .reveal, .js-ready .card-reveal {
      opacity: 0; transform: translateY(28px);
      animation: reveal-failsafe 0s 1.5s forwards;
    }
.js-ready .reveal.visible, .js-ready .card-reveal.visible {
      animation: none;
    }

.reveal.visible, .card-reveal.visible { opacity: 1; transform: none; }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1100px) {
      .grass-grid { grid-template-columns: repeat(2, 1fr); }
    }

@media (max-width: 960px) {
      .contact-layout { grid-template-columns: 1fr; gap: 48px; }
      .contact-sticky { position: static; }
      .svc-panel.active { grid-template-columns: 1fr; }
      .svc-image { height: 320px; }
      .why-header { grid-template-columns: 1fr; gap: 20px; }
      .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
      .gallery-item:first-child { grid-row: auto; grid-column: 1 / 3; height: 300px; }
      .gallery-item { height: 200px; }
    }

.hero-review-avatars span:hover {
      transform: translateY(-4px) scale(1.15);
      border-color: var(--gold);
      z-index: 2;
    }

.hero-review-stars svg:hover { transform: scale(1.3); fill: #ffcc00; }

.hero-reviews:hover .hero-review-text { color: rgba(255,255,255,0.9); }

.hero-benefits:hover {
      box-shadow: 0 8px 32px rgba(0,0,0,0.25);
      border-color: rgba(255,255,255,0.22);
    }

.hero-benefit:hover {
      transform: translateX(6px);
      color: white;
      background: rgba(255,255,255,0.06);
    }

.hero-benefit:hover svg { transform: scale(1.25); fill: var(--gold); }

.pain-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(0,0,0,0.1); }

.pain-card:hover .pain-icon { transform: scale(1.25); }

.pain-card:hover .pain-icon svg { fill: var(--forest); }

.finder-card:hover:not(.active) { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.08); }

/* ============================================================
       PALLET CALCULATOR
    ============================================================ */
input[type="range"] { cursor: pointer; }

input[type="number"] { transition: border-color 0.2s, box-shadow 0.2s; }

input[type="number"]:hover { border-color: var(--green); }

input[type="number"]:focus { box-shadow: 0 0 0 3px rgba(58,122,58,0.15); }

.svc-image:hover { box-shadow: 0 24px 64px rgba(0,0,0,0.18); }

.svc-content { transition: transform 0.3s ease; }

.svc-image:hover + .svc-content { transform: translateY(-2px); }

/* ============================================================
       GALLERY HOVER EFFECTS
    ============================================================ */
.gallery-item:hover { box-shadow: 0 20px 50px rgba(0,0,0,0.2); }

/* ============================================================
       SERVICE AREAS: HOVER EFFECTS
    ============================================================ */
.areas-map:hover {
      box-shadow: 0 28px 70px rgba(0,0,0,0.18);
      transform: translateY(-4px);
    }

.area-tag-active {
      background: var(--forest) !important;
      color: white !important;
      border-color: var(--forest) !important;
      transform: translateY(-2px);
      box-shadow: 0 4px 14px rgba(28,58,28,0.3);
    }

.area-tag-active svg { fill: var(--moss) !important; }

button.area-tag {
      border: 1.5px solid rgba(58,122,58,0.2);
      cursor: pointer;
      font-family: var(--font-sans);
    }

.contact-info-item:hover { transform: translateX(6px); }

.contact-info-item:hover .contact-info-icon { transform: scale(1.15); background: var(--green); }

.contact-info-item:hover .contact-info-icon svg { fill: white; }

/* ============================================================
       FOOTER LINKS
    ============================================================ */
footer a { transition: color 0.2s, transform 0.2s; display: inline-block; }

footer a:hover { transform: translateX(3px); color: var(--moss); }

/* ===================== PARTNER LOGO MARQUEE ===================== */
.partners-section {
      background: var(--white);
      padding: 48px 0;
      border-top: 1px solid rgba(0,0,0,0.06);
      border-bottom: 1px solid rgba(0,0,0,0.06);
      overflow: hidden;
    }

.partners-label {
      text-align: center;
      font-size: 13px; font-weight: 700; letter-spacing: 2.5px;
      text-transform: uppercase; color: var(--muted);
      margin-bottom: 32px;
    }

.marquee-track {
      display: flex;
      width: max-content;
      animation: marquee-scroll 28s linear infinite;
    }

.marquee-track:hover { animation-play-state: paused; }

@keyframes marquee-scroll {
      from { transform: translateX(0); }
      to   { transform: translateX(-50%); }
    }

.marquee-inner {
      display: flex;
      align-items: center;
      gap: 0;
    }

.partner-card {
      display: flex;
      align-items: center;
      justify-content: center;
      background: white;
      border: 1.5px solid rgba(0,0,0,0.07);
      border-radius: 16px;
      padding: 18px 28px;
      margin: 0 12px;
      min-width: 160px;
      height: 88px;
      transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
      cursor: pointer;
      flex-shrink: 0;
    }

.partner-card:hover {
      box-shadow: 0 10px 32px rgba(0,0,0,0.10);
      transform: translateY(-4px);
      border-color: var(--moss);
    }

.partner-card img {
      max-height: 52px;
      max-width: 130px;
      width: auto;
      height: auto;
      object-fit: contain;
      filter: grayscale(30%);
      opacity: 0.85;
      transition: filter 0.25s ease, opacity 0.25s ease;
    }

.partner-card:hover img {
      filter: grayscale(0%);
      opacity: 1;
    }

/* ===================== AEO GLANCE CARD ===================== */
.aeo-grid {
      display: grid; grid-template-columns: 320px 1fr; gap: 0;
      border-radius: 16px; overflow: hidden; border: 1px solid var(--warm); background: var(--white);
      transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out), border-color 0.3s;
    }

.aeo-grid:hover { transform: translateY(-4px); box-shadow: 0 20px 50px rgba(0,0,0,0.1); border-color: rgba(58,122,58,0.2); }

.aeo-fact {
      display: flex; align-items: flex-start; gap: 14px;
      padding: 10px 12px; border-radius: 12px;
      transition: background 0.25s, transform 0.25s; cursor: default;
    }

.aeo-fact:hover { background: rgba(122,184,122,0.1); transform: translateX(6px); }

.aeo-fact-icon {
      width: 40px; height: 40px; border-radius: 10px;
      background: rgba(122,184,122,0.15);
      display: flex; align-items: center; justify-content: center; flex-shrink: 0;
      transition: transform 0.3s var(--ease-out), background 0.3s;
    }

.aeo-fact:hover .aeo-fact-icon { transform: scale(1.2); background: rgba(122,184,122,0.25); }

.aeo-fact-icon svg { width: 20px; height: 20px; fill: var(--moss); transition: transform 0.3s; }

.aeo-fact:hover .aeo-fact-icon svg { transform: scale(1.1); }

/* ===================== COMPARISON TABLE ===================== */
.compare-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }

.compare-table { width: 100%; border-collapse: collapse; font-size: 15px; }

.compare-table th {
      padding: 16px 20px; text-align: left; font-family: var(--font-serif);
      font-size: 17px; font-weight: 700; color: var(--dark);
      border-bottom: 2px solid rgba(58,122,58,0.2); background: var(--white);
    }

.compare-table th:first-child { color: var(--muted); font-family: var(--font-sans); font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; }

.compare-table td {
      padding: 14px 20px; border-bottom: 1px solid rgba(0,0,0,0.06);
      color: var(--mid); font-weight: 400; vertical-align: middle;
    }

.compare-table td:first-child { font-weight: 700; color: var(--dark); font-size: 14px; text-transform: uppercase; letter-spacing: 1px; }

.compare-table tr:last-child td { border-bottom: none; }

.compare-table tr { transition: background 0.15s; }

.compare-table tr:hover td { background: rgba(58,122,58,0.05); }

.ct-dot { display: inline-flex; align-items: center; gap: 6px; }

.ct-dot svg { width: 16px; height: 16px; flex-shrink: 0; }

.ct-high { color: var(--green); }

.ct-mid { color: var(--earth); }

.ct-low { color: var(--muted); }

/* ===================== PRICING CARDS ===================== */
.price-card {
      background: var(--white); border-radius: 16px; padding: 28px 24px;
      text-align: center; border: 1px solid var(--warm);
      transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out), border-color 0.3s;
      cursor: default;
    }

.price-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 16px 40px rgba(58,122,58,0.12);
      border-color: rgba(58,122,58,0.25);
    }

.price-card-name {
      font-family: var(--font-serif); font-size: 14px; font-weight: 700;
      color: var(--green); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px;
      transition: color 0.3s, letter-spacing 0.3s, transform 0.3s;
    }

.price-card:hover .price-card-name { color: var(--forest); letter-spacing: 2px; }

.price-card-amount {
      font-family: var(--font-serif); font-size: 36px; font-weight: 900;
      color: var(--dark); line-height: 1;
      transition: color 0.3s, transform 0.3s var(--ease-out);
    }

.price-card:hover .price-card-amount { color: var(--green); transform: scale(1.08); }

.price-card-amount span { font-size: 16px; font-weight: 400; color: var(--muted); transition: color 0.3s; }

.price-card:hover .price-card-amount span { color: var(--green); }

.price-card-unit { font-size: 14px; color: var(--muted); margin-top: 4px; transition: color 0.3s; }

.price-card:hover .price-card-unit { color: var(--mid); }

/* ===================== ADVANCED CALCULATOR ===================== */
.calc-wrap-adv {
      display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start;
      background: var(--white); border-radius: 24px; padding: 40px;
      box-shadow: 0 8px 40px rgba(0,0,0,0.08); border: 1px solid rgba(0,0,0,0.06);
      transition: box-shadow 0.3s, border-color 0.3s;
    }

.calc-wrap-adv:hover { box-shadow: 0 16px 56px rgba(0,0,0,0.12); border-color: rgba(58,122,58,0.15); }

.calc-heading-adv { font-family: var(--font-serif); font-size: 26px; font-weight: 900; color: var(--forest); margin-bottom: 20px; }

.calc-shape-toggle { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }

.calc-shape-btn {
      padding: 8px 16px; border-radius: 100px; border: 1.5px solid rgba(0,0,0,0.12);
      font-size: 14px; font-weight: 600; font-family: var(--font-sans);
      color: var(--mid); background: white; cursor: pointer; transition: all 0.2s;
    }

.calc-shape-btn.active { background: var(--green); color: white; border-color: var(--green); }

.calc-shape-btn:hover:not(.active) { border-color: var(--green); color: var(--green); transform: translateY(-1px); }

.shape-fields { margin-bottom: 16px; }

.calc-field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.calc-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }

.calc-field label { font-size: 14px; font-weight: 600; color: var(--dark); }

.calc-field input, .calc-field select {
      padding: 11px 14px; border-radius: 10px; border: 1.5px solid rgba(0,0,0,0.12);
      font-size: 16px; font-family: var(--font-sans); color: var(--dark);
      background: white; transition: border-color 0.2s, box-shadow 0.2s; width: 100%;
    }

.calc-field input:focus, .calc-field select:focus { outline: none; border-color: var(--green); box-shadow: 0 0 0 3px rgba(58,122,58,0.1); }

.calc-results-adv {
      background: var(--sand); border-radius: 16px; padding: 32px;
      min-height: 320px; display: flex; flex-direction: column; justify-content: center;
    }

.calc-result-idle-adv { display: flex; flex-direction: column; align-items: center; justify-content: center; flex: 1; }

.calc-result-row { display: flex; justify-content: space-between; align-items: center; padding: 10px 6px; border-bottom: 1px solid rgba(0,0,0,0.07); border-radius: 6px; transition: background 0.2s; }

.calc-result-row:hover { background: rgba(58,122,58,0.06); }

.calc-result-label-adv { font-size: 15px; color: var(--mid); font-weight: 400; }

.calc-result-value-adv { font-size: 16px; font-weight: 700; color: var(--dark); }

.calc-result-value-adv.large { font-family: var(--font-serif); font-size: 28px; font-weight: 900; }

.calc-result-value-adv.gold { color: var(--earth); }

.calc-result-divider { height: 1px; background: rgba(0,0,0,0.1); margin: 8px 0; }

.calc-disclaimer { font-size: 13px; color: var(--muted); margin-top: 16px; line-height: 1.6; }

@media (max-width: 760px) {
      .calc-wrap-adv { grid-template-columns: 1fr; padding: 24px 20px; }
      .calc-field-row { grid-template-columns: 1fr; }
    }


/* ============================================================
   CONTACT PAGE
   ============================================================ */

/* ========================================
   CONTACT LAYOUT
   ======================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 5fr 3fr;
  gap: 48px;
  align-items: start;
}

/* ========================================
   FORM STYLES
   ======================================== */
.contact-form {
  background: var(--white);
  border-radius: 20px;
  padding: 40px 36px;
  border: 1px solid rgba(0,0,0,0.04);
  box-shadow: 0 8px 40px rgba(28,58,28,0.06);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.contact-form:hover {
  box-shadow: 0 20px 60px rgba(28,58,28,0.12);
  transform: translateY(-4px);
}

.form-group label .required {
  color: #c0392b;
  margin-left: 2px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--sand);
  border-radius: 12px;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 300;
  color: var(--dark);
  background: var(--cream);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  -webkit-appearance: none;
  appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--muted);
  font-weight: 300;
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
  border-color: var(--green-lt);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(58,122,58,0.12);
  outline: none;
  background: var(--white);
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%234a5545' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
  cursor: pointer;
}

.form-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 48px;
  border-radius: 100px;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid var(--forest);
  background: var(--forest);
  color: var(--white);
  transition: all 0.3s ease;
  margin-top: 8px;
  width: 100%;
}

.form-submit:hover {
  background: var(--forest-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(28,58,28,0.2);
}

.form-submit svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s;
}

.form-submit:hover svg {
  transform: translateX(3px);
}

.form-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* Honeypot - hidden from humans, visible to bots */
.form-field-website { position: absolute; left: -9999px; top: -9999px; opacity: 0; height: 0; width: 0; z-index: -1; }

.form-message {
  padding: 16px 20px;
  border-radius: 12px;
  margin-top: 16px;
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.5;
  display: none;
}

.form-message.success {
  display: block;
  background: #e8f5e9;
  border: 1px solid #4caf50;
  color: #2e7d32;
}

.form-message.error {
  display: block;
  background: #fbe9e7;
  border: 1px solid #e53935;
  color: #c62828;
}

/* ========================================
   CONTACT INFO SIDEBAR
   ======================================== */
.contact-sidebar {
  position: sticky;
  top: 100px;
  align-self: start;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact-info-card {
  background: linear-gradient(160deg, var(--forest) 0%, #1a4a1a 100%);
  border-radius: 20px;
  padding: 36px 28px;
  border: none;
  box-shadow: 0 8px 32px rgba(28,58,28,0.2);
  color: white;
  position: relative;
  overflow: hidden;
}
.contact-info-card::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 120px;
  height: 120px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
}

.contact-info-card h3 {
  font-size: 24px;
  font-weight: 900;
  color: white;
  margin-bottom: 24px;
}

.contact-info-card .contact-info-icon {
  background: rgba(255,255,255,0.12);
}
.contact-info-card .contact-info-icon svg {
  fill: white;
}
.contact-info-card .contact-info-item:hover .contact-info-icon {
  background: rgba(255,255,255,0.2);
}
.contact-info-card .contact-info-item:hover .contact-info-icon svg {
  fill: var(--gold);
}
.contact-info-card .contact-info-text .label {
  color: rgba(255,255,255,0.6);
}
.contact-info-card .contact-info-text .value,
.contact-info-card .contact-info-text .value a {
  color: white;
}
.contact-info-card .response-badge {
  background: rgba(255,255,255,0.1);
}
.contact-info-card .response-badge svg {
  color: white;
}
.contact-info-card .response-badge span {
  color: rgba(255,255,255,0.9);
}

.contact-info-item:last-child { margin-bottom: 0; }

.contact-info-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: 4px;
}

.contact-info-text .label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
}

.contact-info-text .value {
  font-size: 16px;
  font-weight: 500;
  color: var(--dark);
  line-height: 1.5;
}

.contact-info-text a.value {
  color: var(--forest);
  transition: color 0.2s;
}

.contact-info-text a.value:hover {
  color: var(--green);
}

/* Hours Card */
.hours-card {
  background: var(--white);
  border-radius: 20px;
  padding: 36px 28px;
  border: 1px solid rgba(0,0,0,0.04);
  box-shadow: 0 4px 20px rgba(28,58,28,0.04);
}

.hours-card h3 {
  font-size: 24px;
  font-weight: 900;
  color: var(--forest);
  margin-bottom: 20px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--sand);
  font-size: 16px;
}

.hours-row:last-child { border-bottom: none; }

.hours-row .day { color: var(--mid); font-weight: 400; }

.hours-row .time { color: var(--forest); font-weight: 500; }

/* Response badge */
.response-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(58,122,58,0.08);
  border-radius: 12px;
  padding: 16px 20px;
  margin-top: 24px;
}

.response-badge svg {
  width: 20px;
  height: 20px;
  color: var(--green);
  flex-shrink: 0;
}

.response-badge span {
  font-size: 15px;
  font-weight: 500;
  color: var(--forest);
}

/* ========================================
   TIPS SECTION
   ======================================== */
.tips-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.tip-card {
  background: var(--white);
  border-radius: 20px;
  padding: 32px 28px;
  border: 1px solid rgba(0,0,0,0.04);
  transition: all 0.4s ease;
}

.tip-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(28,58,28,0.08);
}

.tip-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.tip-card-icon svg {
  width: 24px;
  height: 24px;
  color: var(--green);
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
}

.tip-card:hover .tip-card-icon svg { transform: scale(1.25); }

.tip-card h3 {
  font-size: 20px;
  font-weight: 900;
  color: var(--forest);
  margin-bottom: 10px;
}

.tip-card p {
  color: var(--mid);
  font-size: 16px;
  line-height: 1.75;
}

.area-note {
  margin-top: 28px;
  color: var(--mid);
  font-size: 16px;
}

.area-note a {
  color: var(--forest);
  font-weight: 600;
  transition: color 0.2s;
}

.area-note a:hover { color: var(--green); }

/* Contact page: service area + map layout */
.contact-service-area {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  margin-top: 8px;
}
.service-area-list .area-list {
  max-width: none;
}
.service-area-map {
  position: -webkit-sticky;
  position: sticky;
  top: 100px;
  align-self: start;
  min-height: 420px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.1);
}
.service-area-map iframe {
  width: 100%;
  height: 420px;
  display: block;
}
@media (max-width: 768px) {
  .contact-service-area {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .service-area-map {
    position: static;
    min-height: 300px;
  }
  .service-area-map iframe {
    height: 300px;
  }
}

/* ========================================
   CTA BANNER
   ======================================== */
.cta-banner {
  text-align: center;
}

.cta-banner p {
  color: rgba(255,255,255,0.7);
  font-size: 18px;
  margin-bottom: 32px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}


/* ============================================================
   FAQ PAGE
   ============================================================ */

.interior-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(58,122,58,0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(122,184,122,0.08) 0%, transparent 50%);
  pointer-events: none;
}

.interior-hero::after {
  display: none;
}

.intro-content p {
  color: var(--mid);
  margin-bottom: 20px;
}

.intro-content p:last-child { margin-bottom: 0; }

/* ========================================
   CATEGORY HEADER
   ======================================== */
.faq-category-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}

.faq-category-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: var(--forest);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.faq-category-icon svg {
  width: 26px;
  height: 26px;
  color: var(--moss);
}

.section-sand .faq-category-icon {
  background: var(--white);
}

.section-sand .faq-category-icon svg {
  color: var(--green);
}

.faq-category-title {
  font-size: clamp(26px, 4vw, 36px);
  color: var(--forest);
  line-height: 1.15;
}

.faq-category-title em {
  font-style: italic;
  color: var(--green-lt);
}

.faq-category-count {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  margin-top: 4px;
}

/* ========================================
   FAQ ACCORDION
   ======================================== */
.faq-list {
  max-width: 800px;
}

.faq-item {
  background: var(--white);
  border-radius: 16px;
  margin-bottom: 12px;
  border: 1px solid rgba(0,0,0,0.04);
  overflow: hidden;
  transition: box-shadow 0.3s;
}

.section-sand .faq-item {
  background: var(--white);
}

.faq-item:hover {
  box-shadow: 0 4px 20px rgba(28,58,28,0.06);
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 24px 28px;
  font-family: var(--font-sans);
  font-size: 17px;
  font-weight: 600;
  color: var(--forest);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  line-height: 1.4;
}

.faq-question:hover { color: var(--green); }

.faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.faq-icon svg {
  width: 14px;
  height: 14px;
  transition: transform 0.3s;
  color: var(--green);
}

.faq-item.open .faq-icon { background: var(--forest); }

.faq-item.open .faq-icon svg { transform: rotate(180deg); color: var(--white); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-answer-inner {
  padding: 0 28px 24px;
  color: var(--mid);
  font-size: 16px;
  line-height: 1.75;
}

.faq-answer-inner a {
  color: var(--green);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.faq-answer-inner a:hover { color: var(--forest); }

.faq-item.open .faq-answer {
  max-height: 500px;
}


/* ============================================================
   SERVICES PAGE
   ============================================================ */

.hero-grid {
  display: grid;
  grid-template-columns: 5fr 3fr;
  column-gap: 48px;
  align-items: end;
  position: relative;
  z-index: 2;
}

.hero-image-wrap {
  position: relative;
  border-radius: 20px 20px 0 0;
  overflow: hidden;
  align-self: end;
}

.hero-image-wrap img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
  border-radius: 20px 20px 0 0;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--moss);
  margin-bottom: 24px;
}

.hero-eyebrow::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--moss);
}

.breadcrumb .sep { color: rgba(255,255,255,0.3); }

.section-white { background: var(--white); }

/* ========================================
   SERVICES GRID
   ======================================== */
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 48px;
}

.service-card {
  background: var(--cream);
  border-radius: 20px;
  padding: 40px 32px;
  border: 1px solid rgba(0,0,0,0.04);
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(28,58,28,0.1);
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--forest);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  flex-shrink: 0;
}

.service-icon svg {
  width: 28px;
  height: 28px;
  color: var(--white);
  transition: transform 0.25s ease;
}

.service-card:hover .service-icon svg {
  transform: scale(1.25);
}

.service-card h3 {
  font-family: var(--font-serif);
  font-weight: 900;
  font-size: 24px;
  color: var(--forest);
  margin-bottom: 12px;
}

.service-card p {
  color: var(--mid);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 24px;
  flex-grow: 1;
}

.service-card .card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green);
  font-weight: 600;
  font-size: 15px;
  transition: gap 0.2s ease, color 0.2s ease;
}

.service-card .card-link:hover {
  gap: 12px;
  color: var(--forest);
}

.service-card .card-link svg {
  width: 16px;
  height: 16px;
  transition: transform 0.25s ease;
}

.service-card:hover .card-link svg {
  transform: scale(1.25);
}

.step-card {
  background: var(--white);
  border-radius: 20px;
  padding: 36px 28px;
  text-align: center;
  transition: all 0.4s ease;
  border: 1px solid rgba(0,0,0,0.04);
}

.step-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(28,58,28,0.1);
}

.step-card h3 {
  font-family: var(--font-serif);
  font-weight: 900;
  font-size: 24px;
  color: var(--forest);
  margin-bottom: 12px;
}

.step-card p {
  color: var(--mid);
  font-size: 16px;
  line-height: 1.7;
}

/* ========================================
   WHY CHOOSE US
   ======================================== */
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.value-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--forest);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.value-icon svg {
  width: 24px;
  height: 24px;
  color: var(--white);
  transition: transform 0.25s ease;
}

.value-card:hover .value-icon svg {
  transform: scale(1.25);
}

.value-text h3 {
  font-family: var(--font-serif);
  font-weight: 900;
  font-size: 24px;
  color: var(--forest);
  margin-bottom: 8px;
}

.value-text p {
  color: var(--mid);
  font-size: 16px;
  line-height: 1.7;
}

/* ========================================
   SERVICE AREAS
   ======================================== */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
  margin-bottom: 48px;
}

.area-block {
  background: var(--white);
  border-radius: 16px;
  padding: 24px 20px;
  border: 1px solid rgba(0,0,0,0.04);
  transition: all 0.3s ease;
}

.area-block:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(28,58,28,0.08);
}

.area-block h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 6px;
}

.area-block p {
  font-size: 15px;
  color: var(--mid);
  line-height: 1.6;
}

.footer-social a:hover svg {
  transform: scale(1.25);
}


/* ============================================================
   SOD DELIVERY
   ============================================================ */

/* ========================================
   INTERIOR HERO
   ======================================== */
.hero-interior {
  position: relative;
  min-height: 40vh;
  display: flex;
  align-items: flex-end;
  background: linear-gradient(165deg, var(--dark) 0%, var(--forest) 40%, #142e14 70%, var(--dark) 100%);
  overflow: hidden;
}
.hero-interior[style*="background-image"] {
  background-size: cover;
  background-position: center;
}
.hero-interior .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(165deg, rgba(14,31,14,0.88) 0%, rgba(28,58,28,0.72) 60%, rgba(14,31,14,0.60) 100%);
  z-index: 1;
}
.hero-interior .hero-interior-content { z-index: 2; }

.hero-interior::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(58,122,58,0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(122,184,122,0.08) 0%, transparent 50%);
  pointer-events: none;
}

.hero-interior::after {
  display: none;
}

.hero-interior-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  padding: 140px 0 60px;
}

.hero-interior h1 {
  font-size: clamp(38px, 6vw, 64px);
  color: var(--white);
  margin-bottom: 16px;
}

.hero-interior h1 em { color: var(--moss); }

.hero-interior-desc {
  font-size: 18px;
  font-weight: 300;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  max-width: 620px;
}

/* ========================================
   STEP CARDS (5-step delivery)
   ======================================== */
.steps-grid-5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 48px;
}

@media (max-width: 1000px) {
  .steps-grid-5 { grid-template-columns: repeat(3, 1fr); }
}

/* ========================================
   PARISH DELIVERY GRID
   ======================================== */
.parish-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.parish-card {
  background: var(--white);
  border-radius: 20px;
  padding: 32px 28px;
  transition: all 0.4s ease;
  border: 1px solid rgba(0,0,0,0.04);
}

.parish-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(28,58,28,0.08);
}

.parish-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.parish-card-icon svg {
  width: 22px;
  height: 22px;
  color: var(--green);
}

.parish-card h3 {
  font-size: 20px;
  font-weight: 900;
  color: var(--forest);
  margin-bottom: 8px;
}

.parish-card p {
  color: var(--mid);
  font-size: 15px;
  line-height: 1.7;
}

/* ========================================
   INFO CARDS (What to Know / Pricing)
   ======================================== */
.info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.info-card {
  background: var(--white);
  border-radius: 20px;
  padding: 32px 28px;
  transition: all 0.4s ease;
  border: 1px solid rgba(0,0,0,0.04);
}

.info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(28,58,28,0.08);
}

.info-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--sand);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.info-card-icon svg {
  width: 22px;
  height: 22px;
  color: var(--green);
}

.info-card h3 {
  font-size: 20px;
  font-weight: 900;
  color: var(--forest);
  margin-bottom: 8px;
}

.info-card p {
  color: var(--mid);
  font-size: 15px;
  line-height: 1.7;
}

.info-card--cream .info-card-icon {
  background: var(--cream);
}

/* ========================================
   PRICING SECTION
   ======================================== */
.pricing-content {
  max-width: 720px;
}

.pricing-content p {
  color: var(--mid);
  margin-bottom: 20px;
}

.pricing-content p:last-child { margin-bottom: 0; }

.pricing-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.pricing-stat {
  background: var(--white);
  border-radius: 20px;
  padding: 36px 24px;
  text-align: center;
  border: 1px solid rgba(0,0,0,0.04);
}

.pricing-stat-number {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 900;
  color: var(--forest);
  line-height: 1;
  margin-bottom: 8px;
}

.pricing-stat-label {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ========================================
   RESIDENTIAL & COMMERCIAL
   ======================================== */
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 48px;
}

.split-card {
  background: var(--white);
  border-radius: 20px;
  padding: 44px 36px;
  transition: all 0.4s ease;
  border: 1px solid rgba(0,0,0,0.04);
}

.split-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(28,58,28,0.1);
}

.split-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--sand);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.split-card-icon svg {
  width: 28px;
  height: 28px;
  color: var(--green);
}

.split-card h3 {
  font-size: 24px;
  font-weight: 900;
  color: var(--forest);
  margin-bottom: 12px;
}

.split-card p {
  color: var(--mid);
  font-size: 16px;
  line-height: 1.7;
}


/* ============================================================
   SOD INSTALLATION
   ============================================================ */

/* ========================================
   INTRO SECTION
   ======================================== */
.intro-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.intro-image {
  border-radius: 20px;
  overflow: hidden;
}

.intro-image img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 20px;
  transition: transform 0.4s ease;
}

.intro-image:hover img {
  transform: scale(1.03);
}

/* Pricing with image layout */
.pricing-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.pricing-image {
  border-radius: 20px;
  overflow: hidden;
  position: sticky;
  top: 100px;
}

.pricing-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 20px;
}

/* ========================================
   PROCESS STEP CARDS (6 steps)
   ======================================== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.process-card {
  background: var(--white);
  border-radius: 20px;
  padding: 36px 28px;
  transition: all 0.4s ease;
  border: 1px solid rgba(0,0,0,0.04);
}

.process-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(28,58,28,0.1);
}

.process-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.process-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--forest);
  color: var(--white);
  font-family: var(--font-serif);
  font-weight: 900;
  font-size: 20px;
  flex-shrink: 0;
}

.process-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.process-icon svg {
  width: 22px;
  height: 22px;
  color: var(--green);
  transition: transform 0.25s ease;
}

.process-card:hover .process-icon svg {
  transform: scale(1.25);
}

.process-card h3 {
  font-size: 24px;
  font-weight: 900;
  color: var(--forest);
  margin-bottom: 10px;
}

.process-card p {
  color: var(--mid);
  font-size: 16px;
  line-height: 1.7;
}

.pricing-content > p {
  color: var(--mid);
  margin-bottom: 20px;
  font-size: 17px;
  line-height: 1.75;
}

.pricing-factors {
  margin-top: 28px;
  margin-bottom: 32px;
}

.pricing-factors li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  color: var(--mid);
  font-size: 16px;
  line-height: 1.7;
  border-bottom: 1px solid var(--sand);
  transition: transform 0.2s ease, color 0.2s ease;
  cursor: default;
}

.pricing-factors li:hover {
  transform: translateX(6px);
  color: var(--green);
}

.pricing-factors li:last-child { border-bottom: none; }

.pricing-factors li strong {
  color: var(--forest);
  font-weight: 600;
}

.pricing-check {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--forest);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.pricing-check svg {
  width: 12px;
  height: 12px;
  color: var(--white);
}

/* ========================================
   COMPARISON TABLE
   ======================================== */
.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-top: 40px;
  border-radius: 20px;
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.04);
}

.compare-table thead th {
  background: var(--forest);
  color: var(--white);
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 16px;
  padding: 20px 18px;
  text-align: left;
  white-space: nowrap;
}

.compare-table thead th:first-child {
  border-radius: 20px 0 0 0;
}

.compare-table thead th:last-child {
  border-radius: 0 20px 0 0;
}

.compare-table tbody td {
  padding: 16px 18px;
  font-size: 15px;
  color: var(--mid);
  border-bottom: 1px solid var(--sand);
  vertical-align: top;
}

.compare-table tbody td:first-child {
  font-weight: 600;
  color: var(--forest);
  white-space: nowrap;
}

.compare-table tbody tr:last-child td { border-bottom: none; }

.compare-table tbody tr:hover td { background: rgba(247,243,236,0.5); }

.cell-best {
  background: rgba(58,122,58,0.06);
  color: var(--forest) !important;
  font-weight: 500;
}

.table-summary {
  max-width: 720px;
  margin-top: 32px;
}

.table-summary p {
  color: var(--mid);
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 16px;
}

.table-summary p:last-child { margin-bottom: 0; }

.table-scroll-hint {
  display: none;
  text-align: center;
  color: var(--muted);
  font-size: 13px;
  margin-top: 12px;
}

@media (max-width: 650px) {
  .table-scroll-hint { display: block; }
}

/* ========================================
   YARD PREP SECTION
   ======================================== */
.prep-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 48px;
}

.prep-card {
  background: var(--white);
  border-radius: 20px;
  padding: 36px 28px;
  border: 1px solid rgba(0,0,0,0.04);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.prep-card:hover {
  box-shadow: 0 16px 48px rgba(28,58,28,0.1);
  transform: translateY(-4px);
}

.prep-card h3 {
  font-size: 24px;
  font-weight: 900;
  color: var(--forest);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.prep-card h3 svg {
  width: 24px;
  height: 24px;
  color: var(--green);
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.prep-card:hover h3 svg {
  transform: scale(1.25);
}

.prep-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  color: var(--mid);
  font-size: 16px;
  line-height: 1.65;
  border-bottom: 1px solid var(--sand);
  transition: transform 0.2s ease, color 0.2s ease;
  cursor: default;
}

.prep-list li:hover {
  transform: translateX(6px);
  color: var(--green);
}

.prep-list li:last-child { border-bottom: none; }

.prep-list .check-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 3px;
  color: var(--green);
}

.prep-note {
  margin-top: 32px;
  max-width: 720px;
}

.prep-note p {
  color: var(--mid);
  font-size: 16px;
  font-weight: 500;
}

.reveal-stagger.visible > *:nth-child(7) { transition-delay: 0.47s; opacity: 1; transform: translateY(0); }


/* ============================================================
   SOD PRICES
   ============================================================ */

/* ========================================
   PRICING TABLES
   ======================================== */
.pricing-table-wrap {
  max-width: 900px;
  margin-top: 32px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.pricing-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 16px;
  overflow: hidden;
  font-size: 16px;
  border: 1px solid rgba(0,0,0,0.06);
}

.pricing-table thead th {
  background: var(--forest);
  color: var(--white);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 16px 20px;
  text-align: left;
  white-space: nowrap;
}

.pricing-table tbody tr {
  transition: background 0.2s;
}

.pricing-table tbody tr:nth-child(odd) {
  background: var(--white);
}

.pricing-table tbody tr:nth-child(even) {
  background: var(--card-bg);
}

.pricing-table tbody tr:hover {
  background: rgba(122, 184, 122, 0.1);
}

.pricing-table tbody td {
  padding: 14px 20px;
  color: var(--mid);
  font-weight: 400;
  border-bottom: 1px solid rgba(0,0,0,0.04);
}

.pricing-table tbody tr:last-child td {
  border-bottom: none;
}

.pricing-table tbody td:first-child {
  color: var(--forest);
  font-weight: 600;
}

.pricing-table-note {
  margin-top: 16px;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
}

/* ========================================
   STEP CARDS
   ======================================== */
.step-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--forest);
  color: var(--white);
  font-family: var(--font-serif);
  font-weight: 900;
  font-size: 18px;
  margin-bottom: 16px;
}

/* ========================================
   AEO ANSWER BLOCK
   ======================================== */
.aeo-block {
  background: var(--white);
  border-radius: 16px;
  padding: 28px 32px;
  border-left: 4px solid var(--green);
  max-width: 800px;
  margin-top: 32px;
}

.aeo-block p {
  color: var(--forest);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 0;
}

/* ========================================
   FACTORS LIST
   ======================================== */
.factors-list {
  max-width: 720px;
  margin-top: 32px;
}

.factor-item {
  margin-bottom: 20px;
}

.factor-item h3 {
  font-family: var(--font-sans);
  font-size: 17px;
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 4px;
}

.factor-item p {
  color: var(--mid);
  font-size: 16px;
  line-height: 1.75;
}


/* ============================================================
   SOD CALCULATOR
   ============================================================ */

/* ========================================
   CALCULATOR WIDGET
   ======================================== */
.calc-card {
  background: var(--white);
  border-radius: 24px;
  padding: 48px 40px;
  border: 1px solid rgba(0,0,0,0.04);
  box-shadow: 0 8px 40px rgba(28,58,28,0.06);
  max-width: 680px;
  margin: 0 auto;
}

.calc-card h3 {
  font-size: 24px;
  font-weight: 900;
  color: var(--forest);
  margin-bottom: 8px;
}

.calc-subtitle {
  color: var(--mid);
  font-size: 15px;
  margin-bottom: 32px;
}

.calc-field.full-width {
  grid-column: 1 / -1;
}

.calc-field input,
.calc-field select {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--sand);
  border-radius: 12px;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 400;
  color: var(--dark);
  background: var(--cream);
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
  appearance: none;
}

.calc-field input::placeholder {
  color: var(--muted);
  font-weight: 300;
}

.calc-field input:focus,
.calc-field select:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(58,122,58,0.12);
  outline: none;
}

.calc-field select {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 14 14' fill='none' stroke='%234a5545' stroke-width='2' stroke-linecap='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 5l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 14px;
  padding-right: 44px;
  cursor: pointer;
}

.calc-or {
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 4px 0 12px;
  position: relative;
}

.calc-or::before,
.calc-or::after {
  content: '';
  position: absolute;
  top: 50%;
  width: calc(50% - 24px);
  height: 1px;
  background: var(--sand);
}

.calc-or::before { left: 0; }

.calc-or::after { right: 0; }

.calc-waste-group {
  margin: 20px 0 28px;
}

.calc-waste-group label.group-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 10px;
}

.calc-waste-options {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.calc-waste-options label {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border: 2px solid var(--sand);
  border-radius: 100px;
  font-size: 15px;
  font-weight: 500;
  color: var(--mid);
  cursor: pointer;
  transition: all 0.2s;
  background: var(--cream);
}

.calc-waste-options input[type="radio"] {
  display: none;
}

.calc-waste-options input[type="radio"]:checked + label,
.calc-waste-options label.active {
  border-color: var(--green);
  background: rgba(58,122,58,0.08);
  color: var(--forest);
  font-weight: 600;
}

.calc-buttons {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 8px;
}

.calc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 40px;
  border-radius: 100px;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  background: var(--forest);
  color: var(--white);
}

.calc-btn:hover { background: var(--forest-mid); transform: translateY(-2px); }

.calc-btn svg {
  width: 18px;
  height: 18px;
}

.calc-reset {
  background: none;
  border: none;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  cursor: pointer;
  padding: 8px 12px;
  transition: color 0.2s;
}

.calc-reset:hover { color: var(--forest); }

/* Results */
.calc-results {
  display: none;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 2px solid var(--sand);
}

.calc-results.show {
  display: block;
  animation: calcFadeIn 0.4s ease;
}

@keyframes calcFadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.calc-results-heading {
  font-size: 18px;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 20px;
  font-family: var(--font-sans);
}

.calc-result-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
}

.calc-result-item {
  background: var(--cream);
  border-radius: 16px;
  padding: 20px 24px;
  text-align: center;
}

.calc-result-item.highlight {
  background: var(--forest);
  color: var(--white);
  grid-column: 1 / -1;
}

.calc-result-value {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 900;
  color: var(--forest);
  line-height: 1.2;
}

.calc-result-item.highlight .calc-result-value {
  color: var(--white);
  font-size: 28px;
}

.calc-result-item.highlight .calc-result-label {
  color: rgba(255,255,255,0.7);
}

.calc-note {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  padding: 16px 20px;
  background: rgba(201,168,76,0.08);
  border-radius: 12px;
  border-left: 3px solid var(--gold);
}

/* ========================================
   INCLUDES / EXCLUDES LISTS
   ======================================== */
.includes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 32px;
  max-width: 720px;
}

.includes-col h3 {
  font-size: 20px;
  font-weight: 900;
  color: var(--forest);
  margin-bottom: 16px;
}

.includes-col ul {
  list-style: none;
}

.includes-col li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  font-size: 16px;
  color: var(--mid);
  line-height: 1.6;
}

.includes-col li svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 3px;
}

.includes-col.included li svg { color: var(--green); }

.includes-col.excluded li svg { color: var(--muted); }


/* ============================================================
   LOCATION PAGES
   ============================================================ */

.section.dark { background: var(--forest); }

/* INTRO / WHY */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }

.two-col-img {
      border-radius: 24px; overflow: hidden; height: 480px;
      box-shadow: 0 20px 60px rgba(0,0,0,0.12);
      transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
    }

.two-col-img:hover { transform: translateY(-6px); box-shadow: 0 28px 70px rgba(0,0,0,0.18); }

.two-col-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease-out); }

.two-col-img:hover img { transform: scale(1.04); }

.check-list { list-style: none; display: flex; flex-direction: column; gap: 6px; margin-top: 20px; }

.check-list li {
      display: flex; align-items: flex-start; gap: 12px;
      font-size: 16px; color: var(--mid); font-weight: 400; line-height: 1.5;
      padding: 6px 10px; border-radius: 8px; transition: background 0.2s;
    }

.check-list li:hover { background: rgba(58,122,58,0.05); }

.check-list li svg { width: 18px; height: 18px; fill: var(--green); flex-shrink: 0; margin-top: 2px; transition: transform 0.2s; }

.check-list li:hover svg { transform: scale(1.25); }

.grass-card-name {
      font-family: var(--font-serif); font-size: 20px; font-weight: 900;
      color: var(--dark); margin-bottom: 6px;
      transition: color 0.25s;
    }

.grass-card:hover .grass-card-name { color: var(--green); }

.grass-card-desc { font-size: 15px; color: var(--mid); font-weight: 300; line-height: 1.6; margin-bottom: 14px; transition: color 0.25s; }

.grass-card:hover .grass-card-desc { color: var(--dark); }

.step-card:hover .step-num { color: rgba(58,122,58,0.18); transform: scale(1.12); }

.step-title { font-size: 18px; font-weight: 700; color: var(--dark); margin-bottom: 8px; transition: color 0.2s; }

.step-card:hover .step-title { color: var(--green); }

.step-desc { font-size: 15px; color: var(--mid); font-weight: 300; line-height: 1.55; }

/* NEARBY AREAS */
.areas-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }

.area-pill {
      display: inline-flex; align-items: center; gap: 6px;
      padding: 9px 16px; border-radius: 100px;
      background: var(--white); border: 1px solid rgba(0,0,0,0.08);
      font-size: 15px; font-weight: 500; color: var(--mid);
      transition: all 0.2s; cursor: default;
    }

.area-pill:hover { background: var(--green); color: white; border-color: var(--green); transform: translateY(-2px); box-shadow: 0 6px 18px rgba(58,122,58,0.25); }

.area-pill svg { width: 13px; height: 13px; fill: var(--green); transition: fill 0.2s, transform 0.2s; }

.area-pill:hover svg { fill: white; transform: scale(1.2); }

.contact-form-card {
      border: 1px solid rgba(0,0,0,0.08);
      background: var(--cream); border-radius: 20px; padding: 28px;
      transition: box-shadow 0.3s, border-color 0.3s, transform 0.3s;
    }

.contact-form-card:hover { box-shadow: 0 20px 56px rgba(0,0,0,0.12); border-color: rgba(58,122,58,0.25); transform: translateY(-3px); }

.form-group:focus-within label { color: var(--green); }

.form-group:hover label { color: var(--green-lt); }

.map-iframe-wrap {
      border-radius: 16px; overflow: hidden; border: 1px solid rgba(0,0,0,0.08);
      transition: box-shadow 0.3s, border-color 0.3s;
    }

.map-iframe-wrap:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.12); border-color: rgba(58,122,58,0.25); }

/* CLIMATE GUIDE */
.climate-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }

.climate-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 32px; }

.climate-stat {
      background: var(--white); border-radius: 16px; padding: 20px;
      border: 1px solid rgba(0,0,0,0.07);
      transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out), border-color 0.25s;
    }

.climate-stat:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.09); border-color: rgba(58,122,58,0.2); }

.climate-stat-value {
      font-family: var(--font-serif); font-size: 32px; font-weight: 900;
      color: var(--green); line-height: 1; margin-bottom: 4px;
      transition: transform 0.25s;
    }

.climate-stat:hover .climate-stat-value { transform: scale(1.08); }

.climate-stat-label { font-size: 13px; color: var(--muted); font-weight: 500; text-transform: uppercase; letter-spacing: 1px; }

.grass-guide-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 32px; }

.grass-guide-card {
      background: var(--white); border-radius: 16px; padding: 22px;
      border: 1px solid rgba(0,0,0,0.07); display: flex; flex-direction: column; gap: 2px;
      transition: transform 0.25s var(--ease-out), box-shadow 0.25s, border-color 0.25s;
    }

.grass-guide-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.09); border-color: rgba(58,122,58,0.25); }

.grass-guide-name { font-size: 16px; font-weight: 700; color: var(--dark); margin-bottom: 2px; }

.grass-guide-tag {
      display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 1px;
      text-transform: uppercase; padding: 3px 10px; border-radius: 100px;
      background: rgba(58,122,58,0.08); color: var(--green);
      transition: background 0.2s, color 0.2s; margin-bottom: 4px;
    }

.grass-guide-card:hover .grass-guide-tag { background: var(--green); color: white; }

.grass-guide-row { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--mid); padding: 2px 6px; border-radius: 6px; transition: background 0.2s, color 0.15s; }

.grass-guide-row:hover { background: rgba(58,122,58,0.06); color: var(--dark); }

.grass-guide-row svg { width: 14px; height: 14px; flex-shrink: 0; transition: transform 0.2s; }

.grass-guide-row:hover svg { transform: scale(1.25); }

.grass-guide-row svg.good { fill: var(--green); }

.grass-guide-row svg.warn { fill: var(--gold); transition: fill 0.2s, transform 0.2s; }

.grass-guide-row:hover svg.warn { fill: #b8860b; }

.calc-wrap:hover { box-shadow: 0 16px 56px rgba(0,0,0,0.12); border-color: rgba(58,122,58,0.15); }

.calc-heading { font-family: var(--font-serif); font-size: 22px; font-weight: 700; color: var(--dark); margin-bottom: 20px; }

.calc-field input:hover, .calc-field select:hover { border-color: rgba(58,122,58,0.4); }

.calc-result-idle { display: flex; flex-direction: column; align-items: center; justify-content: center; flex: 1; }

.calc-result-value.large { font-family: var(--font-serif); font-size: 28px; font-weight: 900; }

.calc-result-value.gold { color: var(--earth); }

.faq-item:first-child { border-top: 1px solid rgba(0,0,0,0.09); }

/* BEFORE/AFTER GALLERY */
.gallery-intro-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 20px; align-items: stretch; }

.gallery-intro-card {
      border-radius: 20px; overflow: hidden; position: relative;
      transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
    }

.gallery-intro-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.25); }

.gallery-intro-card img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s var(--ease-out); }

.gallery-intro-card:hover img { transform: scale(1.04); }

.gallery-intro-card .gallery-caption {
      position: absolute; bottom: 0; left: 0; right: 0;
      background: linear-gradient(to top, rgba(14,31,14,0.85) 0%, transparent 100%);
      padding: 32px 20px 18px;
    }

.gallery-caption-location { font-size: 14px; font-weight: 700; color: white; display: flex; align-items: center; gap: 6px; }

.gallery-caption-location svg { width: 13px; height: 13px; fill: var(--moss); flex-shrink: 0; }

.gallery-caption-desc { font-size: 13px; color: rgba(255,255,255,0.7); margin-top: 2px; }

.gallery-intro-card.tall { min-height: 420px; }

.gallery-intro-card.short { min-height: 200px; height: 200px; }

/* STICKY SIDE CTA */
.sticky-side-cta {
      position: fixed; right: 0; top: 50%; transform: translateY(-50%);
      z-index: 90; display: flex; flex-direction: column; align-items: center;
      opacity: 0; pointer-events: none; transition: opacity 0.3s;
    }

.sticky-side-cta.visible { opacity: 1; pointer-events: all; }

.sticky-side-cta a {
      display: flex; align-items: center; gap: 8px;
      background: var(--green); color: white;
      padding: 14px 18px; border-radius: 12px 0 0 12px;
      font-size: 14px; font-weight: 700; font-family: var(--font-sans);
      writing-mode: vertical-rl; text-orientation: mixed;
      letter-spacing: 0.5px; box-shadow: -4px 4px 20px rgba(0,0,0,0.2);
      transition: background 0.2s, padding 0.2s;
    }

.sticky-side-cta a:hover { background: var(--green-lt); padding-right: 24px; }

.sticky-side-cta svg { width: 16px; height: 16px; fill: white; flex-shrink: 0; transform: rotate(90deg); }

/* ===================== STATS BAR ===================== */
.stats-bar { background: var(--forest); padding: 36px 0; position: relative; z-index: 2; }

.stats-bar-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }

.stats-bar-item {
      display: flex; align-items: center; gap: 16px; padding: 0 40px;
      border-right: 1px solid rgba(255,255,255,0.08);
    }

.stats-bar-item:last-child { border-right: none; }

.stats-bar-icon {
      width: 44px; height: 44px; border-radius: 12px;
      background: rgba(90,158,90,0.15);
      display: flex; align-items: center; justify-content: center;
      font-size: 20px; flex-shrink: 0;
    }

.stats-bar-num {
      font-family: var(--font-serif); font-size: 42px; font-weight: 700;
      color: var(--moss); line-height: 1;
    }

.stats-bar-label {
      font-size: 12px; color: rgba(255,255,255,0.45);
      line-height: 1.4; margin-top: 3px;
    }

.why-header-right p {
      font-size: 19px; color: var(--mid); font-weight: 300; line-height: 1.75;
    }


/* ============================================================
   PRODUCT CATEGORY
   ============================================================ */

button { font-family: inherit; cursor: pointer; border: none; }

/* ═══════════════ UTILITIES ═══════════════ */
.wrap { max-width: 1280px; margin: 0 auto; padding: 0 2rem; }

.section-pad { padding: 5rem 0; }

.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.eyebrow::before {
  content: '';
  width: 1.5rem;
  height: 2px;
  background: var(--green);
}

.eyebrow-light { color: var(--moss); }

.eyebrow-light::before { background: var(--moss); }

h2 {
  font-family: var(--font-serif);
  font-size: 2.25rem;
  font-weight: 900;
  color: var(--forest);
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--forest);
  line-height: 1.3;
  margin-bottom: 0.75rem;
}

.btn-gold {
  background: var(--gold);
  color: var(--dark);
}

.btn-gold:hover { background: var(--earth); color: var(--white); }

.btn-white-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
}

.btn-white-outline:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }

/* Product-page nav logo variants (scoped — does NOT affect .site-nav) */
.product-nav .nav-logo-text {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: 0.04em;
}

.product-nav .nav-logo-sub {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--moss);
}

/* Dropdown (product-page variant — overridden by .site-nav scoped rules above) */

/* Product-page nav right/phone/hamburger (scoped) */
.product-nav .nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.product-nav .nav-phone {
  font-size: 1rem;
  font-weight: 700;
  color: var(--moss);
  text-decoration: none;
  letter-spacing: 0.02em;
}

.product-nav .nav-phone:hover { color: var(--white); }

.product-nav .nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }

.product-nav .nav-hamburger.open span:nth-child(2) { opacity: 0; }

.product-nav .nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu .mob-sub a {
  font-size: 1rem;
  font-weight: 400;
  padding-left: 1.5rem;
  color: var(--moss);
  border-bottom: none;
}

/* Product page hero override (not full-viewport like homepage) */
.hero#hero-section {
  min-height: auto;
  display: block;
  background: linear-gradient(165deg, var(--forest) 0%, var(--dark) 55%, #1a3a1a 100%);
  padding: 7rem 0 3rem;
  margin-top: -72px;
}
.hero#hero-section > .hero-content {
  display: block;
  grid-template-columns: none;
  padding: 0;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 80%, rgba(58,122,58,0.2) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(42,88,42,0.15) 0%, transparent 50%);
  pointer-events: none;
  clip-path: inset(0);
}

.hero-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1.5rem;
  padding-top: 1rem;
}

.hero-breadcrumb a { color: rgba(255,255,255,0.5); transition: color 0.2s; }

.hero-breadcrumb a:hover { color: var(--moss); }

.hero-breadcrumb .sep { color: rgba(255,255,255,0.25); }

.hero-breadcrumb .current { color: var(--moss); }

.hero-subtitle {
  font-size: 1.15rem;
  font-weight: 400;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
  margin-bottom: 1.25rem;
  max-width: calc(100% - 450px);
}

/* Two-column hero layout */
.hero-split {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 2.5rem;
  align-items: start;
  margin-top: 1rem;
}

/* Left: product image (sticky while order card scrolls) */
.hero-image-col {
  position: sticky;
  top: 82px;
  align-self: start;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.hero-product-img {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(135deg, #2d6a4f 0%, #40916c 30%, #52b788 60%, #74c69d 100%);
  position: relative;
  box-shadow: 0 8px 40px rgba(0,0,0,0.25);
}

.hero-product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Thumbnail gallery */
.hero-thumbnails {
  display: flex;
  gap: 0.6rem;
  margin-top: 0.75rem;
}

.hero-thumb {
  width: 72px;
  height: 54px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid rgba(255,255,255,0.15);
  transition: border-color 0.2s, opacity 0.2s;
  position: relative;
  flex-shrink: 0;
  background: rgba(255,255,255,0.06);
}

.hero-thumb:hover { border-color: rgba(255,255,255,0.4); }

.hero-thumb.active { border-color: var(--moss); }

.hero-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Feature chips */
.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
  max-width: calc(100% - 450px);
}

.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(122, 184, 122, 0.12);
  border: 1px solid rgba(122, 184, 122, 0.25);
  color: var(--moss);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.4rem 0.85rem;
  border-radius: 100px;
  letter-spacing: 0.03em;
  cursor: default;
  transition: all 0.2s ease;
}

.hero-chip:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

.hero-chip:hover svg { color: var(--white); transform: scale(1.3); }

.hero-chip svg { width: 13px; height: 13px; flex-shrink: 0; transition: color 0.2s ease, transform 0.2s ease; }

/* Right: order card in hero */
.hero-order-col {
  position: relative;
}

.order-card {
  background: linear-gradient(135deg, var(--forest) 0%, var(--forest-mid) 100%);
  border-radius: 20px;
  padding: 2rem 2rem 1.75rem;
  color: var(--white);
  box-shadow: 0 8px 40px rgba(0,0,0,0.3), 0 0 0 1px rgba(255,255,255,0.06);
  border: 1px solid rgba(122,184,122,0.15);
}

.order-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.order-card h2 {
  color: var(--white);
  font-size: 1.35rem;
  margin-bottom: 0;
}

.order-card-badge {
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.35);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.35rem 0.85rem;
  border-radius: 100px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.order-row {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

.order-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

/* Row 1: five quick-pick buttons */
.pallet-row-top {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.4rem;
  margin-bottom: 0.5rem;
}

.pallet-btn {
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(255,255,255,0.15);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.55rem 0;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
}

.pallet-btn:hover { background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.3); }

.pallet-btn.active {
  background: var(--green-lt);
  border-color: var(--green-lt);
  color: var(--white);
}

/* Row 2: 10+ button left, slider right */
.pallet-row-bottom {
  display: grid;
  grid-template-columns: 1fr 4fr;
  gap: 0.5rem;
  align-items: center;
}

.pallet-btn-ten {
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(255,255,255,0.15);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.5rem 0;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
}

.pallet-btn-ten:hover { background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.3); }

.pallet-btn-ten.active {
  background: var(--green-lt);
  border-color: var(--green-lt);
}

.pallet-slider-wrap {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.pallet-slider-wrap .slider-val {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  min-width: 28px;
  text-align: center;
}

.pallet-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: rgba(255,255,255,0.12);
  outline: none;
  cursor: pointer;
}

.pallet-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--green-lt);
  border: 2px solid var(--white);
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.25);
  transition: transform 0.15s;
}

.pallet-slider::-webkit-slider-thumb:hover { transform: scale(1.15); }

.pallet-slider::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--green-lt);
  border: 2px solid var(--white);
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.25);
}

.pallet-slider::-moz-range-track {
  height: 6px;
  border-radius: 3px;
  background: rgba(255,255,255,0.12);
}

.waste-options {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.waste-btn {
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(255,255,255,0.15);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
}

.waste-btn:hover { background: rgba(255,255,255,0.15); }

.waste-btn.active { background: var(--green-lt); border-color: var(--green-lt); }

.order-results {
  background: rgba(0,0,0,0.15);
  border-radius: 12px;
  padding: 1.25rem 1.25rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.order-result-item { text-align: center; }

.order-result-value {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1.2;
}

.order-result-label {
  font-size: 0.7rem;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  margin-top: 0.15rem;
}

.order-ctas {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1rem;
}

.order-ctas .btn {
  width: 100%;
  justify-content: center;
  font-size: 0.9rem;
  padding: 0.75rem 1rem;
}

.order-trust {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.order-trust-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
}

.order-trust-item svg { width: 13px; height: 13px; color: var(--moss); flex-shrink: 0; }

/* Price highlight in hero */
.hero-price-row {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.hero-price-main {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 900;
  color: var(--white);
}

.hero-price-unit {
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
}

/* ═══════════════ WHY ST. AUGUSTINE ═══════════════ */
.why-section {
  background: var(--cream);
  padding: 5rem 0;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 3rem;
  align-items: start;
}

.why-text p {
  font-size: 1.1rem;
  color: var(--mid);
  margin-bottom: 1.25rem;
  line-height: 1.75;
}

.specs-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.04);
  position: sticky;
  top: 100px;
}

.specs-card h3 {
  font-size: 1.15rem;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.specs-table {
  width: 100%;
}

.specs-table tr { border-bottom: 1px solid var(--sand); }

.specs-table tr:last-child { border-bottom: none; }

.specs-table td {
  padding: 0.75rem 0;
  font-size: 1rem;
  vertical-align: top;
}

.specs-table td:first-child {
  font-weight: 600;
  color: var(--forest);
  width: 42%;
  padding-right: 1rem;
}

.specs-table td:last-child {
  color: var(--mid);
}

/* ═══════════════ CARE GUIDE ═══════════════ */
.care-section {
  background: var(--sand);
  padding: 5rem 0;
}

.care-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 3rem;
  align-items: start;
}

.care-text-col {
  min-width: 0;
}

.care-image {
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(160deg, #2d6a4f 0%, #40916c 30%, #52b788 55%, #74c69d 80%, #95d5b2 100%);
  min-height: 500px;
  position: sticky;
  top: 100px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.1);
}

.care-image img {
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
  display: block;
}

.care-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  border-bottom: 2px solid var(--warm);
  margin-bottom: 2.5rem;
}

.care-tab {
  background: none;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--muted);
  padding: 0.75rem 1.1rem;
  border: none;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  cursor: pointer;
  transition: all 0.2s;
}

.care-tab:hover { color: var(--forest); }

.care-tab.active {
  color: var(--forest);
  border-bottom-color: var(--green);
}

.care-panel {
  display: none;
}

.care-panel.active { display: block; }

.care-panel h3 { margin-bottom: 1rem; }

.care-panel p {
  font-size: 1.05rem;
  color: var(--mid);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.care-tip {
  background: var(--white);
  border-left: 4px solid var(--green);
  border-radius: 0 12px 12px 0;
  padding: 1.25rem 1.5rem;
  margin-top: 1.5rem;
}

.care-tip p {
  font-size: 0.95rem;
  color: var(--mid);
  margin-bottom: 0;
}

.care-tip strong { color: var(--forest); }

/* ═══════════════ CALCULATOR ═══════════════ */
.calc-section {
  background: var(--white);
  padding: 5rem 0;
}

.calc-inputs {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

/* ═══════════════ HOW TO ORDER ═══════════════ */
.how-section {
  background: linear-gradient(165deg, var(--forest) 0%, var(--dark) 55%, var(--forest-mid) 100%);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.how-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 80% 20%, rgba(58,122,58,0.15) 0%, transparent 50%);
  pointer-events: none;
}

.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 2.5rem;
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.how-step {
  text-align: center;
  position: relative;
}

.how-step-num {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  box-shadow: 0 4px 20px rgba(58,122,58,0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.how-step:hover .how-step-num {
  transform: scale(1.15);
  box-shadow: 0 6px 28px rgba(58,122,58,0.45);
}

.how-step h3 {
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.how-step p {
  color: rgba(255,255,255,0.7);
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 280px;
  margin: 0 auto;
}

.how-connector {
  position: absolute;
  top: 36px;
  left: calc(50% + 44px);
  width: calc(100% - 88px);
  height: 2px;
  background: rgba(122,184,122,0.25);
}

.how-step:last-child .how-connector { display: none; }

.how-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 3rem;
  position: relative;
  z-index: 1;
}

/* ═══════════════ FAQ ═══════════════ */
.faq-section {
  background: var(--cream);
  padding: 5rem 0;
}

.faq-question:focus-visible { outline: 2px solid var(--green); outline-offset: -2px; }

/* ═══════════════ RELATED PRODUCTS ═══════════════ */
.related-section {
  background: var(--white);
  padding: 5rem 0;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.related-card {
  background: var(--card-bg);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.related-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(0,0,0,0.08); }

.related-img {
  height: 160px;
  overflow: hidden;
}

.related-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.related-img-bermuda { background: linear-gradient(135deg, #2d8a3e 0%, #60b04e 100%); }

.related-img-zoysia { background: linear-gradient(135deg, #4a7a3a 0%, #7ab87a 100%); }

.related-img-centipede { background: linear-gradient(135deg, #5a8a3a 0%, #8bc87a 100%); }

.related-body {
  padding: 1.5rem;
}

.related-body h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.related-body p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.related-price {
  font-size: 1rem;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 1rem;
}

.related-link {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--green);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: gap 0.2s;
}

.related-link:hover { gap: 0.6rem; color: var(--forest); }

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-section h2 {
  color: var(--white);
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta-phone {
  font-family: var(--font-serif);
  font-size: 2.75rem;
  font-weight: 900;
  color: var(--moss);
  text-decoration: none;
  display: block;
  margin-bottom: 1rem;
  transition: color 0.2s;
}

.cta-phone:hover { color: var(--white); }

.cta-delivery {
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.footer-brand .nav-logo-text {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.footer-contact p {
  font-size: 0.95rem;
  margin-bottom: 0.35rem;
}

/* ═══════════════ RESPONSIVE ═══════════════ */
@media (max-width: 1024px) {
  .hero h1 { font-size: 2.25rem; }
  .hero-split { grid-template-columns: 1fr 380px; gap: 2rem; }
  .why-grid { grid-template-columns: 1fr; }
  .specs-card { position: static; }
  .care-grid { grid-template-columns: 1fr; }
  .care-image { min-height: 300px; position: static; }
  .how-steps { grid-template-columns: 1fr; }
  .how-connector { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  .wrap { padding: 0 1.25rem; }
  .section-pad { padding: 3.5rem 0; }
  .product-nav .nav-links, .nav-right .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .hero { padding: 5.5rem 0 2.5rem; }
  .hero h1 { font-size: 2rem; }
  .hero-subtitle { font-size: 0.95rem; max-width: 100%; }
  .hero-chips { max-width: 100%; }
  .hero-split { grid-template-columns: 1fr; gap: 1.5rem; }
  .hero-image-col { position: static; }
  .hero-product-img { aspect-ratio: 16/9; }
  .hero-thumbnails { gap: 0.5rem; }
  .hero-thumb { width: 64px; height: 48px; }
  .order-card { padding: 1.5rem; }
  .order-results { grid-template-columns: repeat(3, 1fr); }
  h2 { font-size: 1.75rem; }

  .calc-inputs { grid-template-columns: 1fr; }
  .calc-results { grid-template-columns: 1fr; gap: 1rem; }
  .related-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-section h2 { font-size: 1.75rem; }
  .cta-phone { font-size: 2rem; }
  .care-tabs { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .care-tab { white-space: nowrap; padding: 0.75rem 1rem; font-size: 0.85rem; }
}

/* ═══════════════ FOCUS VISIBLE ═══════════════ */
:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 2px;
}

a:focus:not(:focus-visible),
button:focus:not(:focus-visible) {
  outline: none;
}


/* ============================================================
   GRASS VARIETY PAGES
   ============================================================ */

.grass-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-top: 32px;
}
.grass-intro-grid .intro-content { margin: 0; }
.grass-intro-grid .intro-image img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  object-fit: cover;
}
@media (max-width: 768px) {
  .grass-intro-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.hero-interior .hero-desc {
  font-size: 18px;
  font-weight: 300;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: 0;
}

.breadcrumb-sep {
  color: rgba(255,255,255,0.3);
  font-size: 12px;
}

.content-wide {
  max-width: 800px;
}

.content-wide p {
  color: var(--mid);
  margin-bottom: 20px;
  font-size: 17px;
  line-height: 1.75;
}

.content-wide p:last-child { margin-bottom: 0; }

.specs-list {
  display: grid;
  gap: 16px;
}

.spec-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--sand);
}

.spec-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.spec-row:hover {
  background: var(--cream);
}

.spec-label {
  font-weight: 600;
  color: var(--forest);
  min-width: 180px;
  font-size: 15px;
}

.spec-value {
  color: var(--mid);
  font-size: 15px;
}

/* ========================================
   VARIETY CARDS
   ======================================== */
.variety-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.variety-card {
  background: var(--white);
  border-radius: 20px;
  padding: 40px 32px;
  transition: all 0.4s ease;
  border: 1px solid rgba(0,0,0,0.04);
}

.variety-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(28,58,28,0.1);
}

.variety-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.variety-card-icon svg {
  width: 28px;
  height: 28px;
  color: var(--green);
  transition: transform 0.3s ease;
}

.variety-card:hover .variety-card-icon svg {
  transform: scale(1.25);
}

.variety-card h3 {
  font-size: 24px;
  font-weight: 900;
  margin-bottom: 12px;
  color: var(--forest);
}

.variety-card p {
  color: var(--mid);
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1.7;
}

.variety-card p:last-child { margin-bottom: 0; }

a.variety-card {
  text-decoration: none;
  color: inherit;
  display: block;
  cursor: pointer;
}

.variety-cta {
  display: inline-block;
  margin-top: 8px;
  color: var(--green);
  font-weight: 600;
  font-size: 15px;
  transition: transform 0.3s ease;
}

.variety-card:hover .variety-cta {
  transform: translateX(4px);
}

/* 3-card grid: use 3 columns so cards fill evenly */
.variety-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 768px) {
  .variety-grid-3 {
    grid-template-columns: 1fr;
  }
}

/* ========================================
   PRICING SECTION
   ======================================== */
.pricing-box {
  background: var(--white);
  border-radius: 20px;
  padding: 48px 40px;
  border: 1px solid rgba(0,0,0,0.04);
  max-width: 680px;
}

.pricing-box h3 {
  font-size: 24px;
  font-weight: 900;
  color: var(--forest);
  margin-bottom: 12px;
}

.pricing-range {
  font-family: var(--font-serif);
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 900;
  color: var(--forest);
  line-height: 1.1;
  margin-bottom: 8px;
}

.pricing-range .per {
  font-size: 18px;
  font-weight: 400;
  color: var(--muted);
  font-family: var(--font-sans);
}

.pricing-box p {
  color: var(--mid);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 16px;
}

.pricing-box p:last-of-type { margin-bottom: 28px; }

/* Care grid: 2x2 when used with care-cards (not the text+image layout) */
.care-grid:has(> .care-card) {
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 768px) {
  .care-grid:has(> .care-card) {
    grid-template-columns: 1fr;
  }
}

/* Pricing grid: pricing box + image side by side */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.pricing-grid .pricing-box,
.pricing-grid .pricing-content {
  max-width: none;
}
.pricing-image img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}
@media (max-width: 768px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* Specs grid: support for specs-card variant */
.specs-grid .specs-card {
  position: static;
  max-width: none;
  margin-top: 0;
}

.care-card {
  background: var(--white);
  border-radius: 20px;
  padding: 36px 28px;
  transition: all 0.4s ease;
  border: 1px solid rgba(0,0,0,0.04);
}

.care-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(28,58,28,0.12);
}

.care-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.care-card-icon svg { transition: transform 0.3s ease; }

.care-card-icon:hover svg { transform: scale(1.25); }

.care-card:hover .care-card-icon svg {
  transform: scale(1.25);
}

.care-card h3 {
  font-size: 20px;
  font-weight: 900;
  color: var(--forest);
  margin-bottom: 10px;
}

.care-card p {
  color: var(--mid);
  font-size: 16px;
  line-height: 1.7;
}


/* ============================================================
   BLOG PAGES
   ============================================================ */

/* ========================================
   GRASS TYPE TABS
   ======================================== */
.grass-tabs {
  margin-top: 48px;
}

.tab-buttons {
  display: flex;
  gap: 8px;
  margin-bottom: 0;
  position: relative;
  border-bottom: 2px solid var(--sand);
}

.tab-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 18px;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  position: relative;
}

.tab-btn:hover {
  color: var(--forest);
  background: rgba(28,58,28,0.03);
}

.tab-btn.active {
  color: var(--forest);
  border-bottom-color: var(--green);
}

.tab-btn .tab-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.tab-btn .tab-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tab-panel {
  display: none;
  animation: tabFadeIn 0.4s ease;
}

.tab-panel.active {
  display: block;
}

@keyframes tabFadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.tab-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  padding: 40px 0;
  align-items: start;
}

.tab-image-col {
  position: sticky;
  top: 100px;
  align-self: start;
}

.tab-image-col img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 20px;
  display: block;
}

.tab-image-col .tab-image-caption {
  margin-top: 16px;
  font-size: 14px;
  color: var(--muted);
  text-align: center;
}

.tab-info-col h3 {
  font-family: var(--font-serif);
  font-weight: 900;
  font-size: 32px;
  color: var(--forest);
  margin-bottom: 8px;
  line-height: 1.15;
}

.tab-info-col .grass-tagline {
  font-size: 17px;
  font-weight: 500;
  color: var(--green);
  margin-bottom: 20px;
}

.tab-info-col .tab-desc {
  color: var(--mid);
  margin-bottom: 24px;
  font-size: 17px;
  line-height: 1.8;
}

.tab-info-col .best-for {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: var(--cream);
  border-radius: 12px;
  padding: 16px 20px;
  margin-bottom: 28px;
  font-size: 16px;
  color: var(--mid);
  line-height: 1.6;
}

.tab-info-col .best-for svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--green);
  margin-top: 2px;
}

.tab-info-col .best-for strong {
  color: var(--forest);
  white-space: nowrap;
}

/* Specs table inside tabs */
.specs-mini {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 28px;
  font-size: 15px;
}

.specs-mini th,
.specs-mini td {
  text-align: left;
  padding: 10px 14px;
  border-bottom: 1px solid var(--sand);
}

.specs-mini th {
  font-weight: 600;
  color: var(--forest);
  width: 42%;
  font-family: var(--font-sans);
}

.specs-mini td {
  color: var(--mid);
}

.specs-mini tr:last-child th,
.specs-mini tr:last-child td {
  border-bottom: none;
}

.specs-mini tr {
  transition: background 0.2s ease;
}

.specs-mini tr:hover {
  background: var(--cream);
}

.grass-pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 28px;
}

.pros-list, .cons-list {
  font-size: 15px;
  line-height: 1.7;
}

.pros-list h4, .cons-list h4 {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.pros-list h4 { color: var(--green); }

.cons-list h4 { color: var(--earth); }

.pros-list li, .cons-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
  color: var(--mid);
  transition: transform 0.2s ease;
  cursor: default;
}

.pros-list li:hover, .cons-list li:hover {
  transform: translateX(6px);
}

.pros-list li::before {
  content: '+';
  position: absolute;
  left: 0;
  font-weight: 700;
  color: var(--green);
}

.cons-list li::before {
  content: '\2212';
  position: absolute;
  left: 0;
  font-weight: 700;
  color: var(--earth);
}

.grass-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green);
  font-weight: 600;
  font-size: 16px;
  padding: 12px 24px;
  background: var(--cream);
  border-radius: 100px;
  transition: all 0.3s ease;
}

.grass-card-link:hover {
  background: var(--forest);
  color: var(--white);
  gap: 12px;
  transform: translateY(-2px);
}

.grass-card-link svg {
  width: 16px;
  height: 16px;
  transition: transform 0.2s;
}

.grass-card-link:hover svg {
  transform: translateX(4px);
}

/* ========================================
   DECISION GUIDE
   ======================================== */
.decision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 32px;
}

.decision-card {
  background: var(--white);
  border-radius: 16px;
  padding: 28px 24px;
  border: 1px solid rgba(0,0,0,0.04);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.decision-card:hover {
  box-shadow: 0 12px 40px rgba(28,58,28,0.08);
  transform: translateY(-3px);
}

.decision-card h3 {
  font-family: var(--font-serif);
  font-weight: 900;
  font-size: 20px;
  color: var(--forest);
  margin-bottom: 8px;
}

.decision-card .recommend {
  font-weight: 700;
  color: var(--green);
}

.decision-card p {
  color: var(--mid);
  font-size: 15px;
  line-height: 1.7;
}

/* ========================================
   COMPARISON TABLE
   ======================================== */
.comparison-wrap {
  overflow-x: auto;
  margin: 32px 0;
  -webkit-overflow-scrolling: touch;
}

.comparison-table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
  font-size: 15px;
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.04);
}

.comparison-table thead th {
  background: var(--forest);
  color: var(--white);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
  padding: 14px 16px;
  text-align: left;
  white-space: nowrap;
}

.comparison-table thead th:first-child {
  border-radius: 16px 0 0 0;
}

.comparison-table thead th:last-child {
  border-radius: 0 16px 0 0;
}

.comparison-table tbody td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--sand);
  color: var(--mid);
  vertical-align: top;
}

.comparison-table tbody td:first-child {
  font-weight: 600;
  color: var(--forest);
  white-space: nowrap;
}

.comparison-table tbody tr:last-child td {
  border-bottom: none;
}

.comparison-table tbody tr:hover td {
  background: var(--cream);
}

/* ========================================
   AEO ANSWER BLOCK
   ======================================== */
.aeo-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: center;
}

.aeo-image-col img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 20px;
  display: block;
}

.aeo-block:hover {
  box-shadow: 0 12px 40px rgba(28,58,28,0.08);
  transform: translateY(-2px);
}

.aeo-block h3 {
  font-size: 22px;
  color: var(--forest);
  margin-top: 0;
  margin-bottom: 16px;
}

.aeo-block p:last-child {
  margin-bottom: 0;
}


/* ============================================================
   BLOG (NEW SOD CARE)
   ============================================================ */

/* ── Reset & Base (scoped — global reset already in shared base) ── */

.article-layout a:hover, .article-header a:hover{color:#c9a84c}

/* ── Reading Progress Bar ── */
.progress-bar{position:fixed;top:0;left:0;width:0;height:3px;background:var(--gold);z-index:10000;transition:width .1s linear}

/* ── Blog Navigation (scoped — does NOT affect .site-nav) ── */
.blog-nav{background:var(--forest);position:sticky;top:0;z-index:9999;border-bottom:3px solid var(--gold)}

.blog-nav .nav-logo:hover{color:var(--gold)}

.blog-nav .nav-logo:hover svg{transform:scale(1.2)}

.blog-nav .nav-menu{display:flex;align-items:center;gap:28px}

.blog-nav .nav-menu a{color:rgba(255,255,255,.88);font-size:15px;font-weight:500;text-decoration:none;transition:color .3s ease}

.blog-nav .nav-menu a:hover{color:var(--gold)}

.blog-nav .nav-toggle{display:none;flex-direction:column;gap:5px;background:none;border:none;cursor:pointer;padding:8px}

.blog-nav .nav-toggle span{width:26px;height:2px;background:var(--white);border-radius:2px;transition:all .3s ease}

.breadcrumb .container{max-width:1200px;margin:0 auto;padding:0 24px}

.breadcrumb span{margin:0 6px;color:#999}

/* ── Article Header ── */
.article-header{background:var(--cream);padding:56px 0 48px;text-align:center}

.article-header .container{max-width:800px;margin:0 auto;padding:0 24px}

.article-header .category-badge{display:inline-block;background:var(--forest);color:var(--white);font-size:12px;font-weight:700;letter-spacing:1.2px;text-transform:uppercase;padding:5px 16px;border-radius:50px;margin-bottom:20px}

.article-header h1{font-family:'Playfair Display',serif;font-size:clamp(32px,5vw,48px);font-weight:900;color:var(--forest);line-height:1.2;margin-bottom:20px}

.article-header .article-intro{font-size:18px;line-height:1.8;color:var(--text-light);max-width:640px;margin:0 auto 24px}

.article-meta{display:flex;align-items:center;justify-content:center;gap:24px;flex-wrap:wrap;font-size:14px;color:var(--text-light)}

.article-meta .meta-item{display:flex;align-items:center;gap:6px}

.article-meta svg{width:16px;height:16px;fill:var(--gold);transition:transform .3s ease}

.article-meta svg:hover{transform:scale(1.2)}

.meta-divider{width:4px;height:4px;border-radius:50%;background:var(--gold)}

/* ── Article Layout ── */
.article-layout{max-width:1200px;margin:0 auto;padding:48px 24px;display:grid;grid-template-columns:260px 1fr;gap:48px;align-items:start}

/* ── Sticky TOC Sidebar ── */
.toc-sidebar{position:sticky;top:82px;align-self:start}

.toc-card{background:var(--cream);border-radius:var(--radius);padding:28px 24px;border-left:4px solid var(--gold)}

.toc-card h3{font-family:'Playfair Display',serif;font-size:18px;font-weight:700;color:var(--forest);margin-bottom:16px}

.toc-list{list-style:none;padding:0}

.toc-list li{margin-bottom:10px}

.toc-list a{font-size:14px;color:var(--text-light);font-weight:500;display:block;padding:4px 0;border-left:2px solid transparent;padding-left:12px;transition:all .3s ease}

.toc-list a:hover,.toc-list a.active{color:var(--forest);border-left-color:var(--gold);font-weight:600}

/* ── Mobile TOC Dropdown ── */
.toc-mobile{display:none;margin-bottom:32px}

.toc-mobile-toggle{width:100%;background:var(--cream);border:1px solid var(--sand);border-radius:var(--radius);padding:14px 20px;font-family:'DM Sans',sans-serif;font-size:15px;font-weight:600;color:var(--forest);cursor:pointer;display:flex;align-items:center;justify-content:space-between}

.toc-mobile-toggle svg{width:20px;height:20px;fill:var(--gold);transition:transform .3s ease}

.toc-mobile-toggle svg:hover{transform:scale(1.2)}

.toc-mobile-toggle.open svg{transform:rotate(180deg)}

.toc-mobile-list{list-style:none;padding:0;background:var(--cream);border:1px solid var(--sand);border-top:none;border-radius:0 0 var(--radius) var(--radius);max-height:0;overflow:hidden;transition:max-height .4s ease}

.toc-mobile-list.open{max-height:500px}

.toc-mobile-list li a{display:block;padding:10px 20px;font-size:14px;color:var(--text-light);border-bottom:1px solid var(--sand);transition:color .3s ease,background .3s ease}

.toc-mobile-list li:last-child a{border-bottom:none}

.toc-mobile-list li a:hover{background:var(--sand);color:var(--forest)}

/* ── Article Content ── */
.article-content{min-width:0}

.article-content h2{font-family:'Playfair Display',serif;font-size:clamp(24px,3.5vw,32px);font-weight:700;color:var(--forest);margin:48px 0 20px;line-height:1.3}

.article-content h2:first-of-type{margin-top:0}

.article-content h3{font-family:'Playfair Display',serif;font-size:22px;font-weight:700;color:var(--forest);margin:32px 0 14px}

.article-content p{margin-bottom:18px;color:var(--text)}

.article-content ul,.article-content ol{margin:0 0 20px 24px;color:var(--text)}

.article-content li{margin-bottom:8px}

.article-content strong{color:var(--forest)}

/* ── Drop Cap ── */
.drop-cap::first-letter{float:left;font-family:'Playfair Display',serif;font-size:68px;font-weight:900;color:var(--forest);line-height:.85;margin:4px 12px 0 0;padding-top:4px}

/* ── Pull Quote ── */
.pull-quote{border-left:4px solid var(--gold);padding:20px 28px;margin:32px 0;background:var(--cream);border-radius:0 var(--radius) var(--radius) 0;font-size:19px;font-style:italic;font-family:'Playfair Display',serif;color:var(--forest);line-height:1.6}

/* ── Callout Boxes ── */
.callout{border-radius:var(--radius);padding:20px 24px;margin:28px 0;display:flex;gap:14px;align-items:flex-start}

.callout svg{flex-shrink:0;width:22px;height:22px;margin-top:2px;transition:transform .3s ease}

.callout svg:hover{transform:scale(1.2)}

.callout-content{flex:1}

.callout-content strong{display:block;margin-bottom:4px;font-size:15px}

.callout-content p{margin:0;font-size:15px;line-height:1.6}

.callout-tip{background:#eaf5ea;border:1px solid #b8ddb8}

.callout-tip svg{fill:var(--moss)}

.callout-tip strong{color:var(--moss)}

.callout-warning{background:#fef8e7;border:1px solid #e8d68a}

.callout-warning svg{fill:#b8860b}

.callout-warning strong{color:#8b6914}

/* ── Numbered Mistakes List ── */
.mistakes-list{counter-reset:mistakes;list-style:none;padding:0;margin:24px 0}

.mistakes-list li{counter-increment:mistakes;display:flex;gap:16px;align-items:flex-start;margin-bottom:18px;padding:16px 20px;background:var(--cream);border-radius:var(--radius);border:1px solid var(--sand)}

.mistakes-list li::before{content:counter(mistakes);flex-shrink:0;width:32px;height:32px;border-radius:50%;background:var(--forest);color:var(--white);font-weight:700;font-size:14px;display:flex;align-items:center;justify-content:center;margin-top:2px}

.faq-section .container{max-width:800px;margin:0 auto;padding:0 24px}

.faq-section h2{font-family:'Playfair Display',serif;font-size:clamp(26px,4vw,36px);font-weight:700;color:var(--forest);text-align:center;margin-bottom:36px}

.faq-question svg{flex-shrink:0;width:20px;height:20px;fill:var(--gold);transition:transform .3s ease}

.faq-question svg:hover{transform:scale(1.2)}

.faq-question[aria-expanded="true"] svg{transform:rotate(180deg)}

.related-section .container{max-width:1200px;margin:0 auto;padding:0 24px}

.related-section h2{font-family:'Playfair Display',serif;font-size:clamp(26px,4vw,36px);font-weight:700;color:var(--forest);text-align:center;margin-bottom:40px}

.related-card-img{height:180px;background:var(--sand);display:flex;align-items:center;justify-content:center}

.related-card-img svg{width:48px;height:48px;fill:var(--moss);opacity:.5;transition:transform .3s ease}

.related-card:hover .related-card-img svg{transform:scale(1.2)}

.related-card-body{padding:24px}

.related-card-body .card-category{font-size:12px;font-weight:700;text-transform:uppercase;letter-spacing:1px;color:var(--gold);margin-bottom:8px}

.related-card-body h3{font-family:'Playfair Display',serif;font-size:19px;font-weight:700;color:var(--forest);margin-bottom:10px;line-height:1.3}

.related-card-body p{font-size:14px;color:var(--text-light);line-height:1.6;margin-bottom:14px}

.related-card-body .read-more{font-size:14px;font-weight:600;color:var(--forest);display:inline-flex;align-items:center;gap:6px;transition:color .3s ease}

.related-card:hover .read-more{color:var(--gold)}

.related-card-body .read-more svg{width:14px;height:14px;fill:currentColor;transition:transform .3s ease}

.related-card:hover .read-more svg{transform:translateX(4px)}

/* ── Author Card ── */
.author-card{max-width:800px;margin:0 auto;padding:48px 24px}

.author-inner{display:flex;gap:24px;align-items:center;background:var(--cream);border-radius:var(--radius);padding:28px 32px;border:1px solid var(--sand)}

.author-avatar{width:72px;height:72px;border-radius:50%;background:var(--forest);display:flex;align-items:center;justify-content:center;flex-shrink:0}

.author-avatar svg{width:36px;height:36px;fill:var(--gold);transition:transform .3s ease}

.author-avatar:hover svg{transform:scale(1.2)}

.author-info h4{font-family:'Playfair Display',serif;font-size:18px;font-weight:700;color:var(--forest);margin-bottom:4px}

.author-info p{font-size:14px;color:var(--text-light);line-height:1.6;margin:0}

.cta-section .container{max-width:700px;margin:0 auto;padding:0 24px}

.cta-section p{font-size:18px;color:rgba(255,255,255,.8);margin-bottom:32px;line-height:1.7}

.btn-gold svg{width:18px;height:18px;fill:currentColor;transition:transform .3s ease}

.btn-gold:hover svg{transform:scale(1.2)}

/* ── Footer ── */
.footer{background:var(--forest);color:rgba(255,255,255,.75);padding:64px 0 0;border-top:3px solid var(--gold)}

.footer .container{max-width:1200px;margin:0 auto;padding:0 24px}

.footer h4{font-family:'Playfair Display',serif;font-size:18px;font-weight:700;color:var(--white);margin-bottom:16px}

.footer p{font-size:14px;line-height:1.7;margin-bottom:12px}

.footer a{color:rgba(255,255,255,.75);text-decoration:none;transition:color .3s ease}

.footer a:hover{color:var(--gold)}

.footer-links li{margin-bottom:10px}

.footer-links svg{width:14px;height:14px;fill:var(--gold);transition:transform .3s ease}

.footer-links a:hover svg{transform:scale(1.2)}

.footer-contact svg{width:18px;height:18px;fill:var(--gold);flex-shrink:0;transition:transform .3s ease}

.footer-contact a:hover svg{transform:scale(1.2)}

.footer-social{display:flex;gap:12px;margin-top:16px}

/* ── Mobile Responsive ── */
@media(max-width:1024px){
  .article-layout{grid-template-columns:220px 1fr;gap:32px}
}

@media(max-width:768px){
  .blog-nav .nav-inner{padding:0 20px;height:64px}
  .blog-nav .nav-menu{position:fixed;top:64px;left:0;right:0;bottom:0;background:var(--forest);flex-direction:column;align-items:center;justify-content:center;gap:24px;transform:translateX(100%);transition:transform .3s ease;z-index:9998}
  .blog-nav .nav-menu.open{transform:translateX(0)}
  .blog-nav .nav-menu a{font-size:18px}
  .blog-nav .nav-toggle{display:flex}

  .article-layout{grid-template-columns:1fr;gap:0}
  .toc-sidebar{display:none;position:static}
  .toc-mobile{display:block}

  .related-grid{grid-template-columns:1fr}
  .footer-grid{grid-template-columns:1fr 1fr;gap:32px}
  .author-inner{flex-direction:column;text-align:center}
  .article-header{padding:40px 0 36px}
  .cta-buttons{flex-direction:column;align-items:center}
}

@media(max-width:480px){
  .footer-grid{grid-template-columns:1fr}
  .article-meta{flex-direction:column;gap:10px}
  .meta-divider{display:none}
}


/* ============================================================
   LEGAL PAGES
   ============================================================ */

.blog-nav.scrolled {
  padding: 10px 0;
  box-shadow: 0 2px 24px rgba(0,0,0,0.15);
}

.blog-nav .nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }

.blog-nav .nav-toggle.active span:nth-child(2) { opacity: 0; }

.blog-nav .nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.blog-nav .nav-mobile-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(17, 24, 16, 0.97);
  backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.blog-nav .nav-mobile-overlay.open { display: flex; opacity: 1; }

.blog-nav .nav-mobile-overlay a {
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 700;
  transition: color 0.2s;
}

.blog-nav .nav-mobile-overlay a:hover { color: var(--moss); }

/* ========================================
   LEGAL CONTENT
   ======================================== */
.legal-section {
  padding: 80px 0 100px;
  background: var(--cream);
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-updated {
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  background: var(--sand);
  padding: 8px 20px;
  border-radius: 100px;
  margin-bottom: 48px;
}

.legal-content h2 {
  font-size: clamp(22px, 3vw, 28px);
  color: var(--forest);
  margin-top: 48px;
  margin-bottom: 16px;
  line-height: 1.25;
}

.legal-content h2:first-of-type { margin-top: 0; }

.legal-content p {
  color: var(--mid);
  margin-bottom: 16px;
  line-height: 1.8;
}

.legal-content ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
}

.legal-content ul li {
  color: var(--mid);
  margin-bottom: 8px;
  line-height: 1.75;
}

.legal-content a {
  color: var(--green);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-content a:hover { color: var(--forest); }

.legal-contact-box {
  margin-top: 48px;
  padding: 32px;
  background: var(--sand);
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,0.04);
}

.legal-contact-box h2 { margin-top: 0; margin-bottom: 16px; }

.legal-contact-box p { margin-bottom: 8px; }

.legal-divider {
  width: 60px;
  height: 3px;
  background: var(--gold);
  border: none;
  border-radius: 2px;
  margin: 48px 0;
}

.footer-legal a {
  color: rgba(255,255,255,0.5);
  margin-left: 24px;
  transition: color 0.2s;
}

.footer-legal a:hover { color: var(--moss); }


/* ============================================================
   ST AUGUSTINE SOD
   ============================================================ */

.specs-card ul {
  list-style: none;
}

.specs-card li {
  padding: 12px 0;
  border-bottom: 1px solid var(--sand);
  font-size: 16px;
  color: var(--mid);
  display: flex;
  gap: 8px;
  line-height: 1.6;
}

.specs-card li:last-child { border-bottom: none; }

.specs-card li strong {
  color: var(--forest);
  font-weight: 600;
  min-width: 160px;
  flex-shrink: 0;
}

.variety-card-badge {
  display: inline-block;
  background: var(--forest);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.pricing-highlight {
  background: var(--white);
  border-radius: 16px;
  padding: 28px 32px;
  border-left: 4px solid var(--green);
  margin: 32px 0;
  max-width: 640px;
}

.pricing-highlight p {
  color: var(--forest);
  font-weight: 500;
  font-size: 18px;
  margin-bottom: 0;
}


/* ============================================================
   ZOYSIA SOD
   ============================================================ */

.breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 400;
  color: rgba(255,255,255,0.5);
}

.breadcrumb-list a {
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}

.breadcrumb-list a:hover { color: var(--moss); }

.breadcrumb-current { color: var(--moss); font-weight: 500; }

.content-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

/* ========================================
   WHY ZOYSIA BENEFITS
   ======================================== */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.benefit-card {
  background: var(--white);
  border-radius: 20px;
  padding: 36px 28px;
  transition: all 0.4s ease;
  border: 1px solid rgba(0,0,0,0.04);
}

.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(28,58,28,0.1);
}

.benefit-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.benefit-icon svg {
  width: 24px;
  height: 24px;
  color: var(--green);
}

.benefit-card h3 {
  font-size: 20px;
  font-weight: 900;
  color: var(--forest);
  margin-bottom: 10px;
}

.benefit-card p {
  color: var(--mid);
  font-size: 16px;
  line-height: 1.7;
}

/* ========================================
   SPECS TABLE
   ======================================== */
.specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-top: 40px;
}
.specs-grid .specs-table-wrap {
  max-width: none;
  margin-top: 0;
}
.specs-image img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  object-fit: cover;
}
@media (max-width: 768px) {
  .specs-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
.specs-table-wrap {
  max-width: 680px;
  margin-top: 40px;
  border-radius: 20px;
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.04);
  overflow: hidden;
}

.specs-table tr td {
  padding: 16px 24px;
  font-size: 16px;
  border-bottom: 1px solid var(--sand);
  vertical-align: top;
}

.specs-table tr:last-child td { border-bottom: none; }

.specs-table tr td:first-child {
  font-weight: 600;
  color: var(--forest);
  white-space: nowrap;
  width: 200px;
}

.specs-table tr td:last-child {
  color: var(--mid);
}

.specs-table tr:hover td { background: rgba(247,243,236,0.5); }

@media (max-width: 620px) {
  .table-scroll-hint { display: block; }
}

/* Compare description */
.compare-desc {
  max-width: 720px;
  margin-top: 32px;
}

.compare-desc p {
  color: var(--mid);
  margin-bottom: 16px;
  line-height: 1.75;
}

.compare-desc p:last-child { margin-bottom: 0; }

.price-highlight {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  border: 2px solid var(--green);
  border-radius: 16px;
  padding: 20px 28px;
  margin: 24px 0;
}

.price-amount {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 900;
  color: var(--forest);
}

.price-detail {
  font-size: 15px;
  color: var(--mid);
  line-height: 1.4;
}

.final-cta p:last-of-type { margin-bottom: 36px; }

.final-cta .delivery-areas {
  margin-top: 24px;
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}


/* ============================================================
   CENTIPEDE SOD
   ============================================================ */

.interior-hero .hero-desc {
  font-size: 18px;
  font-weight: 300;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: 0;
  max-width: 640px;
}

.benefit-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.benefit-card-icon svg {
  width: 24px;
  height: 24px;
  color: var(--green);
}

.specs-table thead th {
  background: var(--forest);
  color: var(--white);
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 16px;
  padding: 20px 24px;
  text-align: left;
}

.specs-table thead th:first-child {
  border-radius: 20px 0 0 0;
}

.specs-table thead th:last-child {
  border-radius: 0 20px 0 0;
}

.specs-table tbody td {
  padding: 16px 24px;
  font-size: 16px;
  color: var(--mid);
  border-bottom: 1px solid var(--sand);
  vertical-align: top;
}

.specs-table tbody td:first-child {
  font-weight: 600;
  color: var(--forest);
  white-space: nowrap;
}

.specs-table tbody tr:last-child td { border-bottom: none; }

.specs-table tbody tr:hover td { background: rgba(247,243,236,0.5); }

/* ========================================
   AUDIENCE SECTION (Who Should Choose)
   ======================================== */
.audience-content {
  max-width: 720px;
}

.audience-content p {
  color: var(--mid);
  margin-bottom: 20px;
  font-size: 17px;
  line-height: 1.75;
}

.audience-content p:last-child { margin-bottom: 0; }

.audience-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.audience-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  padding: 12px 20px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 500;
  color: var(--forest);
  border: 1px solid rgba(0,0,0,0.04);
}

.audience-tag svg {
  width: 18px;
  height: 18px;
  color: var(--green);
}

.pricing-box .price-range {
  font-family: var(--font-serif);
  font-size: clamp(42px, 5vw, 56px);
  font-weight: 900;
  color: var(--forest);
  line-height: 1.1;
  margin-bottom: 8px;
}

.pricing-box .price-range .per-unit {
  font-size: 20px;
  font-weight: 400;
  color: var(--muted);
}

.pricing-box .price-note {
  color: var(--mid);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 16px;
}

.pricing-box .price-note:last-child { margin-bottom: 0; }

.pricing-box .price-highlight {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(58,122,58,0.08);
  padding: 10px 18px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 500;
  color: var(--forest);
  margin-top: 20px;
}

.pricing-box .price-highlight svg {
  width: 18px;
  height: 18px;
  color: var(--green);
  flex-shrink: 0;
}


/* ============================================================
   BLOG POST LAYOUT — AEO Block + TOC + Sticky Sidebar
   ============================================================ */

/* Content wrapper — NO overflow so sticky works */
.post-content-wrap {
  background: var(--cream);
  padding: 60px 0 80px;
  overflow: visible !important;
}

/* Two-column grid — !important overrides any WP block styles */
.post-layout {
  display: grid !important;
  grid-template-columns: 1fr 340px !important;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}
.post-main {
  min-width: 0;
  grid-column: 1;
  grid-row: 1;
}

/* Sticky sidebar */
.post-sidebar {
  position: -webkit-sticky;
  position: sticky;
  top: 100px;
  grid-column: 2;
  grid-row: 1;
  align-self: start;
  max-height: calc(100vh - 120px);
  overflow-y: auto;
}
.post-sidebar::-webkit-scrollbar { width: 4px; }
.post-sidebar::-webkit-scrollbar-track { background: transparent; }
.post-sidebar::-webkit-scrollbar-thumb { background: rgba(0,0,0,0.15); border-radius: 4px; }

.sidebar-inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Post meta in hero */
.post-meta-hero {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  font-family: 'DM Sans', sans-serif;
}
.meta-sep { opacity: 0.4; }

/* ---- AEO/GEO Answer Block ---- */
.aeo-block {
  background: linear-gradient(135deg, #f0f7f0 0%, #e8f0e2 100%);
  border: 1px solid rgba(28, 58, 28, 0.12);
  border-left: 4px solid var(--forest);
  border-radius: 12px;
  padding: 24px 28px;
  margin-bottom: 32px;
}
.aeo-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--forest);
  margin-bottom: 10px;
}
.aeo-label svg { color: var(--forest); }
.aeo-block p {
  font-size: 16px;
  line-height: 1.65;
  color: #2a2a2a;
  margin: 0;
  font-family: 'DM Sans', sans-serif;
}

/* ---- Table of Contents ---- */
.post-toc {
  background: white;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 12px;
  padding: 0;
  margin-bottom: 36px;
  overflow: hidden;
}
.toc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  cursor: pointer;
  user-select: none;
  transition: background 0.2s;
}
.toc-header:hover { background: rgba(0,0,0,0.02); }
.toc-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--forest);
}
.toc-title svg { color: var(--forest); }
.toc-chevron {
  color: #999;
  transition: transform 0.3s ease;
}
.post-toc.collapsed .toc-chevron { transform: rotate(-90deg); }
.post-toc.collapsed .toc-list {
  max-height: 0;
  padding: 0 24px;
  opacity: 0;
}
.toc-list {
  list-style: none;
  margin: 0;
  padding: 0 24px 20px;
  counter-reset: toc-counter;
  max-height: 600px;
  opacity: 1;
  transition: max-height 0.4s ease, opacity 0.3s ease, padding 0.3s ease;
  overflow: hidden;
}
.toc-list li {
  counter-increment: toc-counter;
  padding: 0;
  margin: 0;
  border-top: 1px solid rgba(0,0,0,0.04);
}
.toc-list li:first-child { border-top: 1px solid rgba(0,0,0,0.08); }
.toc-list li a {
  display: block;
  padding: 10px 0 10px 0;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: #444;
  text-decoration: none;
  transition: color 0.2s, padding-left 0.2s;
}
.toc-list li a::before {
  content: counter(toc-counter) ". ";
  font-weight: 600;
  color: var(--forest);
}
.toc-list li a:hover {
  color: var(--forest);
  padding-left: 6px;
}
.toc-list li.toc-sub a {
  padding-left: 20px;
  font-size: 14px;
  color: #666;
}
.toc-list li.toc-sub a::before {
  content: "- ";
  font-weight: 400;
}

/* ---- Featured Image Below TOC ---- */
.post-featured-img {
  margin-bottom: 36px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}
.post-featured-img img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

/* ---- Post Body ---- */
.post-body {
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  line-height: 1.75;
  color: #2a2a2a;
}
.post-body h2 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--forest);
  margin: 48px 0 16px;
  line-height: 1.3;
}
.post-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--forest);
  margin: 36px 0 12px;
  line-height: 1.35;
}
.post-body p { margin: 0 0 20px; }
.post-body img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 24px 0;
}
.post-body ul, .post-body ol {
  margin: 0 0 24px;
  padding-left: 24px;
}
.post-body li { margin-bottom: 8px; }
.post-body a { color: var(--forest); font-weight: 500; }
.post-body a:hover { text-decoration: underline; }
.post-body blockquote {
  border-left: 4px solid var(--gold);
  padding: 16px 24px;
  margin: 24px 0;
  background: rgba(201, 168, 76, 0.06);
  border-radius: 0 8px 8px 0;
  font-style: italic;
  color: #555;
}

/* ---- Sticky Sidebar ---- */
.sidebar-cta {
  background: linear-gradient(160deg, var(--forest) 0%, #1a4a1a 100%);
  border-radius: 16px;
  padding: 32px 28px;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}
.sidebar-cta::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 120px;
  height: 120px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
}
.sidebar-cta-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--forest);
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 5px 16px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.sidebar-cta h3 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 900;
  margin: 0 0 10px;
  color: white;
  line-height: 1.2;
}
.sidebar-cta p {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  line-height: 1.55;
  color: rgba(255,255,255,0.85);
  margin: 0 0 20px;
}
.sidebar-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px 20px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}
.sidebar-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}
.sidebar-btn svg { flex-shrink: 0; }
.sidebar-btn-call {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.3);
  color: white;
  margin-top: 10px;
}
.sidebar-btn-call:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.5);
  color: white;
}

/* Sidebar cards */
.sidebar-card {
  background: white;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 14px;
  padding: 24px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.sidebar-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.1);
  border-color: rgba(28,58,28,0.15);
}
.sidebar-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--forest);
  margin: 0 0 14px;
  transition: color 0.25s ease;
}
.sidebar-card:hover h4 { color: var(--gold); }
.sidebar-card p {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: #555;
  margin: 0 0 16px;
}
.sidebar-card-dark {
  background: linear-gradient(160deg, #f0f7f0 0%, #e4eddf 100%);
  border-color: rgba(28,58,28,0.1);
}
.sidebar-card-dark:hover {
  background: linear-gradient(160deg, #e8f2e8 0%, #dce8d6 100%);
}
.sidebar-links {
  list-style: none;
  margin: 0;
  padding: 0;
}
.sidebar-links li {
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.sidebar-links li:last-child { border-bottom: none; }
.sidebar-links a {
  display: block;
  padding: 10px 0;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: #444;
  text-decoration: none;
  transition: color 0.2s, padding-left 0.2s;
}
.sidebar-links a:hover {
  color: var(--forest);
  padding-left: 6px;
}
.sidebar-link-more {
  display: inline-block;
  margin-top: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--forest);
  text-decoration: none;
}
.sidebar-link-more:hover { text-decoration: underline; }

/* Sidebar trust signals */
.sidebar-trust {
  background: white;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 14px;
  padding: 20px 24px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.sidebar-trust:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.1);
}
.sidebar-trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #333;
  transition: color 0.2s;
}
.sidebar-trust-item:hover { color: var(--forest); }
.sidebar-trust-item svg {
  flex-shrink: 0;
  transition: transform 0.2s, stroke 0.2s;
}
.sidebar-trust-item:hover svg {
  transform: scale(1.2);
  stroke: var(--gold);
}

/* ---- Blog Post Responsive ---- */
@media (max-width: 960px) {
  .post-layout {
    grid-template-columns: 1fr !important;
    gap: 40px;
  }
  .post-main { grid-column: auto; grid-row: auto; }
  .post-sidebar {
    position: static;
    grid-column: auto;
    grid-row: auto;
    max-height: none;
    overflow-y: visible;
  }
  .sidebar-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .sidebar-cta {
    grid-column: 1 / -1;
  }
}
@media (max-width: 600px) {
  .sidebar-inner {
    grid-template-columns: 1fr;
  }
  .post-body h2 { font-size: 24px; }
  .post-body h3 { font-size: 20px; }
  .post-body { font-size: 16px; }
  .aeo-block { padding: 20px; }
}


/* ============================================================
   WORDPRESS OVERRIDES
   ============================================================ */

.wp-block-image img {
  max-width: 100%;
  height: auto;
}

body.admin-bar .site-nav {
  top: 32px;
}

@media screen and (max-width: 782px) {
  body.admin-bar .site-nav {
    top: 46px;
  }
}