:root {
  --bg: #faf8f5;
  --fg: #1a2332;
  --accent: #14b8a6;
  --accent-dark: #0d9488;
  --text-secondary: #5a6478;
  --text-muted: #8a94a6;
  --border: rgba(26,35,50,0.08);
  --surface: #fff;
}

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

html {
  scroll-behavior: smooth;
}

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

::selection {
  background: rgba(20,184,166,0.15);
  color: #1a2332;
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f0ede8;
}

::-webkit-scrollbar-thumb {
  background: #c8c3bb;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #a09a92;
}

/* Reuse section components across partials */
.section-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  color: #14b8a6;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 800;
  color: #1a2332;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 16px;
}

.section-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  color: #5a6478;
  line-height: 1.65;
  margin: 0;
}
