@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;900&family=Source+Sans+3:wght@300;400;600;700&display=swap');

:root {
  --charcoal:    #1e1e1e;
  --charcoal-mid:#2a2a2a;
  --sage:        #5a7a5a;
  --sage-light:  #7a9a7a;
  --sage-dark:   #3d5c3d;
  --wheat:       #c4922a;
  --wheat-light: #d4a84a;
  --lime:        #b8f04a;
  --cream:       #f5f0e8;
  --cream-dark:  #ede7d8;
  --white:       #ffffff;
  --text-dark:   #1a1a1a;
  --text-mid:    #444444;
  --text-light:  #888888;
  --border:      #e0d8cc;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 400;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
  font-size: 17px;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
  color: var(--charcoal);
}
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 900; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); font-weight: 600; }
h4 { font-size: 1.15rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; color: var(--sage-dark); }

p { margin-bottom: 1.2rem; color: var(--text-mid); }
p:last-child { margin-bottom: 0; }

a { color: var(--sage); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--wheat); }

strong { color: var(--charcoal); font-weight: 700; }

/* ── NAVIGATION ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: var(--charcoal);
  padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between;
  height: 70px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.nav-logo {
  display: flex; align-items: center; gap: 0.75rem;
  text-decoration: none;
}
.nav-logo-mark {
  width: 42px; height: 42px;
  background: var(--sage);
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; font-weight: 900;
  color: var(--white);
  letter-spacing: -1px;
}
.nav-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem; font-weight: 700;
  color: var(--white);
  line-height: 1.15;
}
.nav-logo-text span {
  display: block;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.68rem; font-weight: 400;
  color: var(--lime);
  letter-spacing: 0.12em; text-transform: uppercase;
}

.nav-menu {
  display: flex; align-items: center; gap: 0.25rem;
  list-style: none;
}
.nav-menu > li { position: relative; }
.nav-menu > li > a {
  display: block;
  padding: 0.5rem 0.9rem;
  color: rgba(255,255,255,0.85);
  font-size: 0.88rem; font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: 4px;
  transition: all 0.2s;
}
.nav-menu > li > a:hover,
.nav-menu > li > a.active {
  color: var(--white);
  background: rgba(255,255,255,0.08);
}

/* Dropdowns */
.nav-dropdown {
  position: absolute; top: calc(100% + 8px); left: 0;
  background: var(--charcoal-mid);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  min-width: 220px;
  padding: 0.5rem 0;
  list-style: none;
  opacity: 0; visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.2s;
  box-shadow: 0 8px 30px rgba(0,0,0,0.4);
}
.nav-menu > li:hover .nav-dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.nav-dropdown li a {
  display: block;
  padding: 0.6rem 1.2rem;
  color: rgba(255,255,255,0.8);
  font-size: 0.85rem;
  transition: all 0.15s;
}
.nav-dropdown li a:hover {
  color: var(--white);
  background: rgba(255,255,255,0.06);
  padding-left: 1.5rem;
}
.nav-dropdown li a::before {
  content: '→ ';
  color: var(--lime);
  font-size: 0.75rem;
}

.nav-cta {
  background: var(--sage) !important;
  color: var(--white) !important;
  padding: 0.5rem 1.2rem !important;
  border-radius: 4px !important;
  font-weight: 700 !important;
}
.nav-cta:hover { background: var(--sage-light) !important; }

/* Mobile toggle */
.nav-toggle {
  display: none;
  background: none; border: none;
  cursor: pointer; padding: 0.5rem;
  flex-direction: column; gap: 5px;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: all 0.3s;
}

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.9rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.25s;
  cursor: pointer; border: none;
}
.btn-primary {
  background: var(--sage); color: var(--white);
}
.btn-primary:hover {
  background: var(--sage-dark); color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(90,122,90,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-outline:hover {
  background: var(--white); color: var(--charcoal);
}
.btn-wheat {
  background: var(--wheat); color: var(--white);
}
.btn-wheat:hover {
  background: var(--wheat-light); color: var(--white);
  transform: translateY(-2px);
}

/* ── LAYOUT ── */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 2rem;
}
.section { padding: 6rem 0; }
.section-sm { padding: 4rem 0; }
.section-lg { padding: 8rem 0; }

.section-label {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 1rem;
  display: block;
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  padding-top: 70px;
  overflow: hidden;
  background: var(--charcoal);
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('../images/hero-bg.jpg');
  background-size: cover; background-position: center;
  opacity: 0.22;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg,
    rgba(30,30,30,0.95) 0%,
    rgba(30,30,30,0.7) 60%,
    rgba(90,122,90,0.3) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 760px;
  padding: 4rem 2rem;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(184,240,74,0.12);
  border: 1px solid rgba(184,240,74,0.3);
  border-radius: 100px;
  padding: 0.4rem 1rem;
  margin-bottom: 2rem;
  font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--lime);
}
.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--lime);
  border-radius: 50%;
}
.hero h1 {
  color: var(--white);
  margin-bottom: 1.5rem;
  line-height: 1.1;
}
.hero h1 em {
  font-style: normal;
  color: var(--lime);
}
.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 0.75rem;
  max-width: 580px;
}
.hero-independent {
  display: inline-block;
  font-size: 0.82rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--wheat-light);
  margin-bottom: 2.5rem;
}
.hero-independent::before { content: '— '; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  color: rgba(255,255,255,0.4);
  font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase;
  animation: bounce 2s infinite;
}
.hero-scroll::after {
  content: '';
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ── CREDENTIAL BAR ── */
.cred-bar {
  background: var(--sage-dark);
  padding: 1rem 0;
}
.cred-bar-inner {
  display: flex; align-items: center; justify-content: center;
  gap: 3rem; flex-wrap: wrap;
}
.cred-item {
  display: flex; align-items: center; gap: 0.6rem;
  color: rgba(255,255,255,0.9);
  font-size: 0.85rem; font-weight: 600;
  letter-spacing: 0.04em;
}
.cred-item-icon {
  width: 28px; height: 28px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
}

/* ── SERVICE CARDS ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s;
  display: flex; flex-direction: column;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.12);
  border-color: var(--sage-light);
}
.service-card-img {
  height: 240px;
  background: var(--cream-dark);
  overflow: hidden;
}
.service-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.service-card:hover .service-card-img img { transform: scale(1.04); }
.service-card-body {
  padding: 2rem;
  flex: 1; display: flex; flex-direction: column;
}
.service-card-tag {
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 0.5rem;
}
.service-card h3 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
}
.service-card p { flex: 1; }
.service-card-list {
  list-style: none;
  margin: 1rem 0 1.5rem;
}
.service-card-list li {
  padding: 0.4rem 0;
  padding-left: 1.4rem;
  position: relative;
  font-size: 0.9rem;
  color: var(--text-mid);
  border-bottom: 1px solid var(--cream-dark);
}
.service-card-list li::before {
  content: '✓';
  position: absolute; left: 0;
  color: var(--sage);
  font-weight: 700;
}

/* ── WHY INDEPENDENT ── */
.why-section { background: var(--charcoal); }
.why-section h2 { color: var(--white); }
.why-section p { color: rgba(255,255,255,0.7); }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-top: 3rem;
}
.why-text h4 { color: var(--lime); margin-bottom: 0.5rem; }
.why-text h2 { margin-bottom: 1.5rem; }
.why-text .lead {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}
.why-callout {
  border-left: 3px solid var(--lime);
  padding-left: 1.5rem;
  margin: 2rem 0;
}
.why-callout p {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  font-style: italic;
}
.why-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem;
}
.stat-box {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  padding: 1.5rem;
  text-align: center;
}
.stat-box .stat-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem; font-weight: 900;
  color: var(--lime);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.stat-box .stat-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.3;
}

/* ── PROCESS ── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  counter-reset: steps;
}
.process-step {
  counter-increment: steps;
  position: relative;
  padding: 2rem;
  background: var(--cream);
  border-radius: 8px;
  border-top: 3px solid var(--sage);
}
.process-step::before {
  content: counter(steps, decimal-leading-zero);
  position: absolute; top: -1px; right: 1.5rem;
  font-family: 'Playfair Display', serif;
  font-size: 3rem; font-weight: 900;
  color: var(--sage);
  opacity: 0.15;
  line-height: 1;
}
.process-step h4 {
  color: var(--sage-dark);
  margin-bottom: 0.75rem;
}
.process-step p { font-size: 0.92rem; }

/* ── CONTACT SECTION ── */
.contact-section { background: var(--cream); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  margin-top: 3rem;
}
.contact-info h3 { margin-bottom: 1.5rem; }
.contact-detail {
  display: flex; align-items: flex-start; gap: 1rem;
  margin-bottom: 1.5rem;
}
.contact-detail-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: var(--sage);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--white);
}
.contact-detail-text strong {
  display: block;
  font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.2rem;
}
.contact-detail-text a, .contact-detail-text span {
  font-size: 1rem; color: var(--charcoal);
}
.contact-form {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 8px;
  border: 1px solid var(--border);
}
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: 0.82rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 0.4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(90,122,90,0.12);
}
.form-group textarea { height: 120px; resize: vertical; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* ── FOOTER ── */
footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.6);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  margin-top: 1rem;
  max-width: 280px;
}
.footer-col h5 {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1rem;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col ul li a {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--lime); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 2rem;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.35); margin: 0; }
.footer-irss {
  font-size: 0.78rem;
  color: var(--lime);
  font-weight: 700;
  letter-spacing: 0.08em;
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: var(--charcoal);
  padding: 8rem 0 4rem;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(to right, var(--sage), var(--lime), var(--wheat));
}
.page-hero h1 { color: var(--white); margin-bottom: 1rem; }
.page-hero .lead {
  color: rgba(255,255,255,0.7);
  font-size: 1.15rem;
  max-width: 600px;
}
.breadcrumb {
  margin-bottom: 1.5rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}
.breadcrumb a { color: rgba(255,255,255,0.5); }
.breadcrumb a:hover { color: var(--lime); }
.breadcrumb span { margin: 0 0.5rem; }

/* ── CALLOUT BOX ── */
.callout {
  border-left: 4px solid var(--sage);
  background: var(--cream);
  padding: 1.5rem 2rem;
  border-radius: 0 6px 6px 0;
  margin: 2rem 0;
}
.callout-wheat {
  border-left-color: var(--wheat);
  background: #fdf6ea;
}
.callout p { font-size: 1rem; font-style: italic; color: var(--text-mid); }
.callout strong { color: var(--sage-dark); }

/* ── TIER CARDS (Ag Services) ── */
.tier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
  align-items: start;
}
.tier-card {
  border: 2px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s;
  background: var(--white);
}
.tier-card:hover {
  border-color: var(--sage);
  box-shadow: 0 12px 40px rgba(90,122,90,0.15);
}
.tier-card.featured {
  border-color: var(--sage);
  position: relative;
}
.tier-badge {
  position: absolute; top: -1px; left: 50%; transform: translateX(-50%);
  background: var(--sage);
  color: var(--white);
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.3rem 1.2rem;
  border-radius: 0 0 6px 6px;
}
.tier-header {
  background: var(--charcoal);
  padding: 2rem;
  text-align: center;
}
.tier-header h3 {
  color: var(--white);
  font-size: 1.4rem;
  margin-bottom: 0.25rem;
}
.tier-header .tier-tag {
  font-size: 0.72rem; letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lime);
}
.tier-price {
  font-family: 'Playfair Display', serif;
  font-size: 2rem; font-weight: 900;
  color: var(--white);
  margin-top: 1rem;
  line-height: 1;
}
.tier-price span {
  font-size: 1rem; font-weight: 400;
  color: rgba(255,255,255,0.5);
}
.tier-body { padding: 2rem; }
.tier-features {
  list-style: none;
  margin-bottom: 2rem;
}
.tier-features li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--cream-dark);
  color: var(--text-mid);
}
.tier-features li::before {
  content: '✓';
  position: absolute; left: 0;
  color: var(--sage); font-weight: 700;
}
.tier-note {
  font-size: 0.82rem;
  font-style: italic;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

/* ── ABOUT PAGE ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.about-photo {
  position: relative;
}
.about-photo-frame {
  border-radius: 8px;
  overflow: hidden;
  background: var(--cream-dark);
  aspect-ratio: 4/5;
  display: flex; align-items: center; justify-content: center;
}
.about-photo-frame img {
  width: 100%; height: 100%; object-fit: cover;
}
.about-photo-placeholder {
  text-align: center;
  color: var(--text-light);
  padding: 3rem;
}
.about-photo-placeholder span {
  display: block;
  font-size: 4rem; margin-bottom: 1rem;
}
.about-credential {
  position: absolute; bottom: -1rem; right: -1rem;
  background: var(--sage-dark);
  color: var(--white);
  padding: 1rem 1.5rem;
  border-radius: 6px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}
.about-credential .cred-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem; font-weight: 900;
  color: var(--lime);
  display: block; line-height: 1;
}
.about-credential .cred-txt {
  font-size: 0.72rem; letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
.about-bio h2 { margin-bottom: 1.5rem; }
.about-bio .lead {
  font-size: 1.1rem; color: var(--text-mid);
  margin-bottom: 1.5rem; line-height: 1.8;
}
.timeline {
  margin: 2rem 0;
  padding-left: 1.5rem;
  border-left: 2px solid var(--border);
}
.timeline-item {
  position: relative;
  padding-bottom: 1.5rem;
  padding-left: 1.5rem;
}
.timeline-item::before {
  content: '';
  position: absolute; left: -1.6rem; top: 0.4rem;
  width: 10px; height: 10px;
  background: var(--sage);
  border-radius: 50%;
  border: 2px solid var(--white);
  box-shadow: 0 0 0 2px var(--sage);
}
.timeline-item strong {
  display: block;
  font-size: 0.78rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--sage);
  margin-bottom: 0.2rem;
}

/* ── SEPTIC PAGES ── */
.content-article {
  max-width: 800px;
  margin: 0 auto;
}
.content-article h2 { margin: 2.5rem 0 1rem; }
.content-article h3 { margin: 2rem 0 0.75rem; color: var(--sage-dark); }
.county-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 0.75rem;
  margin: 1.5rem 0;
}
.county-tag {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 0.6rem 1rem;
  text-align: center;
  font-size: 0.88rem; font-weight: 600;
  color: var(--text-mid);
}
.county-tag.primary {
  background: var(--sage-dark);
  border-color: var(--sage-dark);
  color: var(--white);
}
.price-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.95rem;
}
.price-table th {
  background: var(--charcoal);
  color: var(--white);
  padding: 0.75rem 1rem;
  text-align: left;
  font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase;
}
.price-table td {
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--border);
  color: var(--text-mid);
}
.price-table tr:nth-child(even) td { background: var(--cream); }
.price-table td:last-child { font-weight: 700; color: var(--charcoal); }

/* ── UTILITIES ── */
.text-center { text-align: center; }
.text-sage { color: var(--sage); }
.text-wheat { color: var(--wheat); }
.text-lime { color: var(--lime); }
.bg-cream { background: var(--cream); }
.bg-dark { background: var(--charcoal); }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-2 { margin-bottom: 2rem; }
.divider {
  width: 60px; height: 3px;
  background: linear-gradient(to right, var(--sage), var(--lime));
  border-radius: 2px;
  margin: 1.5rem 0;
}
.divider-center { margin: 1.5rem auto; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .why-grid,
  .about-grid,
  .contact-grid,
  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .tier-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .why-stats { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-menu { display: none; flex-direction: column; position: absolute; top: 70px; left: 0; right: 0; background: var(--charcoal-mid); padding: 1rem; }
  .nav-menu.open { display: flex; }
  .nav-toggle { display: flex; }
  .form-row { grid-template-columns: 1fr; }
  .hero-content { padding: 3rem 1.5rem; }
  .hero-actions { flex-direction: column; }
  .section { padding: 4rem 0; }
}
@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .why-stats { grid-template-columns: 1fr; }
}

/* ===== Logo additions ===== */
.nav-logo-mark {
  background: url('/images/Cool%20Soil%20Logo%20Symbol.png') center/contain no-repeat !important;
  font-size: 0 !important;
  border-radius: 0 !important;
}
.footer-brand .nav-logo-mark {
  background-image: url('/images/Cool%20Soil%20White%20logo%20(1).png') !important;
  background-position: left center !important;
  background-size: contain !important;
  background-repeat: no-repeat !important;
  width: 220px !important;
  height: 90px !important;
  margin-bottom: 0.5rem !important;
}
.tier-badge { position: relative; top: auto; margin: -1rem -1rem 1rem -1rem; padding: 0.5rem 1rem; text-align: center; font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; background: var(--sage-dark, #4a6741); color: #fff; }
