:root {
  --bg: #FAFAF0;
  --fg: #111827;
  --accent: #0A7C59;
  --accent-light: #ECFDF5;
  --text-muted: #6b7280;
  --border: rgba(10,124,89,0.1);
}

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

/* Smooth scroll */
html { scroll-behavior: smooth; }

/* Selection */
::selection { background: rgba(10,124,89,0.15); color: #0A7C59; }

/* Custom scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(10,124,89,0.3); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(10,124,89,0.5); }

/* Focus styles */
:focus-visible {
  outline: 2px solid #0A7C59;
  outline-offset: 3px;
  border-radius: 4px;
}

/* Shared heading style */
.section-title {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  color: #111827;
}

.section-tag {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #0A7C59;
  margin-bottom: 10px;
}

.section-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  color: #6b7280;
  line-height: 1.6;
}

/* Responsive helpers */
@media (max-width: 600px) {
  .section-title { font-size: 28px !important; }
  .section-tag { font-size: 11px; }
}
