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

:root {
  /* Thematic Colors: Nature / Health */
  --brand-forest: #064E3B;
  --brand-mint: #10B981;
  --ui-base-light: #F9FAFB;
  --ui-base-dark: #111827;
  --tone-highlight: #D1FAE5;
  --text-muted: #4B5563;
  
  /* Fonts */
  --font-heading: 'Playfair Display', serif;
  --font-text: 'Inter', sans-serif;

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--brand-forest) 0%, var(--brand-mint) 100%);
  --gradient-overlay: linear-gradient(to right, rgba(6, 78, 59, 0.9), rgba(16, 185, 129, 0.7));
}

html {
  scroll-behavior: smooth;
  font-family: var(--font-text);
  color: var(--ui-base-dark);
  background-color: var(--ui-base-light);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
}

/* Custom Semantic Classes */
.wellness-top-bar {
  background-color: #ffffff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.joint-intro-wrap {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.mobility-steps-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .mobility-steps-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.ergo-stat-row {
  display: grid;
  gap: 2rem;
  text-align: center;
}

@media (min-width: 768px) {
  .ergo-stat-row {
    grid-template-columns: repeat(4, 1fr);
  }
}

.education-feature-block {
  background: #ffffff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.education-feature-block:hover {
  transform: translateY(-5px);
}

.action-trigger-btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  color: #fff;
  font-weight: 600;
  border-radius: 9999px;
  text-align: center;
  transition: opacity 0.3s ease;
  border: none;
  cursor: pointer;
}

.action-trigger-btn:hover {
  opacity: 0.9;
}

.footer-compliance-zone {
  background-color: var(--ui-base-dark);
  color: #D1D5DB;
}

.cookie-consent-overlay {
  background-color: var(--ui-base-dark);
  color: #fff;
  padding: 1.5rem;
  box-shadow: 0 -4px 15px rgba(0,0,0,0.1);
}

.cookie-btn-accept {
  background-color: var(--brand-mint);
  color: #fff;
}

.cookie-btn-decline {
  background-color: var(--text-muted);
  color: #fff;
}

/* Mobile Menu Logic */
#mobile-nav-panel {
  display: none;
}
#mobile-nav-panel.is-open {
  display: block;
}