/* ====== VARIABLES ====== */
:root {
  --sage: #5c7a4e;
  --sage-dark: #4e6a42;
  --sage-deeper: #435c39;
  --cream: #f4f1eb;
  --white: #ffffff;
  --dark: #1e2819;
  --text-on-sage: #ffffff;
  --text-muted: rgba(255,255,255,0.82);
  --cta-red: #c4453a;
  --cta-red-hover: #a83830;
  --cta-red-glow: rgba(196, 69, 58, 0.35);
  --nogo-red: #c45c4a;
  --accent-green: #4aad5b;
  --radius: 8px;
  --max-width: 720px;
  --max-width-wide: 960px;
}

/* ====== RESET ====== */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--sage);
  color: var(--text-on-sage);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ====== UTILITIES ====== */
.container {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 28px;
}

.section-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.divider {
  width: 60px;
  height: 1px;
  background: rgba(244,241,235,0.2);
  margin: 0 auto;
}

/* ====== ANIMATIONS ====== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.animate-on-scroll {
  opacity: 0;
}
.animate-on-scroll.visible {
  animation: fadeUp 0.7s ease forwards;
}
