/* ============================================
   WISE GARDENING - Main Stylesheet
   Brand: Dark Forest Green, Golden Yellow, White
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Lato:wght@300;400;700&display=swap');

/* ---- CSS Variables ---- */
:root {
  --green-dark: #2d4a1e;
  --green-mid: #4a7c3f;
  --green-light: #7db96b;
  --yellow: #e8c53a;
  --yellow-light: #f5e07a;
  --white: #ffffff;
  --off-white: #f9f8f4;
  --text-dark: #1a2e12;
  --text-mid: #3d5c30;
  --text-light: #7a9870;
  --border: #d8e8d0;
  --shadow: 0 4px 24px rgba(45,74,30,0.10);
  --shadow-lg: 0 8px 40px rgba(45,74,30,0.16);
  --radius: 12px;
  --radius-sm: 6px;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Lato', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
  font-size: 16px;
}
img { max-width: 100%; display: block; }
a { color: var(--green-mid); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--green-dark); }
ul { list-style: none; }

/* ---- Typography ---- */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.25;
  color: var(--green-dark);
}
h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 600; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.1rem; }
p { margin-bottom: 1rem; color: var(--text-dark); }
p:last-child { margin-bottom: 0; }

/* ---- Layout Utilities ---- */
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.section { padding: 72px 0; }
.section-sm { padding: 48px 0; }
.text-center { text-align: center; }
.text-green { color: var(--green-mid); }
.bg-off-white { background: var(--off-white); }
.bg-green { background: var(--green-dark); }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.3px;
  cursor: pointer;
  transition: all 0.25s ease;
  border: 2px solid transparent;
  text-decoration: none;
}
.btn-primary {
  background: var(--green-dark);
  color: var(--white);
  border-color: var(--green-dark);
}
.btn-primary:hover {
  background: var(--green-mid);
  border-color: var(--green-mid);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.btn-secondary {
  background: var(--yellow);
  color: var(--green-dark);
  border-color: var(--yellow);
}
.btn-secondary:hover {
  background: var(--yellow-light);
  border-color: var(--yellow-light);
  color: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.btn-outline {
  background: transparent;
  color: var(--green-dark);
  border-color: var(--green-dark);
}
.btn-outline:hover {
  background: var(--green-dark);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--green-dark);
}
.btn-lg { padding: 18px 40px; font-size: 1.1rem; }

/* ---- Site Header / Top Banner ---- */
.site-header {
  background: #ffffff;
  -webkit-backdrop-filter: none;
  box-shadow: 0 2px 16px rgba(45,74,30,0.10);
  border-bottom: 3px solid var(--green-dark);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  max-width: 1280px;
  margin: 0 auto;
  height: 90px;
  gap: 12px;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.site-logo img {
  height: 70px;
  width: auto;
  display: block;
}

/* Legacy text logo fallback (not used when image logo present) */
.site-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
}
.site-logo-tagline {
  font-size: 0.7rem;
  font-family: 'Lato', sans-serif;
  color: var(--yellow-light);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.logo-wise { color: var(--yellow); }
.logo-gardening { color: var(--white); }

/* ---- Navigation ---- */
.site-nav {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: nowrap;
  white-space: nowrap;
  overflow: visible;
}
.site-nav a {
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2px;
  padding: 7px 9px;
  border-radius: var(--radius-sm);
  transition: all 0.2s;
  text-decoration: none;
  white-space: nowrap;
}
.site-nav a:hover,
.site-nav a.active {
  background: rgba(45,74,30,0.08);
  color: var(--green-dark);
}
.nav-cta {
  background: var(--green-dark) !important;
  color: #ffffff !important;
  border-radius: 50px !important;
  padding: 8px 16px !important;
  margin-left: 8px;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  font-weight: 700 !important;
  font-size: 0.82rem !important;
  letter-spacing: 0.2px !important;
  text-decoration: none !important;
  white-space: nowrap !important;
}
.nav-cta:hover {
  background: var(--green-mid) !important;
  transform: translateY(-1px);
  color: #ffffff !important;
}
/* Force white text on Free Guide button - overrides .site-nav a */
.site-nav a.nav-cta,
.site-nav a.nav-cta:link,
.site-nav a.nav-cta:visited,
.site-nav a.nav-cta:hover,
.site-nav a.nav-cta:focus,
header .site-nav a.nav-cta,
.site-header .site-nav a.nav-cta {
  color: #ffffff !important;
  background-color: var(--green-dark) !important;
}
.site-header .site-nav a.nav-cta:hover {
  background-color: var(--green-mid) !important;
  color: #ffffff !important;
}

/* ---- Hamburger Menu ---- */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--green-dark) !important;
  border-radius: 2px;
  transition: all 0.3s;
}

/* ---- Page Hero Banner ---- */
.page-hero {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-mid) 100%);
  padding: 64px 0 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-hero h1 { color: var(--white); margin-bottom: 12px; position: relative; }
.page-hero p { color: rgba(255,255,255,0.85); font-size: 1.15rem; max-width: 600px; margin: 0 auto; position: relative; }
.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 16px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  position: relative;
}
.breadcrumb a { color: rgba(255,255,255,0.7); }
.breadcrumb a:hover { color: var(--yellow); }

/* ---- Home Hero Section ---- */
.home-hero {
  background: linear-gradient(135deg, var(--green-dark) 0%, #3a6b2a 60%, var(--green-mid) 100%);
  min-height: 560px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 60px 0 50px;
}
.home-hero::after {
  content: '';
  position: absolute;
  right: -80px;
  top: -80px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(232,197,58,0.12) 0%, transparent 70%);
  pointer-events: none;
}
/* Centred two-column hero layout */
.home-hero-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  position: relative;
  z-index: 2;
  width: 100%;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
}
/* Centred text block */
.hero-content-centred {
  text-align: center;
  max-width: 580px;
  flex: 1 1 480px;
}
.hero-image-centred {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(232,197,58,0.2);
  border: 1px solid rgba(232,197,58,0.4);
  color: var(--yellow);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
}
.hero-content h1 {
  color: var(--white);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  margin-bottom: 20px;
  line-height: 1.15;
}
.hero-content h1 em {
  font-style: italic;
  color: var(--yellow);
}
.hero-content p {
  color: rgba(255,255,255,0.88);
  font-size: 1.12rem;
  margin-bottom: 32px;
  line-height: 1.7;
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-buttons-centred { justify-content: center; }
.hero-image {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 45%;
  overflow: hidden;
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
}
.hero-image::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 200px;
  background: linear-gradient(to right, var(--green-dark), transparent);
  z-index: 1;
}

/* ---- Two Path Cards (Home) ---- */
.path-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: -40px;
  position: relative;
  z-index: 10;
}
.path-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 32px;
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--border);
  transition: all 0.3s;
  text-align: center;
}
.path-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 48px rgba(45,74,30,0.18);
  border-color: var(--green-light);
}
.path-card.featured { border-color: var(--yellow); }
.path-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.8rem;
}
.path-icon.green { background: rgba(45,74,30,0.1); }
.path-icon.yellow { background: rgba(232,197,58,0.2); }
.path-card h3 { margin-bottom: 10px; }
.path-card p { color: var(--text-mid); font-size: 0.95rem; margin-bottom: 20px; }

/* ---- Section Headings ---- */
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green-mid);
  background: rgba(74,124,63,0.1);
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 12px;
}
.section-heading { margin-bottom: 16px; }
.section-sub { font-size: 1.1rem; color: var(--text-mid); max-width: 580px; margin: 0 auto 40px; }

/* ---- Feature Cards ---- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: all 0.3s;
}
.feature-card:hover {
  box-shadow: var(--shadow);
  border-color: var(--green-light);
  transform: translateY(-3px);
}
.feature-card-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}
.feature-card h3 { margin-bottom: 10px; font-size: 1.15rem; }
.feature-card p { font-size: 0.95rem; color: var(--text-mid); }

/* ---- Product Cards ---- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--green-light);
}
.product-card-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--yellow);
  color: var(--green-dark);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
}
.product-card-img {
  position: relative;
  height: 180px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}
.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product-card h3 { margin-bottom: 8px; font-size: 1.1rem; }
.product-card p { font-size: 0.9rem; color: var(--text-mid); flex: 1; margin-bottom: 16px; }
.product-price {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--green-dark);
  font-family: 'Playfair Display', serif;
  margin-bottom: 12px;
}
.product-price span { font-size: 0.9rem; font-family: 'Lato', sans-serif; color: var(--text-mid); }

/* ---- Blog Cards ---- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.3s;
}
.blog-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.blog-card-img {
  height: 200px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}
.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-body { padding: 24px; }
.blog-tag {
  display: inline-block;
  background: rgba(74,124,63,0.1);
  color: var(--green-mid);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 50px;
  margin-bottom: 10px;
}
.blog-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.blog-card p { font-size: 0.9rem; color: var(--text-mid); margin-bottom: 14px; }
.blog-read-more {
  color: var(--green-mid);
  font-weight: 700;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.blog-read-more:hover { color: var(--green-dark); }

/* ---- Lead Magnet Banner ---- */
.lead-magnet-banner {
  background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
  border-radius: var(--radius);
  padding: 56px 48px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.lead-magnet-banner::after {
  content: '🌿';
  position: absolute;
  right: -20px;
  bottom: -30px;
  font-size: 8rem;
  opacity: 0.08;
  line-height: 1;
}
.lead-magnet-banner h2 { color: var(--white); margin-bottom: 12px; }
.lead-magnet-banner p { color: rgba(255,255,255,0.85); margin-bottom: 24px; }
.lead-magnet-checklist { list-style: none; margin-bottom: 24px; }
.lead-magnet-checklist li {
  color: rgba(255,255,255,0.9);
  font-size: 0.95rem;
  padding: 4px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.lead-magnet-checklist li::before {
  content: '✓';
  color: var(--yellow);
  font-weight: 700;
}
.lead-magnet-visual {
  text-align: center;
  color: white;
}
.ebook-mockup {
  width: 160px;
  height: 200px;
  background: linear-gradient(135deg, var(--yellow), var(--yellow-light));
  border-radius: 8px 16px 16px 8px;
  box-shadow: -8px 8px 32px rgba(0,0,0,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--green-dark);
  font-weight: 700;
  text-align: center;
  padding: 16px;
  line-height: 1.4;
  margin: 0 auto 12px;
  position: relative;
}
.ebook-mockup::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 8px;
  background: rgba(0,0,0,0.2);
  border-radius: 8px 0 0 8px;
}

/* ---- About Catherine ---- */
.about-photo {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 6px solid var(--green-light);
  box-shadow: var(--shadow-lg);
  flex-shrink: 0;
}
.about-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 56px;
  align-items: start;
}

/* ---- Quiz Section ---- */
.quiz-hero {
  background: linear-gradient(135deg, #f0f7ec, var(--off-white));
  border-radius: var(--radius);
  padding: 64px 48px;
  text-align: center;
  border: 2px dashed var(--border);
  position: relative;
  overflow: hidden;
}
.quiz-hero::before {
  content: '🌸';
  position: absolute;
  left: -10px;
  top: -10px;
  font-size: 6rem;
  opacity: 0.12;
}
.quiz-hero::after {
  content: '🌻';
  position: absolute;
  right: -10px;
  bottom: -10px;
  font-size: 6rem;
  opacity: 0.12;
}

/* ---- Forms ---- */
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text-dark);
  font-size: 0.95rem;
}
.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color 0.2s;
  outline: none;
}
.form-control:focus { border-color: var(--green-mid); }
textarea.form-control { min-height: 140px; resize: vertical; }
.form-submit {
  background: var(--green-dark);
  color: var(--white);
  border: none;
  padding: 14px 40px;
  border-radius: 50px;
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s;
}
.form-submit:hover {
  background: var(--green-mid);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.form-note { font-size: 0.82rem; color: var(--text-light); margin-top: 8px; }

/* ---- Testimonials ---- */
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  position: relative;
}
.testimonial-card::before {
  content: '"';
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  color: var(--green-light);
  position: absolute;
  top: -10px;
  left: 20px;
  line-height: 1;
  opacity: 0.4;
}
.testimonial-text { font-style: italic; color: var(--text-mid); margin-bottom: 16px; }
.testimonial-author { font-weight: 700; color: var(--green-dark); font-size: 0.9rem; }
.stars { color: var(--yellow); font-size: 0.9rem; margin-bottom: 8px; }

/* ---- Optin Form ---- */
.optin-form {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
  text-align: center;
}
.optin-row {
  display: flex;
  gap: 12px;
  max-width: 500px;
  margin: 0 auto;
}
.optin-row .form-control { border-radius: 50px; padding: 14px 20px; }
.optin-row .btn { white-space: nowrap; }

/* ---- Footer ---- */
.site-footer {
  background: var(--green-dark);
  color: rgba(255,255,255,0.8);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-brand p { color: rgba(255,255,255,0.7); font-size: 0.9rem; margin-top: 12px; line-height: 1.6; }
.footer-heading {
  color: var(--yellow);
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  margin-bottom: 16px;
}
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  transition: color 0.2s;
  text-decoration: none;
}
.footer-links a:hover { color: var(--yellow); }
.social-links { display: flex; gap: 12px; margin-top: 16px; }
.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  transition: all 0.2s;
  text-decoration: none;
}
.social-link:hover {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--green-dark);
  transform: translateY(-2px);
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.83rem;
  color: rgba(255,255,255,0.5);
}
.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: var(--yellow); }

/* ---- Misc Components ---- */
.divider {
  width: 60px;
  height: 3px;
  background: var(--yellow);
  border-radius: 2px;
  margin: 16px auto 0;
}
.tag-list { display: flex; flex-wrap: wrap; gap: 8px; }
.tag {
  background: rgba(74,124,63,0.1);
  color: var(--green-mid);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 50px;
}
.alert-success {
  background: rgba(74,124,63,0.1);
  border: 1px solid var(--green-light);
  color: var(--green-dark);
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  display: none;
}

/* ---- Responsive ---- */
@media (max-width: 960px) {
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .path-cards { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; text-align: center; }
  .about-photo { margin: 0 auto; }
  .lead-magnet-banner { grid-template-columns: 1fr; text-align: center; }
  .hero-image { display: none; }
  .home-hero-inner { flex-direction: column; text-align: center; gap: 32px; }
  .hero-image-centred img { max-height: 280px !important; }
}
@media (max-width: 640px) {
  .site-nav { display: none; }
  .site-nav.open { display: flex; flex-direction: column; position: absolute; top: 90px; left: 0; right: 0; background: var(--white); border-top: 2px solid var(--green-dark); padding: 16px; gap: 4px; box-shadow: 0 8px 24px rgba(0,0,0,0.15); z-index: 999; }
  .site-nav.open a { padding: 10px 16px; color: var(--green-dark); border-bottom: 1px solid var(--border); }
  .header-inner { position: relative; }
  .nav-toggle { display: flex; }
  .feature-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .optin-row { flex-direction: column; }
  .hero-buttons { flex-direction: column; }
  .lead-magnet-banner { padding: 36px 24px; }
  .section { padding: 48px 0; }
  .path-card { padding: 28px 20px; }
}
