@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;800&family=DM+Sans:wght@400;500;600&display=swap');
/*
Theme Name: Evergreen
Theme URI: https://evergreensem.com
Description: Custom theme for Evergreen SEO — built for Claude Code
Author: Evergreen
Version: 1.0.3
*/

/* ============================================================
   DESIGN TOKENS
============================================================ */
:root {
  /* Colors — derived from live site audit */
  --color-black:        #0f0f0f;
  --color-white:        #ffffff;
  --color-green-dark:   #1a2e1a;
  --color-green-mid:    #2d5a27;
  --color-green-accent: #4a8c3f;
  --color-green-light:  #e8f5e2;
  --color-green-pale:   #f4faf2;
  --color-gray-900:     #1a1a1a;
  --color-gray-700:     #444444;
  --color-gray-500:     #767676;
  --color-gray-300:     #d0d0d0;
  --color-gray-100:     #f5f5f5;
  --color-text:         #1a1a1a;
  --color-text-muted:   #666666;
  --color-border:       #e0e0e0;

  /* Typography */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', 'Helvetica Neue', sans-serif;
  --font-mono:    'DM Mono', monospace;

  /* Type Scale */
  --text-xs:   0.75rem;
  --text-sm:   0.875rem;
  --text-base: 1rem;
  --text-lg:   1.125rem;
  --text-xl:   1.25rem;
  --text-2xl:  1.5rem;
  --text-3xl:  1.875rem;
  --text-4xl:  2.5rem;
  --text-5xl:  3.5rem;
  --text-6xl:  4.5rem;

  /* Spacing */
  --space-1:  0.25rem;
  --space-2:  0.5rem;
  --space-3:  0.75rem;
  --space-4:  1rem;
  --space-6:  1.5rem;
  --space-8:  2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Layout */
  --max-width:         1200px;
  --max-width-narrow:  760px;
  --max-width-wide:    1400px;
  --gutter:            clamp(1.25rem, 5vw, 2.5rem);

  /* Effects */
  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  16px;
  --shadow-sm:  0 1px 3px rgba(0,0,0,0.08);
  --shadow-md:  0 4px 16px rgba(0,0,0,0.10);
  --shadow-lg:  0 12px 40px rgba(0,0,0,0.14);
  --transition: 0.22s ease;
}

/* ============================================================
   RESET & BASE
============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.7;
  color: var(--color-text);
  background: var(--color-white);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-green-accent);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--color-green-mid);
}

ul, ol {
  list-style: none;
}

/* ============================================================
   TYPOGRAPHY
============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.35;
  color: var(--color-gray-900);
  font-weight: 700;
}

h1 { font-size: clamp(var(--text-4xl), 6vw, var(--text-6xl)); }
h2 { font-size: clamp(var(--text-2xl), 4vw, var(--text-4xl)); }
h3 { font-size: clamp(var(--text-xl),  3vw, var(--text-2xl)); }
h4 { font-size: var(--text-xl); }
h5 { font-size: var(--text-lg); }
h6 { font-size: var(--text-base); }

p {
  margin-bottom: var(--space-4);
  color: var(--color-text-muted);
}

p:last-child { margin-bottom: 0; }

strong { color: var(--color-gray-900); font-weight: 600; }

/* ============================================================
   LAYOUT UTILITIES
============================================================ */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.container--narrow {
  max-width: var(--max-width-narrow);
}

.container--wide {
  max-width: var(--max-width-wide);
}

.section {
  padding-block: clamp(var(--space-16), 8vw, var(--space-32));
}

.section--sm {
  padding-block: clamp(var(--space-10), 5vw, var(--space-20));
}

.section--green {
  background: var(--color-green-pale);
}

.section--dark {
  background: var(--color-green-dark);
  color: var(--color-white);
}

.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: var(--color-white);
}

.section--dark p {
  color: rgba(255,255,255,0.8);
}

/* Grid helpers */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-8); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-8); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-6); }

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

@media (max-width: 768px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* ============================================================
   BUTTONS
============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 0.75rem 1.75rem;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: var(--color-green-accent);
  color: var(--color-white);
  border-color: var(--color-green-accent);
}

.btn--primary:hover {
  background: var(--color-green-mid);
  border-color: var(--color-green-mid);
  color: var(--color-white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn--outline {
  background: transparent;
  color: var(--color-green-accent);
  border-color: var(--color-green-accent);
}

.btn--outline:hover {
  background: var(--color-green-accent);
  color: var(--color-white);
}

.btn--white {
  background: var(--color-white);
  color: var(--color-green-dark);
  border-color: var(--color-white);
}

.btn--white:hover {
  background: var(--color-green-light);
  border-color: var(--color-green-light);
  color: var(--color-green-dark);
}

/* ============================================================
   NAVIGATION
============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: var(--space-8);
}

.nav-logo img {
  height: 36px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-6);
}

.nav-links a {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-gray-700);
  letter-spacing: 0.01em;
  padding-block: var(--space-2);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-green-accent);
  transition: width var(--transition);
}

.nav-links a:hover,
.nav-links a:hover::after {
  color: var(--color-green-accent);
  width: 100%;
}

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

.nav-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: var(--space-3);
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  pointer-events: none;
}

.nav-item--dropdown:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  top: calc(100% + 8px);
}

.nav-dropdown a {
  display: block;
  padding: var(--space-2) var(--space-3);
  font-size: var(--text-sm);
  color: var(--color-gray-700);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}

.nav-dropdown a::after { display: none; }

.nav-dropdown a:hover {
  background: var(--color-green-pale);
  color: var(--color-green-accent);
}

.nav-cta {
  display: flex;
  gap: var(--space-3);
}

/* Mobile nav */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-2);
  color: var(--color-gray-900);
}

.nav-toggle svg {
  display: block;
  width: 24px;
  height: 24px;
}

@media (max-width: 900px) {
  .nav-links,
  .nav-cta { display: none; }

  .nav-toggle { display: block; }

  .nav-mobile-open .nav-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--color-white);
    border-bottom: 1px solid var(--color-border);
    padding: var(--space-6) var(--gutter);
    gap: var(--space-4);
    box-shadow: var(--shadow-md);
    z-index: 99;
  }

  .nav-mobile-open .nav-cta {
    display: flex;
    padding: 0 var(--gutter) var(--space-6);
    background: var(--color-white);
    position: absolute;
    left: 0;
    right: 0;
    top: calc(72px + 200px);
    z-index: 99;
  }

  .nav-dropdown {
    position: static;
    transform: none;
    box-shadow: none;
    border: none;
    background: var(--color-green-pale);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    padding: var(--space-2);
    margin-top: var(--space-2);
  }
}

/* ============================================================
   HERO
============================================================ */
.hero {
  padding-block: clamp(var(--space-20), 10vw, var(--space-32));
  background: var(--color-green-dark);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(74,140,63,0.25) 0%, transparent 70%);
  pointer-events: none;
}

.hero--page {
  padding-block: clamp(var(--space-12), 6vw, var(--space-20));
  background: var(--color-green-dark);
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.hero__eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-green-accent);
  margin-bottom: var(--space-4);
  padding: var(--space-1) var(--space-3);
  background: rgba(74,140,63,0.15);
  border-radius: 100px;
  border: 1px solid rgba(74,140,63,0.3);
}

.hero h1 {
  font-size: clamp(2rem, 8vw, 4.5rem) !important;
  color: var(--color-white);
  margin-bottom: var(--space-6);
}

.hero__sub {
  font-size: var(--text-lg);
  color: rgba(255,255,255,0.75);
  margin-bottom: var(--space-8);
  max-width: 560px;
}

.hero__cta {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
}

/* ============================================================
   FEATURE STRIP (3-col)
============================================================ */
.feature-strip {
  padding-block: clamp(var(--space-12), 6vw, var(--space-20));
  background: var(--color-green-pale);
}

.feature-strip__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
}

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

.feature-card {
  padding: var(--space-8);
  background: var(--color-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.feature-card__icon {
  width: 48px;
  height: 48px;
  background: var(--color-green-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-4);
}

.feature-card__icon svg {
  width: 24px;
  height: 24px;
  color: var(--color-green-accent);
}

.feature-card h3 {
  font-size: var(--text-xl);
  margin-bottom: var(--space-2);
}

/* ============================================================
   SERVICE CARDS (4-col)
============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
}

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

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

.service-card {
  padding: var(--space-8) var(--space-6);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--color-green-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.service-card:hover {
  border-color: var(--color-green-accent);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card h3 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-3);
}

.service-card p {
  font-size: var(--text-sm);
  margin-bottom: var(--space-6);
}

.service-card .btn {
  font-size: var(--text-xs);
  padding: 0.5rem 1.25rem;
}

/* ============================================================
   SPLIT SECTION (image + copy)
============================================================ */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(var(--space-10), 6vw, var(--space-20));
  align-items: center;
}

.split-section--reverse {
  direction: rtl;
}

.split-section--reverse > * {
  direction: ltr;
}

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

  .split-section--reverse {
    direction: ltr;
  }
}

.split-section__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.split-section__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 3/4;
}

.split-section__content h2 {
  margin-bottom: var(--space-6);
}

.split-section__content .btn {
  margin-top: var(--space-8);
}

/* ============================================================
   SECTION HEADER
============================================================ */
.section-header {
  margin-bottom: clamp(var(--space-10), 5vw, var(--space-16));
}

.section-header--center {
  text-align: center;
  max-width: 600px;
  margin-inline: auto;
  margin-bottom: clamp(var(--space-10), 5vw, var(--space-16));
}

.section-header__eyebrow {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-green-accent);
  margin-bottom: var(--space-3);
}

.section-header h2 {
  margin-bottom: var(--space-4);
}

.section-header p {
  font-size: var(--text-lg);
}

/* ============================================================
   PROCESS STEPS
============================================================ */
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
  counter-reset: steps;
}

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

.process-step {
  position: relative;
  padding-top: var(--space-10);
}

.process-step__number {
  position: absolute;
  top: 0;
  left: 0;
  font-family: var(--font-heading);
  font-size: var(--text-6xl);
  font-weight: 700;
  color: var(--color-green-light);
  line-height: 1;
  user-select: none;
}

.process-step h4 {
  margin-bottom: var(--space-3);
}

/* ============================================================
   FAQ ACCORDION
============================================================ */
.faq-list {
  max-width: 800px;
  margin-inline: auto;
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
}

.faq-item:first-child {
  border-top: 1px solid var(--color-border);
}

.faq-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4);
  padding-block: var(--space-6);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--color-gray-900);
  transition: color var(--transition);
}

.faq-trigger:hover {
  color: var(--color-green-accent);
}

.faq-trigger__icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border: 2px solid currentColor;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition), background var(--transition);
}

.faq-item.is-open .faq-trigger__icon {
  transform: rotate(45deg);
  background: var(--color-green-accent);
  border-color: var(--color-green-accent);
  color: var(--color-white);
}

.faq-body {
  display: none;
  padding-bottom: var(--space-6);
}

.faq-item.is-open .faq-body {
  display: block;
}

/* ============================================================
   CTA BAND
============================================================ */
.cta-band {
  background: var(--color-green-dark);
  padding-block: clamp(var(--space-16), 8vw, var(--space-24));
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(74,140,63,0.3) 0%, transparent 60%);
  pointer-events: none;
}

.cta-band__inner {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin-inline: auto;
}

.cta-band h2 {
  color: var(--color-white);
  margin-bottom: var(--space-4);
}

.cta-band p {
  color: rgba(255,255,255,0.75);
  font-size: var(--text-lg);
  margin-bottom: var(--space-8);
}

/* ============================================================
   BLOG CARDS
============================================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
}

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

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

.blog-card {
  display: flex;
  flex-direction: column;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}

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

.blog-card__image {
  aspect-ratio: 16/10;
  overflow: hidden;
}

.blog-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.blog-card:hover .blog-card__image img {
  transform: scale(1.04);
}

.blog-card__body {
  padding: var(--space-6);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card__meta {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-3);
  font-size: var(--text-xs);
  color: var(--color-gray-500);
}

.blog-card__categories {
  display: flex;
  gap: var(--space-2);
  flex-wrap: wrap;
}

.blog-card__category {
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-green-accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.blog-card h3 {
  font-size: var(--text-xl);
  margin-bottom: var(--space-3);
  transition: color var(--transition);
}

.blog-card:hover h3 {
  color: var(--color-green-accent);
}

.blog-card p {
  font-size: var(--text-sm);
  flex: 1;
  margin-bottom: var(--space-6);
}

/* Blog Index — stacked list */
.blog-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
}

.blog-list-item {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: var(--space-8);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}

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

.blog-list-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.blog-list-item__image {
  overflow: hidden;
}

.blog-list-item__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.blog-list-item:hover .blog-list-item__image img {
  transform: scale(1.04);
}

.blog-list-item__body {
  padding: var(--space-8) var(--space-8) var(--space-8) 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (max-width: 768px) {
  .blog-list-item__body { padding: var(--space-6); }
}

/* ============================================================
   SINGLE POST
============================================================ */
.post-hero {
  background: var(--color-green-dark);
  padding-block: clamp(var(--space-12), 6vw, var(--space-20));
}

.post-hero__image {
  margin-top: var(--space-10);
  border-radius: var(--radius-lg);
  overflow: hidden;
  max-height: 520px;
}

.post-hero__image img {
  width: 100%;
  object-fit: cover;
}

.post-meta {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin-bottom: var(--space-4);
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.6);
  flex-wrap: wrap;
}

.post-meta .category-tag {
  background: rgba(74,140,63,0.25);
  color: var(--color-green-light);
  padding: 2px 10px;
  border-radius: 100px;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.post-content {
  max-width: var(--max-width-narrow);
  margin-inline: auto;
  padding-block: clamp(var(--space-12), 6vw, var(--space-20));
}

.post-content h2 { margin-top: var(--space-10); margin-bottom: var(--space-4); }
.post-content h3 { margin-top: var(--space-8);  margin-bottom: var(--space-3); }
.post-content p  { margin-bottom: var(--space-5); color: var(--color-text); }

.post-content ul,
.post-content ol {
  list-style: revert;
  padding-left: var(--space-6);
  margin-bottom: var(--space-6);
}

.post-content li {
  margin-bottom: var(--space-2);
  color: var(--color-text-muted);
}

.post-content a {
  color: var(--color-green-accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.post-content img {
  border-radius: var(--radius-md);
  margin-block: var(--space-8);
}

/* Inline post CTA */
.post-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--space-6);
  align-items: center;
  background: var(--color-green-pale);
  border: 1px solid var(--color-green-light);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  margin-block: var(--space-10);
}

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

.post-cta p {
  color: var(--color-gray-700);
  font-weight: 500;
  margin: 0;
}

/* Post nav */
.post-nav {
  display: flex;
  justify-content: space-between;
  gap: var(--space-6);
  padding-top: var(--space-10);
  border-top: 1px solid var(--color-border);
  margin-top: var(--space-10);
}

.post-nav a {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-green-accent);
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

/* ============================================================
   CONTACT PAGE
============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--space-16);
  align-items: start;
}

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

.contact-info h3 {
  margin-bottom: var(--space-6);
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
}

.contact-info-item__icon {
  width: 40px;
  height: 40px;
  background: var(--color-green-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-item__icon svg {
  width: 18px;
  height: 18px;
  color: var(--color-green-accent);
}

/* WP Forms reset */
.wpcf7-form input,
.wpcf7-form textarea,
.wpcf7-form select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-gray-900);
  background: var(--color-white);
  transition: border-color var(--transition), box-shadow var(--transition);
  margin-bottom: var(--space-4);
}

.wpcf7-form input:focus,
.wpcf7-form textarea:focus {
  outline: none;
  border-color: var(--color-green-accent);
  box-shadow: 0 0 0 3px rgba(74,140,63,0.12);
}

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

.wpcf7-form .wpcf7-submit {
  width: auto;
  background: var(--color-green-accent);
  color: var(--color-white);
  border: none;
  font-weight: 600;
  font-size: var(--text-sm);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  margin-top: var(--space-2);
}

.wpcf7-form .wpcf7-submit:hover {
  background: var(--color-green-mid);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

/* Form labels */
.wpcf7-form label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-gray-700);
  margin-bottom: var(--space-1);
}

/* ============================================================
   FOOTER
============================================================ */
.site-footer {
  background: var(--color-gray-900);
  color: rgba(255,255,255,0.7);
  padding-block: clamp(var(--space-12), 6vw, var(--space-20));
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: var(--space-10);
}

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

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

.footer-brand__logo {
  height: 32px;
  width: auto;
  margin-bottom: var(--space-4);
  opacity: 0.9;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  font-size: var(--text-sm);
  line-height: 1.6;
  color: rgba(255,255,255,0.55);
  max-width: 280px;
}

.footer-nav h4 {
  color: var(--color-white);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: var(--space-4);
}

.footer-nav ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer-nav a {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}

.footer-nav a:hover {
  color: var(--color-green-accent);
}

.footer-bottom {
  margin-top: var(--space-10);
  padding-top: var(--space-6);
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.35);
  flex-wrap: wrap;
  gap: var(--space-4);
}

/* ============================================================
   PAGINATION
============================================================ */
.pagination {
  display: flex;
  justify-content: center;
  gap: var(--space-2);
  margin-top: var(--space-12);
}

.pagination a,
.pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  font-weight: 600;
  border: 1.5px solid var(--color-border);
  color: var(--color-gray-700);
  transition: all var(--transition);
}

.pagination a:hover,
.pagination .current {
  background: var(--color-green-accent);
  border-color: var(--color-green-accent);
  color: var(--color-white);
}

/* ============================================================
   UTILITIES
============================================================ */
.text-center  { text-align: center; }
.text-green   { color: var(--color-green-accent); }
.mb-0         { margin-bottom: 0; }
.mt-auto      { margin-top: auto; }
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ============================================================
   GOOGLE FONTS IMPORT
============================================================ */

/* WordPress custom logo overrides */
.nav-logo .custom-logo-link {
  display: flex;
  align-items: center;
}

.nav-logo .custom-logo-link img,
.nav-logo .custom-logo {
  height: 36px;
  width: auto;
  max-width: 200px;
}

/* --- HOMEPAGE FIXES --- */

/* Hero ghost button (white outline on dark bg) */
.btn--ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.4);
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.7);
  color: #fff;
}

/* Heading line-height fix for multi-line section headings */
.section-header--center h2 {
  line-height: 1.35;
}

/* Service cards — push Learn More buttons to bottom */
.service-card {
  display: flex;
  flex-direction: column;
}
.service-card p {
  flex: 1;
}

/* Blog cards — uniform height and aligned Read More */
.blog-card {
  display: flex;
  flex-direction: column;
}
.blog-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.blog-card__body p {
  flex: 1;
}
.blog-card__body .btn {
  align-self: flex-start;
}

/* Footer logo size */
.site-footer .custom-logo-link img,
.site-footer .custom-logo {
  height: 32px;
  width: auto;
  max-width: 200px;
}

/* Services heading — single line, no overlap on wrap */
.section-header--center h2 {
  white-space: nowrap;
}
@media (max-width: 768px) {
  .section-header--center h2 {
    white-space: normal;
  }
}

/* --- MOBILE FIXES --- */

/* Hero h1 — prevent overflow on small screens */
.hero h1 {
  font-size: clamp(2rem, 8vw, 4.5rem) !important;
  overflow-wrap: break-word;
  word-break: break-word;
}
@media (max-width: 600px) {
}

/* Service card buttons — auto width, not full width */
.service-card .btn {
  align-self: flex-start;
  width: auto;
}

/* Override Elementor kit heading line-height */
body h1, body h2, body h3, body h4, body h5, body h6 {
  line-height: 1.35 !important;
}

/* --- SITE AUDIT FIXES --- */

/* Process step numbers: push behind heading text */
.process-step {
  z-index: 0;
}
.process-step__number {
  opacity: 0.15;
  z-index: -1;
}
.process-step h4 {
  position: relative;
  z-index: 1;
}

/* Constrain inline SVGs in post content (old Elementor remnants) */
.split-section__content svg,
.entry-content svg {
  max-width: 48px;
  max-height: 48px;
  display: inline-block;
  vertical-align: middle;
}

/* Hide old Elementor accordion SVGs (plus/minus icons) */
.split-section__content .elementor-toggle-icon svg,
.split-section__content .elementor-accordion-icon svg {
  max-width: 16px;
  max-height: 16px;
}

/* Prevent duplicate title in service page content */
.split-section__content > h1:first-child,
.split-section__content > .elementor-widget-container > h1:first-child {
  display: none;
}

/* Fix SVGs in default page template content (old Elementor icons) */
.page-content svg {
  max-width: 48px;
  max-height: 48px;
  display: inline-block;
  vertical-align: middle;
}

/* Hide duplicate title in page content (already shown in hero) */
.page-content > h1:first-child {
  display: none;
}

/* Also handle Elementor-wrapped duplicate titles */
.page-content > .elementor > .elementor-section:first-child h1 {
  display: none;
}
