/* ========================================
   CSS VARIABLES & DESIGN SYSTEM - LIGHT THEME
   ======================================== */

:root {
  /* Brand Colors - BOLDER */
  --brand: #759a22;              /* Primary brand green */
  --brand-hover: #638219;        /* Darker on hover */
  --accent: #cf9031;             /* Secondary accent orange */
  --accent-hover: #b57d28;
  --brand-light: #a8c956;        /* Lighter green */
  --accent-light: #e5a855;       /* Lighter orange */

  /* Dynamic values */
  --scroll-width: 0%;

  /* Backgrounds - DRAMATIC */
  --bg: #fafbf8;                 /* Warm off-white */
  --bg-elevated: #ffffff;        /* Pure white for contrast */
  --surface: #f0f4eb;            /* Soft green tinted */
  --surface-hover: #e8efe0;      /* Hover state */
  --dark-bg: #1a1f14;            /* Deep forest green */
  --dark-surface: #242b1c;       /* Dark surface */

  /* Text */
  --text: #0a0d08;               /* Almost black */
  --text-secondary: #4a5244;     /* Greenish gray */
  --muted: #6b7563;              /* Muted green-gray */

  /* Borders & Dividers */
  --border: #d4dcc9;
  --border-light: #e8efdd;

  /* Interactive States */
  --focus: #759a22;
  --link: #759a22;
  --link-hover: #cf9031;

  /* Overlays */
  --overlay: rgba(255, 255, 255, 0.95);
  --overlay-light: rgba(245, 247, 243, 0.98);

  /* Spacing Scale */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 12px;
  --space-lg: 16px;
  --space-xl: 24px;
  --space-2xl: 32px;
  --space-3xl: 48px;
  --space-4xl: 64px;

  /* Typography */
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-heading: 'Merriweather', Georgia, serif;

  /* UI Elements */
  --radius: 8px;
  --radius-sm: 4px;
  --radius-lg: 12px;
  --shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.03);
  --shadow-lg: 0 4px 16px rgba(0, 0, 0, 0.08);
  --shadow-glow: 0 0 20px rgba(117, 154, 34, 0.15);

  /* Transitions */
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========================================
   RESET & BASE STYLES
   ======================================== */

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}

/* Scroll progress indicator */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand), var(--accent));
  z-index: 9999;
  width: var(--scroll-width);
  transition: width 0.1s ease-out;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
  font-weight: 700;
  color: var(--text);
}

h1 { font-size: clamp(2rem, 5vw, 3rem); margin-bottom: var(--space-xl); }
h2 { font-size: clamp(1.75rem, 4vw, 2.25rem); margin-bottom: var(--space-lg); }
h3 { font-size: clamp(1.5rem, 3vw, 1.875rem); margin-bottom: var(--space-lg); }
h4 { font-size: 1.25rem; margin-bottom: var(--space-md); }

p { margin-bottom: var(--space-lg); }

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

a:hover {
  color: var(--link-hover);
}

a:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 2px;
  border-radius: 4px;
}

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

/* ========================================
   UTILITY CLASSES
   ======================================== */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

.container--narrow {
  max-width: 800px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--brand);
  color: var(--bg);
  padding: var(--space-sm) var(--space-lg);
  z-index: 100;
  border-radius: 0 0 var(--radius-sm) 0;
  font-weight: 600;
}

.skip-link:focus {
  top: 0;
  outline: 3px solid var(--accent);
}

/* ========================================
   HEADER & NAVIGATION
   ======================================== */

.header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 var(--border);
  position: sticky;
  top: 0;
  z-index: 50;
  transition: all var(--transition);
}

.header.shrink {
  box-shadow: var(--shadow);
}

.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-lg) var(--space-xl);
  min-height: 72px;
}

.header__logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: var(--space-md);
  z-index: 60;
  transition: all 0.3s ease;
  position: relative;
}

.header__logo::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--brand);
  transition: width 0.3s ease;
}

.header__logo:hover::after {
  width: 100%;
}

.header__logo:hover {
  transform: translateY(-1px);
}

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

.nav__list {
  display: flex;
  gap: var(--space-2xl);
  list-style: none;
  align-items: center;
}

.nav__link {
  font-weight: 500;
  color: var(--text-secondary);
  padding: var(--space-sm) 0;
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--text);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateX(-50%);
}

.nav__link:hover,
.nav__link.active {
  color: var(--text);
  transform: translateY(-2px);
}

.nav__link:hover::after,
.nav__link.active::after {
  width: 100%;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-sm);
  z-index: 60;
  position: relative;
}

.menu-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  background: var(--text);
  margin: 5px 0;
  transition: all var(--transition);
  border-radius: 2px;
}

.menu-toggle:hover span {
  background: var(--brand);
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* ========================================
   MOBILE RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 400px;
    height: 100vh;
    background: #ffffff;
    box-shadow: var(--shadow-lg);
    padding: var(--space-4xl) var(--space-2xl);
    transition: right 0.3s ease-in-out;
    flex-direction: column;
    align-items: flex-start;
    overflow-y: auto;
    border-left: 2px solid var(--border);
    z-index: 1000;
    visibility: hidden;
  }

  .nav.open {
    right: 0;
    visibility: visible;
  }

  .nav__list {
    flex-direction: column;
    gap: var(--space-xl);
    width: 100%;
  }

  .nav__link {
    font-size: 1.375rem;
    display: block;
    width: 100%;
    padding: var(--space-md) 0;
  }

  /* Hero adjustments */
  .hero {
    padding: clamp(60px, 10vw, 80px) 0;
  }

  .hero__title {
    font-size: clamp(2.25rem, 10vw, 3rem);
    line-height: 1.15;
  }

  .hero__subtitle {
    font-size: clamp(1rem, 4vw, 1.25rem);
  }

  .hero__cta {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
    padding: 16px 24px;
  }

  /* Container padding */
  .container {
    padding: 0 var(--space-lg);
  }

  /* Grid adjustments */
  .grid--2,
  .grid--3,
  .grid--4 {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  /* Card adjustments */
  .card {
    padding: var(--space-2xl);
  }

  /* Section spacing */
  .section {
    padding: var(--space-3xl) 0;
  }

  /* Header logo */
  .header__logo {
    font-size: 1.125rem;
  }

  .header__container {
    padding: var(--space-md) var(--space-lg);
    min-height: 60px;
  }

  /* Value props */
  .value-props {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .value-prop__number {
    font-size: 3rem;
  }

  /* Footprints - hide on very small screens */
  @media (max-width: 480px) {
    .footprints-trail {
      display: none;
    }
  }

  /* Story grid */
  .story-grid {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  /* Feature blocks */
  .feature-blocks {
    grid-template-columns: 1fr;
  }

  /* Milestones */
  .milestones {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  /* Values showcase */
  .values-showcase {
    grid-template-columns: 1fr;
  }

  /* Back to top button */
  .back-to-top {
    bottom: var(--space-lg);
    right: var(--space-lg);
    width: 45px;
    height: 45px;
  }
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero {
  background: linear-gradient(165deg, #f8fdf0 0%, #ffffff 40%, #fffaf0 100%);
  color: var(--text);
  padding: clamp(80px, 12vw, 140px) 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(117, 154, 34, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -15%;
  left: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(207, 144, 49, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(-30px, -30px) scale(1.05);
  }
}

.hero__container {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

.hero__title {
  color: var(--text);
  font-size: clamp(3rem, 8vw, 5.5rem);
  margin-bottom: var(--space-xl);
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--text) 0%, var(--brand) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: fadeInUp 1s ease-out;
  padding-top: 0.1em;
  padding-bottom: 0.1em;
}

.hero__subtitle {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  margin-bottom: var(--space-3xl);
  opacity: 0.9;
  font-weight: 400;
  line-height: 1.5;
  color: var(--text-secondary);
}

.hero__cta {
  display: inline-flex;
  gap: var(--space-lg);
  flex-wrap: wrap;
  justify-content: center;
}

/* ========================================
   BUTTONS
   ======================================== */

.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 500;
  font-size: 0.9375rem;
  text-align: center;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn:active {
  transform: scale(0.98);
}

.btn--primary {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-hover) 100%);
  color: #ffffff;
  box-shadow: 0 8px 24px rgba(117, 154, 34, 0.25);
  font-weight: 600;
}

.btn--primary:hover {
  background: linear-gradient(135deg, var(--brand-hover) 0%, var(--brand) 100%);
  color: #ffffff;
  transform: scale(1.05);
  box-shadow: 0 12px 32px rgba(117, 154, 34, 0.35);
}

.btn--secondary {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}

.btn--secondary:hover {
  background: var(--bg-elevated);
  border-color: var(--text);
}

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

.btn--outline:hover {
  background: var(--brand);
  color: #ffffff;
}

.btn:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 2px;
}

/* ========================================
   CARDS
   ======================================== */

.card {
  background: #ffffff;
  border-radius: 16px;
  padding: var(--space-3xl);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 3px solid transparent;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  cursor: pointer;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, var(--brand), var(--accent), var(--brand-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card:hover {
  border-color: var(--brand-hover);
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 12px 40px rgba(117, 154, 34, 0.15);
}

.card__icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--brand), var(--brand-hover));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-lg);
  font-size: 1.75rem;
  box-shadow: var(--shadow-glow);
}

.card__title {
  font-size: 1.5rem;
  color: var(--text);
  margin-bottom: var(--space-md);
}

.card__description {
  color: var(--muted);
  margin-bottom: var(--space-lg);
  line-height: 1.7;
}

.card__link {
  color: var(--text);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.9375rem;
}

.card__link::after {
  content: '→';
  transition: transform var(--transition);
  color: var(--brand);
}

.card__link:hover {
  color: var(--brand);
}

.card__link:hover::after {
  transform: translateX(4px);
}

/* ========================================
   GRID LAYOUTS
   ======================================== */

.grid {
  display: grid;
  gap: var(--space-2xl);
}

.grid--2 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid--3 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.grid--4 {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

/* ========================================
   SECTIONS
   ======================================== */

.section {
  padding: var(--space-4xl) 0;
  position: relative;
  overflow: hidden;
}

/* Removed decorative circles - cleaner design */

.section--dark {
  background: linear-gradient(180deg, var(--dark-bg) 0%, var(--dark-surface) 100%);
  position: relative;
  color: #ffffff;
}

.section--dark::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(circle at 25% 25%, rgba(117, 154, 34, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(207, 144, 49, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.section--dark .section__title,
.section--dark .section__subtitle,
.section--dark h1,
.section--dark h2,
.section--dark h3 {
  color: #ffffff;
}

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

.section--dark p,
.section--dark li,
.section--dark ul {
  color: rgba(255, 255, 255, 0.85);
}

.section--dark strong {
  color: #ffffff;
}

/* Override dark section styles for all white cards */
.section--dark .card,
.section--dark .value-card,
.section--dark .feature-block,
.section--dark .milestone,
.section--dark .testimonial,
.section--dark .team-member {
  color: #0a0d08;
}

.section--dark .card h1,
.section--dark .card h2,
.section--dark .card h3,
.section--dark .card h4,
.section--dark .card p,
.section--dark .value-card h1,
.section--dark .value-card h2,
.section--dark .value-card h3,
.section--dark .value-card h4,
.section--dark .value-card p,
.section--dark .feature-block h1,
.section--dark .feature-block h2,
.section--dark .feature-block h3,
.section--dark .feature-block h4,
.section--dark .feature-block p,
.section--dark .milestone h1,
.section--dark .milestone h2,
.section--dark .milestone h3,
.section--dark .milestone h4,
.section--dark .milestone p,
.section--dark .testimonial p,
.section--dark .team-member h4,
.section--dark .team-member p {
  color: inherit !important;
}


.section__header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-4xl);
  position: relative;
  z-index: 1;
}

.section__header::after {
  display: none;
}

.section__title {
  color: var(--text);
  margin-bottom: var(--space-lg);
  font-weight: 600;
}

.section__subtitle {
  color: var(--text-secondary);
  font-size: 1.125rem;
  line-height: 1.7;
}

/* ========================================
   VALUE PROPS
   ======================================== */

.value-props {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-3xl);
  margin-top: var(--space-4xl);
}

.value-prop {
  text-align: center;
  padding: var(--space-3xl) var(--space-2xl);
  background: linear-gradient(135deg, #ffffff 0%, var(--bg-elevated) 100%);
  border-radius: 20px;
  border: 2px solid var(--border);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.value-prop::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(117, 154, 34, 0.05), rgba(207, 144, 49, 0.05));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.value-prop:hover::before {
  opacity: 1;
}

.value-prop:hover {
  border-color: var(--brand);
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 32px rgba(117, 154, 34, 0.15);
}

.value-prop__number {
  font-size: 4rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: var(--font-heading);
  line-height: 1;
  margin-bottom: var(--space-lg);
  position: relative;
  z-index: 1;
}

.value-prop__label {
  font-size: 1.125rem;
  color: var(--text-secondary);
}

/* ========================================
   TESTIMONIALS
   ======================================== */

.testimonial {
  background: var(--bg-elevated);
  border-radius: var(--radius);
  padding: var(--space-2xl);
  box-shadow: var(--shadow);
  position: relative;
  border: 1px solid var(--border);
  transition: all var(--transition);
}

.testimonial:hover {
  border-color: var(--border-light);
  transform: translateY(-2px);
}

.testimonial::before {
  display: none;
}

.testimonial__text {
  font-style: italic;
  color: var(--text-secondary);
  margin-bottom: var(--space-lg);
  position: relative;
  z-index: 1;
  line-height: 1.7;
}

.testimonial__author {
  font-weight: 600;
  color: var(--brand);
}

.testimonial__role {
  color: var(--muted);
  font-size: 0.875rem;
}

/* ========================================
   LOGO STRIP
   ======================================== */

.logo-strip {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-2xl);
  padding: var(--space-3xl) 0;
  opacity: 0.5;
}

.logo-strip__item {
  font-size: 1.25rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
  transition: all var(--transition);
}

.logo-strip__item:hover {
  color: var(--brand-light);
  opacity: 1;
}

/* ========================================
   CTA BAND
   ======================================== */

.cta-band {
  background: var(--bg-elevated);
  color: var(--text);
  padding: var(--space-4xl) 0;
  text-align: center;
  position: relative;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.cta-band__title {
  color: var(--text);
  margin-bottom: var(--space-lg);
  position: relative;
  z-index: 1;
}

.cta-band__text {
  font-size: 1.125rem;
  margin-bottom: var(--space-2xl);
  opacity: 0.9;
  color: var(--text-secondary);
  position: relative;
  z-index: 1;
}

/* ========================================
   FAQ ACCORDION
   ======================================== */

.faq {
  max-width: 800px;
  margin: 0 auto;
}

.faq__item {
  background: var(--bg-elevated);
  border-radius: var(--radius);
  margin-bottom: var(--space-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all var(--transition);
}

.faq__item:hover {
  border-color: var(--border-light);
}

.faq__question {
  width: 100%;
  text-align: left;
  padding: var(--space-xl);
  background: none;
  border: none;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color var(--transition);
}

.faq__question:hover {
  color: var(--brand);
}

.faq__question:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: -3px;
}

.faq__icon {
  font-size: 1.5rem;
  color: var(--brand);
  transition: transform var(--transition);
  flex-shrink: 0;
  margin-left: var(--space-md);
}

.faq__item.open .faq__icon {
  transform: rotate(45deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition);
}

.faq__answer-content {
  padding: 0 var(--space-xl) var(--space-xl);
  color: var(--text-secondary);
  line-height: 1.7;
}

.faq__item.open .faq__answer {
  max-height: 500px;
}

/* ========================================
   CONTACT INFO
   ======================================== */

.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-2xl);
  margin-bottom: var(--space-4xl);
}

.contact-item {
  text-align: center;
  padding: var(--space-2xl);
  background: var(--bg-elevated);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: all var(--transition);
}

.contact-item:hover {
  border-color: var(--border-light);
  transform: translateY(-2px);
}

.contact-item__icon {
  width: 60px;
  height: 60px;
  background: var(--brand);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-lg);
  font-size: 1.5rem;
  color: #ffffff;
  box-shadow: var(--shadow-glow);
}

.contact-item__title {
  font-size: 1.25rem;
  margin-bottom: var(--space-sm);
  color: var(--text);
}

.contact-item__text {
  color: var(--text-secondary);
  line-height: 1.7;
}

.contact-item__link {
  color: var(--brand);
  font-weight: 600;
}

.contact-item__link:hover {
  color: var(--accent);
}

/* ========================================
   MAP
   ======================================== */

.map-container {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin: var(--space-3xl) 0;
  border: 1px solid var(--border);
}

.map-container iframe {
  width: 100%;
  height: 400px;
  border: 0;
  filter: grayscale(0.2);
}

/* ========================================
   FORM
   ======================================== */

.form {
  max-width: 600px;
  margin: 0 auto;
}

.form__group {
  margin-bottom: var(--space-xl);
}

.form__label {
  display: block;
  margin-bottom: var(--space-sm);
  font-weight: 600;
  color: var(--text);
}

.form__input,
.form__textarea {
  width: 100%;
  padding: var(--space-lg);
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: all var(--transition);
  background: var(--surface);
  color: var(--text);
}

.form__input:hover,
.form__textarea:hover {
  border-color: var(--border-light);
}

.form__input:focus,
.form__textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(136, 184, 45, 0.1);
}

.form__textarea {
  min-height: 150px;
  resize: vertical;
}

/* ========================================
   ABOUT PAGE HERO
   ======================================== */

.about-hero {
  background: linear-gradient(135deg, #f8faf5 0%, #edf3e6 50%, #ffffff 100%);
  position: relative;
}

.about-hero::before {
  display: none;
}

.about-hero::after {
  display: none;
}

/* ========================================
   STORY GRID - ABOUT PAGE
   ======================================== */

.story-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
  position: relative;
}

.story-grid__content {
  position: relative;
}

/* Removed decorative circle */

.story-text p {
  font-size: 1.0625rem;
  line-height: 1.8;
  margin-bottom: var(--space-xl);
  color: var(--text-secondary);
}

.story-text p strong {
  color: var(--text);
  font-weight: 600;
}

.story-grid__image {
  position: relative;
}

.story-grid__image::before {
  content: '';
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  opacity: 0.1;
  border-radius: var(--radius);
  z-index: -1;
}

@media (max-width: 968px) {
  .story-grid {
    grid-template-columns: 1fr;
    gap: var(--space-3xl);
  }

  .story-grid__image::before {
    display: none;
  }
}

/* ========================================
   FEATURE BLOCKS - ABOUT PAGE
   ======================================== */

.feature-blocks {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--space-2xl);
  margin-top: var(--space-3xl);
}

.feature-block {
  background: #ffffff;
  padding: var(--space-3xl);
  border-radius: var(--radius-lg);
  border: 2px solid var(--border);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.feature-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--text-secondary), var(--muted));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.feature-block:hover::before {
  transform: scaleX(1);
}

.feature-block--primary {
  border-color: var(--border);
  background: #ffffff;
}

.feature-block--primary::before {
  background: linear-gradient(90deg, var(--text-secondary), var(--muted));
}

.feature-block:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--text);
}

.feature-block__label {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--brand) !important;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: var(--space-md);
}

.feature-block__title {
  font-size: 1.75rem;
  margin-bottom: var(--space-lg);
  color: #0a0d08 !important;
  line-height: 1.3;
}

.feature-block__text {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: #4a5244 !important;
}

/* ========================================
   MILESTONES - MODERN GRID
   ======================================== */

.milestones {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-xl);
  margin-top: var(--space-3xl);
  position: relative;
  z-index: 1;
}

.milestone {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 16px;
  padding: var(--space-3xl);
  border: 2px solid rgba(255, 255, 255, 0.2);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.milestone::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--brand-light), var(--accent-light));
  transform: scaleX(0);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.milestone::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(117, 154, 34, 0.08), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.milestone:hover::before {
  transform: scaleX(1);
}

.milestone:hover::after {
  opacity: 1;
}

.milestone:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 16px 40px rgba(117, 154, 34, 0.2);
  border-color: rgba(117, 154, 34, 0.3);
}

.milestone--current {
  background: linear-gradient(135deg, #f8faf5 0%, #ffffff 100%);
  border: 2px solid var(--brand);
}

.milestone--current::before {
  transform: scaleX(1);
}

.milestone__year {
  font-size: 1.125rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--space-lg);
  letter-spacing: 1px;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}


.milestone__title {
  font-size: 1.25rem;
  margin-bottom: var(--space-md);
  color: #0a0d08 !important;
  font-weight: 600;
}

.milestone__text {
  color: #4a5244 !important;
  font-size: 0.9375rem;
  line-height: 1.6;
}

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

/* ========================================
   VALUES SHOWCASE - ABOUT PAGE
   ======================================== */

.values-showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  margin-top: var(--space-3xl);
}

.value-card {
  background: #ffffff;
  border: 3px solid var(--border);
  border-radius: 12px;
  padding: var(--space-3xl);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.value-card--large {
  grid-column: span 3;
  background: #ffffff;
}

.value-card:nth-child(1) {
  grid-column: span 3;
}

.value-card:nth-child(5) {
  grid-column: span 3;
}

@media (max-width: 968px) {
  .values-showcase {
    grid-template-columns: 1fr;
  }

  .value-card--large,
  .value-card:nth-child(1),
  .value-card:nth-child(5) {
    grid-column: span 1;
  }
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--brand), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

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

.value-card:hover {
  transform: translateY(-4px) scale(1.02);
  border-color: var(--brand);
  box-shadow: 0 12px 32px rgba(117, 154, 34, 0.15);
}

.value-card--large:hover {
  transform: scale(1.005);
  border-color: var(--brand);
  box-shadow: 0 12px 32px rgba(117, 154, 34, 0.15);
}

.value-card__number {
  font-size: 4rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: var(--font-heading);
  line-height: 1;
  margin-bottom: var(--space-lg);
  transition: all 0.4s ease;
  position: relative;
}

.value-card:hover .value-card__number {
  transform: scale(1.1);
}

.value-card__title {
  font-size: 1.5rem;
  margin-bottom: var(--space-lg);
  color: #0a0d08 !important;
  font-weight: 700;
}

.value-card__text {
  color: #4a5244 !important;
  line-height: 1.8;
  font-size: 1.0625rem;
}

/* ========================================
   TEAM GRID
   ======================================== */

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-2xl);
}

.team-member {
  text-align: center;
  background: var(--bg-elevated);
  border-radius: var(--radius);
  padding: var(--space-2xl);
  box-shadow: var(--shadow);
  transition: all var(--transition);
  border: 1px solid var(--border);
}

.team-member:hover {
  transform: translateY(-2px);
  border-color: var(--border-light);
  box-shadow: var(--shadow-lg);
}

.team-member__photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin: 0 auto var(--space-lg);
  background: linear-gradient(135deg, var(--brand), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: #ffffff;
  font-weight: 700;
  box-shadow: var(--shadow-glow);
}

.team-member__name {
  font-size: 1.25rem;
  margin-bottom: var(--space-xs);
  color: #0a0d08 !important;
}

.team-member__role {
  color: var(--brand) !important;
  font-weight: 600;
  margin-bottom: var(--space-sm);
}

.team-member__bio {
  color: #4a5244 !important;
  font-size: 0.875rem;
  line-height: 1.6;
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
  background: var(--bg-elevated);
  color: var(--text);
  padding: var(--space-4xl) 0 var(--space-2xl);
  border-top: 1px solid var(--border);
}

.footer__container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-3xl);
  margin-bottom: var(--space-3xl);
}

.footer__section-title {
  color: var(--text);
  font-size: 1.125rem;
  margin-bottom: var(--space-lg);
  font-weight: 600;
}

.footer__links {
  list-style: none;
}

.footer__link {
  margin-bottom: var(--space-sm);
}

.footer__link a {
  color: var(--text-secondary);
  transition: color var(--transition);
}

.footer__link a:hover {
  color: var(--brand);
}

.footer__social {
  display: flex;
  gap: var(--space-lg);
  margin-top: var(--space-lg);
}

.footer__social-link {
  width: 40px;
  height: 40px;
  background: var(--bg-elevated);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  border: 2px solid var(--border);
  font-style: normal;
  line-height: 1;
}

.footer__social-link:hover {
  background: var(--text);
  border-color: var(--text);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  color: #ffffff;
}

.footer__bottom {
  border-top: 1px solid var(--border);
  padding-top: var(--space-xl);
  text-align: center;
  color: var(--muted);
  font-size: 0.875rem;
}

.footer__bottom a {
  color: var(--text-secondary);
}

.footer__bottom a:hover {
  color: var(--brand);
}

/* ========================================
   BACK TO TOP BUTTON
   ======================================== */

.back-to-top {
  position: fixed;
  bottom: var(--space-2xl);
  right: var(--space-2xl);
  width: 50px;
  height: 50px;
  background: var(--brand);
  color: #ffffff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: all var(--transition);
  z-index: 40;
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: all;
}

.back-to-top:hover {
  background: var(--accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

.back-to-top:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 2px;
}

/* ========================================
   IMAGES & FIGURES
   ======================================== */

/* Responsive image container with aspect ratio */
.img-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--surface);
}

/* Aspect ratio boxes - prevent CLS */
.img-container--16-9 {
  aspect-ratio: 16 / 9;
}

.img-container--4-3 {
  aspect-ratio: 4 / 3;
}

.img-container--square {
  aspect-ratio: 1 / 1;
}

.img-container--portrait {
  aspect-ratio: 3 / 4;
}

.img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
}

/* Figure element for images with captions */
figure {
  margin: var(--space-2xl) 0;
  background: var(--bg-elevated);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all var(--transition);
}

figure:hover {
  border-color: var(--border-light);
  box-shadow: var(--shadow);
}

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

figcaption {
  padding: var(--space-lg) var(--space-xl);
  color: var(--text-secondary);
  font-size: 0.9375rem;
  line-height: 1.6;
  font-style: italic;
}

/* Gallery grid for multiple images */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-lg);
  margin: var(--space-3xl) 0;
}

.gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 4 / 3;
  background: var(--surface);
  border: 1px solid var(--border);
  transition: all var(--transition);
}

.gallery__item:hover {
  border-color: var(--border-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery__item:hover img {
  transform: scale(1.08) rotate(1deg);
}

/* ========================================
   MODERN ANIMATIONS
   ======================================== */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.reveal {
  opacity: 0;
  animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.reveal--1 { animation-delay: 0.1s; }
.reveal--2 { animation-delay: 0.25s; }
.reveal--3 { animation-delay: 0.4s; }
.reveal--4 { animation-delay: 0.55s; }

/* Scroll-triggered animations */
.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========================================
   ACCESSIBILITY
   ======================================== */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  :root {
    --shadow: 0 0 0 2px currentColor;
    --shadow-sm: 0 0 0 1px currentColor;
    --shadow-lg: 0 0 0 3px currentColor;
  }

  .card,
  .testimonial,
  .faq__item,
  .team-member {
    border-width: 2px;
  }
}

/* Focus visible enhancements */
:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 2px;
  border-radius: 4px;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 2px;
}

/* ========================================
   DECORATIVE FOOTPRINTS - ANIMATED
   ======================================== */

.footprints-trail {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.footprint {
  position: absolute;
  font-family: 'Material Symbols Outlined';
  font-size: 2.5rem;
  opacity: 0;
  color: var(--brand);
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
  user-select: none;
  transform: rotate(180deg);
  animation: footprintFadeIn 0.6s ease-out forwards;
}

.footprint::before {
  content: 'barefoot';
}

.footprint.left {
  transform: rotate(180deg) scaleX(-1);
}

.footprint.right {
  transform: rotate(180deg);
}

@keyframes footprintFadeIn {
  0% {
    opacity: 0;
    transform: rotate(180deg) scale(0.8);
  }
  100% {
    opacity: 0.55;
    transform: rotate(180deg) scale(1);
  }
}

.footprint.left {
  animation: footprintFadeInLeft 0.6s ease-out forwards;
}

@keyframes footprintFadeInLeft {
  0% {
    opacity: 0;
    transform: rotate(180deg) scaleX(-1) scale(0.8);
  }
  100% {
    opacity: 0.55;
    transform: rotate(180deg) scaleX(-1) scale(1);
  }
}

@media (max-width: 768px) {
  .footprint {
    font-size: 2rem;
  }
}
