/* CSS Variables for Brand Colors */
:root {
  --color-primary: #6ba043;
  --color-secondary: #2c5530;
  --color-accent: #17a2b8;
  --color-text: #333;
  --color-text-light: #666;
  --color-background: #f8f5e6;
  --color-white: #fff;
  --color-light-green: #e8f4e8;
  --color-dark-overlay: rgba(30, 40, 40, 0.7);
}

/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Open Sans', Arial, sans-serif;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Global Page Loading Animation */
.page-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--color-white);
  z-index: 9999;
  transition: opacity 0.5s;
}
.loading-logo {
  width: 260px;
  height: auto;
  max-width: 80vw;
  max-height: 80vw;
  min-width: 180px;
  min-height: 180px;
  margin-bottom: 40px;
  display: block;
  aspect-ratio: 1/1;
  object-fit: contain;
}
.loading-text {
  font-size: 2.5rem;
  font-weight: 700;
  color: #6ba043;
  margin-top: 32px;
  text-align: center;
  letter-spacing: 0.02em;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .page-loading {
    padding: 0;
  }
  .loading-logo {
    width: 70vw;
    height: auto;
    min-width: 200px;
    min-height: 200px;
    max-width: 95vw;
    max-height: 95vw;
    margin-bottom: 44px;
    aspect-ratio: 1/1;
    object-fit: contain;
  }
  .loading-text {
    font-size: 2.8rem;
    font-weight: 800;
    margin-top: 36px;
    line-height: 1.18;
    letter-spacing: 0.01em;
  }
}

.page-loading.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loading-spinner {
  width: 60px;
  height: 60px;
  border: 4px solid rgba(107, 160, 67, 0.2);
  border-top: 4px solid var(--color-primary);
  border-radius: 50%;
  animation: modernSpin 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite;
  margin-bottom: 20px;
}

@keyframes modernSpin {
  0% { 
    transform: rotate(0deg) scale(1);
  }
  50% { 
    transform: rotate(180deg) scale(1.1);
  }
  100% { 
    transform: rotate(360deg) scale(1);
  }
}

.loading-text {
  color: var(--color-primary);
  font-size: 1.1em;
  font-weight: 600;
  text-align: center;
  animation: textPulse 2s ease-in-out infinite;
}

@keyframes textPulse {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 1; }
}

/* Enhanced Section Animations */
section {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Scroll Animation Classes */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Delay Classes for Staggered Animations */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }
.delay-7 { transition-delay: 0.7s; }
.delay-8 { transition-delay: 0.8s; }
.delay-9 { transition-delay: 0.9s; }

/* Special Animation Types */
.animate-on-scroll.slide-right {
  transform: translateX(-60px);
}

.animate-on-scroll.slide-left {
  transform: translateX(60px);
}

.animate-on-scroll.scale-up {
  transform: scale(0.8);
}

.animate-on-scroll.rotate-in {
  transform: rotate(-5deg) scale(0.9);
}

.animate-on-scroll.slide-right.visible,
.animate-on-scroll.slide-left.visible,
.animate-on-scroll.scale-up.visible,
.animate-on-scroll.rotate-in.visible {
  transform: translateX(0) translateY(0) scale(1) rotate(0deg);
}

/* Enhanced List Item Animations */
.what-we-bring ul li.animate-on-scroll {
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.what-we-bring ul li.animate-on-scroll.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Service Item Enhanced Animations */
.service-item.animate-on-scroll {
  opacity: 0;
  transform: translateY(80px) scale(0.9);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-item.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Focus Area Enhanced Animations */
.focus-area.animate-on-scroll {
  opacity: 0;
  transform: translateY(60px) rotate(2deg);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.focus-area.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0) rotate(0deg);
}

/* Approach Step Enhanced Animations */
.approach-step-item.animate-on-scroll {
  opacity: 0;
  transform: translateX(-40px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.approach-step-item.animate-on-scroll.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Contact Form Enhanced Animations */
.contact-form-col.animate-on-scroll {
  opacity: 0;
  transform: translateX(-40px) scale(0.98);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.contact-form-col.animate-on-scroll.visible {
  opacity: 1;
  transform: translateX(0) scale(1);
}

.contact-image-col.animate-on-scroll {
  opacity: 0;
  transform: translateX(40px) scale(0.98);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.contact-image-col.animate-on-scroll.visible {
  opacity: 1;
  transform: translateX(0) scale(1);
}

/* Enhanced Hover Effects with Animations */
.animate-on-scroll.visible:hover {
  transform: translateY(-5px) scale(1.02);
  transition: all 0.3s ease;
}

.service-item.animate-on-scroll.visible:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.focus-area.animate-on-scroll.visible:hover {
  transform: translateY(-8px) scale(1.02) rotate(1deg);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Smooth Transitions for All Interactive Elements */
.animate-on-scroll {
  will-change: transform, opacity;
  backface-visibility: hidden;
  transform-style: preserve-3d;
}

/* Performance Optimizations */
.animate-on-scroll.visible {
  will-change: auto;
}

/* Skeleton Loading States */
.skeleton {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: shimmerWave 1.5s infinite;
  border-radius: 8px;
}

@keyframes shimmerWave {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Merriweather', serif;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

h2 {
  font-size: 2.5em;
  color: var(--color-secondary);
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
}

h3 {
  font-size: 1.4em;
  color: var(--color-accent);
  font-weight: 600;
  margin-bottom: 30px;
  text-align: center;
}

p {
  font-size: 1.15em;
  line-height: 1.65;
  color: var(--color-text);
  text-align: center;
  max-width: 800px;
  margin: 0 auto 25px auto;
}

/* Header and Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  z-index: 1000;
  padding: 0.9rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  height: 74px;
  transform: translateY(-100%);
  animation: slideDownHeader 0.8s ease 0.5s forwards;
}

@keyframes slideDownHeader {
  0% {
    transform: translateY(-100%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(25px);
}

.logo {
  flex: 1;
  max-width: 500px;
  display: flex;
  align-items: center;
  opacity: 0;
  transform: translateX(-20px);
  animation: slideInLogo 0.8s ease 0.7s forwards;
}

@keyframes slideInLogo {
  0% {
    opacity: 0;
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.logo img {
  height: 58px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  filter: drop-shadow(0 4px 8px rgba(107, 160, 67, 0.1));
}

.logo img:hover {
  transform: scale(1.05) rotate(2deg);
  filter: drop-shadow(0 6px 12px rgba(107, 160, 67, 0.2));
}

nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
}

nav ul li {
  opacity: 0;
  transform: translateY(-20px);
  animation: slideInNavItem 0.6s ease forwards;
}

nav ul li:nth-child(1) { animation-delay: 0.8s; }
nav ul li:nth-child(2) { animation-delay: 0.9s; }
nav ul li:nth-child(3) { animation-delay: 1.0s; }
nav ul li:nth-child(4) { animation-delay: 1.1s; }

@keyframes slideInNavItem {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

nav a {
  text-decoration: none;
  color: var(--color-text);
  font-weight: 500;
  position: relative;
  padding: 0.5rem 0;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  text-transform: lowercase;
  letter-spacing: 0.5px;
}

nav a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  transition: width 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border-radius: 1px;
}

nav a:hover::before, nav a.contact-link::before {
  width: 100%;
}

nav a:hover, nav a.contact-link {
  color: var(--color-primary);
  transform: translateY(-2px);
}

.hamburger {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  gap: 4px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--color-text);
  transition: all 0.3s ease;
}

.sidebar {
  position: fixed;
  top: 0;
  right: -300px;
  width: 300px;
  height: 100vh;
  background: var(--color-white);
  z-index: 1001;
  transition: right 0.3s ease;
  padding: 2rem;
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
}

.sidebar.open {
  right: 0;
}

.close-sidebar {
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  float: right;
  margin-bottom: 2rem;
}

.sidebar ul {
  list-style: none;
}

.sidebar li {
  margin-bottom: 1rem;
}

.sidebar a {
  text-decoration: none;
  color: var(--color-text);
  font-size: 1.2rem;
  font-weight: 500;
}

/* Hero Section */
.hero-section {
  background: url('backgroundimage.png') center center/cover no-repeat;
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-dark-overlay);
  z-index: 1;
  animation: fadeInOverlay 1.5s ease forwards;
}

@keyframes fadeInOverlay {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

.hero-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 30% 40%, rgba(107, 160, 67, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 70% 60%, rgba(23, 162, 184, 0.08) 0%, transparent 50%);
  z-index: 1;
  animation: floatingGradients 20s ease-in-out infinite;
}

@keyframes floatingGradients {
  0%, 100% { 
    transform: translateX(0) translateY(0) scale(1);
  }
  33% { 
    transform: translateX(10px) translateY(-10px) scale(1.05);
  }
  66% { 
    transform: translateX(-5px) translateY(5px) scale(0.95);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--color-white);
  max-width: 700px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(50px);
  animation: heroContentReveal 1.2s ease 1.2s forwards;
}

@keyframes heroContentReveal {
  0% {
    opacity: 0;
    transform: translateY(50px) scale(0.95);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.hero-content h1 {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 2rem;
  letter-spacing: 2px;
  line-height: 1.1;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.upstream {
  color: var(--color-white);
  display: inline-block;
  animation: fadeInLeft 0.8s ease 1.8s both;
}

.downstream {
  color: var(--color-primary);
  display: inline-block;
  animation: fadeInRight 0.8s ease 2.0s both;
  text-shadow: 0 4px 20px rgba(107, 160, 67, 0.4);
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-30px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(30px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.start-convo-btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--color-primary), #5a8e37);
  color: var(--color-white);
  padding: 1.2rem 2.5rem;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1em;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(107, 160, 67, 0.3);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInButton 0.8s ease 2.2s forwards;
}

@keyframes fadeInButton {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.start-convo-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.6s ease;
}

.start-convo-btn:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 35px rgba(107, 160, 67, 0.4);
  background: linear-gradient(135deg, #5a8e37, var(--color-secondary));
}

.start-convo-btn:hover::before {
  left: 100%;
}

.start-convo-btn:active {
  transform: translateY(-2px) scale(1.02);
}

/* Section Content */
.section-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px;
}

/* Strategies Section */
.strategies-section {
  background: var(--color-background);
  padding: 80px 0;
}

.strategies-img {
  width: 100px;
  height: auto;
  display: block;
  margin: 0 auto 30px auto;
}

.strategies-logo {
  width: 150px;
  height: auto;
  display: block;
  margin: 30px auto 0 auto;
}

/* About Section */
.about-section {
  background: var(--color-white);
  padding: 80px 0;
}

.about-layout {
  display: grid;
  grid-template-columns: 2.2fr 0.8fr;
  gap: 50px;
  align-items: start;
}

.about-text-content h2 {
  color: var(--color-text);
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-align: left;
}

.about-tagline {
  color: var(--color-primary);
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 2rem;
  line-height: 1.3;
  text-align: left;
}

.about-description {
  margin-bottom: 2.5rem;
}

.about-description p {
  color: var(--color-text);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  text-align: left;
}

.about-description p strong {
  font-weight: 700;
  color: var(--color-text);
}

.what-we-bring h4 {
  color: var(--color-text);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.what-we-bring ul {
  list-style: none;
  padding: 0;
}

.what-we-bring li {
  color: var(--color-text);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 0.8rem;
  padding-left: 1.2rem;
  position: relative;
}

.what-we-bring li::before {
  content: '•';
  color: var(--color-primary);
  font-weight: bold;
  position: absolute;
  left: 0;
}

.podcast-link-section {
  margin-top: 40px;
  padding: 30px;
  background: #e8f5e8;
  border-radius: 20px;
  border: none;
}

.podcast-link-section h4 {
  color: var(--color-secondary);
  font-size: 1.3em;
  margin-bottom: 20px;
  font-weight: 700;
  text-align: left;
}

.podcast-link {
  display: inline-block;
  background: var(--color-primary);
  color: var(--color-white);
  padding: 15px 30px;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
  font-size: 16px;
}

.podcast-link:hover {
  background: var(--color-secondary);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(107, 160, 67, 0.3);
}

.podcast-link .podcast-icon {
  margin-right: 10px;
  font-size: 18px;
}

.podcast-note {
  font-size: 0.9em;
  color: var(--color-text-light);
  font-style: italic;
  margin-top: 8px;
  text-align: center;
}

/* Founder Profile Sidebar */
.founder-profile-sidebar {
  position: sticky;
  top: 100px;
  z-index: 100;
  justify-self: end;
  margin-left: 20px;
}

.founder-card-simple {
  max-width: 280px;
  width: 100%;
  background: var(--color-white);
  border-radius: 18px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.12);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 0 20px 0;
  margin: 0 auto;
}

.founder-photo {
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
  display: block;
  margin: 0 0 20px 0;
  border-radius: 0;
  box-shadow: none;
  transform: none !important;
  transition: none !important;
}

.founder-info {
  width: 100%;
  background: none;
  border: none;
  border-radius: 0 0 18px 18px;
  padding: 0 20px;
  box-shadow: none;
  position: relative;
  margin-top: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.founder-info h4 {
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 6px;
  line-height: 1.3;
}

.founder-name-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 10px;
}

.founder-name {
  color: var(--color-primary);
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 0;
  line-height: 1.2;
}

.bio-toggle-btn {
  width: 36px;
  height: 36px;
  min-width: 36px;
  min-height: 36px;
  max-width: 36px;
  max-height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  font-size: 1.5rem;
  background: color-mix(in srgb, var(--color-accent) 18%, #ffffff);
  border: 1.5px solid color-mix(in srgb, var(--color-accent) 55%, #dff6fa);
  box-shadow: 0 1px 4px rgba(23,162,184,0.12);
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s;
}
.bio-toggle-btn:hover { box-shadow: 0 2px 8px rgba(23,162,184,0.2); }

.bio-toggle-btn span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-size: 1.5rem;
  line-height: 1;
  font-weight: bold;
}

.founder-bio {
  color: var(--color-text-light);
  font-size: 0.95rem;
  line-height: 1.5;
  margin-top: 8px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.founder-bio.expanded {
  max-height: 1000px;
}

/* Services Section */
.services-section {
  background: var(--color-background);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.services-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 15% 25%, rgba(107, 160, 67, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 85% 75%, rgba(23, 162, 184, 0.02) 0%, transparent 50%);
  pointer-events: none;
  animation: serviceBackgroundFlow 18s ease-in-out infinite;
}

@keyframes serviceBackgroundFlow {
  0%, 100% { 
    transform: translateY(0px) scale(1);
    opacity: 0.8;
  }
  50% { 
    transform: translateY(-5px) scale(1.02);
    opacity: 1;
  }
}

.services-section .section-content {
  position: relative;
  z-index: 2;
}

.services-section h2 {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease 0.2s forwards;
}

.services-section h3 {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease 0.4s forwards;
}

.services-section > .section-content > p {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease 0.6s forwards;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.service-item {
  background: var(--color-white);
  padding: 40px 35px;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  border-top: 4px solid var(--color-primary);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(50px) scale(0.95);
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-item.animate-in {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.service-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(107, 160, 67, 0.05), transparent);
  transition: left 0.8s ease;
}

.service-item:hover::before {
  left: 100%;
}

.service-item:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 15px 40px rgba(107, 160, 67, 0.15);
  border-top-color: var(--color-accent);
}

.service-item h4 {
  color: var(--color-secondary);
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 20px;
  font-family: 'Merriweather', serif;
  position: relative;
  transition: color 0.3s ease;
}

.service-item:hover h4 {
  color: var(--color-primary);
}

.service-item ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-item li {
  color: var(--color-text-light);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 12px;
  padding-left: 20px;
  position: relative;
  transition: all 0.3s ease;
}

.service-item li::before {
  content: '→';
  color: var(--color-primary);
  font-weight: bold;
  position: absolute;
  left: 0;
  transition: all 0.3s ease;
}

.service-item:hover li::before {
  color: var(--color-accent);
  transform: translateX(3px);
}

.service-item:hover li {
  color: var(--color-text);
  transform: translateX(2px);
}

/* Our Approach Section - Simple Clean Layout */
.approach-section {
  background: var(--color-white);
  padding: 50px 0;
  position: relative;
}

.approach-section .section-content {
  position: relative;
  padding-left: 40px;
}

.approach-section .section-content::before {
  content: '';
  position: absolute;
  left: 0;
  top: 120px;
  bottom: 40px;
  width: 3px;
  background: var(--color-primary);
  opacity: 0.3;
}

.approach-section h2 {
  font-size: 2.5em;
  color: var(--color-text);
  font-weight: 700;
  text-transform: lowercase;
  margin-bottom: 15px;
  text-align: left;
  position: relative;
  letter-spacing: -0.02em;
}

.approach-section h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 80px;
  height: 4px;
  background: var(--color-primary);
  border-radius: 2px;
}

.approach-subtitle {
  font-size: 1.6em !important;
  color: var(--color-primary) !important;
  font-weight: 600 !important;
  margin-bottom: 30px !important;
  text-align: left !important;
  line-height: 1.3;
  font-family: 'Merriweather', serif;
}

.approach-description-box {
  border: 2px solid var(--color-accent);
  padding: 20px;
  margin-bottom: 30px;
  background: var(--color-white);
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.approach-description-box p {
  color: var(--color-text);
  font-size: 1.1em;
  line-height: 1.6;
  margin: 0;
  text-align: left;
  max-width: none;
  font-weight: 400;
}

.approach-steps {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 25px;
}

.approach-step-item {
  padding: 18px;
  background: var(--color-white);
  border-radius: 10px;
  border-left: 3px solid var(--color-primary);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.approach-step-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.12);
}

.approach-step-item h4 {
  font-size: 1.2em;
  color: var(--color-secondary);
  font-weight: 700;
  margin-bottom: 8px;
  text-align: left;
  font-family: 'Merriweather', serif;
}

.approach-step-item p {
  color: var(--color-text);
  font-size: 1em;
  line-height: 1.5;
  margin: 0;
  text-align: left;
  max-width: none;
  font-weight: 400;
}

/* Focus Areas Section */
.focus-areas-section {
  background: var(--color-background);
  padding: 50px 0;
  position: relative;
  overflow: hidden;
}

.focus-areas-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(23, 162, 184, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(107, 160, 67, 0.06) 0%, transparent 50%);
  pointer-events: none;
  animation: focusBackgroundFlow 15s ease-in-out infinite;
}

@keyframes focusBackgroundFlow {
  0%, 100% { 
    transform: translateY(0px) scale(1);
    opacity: 0.7;
  }
  50% { 
    transform: translateY(-8px) scale(1.02);
    opacity: 1;
  }
}

.focus-areas-section .section-content {
  position: relative;
  z-index: 2;
}

.focus-areas-section h2 {
  font-size: 2.5em;
  color: var(--color-text);
  font-weight: 700;
  margin-bottom: 15px;
  text-align: center;
  position: relative;
  letter-spacing: -0.02em;
}

.focus-areas-section h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--color-primary);
  border-radius: 2px;
}

.focus-areas-section h3 {
  font-size: 1.5em;
  color: var(--color-accent);
  font-weight: 600;
  margin-bottom: 20px;
  text-align: center;
}

.focus-areas-section > .section-content > p {
  font-size: 1.1em;
  line-height: 1.6;
  color: var(--color-text);
  text-align: center;
  max-width: 800px;
  margin: 0 auto 35px auto;
}

.focus-areas-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  margin-top: 35px;
}

.focus-area {
  background: var(--color-white);
  padding: 25px 20px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border-left: 4px solid var(--color-primary);
  position: relative;
  opacity: 1;
  transform: translateY(0) scale(1);
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow: hidden;
  cursor: pointer;
}

.focus-area.animate-in {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.focus-area:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  border-left-color: var(--color-accent);
}

.focus-area::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  border-radius: 16px 16px 0 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.focus-area:hover::before {
  transform: scaleX(1);
}

.focus-area h4 {
  color: var(--color-secondary);
  font-size: 1.3em;
  font-weight: 700;
  margin-bottom: 12px;
  font-family: 'Merriweather', serif;
  position: relative;
  transition: color 0.3s ease;
}

.focus-area:hover h4 {
  color: var(--color-accent);
}

.focus-area > p {
  color: var(--color-text);
  font-size: 1em;
  line-height: 1.5;
  margin-bottom: 15px;
  text-align: left;
  max-width: none;
}

.focus-area ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.focus-area li {
  color: var(--color-text-light);
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 8px;
  padding-left: 18px;
  position: relative;
  transition: all 0.3s ease;
}

.focus-area li::before {
  content: '→';
  color: var(--color-primary);
  font-weight: bold;
  position: absolute;
  left: 0;
  transition: all 0.3s ease;
}

.focus-area:hover li::before {
  color: var(--color-accent);
  transform: translateX(3px);
}

.focus-area:hover li {
  color: var(--color-text);
  transform: translateX(2px);
}

/* Why Us Section */
.why-us-section {
  background: var(--color-white);
  padding: 80px 0;
}

.why-logo {
  width: 150px;
  height: auto;
  display: block;
  margin: 30px auto 0 auto;
}

/* Contact Section */
.contact-section {
  background: linear-gradient(135deg, var(--color-background) 0%, #f8f8f8 50%, var(--color-white) 100%);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 20%, rgba(107, 160, 67, 0.02) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(23, 162, 184, 0.02) 0%, transparent 50%);
  pointer-events: none;
  animation: contactBackgroundFlow 22s ease-in-out infinite;
}

@keyframes contactBackgroundFlow {
  0%, 100% { 
    transform: translateY(0px) scale(1);
    opacity: 0.6;
  }
  50% { 
    transform: translateY(-8px) scale(1.03);
    opacity: 1;
  }
}

.contact-section .section-content {
  position: relative;
  z-index: 2;
}

.contact-main-heading {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--color-text);
  text-align: center;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
  line-height: 1.2;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeInUp 0.8s ease 0.2s forwards;
  text-shadow: none;
}

.contact-section > .section-content > p {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease 0.4s forwards;
  font-size: 1.1em;
  margin-bottom: 25px;
}

.contact-container {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: stretch;
  margin-top: 24px;
  padding-left: 0;
  width: 100%;
}

.contact-form-col {
  width: 100%;
  order: 1;
}

.contact-image-col {
  display: none !important;
}

.contact-image {
  display: none !important;
}

.contact-form {
  padding: 24px 20px;
  background: #f8fafc;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  width: 100%;
  box-sizing: border-box;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group-header {
  margin-bottom: 15px;
}

.section-label {
  display: block;
  font-weight: 700;
  color: var(--color-text);
  font-size: 16px;
  text-transform: none;
  letter-spacing: 0;
  margin-bottom: 10px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--color-text-light);
  font-size: 14px;
  text-transform: none;
  letter-spacing: 0;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid #e5e5e5;
  border-radius: 12px;
  font-size: 14px;
  font-family: inherit;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
  position: relative;
  font-weight: 400;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  background: linear-gradient(135deg, #ffffff 0%, #f8fff8 100%);
  box-shadow: 0 0 0 3px rgba(107, 160, 67, 0.08);
  transform: translateY(-1px);
}

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

.submit-btn {
  background: var(--color-text);
  color: white;
  padding: 14px 32px;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: lowercase;
  letter-spacing: 0;
  width: auto;
  display: inline-block;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.submit-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.6s ease;
}

.submit-btn:hover {
  background: var(--color-secondary);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.submit-btn:hover::before {
  left: 100%;
}

.submit-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* Enhanced Image Loading States */
img {
  opacity: 0;
  transition: opacity 0.6s ease;
}

img.loaded {
  opacity: 1;
}

.image-container {
  position: relative;
  overflow: hidden;
  border-radius: inherit;
}

.image-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: shimmerWave 1.5s infinite;
  opacity: 1;
  transition: opacity 0.6s ease;
}

.image-container.loaded::before {
  opacity: 0;
}

/* Enhanced Hover Effects for Images */
.strategies-img, .contact-image, .founder-photo, .green-background-image {
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  filter: brightness(1) contrast(1) saturate(1);
}

.strategies-img:hover, .contact-image:hover, .founder-photo:hover {
  transform: scale(1.05) rotate(1deg);
  filter: brightness(1.1) contrast(1.1) saturate(1.2);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.contact-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

.contact-image:hover {
  transform: none !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-image-col {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Footer */
.footer {
  background: var(--color-light-green);
  padding: 60px 0 40px 0;
  border-top: 1px solid #e8e8e8;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  align-items: center;
  gap: 40px;
  padding: 0 20px;
}

.footer-logo img {
  height: 50px;
  width: auto;
}

.footer-info {
  text-align: center;
}

.footer-info p {
  color: var(--color-text-light);
  margin: 0 0 8px 0;
  font-size: 14px;
}

.footer-info p:last-child {
  color: var(--color-primary);
  font-weight: 600;
  font-style: italic;
}

.footer-contact {
  text-align: right;
}

.footer-contact-btn {
  background: var(--color-primary);
  color: var(--color-white);
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 14px;
}

.footer-contact-btn:hover {
  background: #5a8f3a;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(107, 160, 67, 0.3);
}

/* Responsive Design */
/* Interactive Elements CSS */
.expand-icon {
  transition: transform 0.3s ease;
  display: inline-block;
  margin-left: 10px;
  font-weight: bold;
  color: var(--color-primary);
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--color-primary);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.5em;
  font-weight: bold;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
  z-index: 1000;
  box-shadow: 0 4px 15px rgba(107, 160, 67, 0.3);
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--color-secondary);
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 6px 20px rgba(107, 160, 67, 0.4);
}

.back-to-top span {
  display: block;
  animation: float 2s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

.approach-step-item.active {
  background: rgba(107, 160, 67, 0.1);
  border-left: 4px solid var(--color-primary);
}

/* Shimmer animation */
@keyframes shimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}

/* Bounce animation for scroll indicator */
@keyframes bounce {
  0% { transform: translate(-50%, -50%) scale(1); }
  100% { transform: translate(-50%, -55%) scale(1.1); }
}

/* Enhanced button hover effects */
.start-convo-btn, .submit-btn, .footer-contact-btn {
  position: relative;
  overflow: hidden;
}

.start-convo-btn::before, .submit-btn::before, .footer-contact-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}

.start-convo-btn:hover::before, .submit-btn:hover::before, .footer-contact-btn:hover::before {
  left: 100%;
}

@media (max-width: 768px) {
  /* General section and page layout */
  body {
    background: #f8fafc;
    font-size: 1.15rem;
    line-height: 1.6;
    padding: 0;
    margin: 0;
  }
  section {
    padding: 0 0 28px 0;
    margin-bottom: 20px;
    background: #fff;
    border-radius: 0;
    box-shadow: 0 1px 8px rgba(0,0,0,0.03);
    width: 100vw;
    max-width: 100vw;
    margin-left: 0;
    margin-right: 0;
  }
  .section-content {
    padding: 24px 20px 28px 20px;
    max-width: 100vw;
  }
  /* Headings and text */
  h1, h2 {
    font-size: 1.6rem;
    margin-bottom: 18px;
    line-height: 1.3;
    font-weight: 700;
  }
  h3 {
    font-size: 1.3rem;
    margin-bottom: 14px;
    font-weight: 600;
  }
  p, ul, li {
    font-size: 1.15rem;
    line-height: 1.6;
    margin-bottom: 14px;
  }
  
  /* About section and founder card */
  .about-layout {
    flex-direction: column;
    gap: 28px;
    align-items: stretch;
  }
  .about-text-content {
    width: 100%;
    padding: 0;
  }
  .about-text-content h2 {
    margin-top: 16px !important;
    margin-bottom: 24px !important;
  }
  .founder-profile-sidebar {
    width: 100%;
    margin: 0 auto 20px auto;
    max-width: 360px;
    padding: 0;
    display: flex;
    justify-content: center;
  }
  .founder-card-simple {
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    border-radius: 16px;
    background: #f6f9f6;
    padding: 24px 20px 20px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .founder-photo {
    width: 130px;
    height: 130px;
    object-fit: cover;
    border-radius: 50%;
    margin: 16px auto 16px auto;
    display: block;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  }
  
  /* Contact section - FIXED LAYOUT */
  .contact-container {
    display: flex;
    flex-direction: column;
    gap: 28px;
    align-items: stretch;
    margin-top: 28px;
    padding-left: 0;
    width: 100%;
  }
  .contact-form-col {
    width: 100%;
    order: 1;
  }
  .contact-image-col {
    display: none !important;
  }
  .contact-image {
    display: none !important;
  }
  .contact-form {
    padding: 28px 24px;
    background: #f8fafc;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    width: 100%;
    box-sizing: border-box;
  }
  .form-row {
    flex-direction: column;
    gap: 18px;
  }
  .form-group {
    width: 100%;
    margin-bottom: 22px;
  }
  .form-group input,
  .form-group textarea {
    width: 100%;
    font-size: 1.15rem;
    padding: 18px 16px;
    border-radius: 12px;
    border: 2px solid #e0e0e0;
    background: #fff;
    margin-top: 8px;
    box-sizing: border-box;
  }
  .form-group input:focus,
  .form-group textarea:focus {
    border-color: #6ba043;
    outline: none;
    background: #f6fff6;
    box-shadow: 0 0 0 3px rgba(107, 160, 67, 0.1);
  }
  .submit-btn {
    width: 100%;
    font-size: 1.2rem;
    padding: 18px 0;
    border-radius: 12px;
    margin-top: 16px;
    background: linear-gradient(90deg, #6ba043 60%, #b2d8b2 100%);
    color: #fff;
    box-shadow: 0 4px 12px rgba(107,160,67,0.15);
    font-weight: 600;
    min-height: 56px;
  }
  
  /* Green image section: improved mobile layout */
  .green-image-section {
    padding: 0;
    min-height: 220px;
    background: #2c5530;
    border-radius: 0;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
  }
  .green-background-image {
    width: 100%;
    max-width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 0;
    filter: brightness(0.5) saturate(1.4);
  }
  .green-image-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 24px 20px;
    font-size: 1.15rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    width: 85%;
    max-width: 320px;
    background: rgba(44, 85, 48, 0.9);
    border-radius: 0;
    min-height: 150px;
  }
  .podcast-overlay-heading {
    font-size: 1.3rem;
    margin-bottom: 0;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    font-family: 'Merriweather', serif;
  }
  .podcast-overlay-button {
    font-size: 1.1rem;
    padding: 14px 24px;
    border-radius: 8px;
    background: #2c5530;
    color: #fff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    min-height: 52px;
    justify-content: center;
    font-family: 'Open Sans', sans-serif;
  }
  .podcast-overlay-button .podcast-icon {
    font-size: 1.2rem;
  }
  .state-vermont-text {
    font-size: 1rem;
    color: #fff;
    margin-top: 0;
    font-style: normal;
    line-height: 1.3;
    font-family: 'Open Sans', sans-serif;
  }
  
  /* Focus areas grid - improved spacing */
  .focus-areas-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  .focus-area {
    padding: 28px 24px;
    font-size: 1.15rem;
    min-width: 0;
    max-width: 100%;
    margin: 0 auto;
    border-radius: 16px;
    background: #f6f9f6;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    border-left: 4px solid #6ba043;
  }
  .focus-area h4 {
    font-size: 1.3rem;
    margin-bottom: 14px;
    font-weight: 600;
    color: #2c5530;
  }
  .focus-area ul {
    padding-left: 22px;
    margin-top: 14px;
  }
  .focus-area li {
    margin-bottom: 10px;
    line-height: 1.5;
  }
  
  /* Service grid - improved spacing */
  .services-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  .service-item {
    padding: 28px 24px;
    font-size: 1.15rem;
    min-width: 0;
    max-width: 100%;
    margin: 0 auto;
    border-radius: 16px;
    background: #f6f9f6;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    border-left: 4px solid #6ba043;
  }
  .service-item h4 {
    font-size: 1.3rem;
    margin-bottom: 14px;
    font-weight: 600;
    color: #2c5530;
  }
  .service-item ul {
    padding-left: 22px;
    margin-top: 14px;
  }
  .service-item li {
    margin-bottom: 10px;
    line-height: 1.5;
  }
  
  /* Approach steps - improved mobile layout */
  .approach-steps {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 24px;
  }
  .approach-step-item {
    padding: 24px 20px;
    background: #f6f9f6;
    border-radius: 12px;
    border-left: 4px solid #6ba043;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
  }
  .approach-step-item h4 {
    font-size: 1.2rem;
    color: #2c5530;
    font-weight: 600;
    margin-bottom: 10px;
    text-align: left;
  }
  .approach-step-item p {
    color: #333;
    font-size: 1.15rem;
    line-height: 1.5;
    margin: 0;
    text-align: left;
  }
  
  /* General image sizing for mobile */
  img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  }
  
  /* Footer spacing and style */
  .footer {
    width: 100vw;
    min-width: 0;
    padding: 0;
    margin: 0;
    background: #f6f9f6;
    border-radius: 0;
    box-shadow: 0 -2px 8px rgba(0,0,0,0.03);
    position: relative;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .footer-content {
    width: 100vw;
    max-width: 100vw;
    box-sizing: border-box;
    padding: 28px 20px 20px 20px;
    border-radius: 0;
    gap: 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-logo img {
    width: 72px;
    height: auto;
    margin-bottom: 10px;
  }
  .footer-info p {
    font-size: 1.1rem;
    margin: 6px 0;
    word-break: break-word;
    line-height: 1.4;
  }
  .footer-contact-btn {
    font-size: 1.2rem;
    padding: 16px 28px;
    border-radius: 12px;
    background: linear-gradient(90deg, #6ba043 60%, #b2d8b2 100%);
    color: #fff;
    box-shadow: 0 2px 8px rgba(107,160,67,0.15);
    width: 90vw;
    max-width: 320px;
    margin: 0 auto;
    font-weight: 600;
    min-height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Founder card: improved mobile layout */
  .founder-profile-sidebar {
    max-width: 360px;
    margin: 0 auto 20px auto;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
  }
  .founder-card-simple {
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    border-radius: 16px;
    background: #f6f9f6;
    padding: 24px 20px 20px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: unset;
    text-align: center;
  }
  .founder-photo {
    width: 130px;
    height: 130px;
    object-fit: cover;
    border-radius: 50%;
    margin: 16px auto 16px auto;
    display: block;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  }
  .founder-info {
    width: 100%;
    text-align: center;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .founder-info h4 {
    text-align: center;
    margin-bottom: 10px;
    font-size: 1.2rem;
    color: #333;
  }
  .founder-name-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
    flex-wrap: wrap;
  }
  .founder-name {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #6ba043;
    line-height: 1.2;
  }
  .bio-toggle-btn {
    background: color-mix(in srgb, var(--color-accent) 18%, #ffffff);
    border: 1.5px solid color-mix(in srgb, var(--color-accent) 55%, #dff6fa);
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    box-shadow: 0 1px 4px rgba(23,162,184,0.12);
  }
  .bio-toggle-btn span {
    font-size: 1.3rem;
    font-weight: bold;
    color: #333;
    line-height: 1;
  }
  .founder-bio {
    font-size: 1.1rem;
    line-height: 1.5;
    max-height: 120px;
    overflow-y: auto;
    margin-top: 10px;
    padding: 0 6px;
    background: none;
    border-radius: 0;
    text-align: center;
    width: 100%;
  }
  .founder-bio.expanded {
    max-height: 300px;
  }

  /* Back to top button - improved mobile */
  .back-to-top {
    display: none !important;
  }
  
  /* Extra margin between sections */
  .about-section, .services-section, .approach-section, .focus-areas-section, .contact-section {
    margin-bottom: 24px;
  }
  
  /* Make all buttons and interactive elements easier to tap */
  button, .start-convo-btn, .submit-btn, .footer-contact-btn, .podcast-overlay-button {
    min-height: 56px;
    font-size: 1.2rem;
    border-radius: 12px;
    padding: 16px 0;
    font-weight: 600;
    touch-action: manipulation;
  }
  
  /* Ensure all cards and sections have enough padding */
  .service-item, .focus-area, .founder-card-simple {
    padding: 28px 24px;
  }
  
  /* Remove box-shadow on images inside cards for less clutter */
  .service-item img, .focus-area img, .founder-card-simple img {
    box-shadow: none;
  }
  
  /* Make sure all text is readable */
  .about-description, .what-we-bring, .service-item, .focus-area, .approach-step-item, .contact-form {
    font-size: 1.15rem;
    line-height: 1.6;
  }
  
  /* What we bring list improvements */
  .what-we-bring ul {
    padding-left: 22px;
    margin-top: 14px;
  }
  .what-we-bring li {
    margin-bottom: 12px;
    line-height: 1.5;
    font-size: 1.15rem;
  }
  
  /* Hero section improvements */
  .hero-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 24px 20px;
  }
  .hero-content h1 {
    font-size: 2.4rem;
    line-height: 1.2;
    margin-bottom: 28px;
  }
  .start-convo-btn {
    font-size: 1.3rem;
    padding: 18px 36px;
    border-radius: 12px;
    min-height: 60px;
    font-weight: 600;
  }
  
  /* Strategies section improvements */
  .strategies-section {
    padding: 36px 0;
  }
  .strategies-section h2 {
    font-size: 1.8rem;
    margin-bottom: 18px;
  }
  .strategies-section p {
    font-size: 1.15rem;
    line-height: 1.6;
    margin-bottom: 18px;
  }
  
  /* Why us section improvements */
  .why-us-section {
    padding: 36px 0;
  }
  .why-us-section h2 {
    font-size: 1.8rem;
    margin-bottom: 18px;
  }
  .why-us-section h3 {
    font-size: 1.4rem;
    margin-bottom: 18px;
  }
  .why-us-section p {
    font-size: 1.15rem;
    line-height: 1.6;
    margin-bottom: 18px;
  }
  
  /* Contact section improvements */
  .contact-section {
    padding: 36px 0;
  }
  .contact-main-heading {
    font-size: 1.8rem;
    margin-bottom: 18px;
  }
  .contact-section > .section-content > p {
    font-size: 1.15rem;
    line-height: 1.6;
    margin-bottom: 28px;
  }
  
  /* Disable all image animations and transitions on mobile for better performance */
  img,
  .contact-image,
  .founder-photo,
  .green-background-image {
    transition: none !important;
    animation: none !important;
    filter: none !important;
  }
  
  /* Remove hover effects for images on mobile */
  img:hover,
  .contact-image:hover,
  .founder-photo:hover,
  .green-background-image:hover {
    transform: none !important;
    filter: none !important;
    box-shadow: none !important;
  }
  
  /* Remove shimmer or loading overlays if any */
  .image-container::before,
  .image-container.loaded::before {
    display: none !important;
  }
}

/* Tablet breakpoint for 2x3 grid */
@media (max-width: 1024px) and (min-width: 769px) {
  .approach-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 25px;
    padding: 0 15px;
  }
  
  .approach-step {
    padding: 35px 30px;
  }
  
  .step-icon {
    width: 80px;
    height: 80px;
    font-size: 3.2rem;
    margin: 0 auto 25px auto;
  }
  
  .step-content h4 {
    font-size: 1.5rem;
  }
  
  .step-content p {
    font-size: 0.98rem;
  }
}

/* Green Image Section */
.green-image-section {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.green-background-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.green-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.3);
  z-index: 2;
  padding: 20px;
}

.podcast-overlay-heading {
  color: white;
  font-size: 2.5em;
  font-weight: 700;
  text-align: center;
  margin: 0 0 30px 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.podcast-overlay-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--color-primary);
  color: white;
  text-decoration: none;
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1em;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(107, 160, 67, 0.3);
  margin-bottom: 20px;
}

.podcast-overlay-button:hover {
  background: var(--color-secondary);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(107, 160, 67, 0.4);
}

.podcast-overlay-button .podcast-icon {
  font-size: 1.2em;
}

.state-vermont-text {
  color: white;
  font-size: 1em;
  font-weight: 500;
  text-align: center;
  margin: 0;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.richard-link {
  color: #2c8c3c;
  text-decoration: underline;
  font-weight: 600;
  cursor: pointer;
  transition: color 0.2s;
}
.richard-link:hover, .richard-link:focus {
  color: #176b2c;
  text-decoration: underline;
}

/* Additional mobile optimizations for very small screens */
@media (max-width: 480px) {
  body {
    font-size: 1rem;
    line-height: 1.5;
  }
  
  section {
    width: 94vw;
    max-width: 94vw;
    margin-left: 3vw;
    margin-right: 3vw;
    border-radius: 12px;
    margin-bottom: 20px;
  }
  
  .section-content {
    padding: 16px 12px 20px 12px;
  }
  
  h1, h2 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    line-height: 1.2;
  }
  
  h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
  }
  
  p, ul, li {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 10px;
  }
  
  /* Contact form improvements for small screens */
  .contact-form {
    padding: 20px 16px;
    border-radius: 12px;
  }
  
  .form-group input,
  .form-group textarea {
    font-size: 1rem;
    padding: 14px 12px;
    border-radius: 10px;
  }
  
  .submit-btn {
    font-size: 1.1rem;
    padding: 14px 0;
    border-radius: 10px;
    min-height: 48px;
  }
  
  /* Focus areas and service items */
  .focus-area,
  .service-item {
    padding: 20px 16px;
    font-size: 1rem;
    border-radius: 12px;
  }
  
  .focus-area h4,
  .service-item h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
  }
  
  /* Approach steps */
  .approach-step-item {
    padding: 16px 12px;
    border-radius: 10px;
  }
  
  .approach-step-item h4 {
    font-size: 1.1rem;
    margin-bottom: 6px;
  }
  
  .approach-step-item p {
    font-size: 1rem;
    line-height: 1.4;
  }
  
  /* Founder card */
  .founder-card-simple {
    max-width: 300px;
    padding: 16px 12px 12px 12px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .founder-photo {
    width: 100px;
    height: 100px;
    margin: 10px auto 10px auto;
  }
  
  .founder-info {
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .founder-info h4 {
    text-align: center;
    font-size: 1rem;
    margin-bottom: 6px;
  }
  
  .founder-name-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-bottom: 6px;
    flex-wrap: wrap;
  }
  
  .founder-name {
    text-align: center;
    font-size: 1.2rem;
    line-height: 1.1;
  }
  
  .bio-toggle-btn {
    width: 24px;
    height: 24px;
  }
  
  .bio-toggle-btn span {
    font-size: 1rem;
  }
  
  .founder-bio {
    text-align: center;
    font-size: 0.95rem;
    line-height: 1.4;
    max-height: 100px;
  }
  
  /* Green image section */
  .green-image-section {
    min-height: 160px;
    border-radius: 0;
    overflow: hidden;
    background: #2c5530;
  }
  
  .green-background-image {
    height: 160px;
    border-radius: 0;
    filter: brightness(0.5) saturate(1.4);
  }
  
  .green-image-overlay {
    padding: 16px;
    font-size: 1rem;
    gap: 10px;
    width: 90%;
    background: rgba(44, 85, 48, 0.9);
    border-radius: 0;
    justify-content: center;
    min-height: 120px;
  }
  
  .podcast-overlay-heading {
    font-size: 1.1rem;
    margin-bottom: 0;
    font-weight: 700;
    font-family: 'Merriweather', serif;
    color: #fff;
  }
  
  .podcast-overlay-button {
    font-size: 0.95rem;
    padding: 10px 16px;
    border-radius: 8px;
    min-height: 44px;
    gap: 6px;
    background: #2c5530;
    font-family: 'Open Sans', sans-serif;
    color: #fff;
  }
  
  .podcast-overlay-button .podcast-icon {
    font-size: 1rem;
  }
  
  .state-vermont-text {
    font-size: 0.85rem;
    font-family: 'Open Sans', sans-serif;
    color: #fff;
    font-style: normal;
  }
  
  /* Hero section */
  .hero-section {
    min-height: 50vh;
    padding: 16px 12px;
  }
  
  .hero-content h1 {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }
  
  .start-convo-btn {
    font-size: 1.1rem;
    padding: 14px 24px;
    border-radius: 10px;
    min-height: 48px;
  }
  
  /* Footer */
  .footer-content {
    padding: 20px 12px 12px 12px;
    gap: 12px;
  }
  
  .footer-logo img {
    width: 56px;
  }
  
  .footer-info p {
    font-size: 0.95rem;
    margin: 3px 0;
  }
  
  .footer-contact-btn {
    font-size: 1rem;
    padding: 12px 20px;
    border-radius: 8px;
    min-height: 48px;
    width: 85vw;
    max-width: 280px;
  }
  
  /* Back to top button */
  .back-to-top {
    right: 12px;
    bottom: 16px;
    width: 44px;
    height: 44px;
    font-size: 1.3rem;
  }
  
  /* Contact image */
  .contact-image {
    display: none !important;
  }
  
  /* What we bring list */
  .what-we-bring ul {
    padding-left: 16px;
    margin-top: 10px;
  }
  
  .what-we-bring li {
    margin-bottom: 8px;
    line-height: 1.4;
    font-size: 1rem;
  }
}

/* Landscape orientation optimizations for mobile */
@media (max-width: 768px) and (orientation: landscape) {
  .hero-section {
    min-height: 40vh;
  }
  
  .hero-content h1 {
    font-size: 1.6rem;
    margin-bottom: 16px;
  }
  
  .start-convo-btn {
    font-size: 1.1rem;
    padding: 12px 24px;
    min-height: 44px;
  }
  
  section {
    margin-bottom: 20px;
  }
  
  .section-content {
    padding: 16px 16px 20px 16px;
  }
  
  .contact-container {
    gap: 20px;
    margin-top: 20px;
  }
  
  .focus-areas-grid,
  .services-grid {
    gap: 16px;
  }
  
  .approach-steps {
    gap: 12px;
    margin-top: 16px;
  }
}

/* Accessibility & mobile UX enhancements for podcast section */
@media (max-width: 768px) {
  .green-image-section {
    /* Respect iOS safe areas */
    padding-left: env(safe-area-inset-left);
    padding-right: env(safe-area-inset-right);
  }
  .green-image-overlay {
    /* Prevent overlay from sticking to edges on ultra-narrow screens */
    box-sizing: border-box;
  }
  .podcast-overlay-button {
    /* Large tap target and focus style */
    min-width: 200px;
    outline: none;
  }
  .podcast-overlay-button:focus-visible {
    box-shadow: 0 0 0 4px rgba(255,255,255,0.6), 0 0 0 6px rgba(44,85,48,0.9);
  }
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Final responsive overrides for hero, about, and podcast sections */
@media (max-width: 1024px) {
  /* Stack About layout on tablets and down */
  .about-layout { display: flex !important; flex-direction: column !important; gap: 28px !important; align-items: center !important; }
  .about-text-content, .founder-profile-sidebar { width: 100% !important; max-width: 760px !important; margin: 0 auto !important; }
  .about-text-content h2, .about-tagline, .about-description p { text-align: center !important; }
}

@media (max-width: 768px) {
  /* Hero fills full viewport height */
  .hero-section { min-height: 100vh !important; padding: 0 !important; margin: 0 !important; }
  .hero-content { max-width: 90vw !important; }
  .hero-content h1 { font-size: clamp(1.8rem, 7vw, 2.4rem) !important; }

  /* About section center-align text on mobile */
  .about-text-content h2, .about-tagline, .about-description p { text-align: center !important; }
  .what-we-bring h4 { text-align: center !important; }
  .what-we-bring ul { margin-left: auto; margin-right: auto; max-width: 28rem; }

  /* Podcast section: overlay covers image and centers content */
  .green-background-image { height: clamp(240px, 55vh, 520px) !important; }
  .green-image-overlay { top: 0 !important; left: 0 !important; right: 0 !important; bottom: 0 !important; transform: none !important; width: 100% !important; max-width: none !important; min-height: 0 !important; display: grid !important; place-items: center !important; padding: 24px 16px !important; background: rgba(44,85,48,0.65) !important; }
  .podcast-overlay-heading { font-size: clamp(1.25rem, 6vw, 2rem) !important; }
  .podcast-overlay-button { font-size: clamp(1rem, 4.5vw, 1.1rem) !important; padding: 12px 22px !important; }
  .state-vermont-text { font-size: clamp(0.9rem, 3.8vw, 1rem) !important; }
}

@media (max-width: 768px) {
  /* Compact navbar on mobile */
  header { padding: 0.4rem 1rem !important; height: 56px !important; animation: none !important; transform: none !important; box-shadow: 0 2px 12px rgba(0,0,0,0.08) !important; }
  .logo img { height: 40px !important; transition: none !important; }
  nav ul { gap: 1.2rem !important; }
  nav a { padding: 0.25rem 0 !important; }
  /* Disable link underline animation */
  nav ul li { opacity: 1 !important; transform: none !important; animation: none !important; }
  .logo { opacity: 1 !important; transform: none !important; animation: none !important; }

  /* Remove hero entrance and overlay animations on mobile */
  .hero-section { min-height: 100vh !important; animation: none !important; }
  .hero-section::before, .hero-section::after { animation: none !important; }
  .animate-on-scroll, .service-item.animate-on-scroll, .what-we-bring ul li.animate-on-scroll { opacity: 1 !important; transform: none !important; animation: none !important; }
}

@media (max-width: 768px) {
  .green-image-section { position: relative !important; }
  .green-background-image { width: 100% !important; height: 100% !important; aspect-ratio: auto !important; object-fit: cover !important; }
  .green-image-overlay { padding: 16px !important; }
}

/* Desktop container width & focus styles */
@media (min-width: 1200px) {
  .section-content { max-width: 1120px; margin-left: auto; margin-right: auto; padding-left: 24px; padding-right: 24px; }
}

:where(a, button, input, textarea, select, .start-convo-btn, .submit-btn, .footer-contact-btn, .podcast-overlay-button):focus-visible {
  outline: 3px solid rgba(23,162,184,0.35);
  outline-offset: 2px;
}

/* Desktop podcast section ensures full cover without changing design */
@media (min-width: 1024px) {
  .green-image-section { min-height: 60vh; position: relative; }
  .green-background-image { width: 100%; height: 100%; object-fit: cover; }
}

@media (max-width: 768px) {
  /* Hide desktop nav list; show hamburger on the right */
  header { justify-content: space-between !important; }
  nav ul { display: none !important; }
  nav { display: flex; align-items: center; }
  .hamburger { display: flex !important; margin-left: auto; }
  .hamburger span { width: 24px !important; height: 3px !important; }
  .logo { order: 0; }
  nav { order: 1; }
  .logo img { height: 40px !important; width: auto; }

  /* Disable page loading overlay on mobile */
  .page-loading { display: none !important; }

  /* Hide footer logo in mobile */
  .footer-logo { display: none !important; }

  /* Podcast section: make image shorter so text is closer together */
  .green-image-section { min-height: auto !important; }
  .green-background-image { height: clamp(180px, 40vh, 320px) !important; object-fit: cover !important; }
  .green-image-overlay { padding-top: 12px !important; padding-bottom: 12px !important; row-gap: 8px !important; }

  /* Mobile sidebar close button color: teal */
  .close-sidebar { color: var(--color-accent) !important; }
}

/** Sidebar drawer sizing **/
@media (max-width: 1024px) {
  .sidebar { right: -25vw; width: 25vw; min-width: 220px; max-width: 360px; }
  .sidebar.open { right: 0; }
}

@media (min-width: 1024px) {
  /* Desktop contact layout: form left, image right */
  .contact-section .contact-container {
    display: grid !important;
    grid-template-columns: 1.15fr 0.85fr !important;
    gap: 40px !important;
    align-items: center !important;
    margin-top: 32px !important;
  }
  .contact-section .contact-form-col { grid-column: 1; order: 1; }
  .contact-section .contact-image-col { grid-column: 2; display: flex !important; align-items: center; justify-content: center; order: 2; }
  .contact-section .contact-image { display: block !important; width: 100%; max-width: 420px; height: auto; border-radius: 16px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); object-fit: cover; }
}

/* Sidebar: hidden until hamburger click; close button */
.sidebar { right: -300px; }
.sidebar.open { right: 0; }
.close-sidebar { position: absolute; top: 10px; right: 12px; font-size: 2rem; line-height: 1; }

@media (min-width: 1024px) {
  /* Center image vertically relative to form */
  .contact-section .contact-container { align-items: center !important; }
  .contact-section .contact-image-col, .contact-section .contact-form-col { align-self: center; }
}

/* Disable all animations and transitions for Chewey contact image */
.contact-image { transition: none !important; animation: none !important; transform: none !important; filter: none !important; }
.contact-image:hover { transform: none !important; filter: none !important; box-shadow: inherit !important; }
/* Remove any animate-on-scroll behavior tied to the image column */
.contact-image-col.animate-on-scroll, .contact-image.animate-on-scroll { opacity: 1 !important; transform: none !important; animation: none !important; }

/* Mobile podcast: image-only with centered overlay text (no solid bg) */
@media (max-width: 768px) {
  .green-image-section { background: transparent !important; position: relative !important; padding: 0 !important; }
  .green-background-image { width: 100% !important; height: clamp(220px, 55vh, 520px) !important; object-fit: cover !important; display: block !important; }
  .green-image-overlay { 
    position: absolute !important; inset: 0 !important; 
    display: flex !important; flex-direction: column !important; align-items: center !important; justify-content: center !important; 
    gap: 12px !important; padding: 16px !important; background: transparent !important; box-shadow: none !important; 
  }
  .podcast-overlay-heading { color: #fff !important; text-shadow: 0 2px 8px rgba(0,0,0,0.35) !important; }
  .state-vermont-text { color: #fff !important; text-shadow: 0 2px 6px rgba(0,0,0,0.3) !important; }
}

@media (max-width: 480px) {
  .bio-toggle-btn { background: color-mix(in srgb, var(--color-accent) 18%, #ffffff); border: 1.2px solid color-mix(in srgb, var(--color-accent) 55%, #dff6fa); box-shadow: 0 1px 3px rgba(23,162,184,0.14); }
}

/* Mobile podcast typography: larger, center-fill */
@media (max-width: 768px) {
  .green-image-overlay { gap: 16px !important; padding: 20px !important; }
  .podcast-overlay-heading { font-size: clamp(1.6rem, 7vw, 2.4rem) !important; text-align: center !important; }
  .podcast-overlay-button { 
    width: min(92%, 520px) !important; 
    font-size: clamp(1.05rem, 4.8vw, 1.3rem) !important; 
    padding: 16px 24px !important; 
    border-radius: 12px !important; 
    justify-content: center !important;
  }
}

/* Bio toggle: plain teal '+' (no circle) */
.bio-toggle-btn { 
  background: transparent !important; 
  border: 0 !important; 
  border-radius: 0 !important; 
  box-shadow: none !important; 
  width: auto !important; 
  height: auto !important; 
  min-width: 0 !important; 
  min-height: 0 !important; 
  max-width: none !important; 
  max-height: none !important; 
  padding: 0 !important; 
  display: inline-flex !important; 
  align-items: center !important; 
  justify-content: center !important; 
}
.bio-toggle-btn span { color: var(--color-accent) !important; font-size: 1.6rem !important; line-height: 1 !important; font-weight: 800 !important; }

@media (max-width: 768px) {
  .start-convo-btn { width: auto !important; max-width: 70vw !important; display: inline-flex !important; align-items: center; justify-content: center; }
}

/* Founder bio: hidden by default, shown when expanded */
.founder-bio { display: none !important; max-height: none !important; overflow: visible !important; }
.founder-bio.expanded { display: block !important; }

/* Mobile overrides: full-bleed sections, reduced animations, slimmer CTA */
@media (max-width: 768px) {
  /* Full-bleed all sections on mobile (no rounded corners) */
  section { 
    margin-left: calc(50% - 50vw) !important; 
    margin-right: calc(50% - 50vw) !important; 
    width: 100vw !important; 
    max-width: 100vw !important; 
    border-radius: 0 !important; 
    box-shadow: none !important; 
  }
  .section-content { padding-left: 16px !important; padding-right: 16px !important; }
  body { overflow-x: hidden; }

  /* Remove animations/transitions for cleaner look */
  section, .animate-on-scroll, .hero-section, .hero-section::before, .hero-section::after {
    animation: none !important; 
    transition: none !important; 
    transform: none !important; 
    opacity: 1 !important;
  }

  /* Hero spacing: avoid overlapping next section */
  .hero-section { position: relative !important; z-index: 0 !important; margin-bottom: 16px !important; }

  /* Slimmer Start a Conversation button */
  .start-convo-btn { 
    width: auto !important; 
    max-width: 60vw !important; 
    display: inline-flex !important; 
    align-items: center; 
    justify-content: center; 
    padding: 12px 18px !important; 
    font-size: 1rem !important; 
    border-radius: 10px !important; 
  }
}

/* Logo flush with navbar (no button look) */
.logo { padding: 0 !important; background: transparent !important; box-shadow: none !important; }
.logo img { display: block; background: transparent !important; border-radius: 0 !important; filter: none !important; box-shadow: none !important; }
.logo img:hover { transform: none !important; filter: none !important; }

@media (max-width: 768px) {
  header { padding-left: 8px !important; padding-right: 8px !important; box-shadow: none !important; backdrop-filter: none !important; }
  .logo img { height: 40px !important; }
}

@media (max-width: 768px) {
  header { background: #ffffff !important; height: 56px !important; }
}

header { background: #ffffff; }

@media (min-width: 769px) and (max-width: 1024px) {
  /* Header/nav spacing */
  header { padding: 0.6rem 1.25rem !important; height: 64px !important; box-shadow: 0 2px 10px rgba(0,0,0,0.06) !important; }
  .logo img { height: 48px !important; }
  nav ul { gap: 1.25rem !important; }

  /* Section rhythm */
  section { padding-top: 56px !important; padding-bottom: 56px !important; }
  .section-content { max-width: 960px !important; padding-left: 24px !important; padding-right: 24px !important; }

  /* Hero */
  .hero-section { min-height: 80vh !important; }
  .hero-content h1 { font-size: clamp(2rem, 4.2vw, 3rem) !important; margin-bottom: 24px !important; }
  .start-convo-btn { max-width: 42vw !important; padding: 14px 22px !important; font-size: 1.05rem !important; }

  /* Podcast overlay */
  .green-background-image { height: clamp(320px, 50vh, 520px) !important; }
  .green-image-overlay { gap: 14px !important; padding: 24px !important; }
  .podcast-overlay-heading { font-size: clamp(1.6rem, 3.2vw, 2.2rem) !important; }
  .podcast-overlay-button { padding: 14px 24px !important; font-size: 1.05rem !important; max-width: 520px !important; }

  /* Grids */
  .focus-areas-grid, .services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; gap: 24px !important; }
  .focus-area, .service-item { padding: 20px !important; }

  /* Contact layout breathing room */
  .contact-section .section-content { max-width: 980px !important; }
  .contact-section .contact-container { gap: 24px !important; }
}

/* Decorative green gradient line above the contact form */
.contact-form::before {
  content: "";
  display: block;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, #6BA043 0%, #17A2B8 100%);
  margin-bottom: 16px;
}

/* Desktop: show the entire contact section within one viewport */
@media (min-width: 1024px) {
  .contact-section {
    min-height: 100vh !important;
    display: flex !important;
    align-items: center !important;
  }
  .contact-section .section-content { width: 100% !important; }
  .contact-section .contact-container { align-items: center !important; gap: 32px !important; }
  .contact-section .contact-main-heading { margin-bottom: 8px !important; }
  .contact-section p { margin-top: 0 !important; margin-bottom: 16px !important; }
  .contact-section .contact-image { max-height: 62vh !important; width: auto !important; object-fit: cover !important; }
  .contact-section .contact-form { padding-top: 16px !important; padding-bottom: 16px !important; }
  .contact-section .form-group textarea { min-height: 120px !important; }
}

/* Contact form needs positioning context for top accent line */
.contact-form { position: relative; }

/* Decorative green gradient line above the contact form (flush at very top, curved ends) */
.contact-form::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, #6BA043 0%, #17A2B8 100%);
}

/* Tablet adjustments: keep attribution fully on the image with slight margin */
@media (min-width: 769px) and (max-width: 1024px) {
  .green-image-section { position: relative !important; }
  .green-image-overlay { 
    position: absolute !important; inset: 0 !important; 
    display: flex !important; flex-direction: column !important; 
    align-items: center !important; justify-content: center !important; 
    padding: 20px !important;
  }
  .state-vermont-text { 
    color: #fff !important; 
    margin-top: 6px !important; 
    margin-bottom: 10px !important; 
    text-shadow: 0 1px 2px rgba(0,0,0,0.35);
  }
}

/* Desktop: vertically center Chewey image with the form */
@media (min-width: 1024px) {
  .contact-section .contact-image-col { display: flex !important; align-items: center !important; justify-content: center !important; }
}

/* Contact form top accent: clip to rounded corners with side inset */
.contact-form { position: relative; overflow: hidden !important; border-radius: inherit; }
.contact-form::before { left: 12px !important; right: 12px !important; top: 0 !important; border-radius: 999px; pointer-events: none; }

@media (min-width: 1024px) {
  /* Equal-height columns: stretch grid items */
  .contact-section .contact-container { align-items: stretch !important; }
  .contact-section .contact-form-col,
  .contact-section .contact-image-col { height: 100% !important; }
  .contact-section .contact-form { height: 100% !important; }

  /* Chewey image matches form container height */
  .contact-section .contact-image { 
    height: 100% !important; 
    width: 100% !important; 
    max-height: none !important; 
    object-fit: cover !important; 
    border-radius: 16px !important; 
    display: block;
  }
}

/* Straight top accent bar inside rounded form container */
.contact-form { border-radius: 16px !important; }
.contact-form::before { border-radius: 0 !important; height: 8px !important; }

@media (max-width: 768px) {
  .contact-form { border-radius: 12px !important; }
}

@media (min-width: 1024px) {
  /* Contact: image should start at top and not fill to bottom */
  .contact-section .contact-container { align-items: flex-start !important; }
  .contact-section .contact-image-col { align-items: flex-start !important; }
  .contact-section .contact-image {
    width: 100% !important;
    height: auto !important;
    max-height: 62vh !important; /* fits the view without reaching the bottom */
    object-fit: cover !important;
    border-radius: 16px !important;
  }
}

/* Contact form container look & top green bar refinement */
.contact-form {
  background: #ffffff !important;
  border-radius: 20px !important;
  border: 1px solid rgba(0,0,0,0.06) !important;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06) !important;
  padding: 28px 22px !important;
}
.contact-form::before {
  height: 8px !important;
  left: 16px !important;
  right: 16px !important;
  top: 0 !important;
  border-radius: 6px !important; /* rounded ends */
  background: linear-gradient(90deg, #6BA043 0%, #17A2B8 100%) !important;
}

@media (max-width: 768px) {
  .contact-form { border-radius: 16px !important; padding: 22px 18px !important; }
  .contact-form::before { left: 12px !important; right: 12px !important; height: 6px !important; border-radius: 5px !important; }
}

@media (min-width: 1024px) {
  /* Desktop contact layout – match screenshot */
  .contact-section .section-content { max-width: 1180px !important; }
  .contact-section .contact-container {
    display: grid !important;
    grid-template-columns: minmax(620px, 1fr) minmax(380px, 460px) !important;
    gap: 48px !important;
    align-items: flex-start !important;
  }
  .contact-section .contact-form { max-width: 720px !important; }
  .contact-section .contact-image-col { align-items: flex-start !important; justify-content: center !important; }
  .contact-section .contact-image {
    width: 100% !important;
    max-width: 460px !important;
    height: auto !important;
    max-height: 78vh !important; /* tall, but not to bottom */
    object-fit: cover !important;
    border-radius: 20px !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12) !important;
  }
}

/* Final: contact form top green bar spans full width and matches rounded corners */
.contact-form { position: relative !important; overflow: hidden !important; border-radius: 20px !important; }
.contact-form::before { 
  content: "" !important; 
  position: absolute !important; 
  top: 0 !important; 
  left: 0 !important; 
  right: 0 !important; 
  height: 8px !important; 
  border-top-left-radius: inherit !important; 
  border-top-right-radius: inherit !important; 
  border-bottom-left-radius: 0 !important; 
  border-bottom-right-radius: 0 !important; 
  background: linear-gradient(90deg, #6BA043 0%, #17A2B8 100%) !important; 
  pointer-events: none !important; 
}

@media (max-width: 768px) {
  .contact-form { border-radius: 16px !important; }
  .contact-form::before { height: 6px !important; }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .green-image-overlay { padding-bottom: clamp(44px, 9vh, 96px) !important; }
  .state-vermont-text { margin-top: 8px !important; margin-bottom: 0 !important; }
}

/* Re-enable loading overlay on mobile */
@media (max-width: 768px) {
  .page-loading { display: flex !important; }
}

@media (max-width: 768px) {
  /* Loading: show only the logo, no spinner or text */
  .loading-spinner, .loading-text { display: none !important; }
  .loading-logo {
    margin: 0 !important;
    padding: 0 !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    width: min(72vw, 420px) !important;
    height: auto !important;
    aspect-ratio: auto !important;
    min-width: 0 !important;
    min-height: 0 !important;
    max-width: 92vw !important;
    opacity: 1 !important; /* ensure no global img fade affects the logo */
  }
  .page-loading { gap: 0 !important; padding: 0 !important; background: var(--color-white) !important; }
}

@media (max-width: 768px) {
  /* Loading: logo + centered spinner under it; hide text */
  .loading-text { display: none !important; }
  .loading-spinner {
    display: block !important;
    width: 56px !important;
    height: 56px !important;
    margin-top: 16px !important;
    margin-bottom: 0 !important;
  }
}