:root {
  /* -- Colors (Light Theme) -- */
  --color-primary: #31A44E; /* A slightly more grounded green, inspired by the logo & reference */
  --color-primary-light: hsl(136, 55%, 55%);
  --color-primary-dark: hsl(136, 55%, 35%);

  --color-accent: #FF8C40; /* Rich Sunlit Orange */
  --color-accent-light: hsl(30, 90%, 65%);
  --color-accent-dark: hsl(30, 90%, 45%);

  --color-bg: #FFFFFF;
  --color-bg-alt: #F8F9FA; /* A very light grey for alternating sections */
  --color-text: #495057; /* Dark grey for body text */
  --color-text-muted: #6C757D;
  --color-heading: #181C20; /* Near-black for headings */
  --color-border: #DEE2E6; /* Subtle border color */

  /* -- Typography -- */
  --font-heading: 'Manrope', system-ui, -apple-system, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;

  /* -- Layout -- */
  --max-width: 1200px;
  --header-height: 7rem; /* 112px */

  /* -- Standard Tokens (auto-injected) -- */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;
  --text-6xl: 3.75rem;
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  --radius-default: 4px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-full: 9999px;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* --- Global Styles --- */
html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background-color: var(--color-bg);
  line-height: 1.7;
}

/* --- Animations --- */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

.hero-slide.active h1,
.hero-slide.active p,
.hero-slide.active a {
  animation: slideInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
  opacity: 0;
}

.hero-slide.active p { animation-delay: 0.4s; }
.hero-slide.active a { animation-delay: 0.5s; }


/* --- Scroll Reveal --- */
[data-reveal] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}
[data-reveal-stagger].is-visible > * {
  transition-property: opacity, transform;
  transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
  transition-duration: 0.7s;
}
[data-reveal-stagger].is-visible > *:nth-child(1) { transition-delay: 100ms; }
[data-reveal-stagger].is-visible > *:nth-child(2) { transition-delay: 200ms; }
[data-reveal-stagger].is-visible > *:nth-child(3) { transition-delay: 300ms; }
[data-reveal-stagger].is-visible > *:nth-child(4) { transition-delay: 400ms; }


/* --- Header --- */
.site-header {
  transition: box-shadow 0.3s ease, background-color 0.3s ease;
}
.site-header.is-scrolled {
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* --- Mobile Menu --- */
#mobile-menu {
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.7, 0, 0.84, 0);
}
#mobile-menu.is-open {
  transform: translateX(0);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
#mobile-menu .mobile-nav-links > * {
    opacity: 0;
    transform: translateY(20px);
}
#mobile-menu.is-open .mobile-nav-links > * {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.4s ease, transform 0.4s ease;
}
#mobile-menu.is-open .mobile-nav-links > *:nth-child(1) { transition-delay: 0.1s; }
#mobile-menu.is-open .mobile-nav-links > *:nth-child(2) { transition-delay: 0.15s; }
#mobile-menu.is-open .mobile-nav-links > *:nth-child(3) { transition-delay: 0.2s; }
#mobile-menu.is-open .mobile-nav-links > *:nth-child(4) { transition-delay: 0.25s; }
#mobile-menu.is-open .mobile-nav-links > *:nth-child(5) { transition-delay: 0.3s; }
#mobile-menu.is-open .mobile-nav-links > *:nth-child(6) { transition-delay: 0.35s; }

/* --- Hero Slider --- */
.hero-slider .hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s cubic-bezier(0.45, 0, 0.55, 1);
  background-size: cover;
  background-position: center;
}
.hero-slider .hero-slide.active {
  opacity: 1;
  z-index: 1;
}

.slider-dots button {
  width: 12px;
  height: 12px;
  border-radius: 99px;
  background-color: rgba(255, 255, 255, 0.5);
  transition: all 0.3s ease;
}
.slider-dots button.active {
  width: 36px;
  background-color: white;
}

/* Reduced Motion */
@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;
  }
}body { margin: 0; }
