
body {
  font-family: 'Merriweather Sans', -apple-system, sans-serif;
  font-weight: 400;
  line-height: 1.7;
  font-size: clamp(15px, 1.6vw, 18px);
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Merriweather', Georgia, serif;
  font-weight: 700;
  color: var(--color-text);
}
h1 {
  font-size: clamp(2rem, 6vw, 3rem);
  line-height: 1.12;
}
h2 {
  font-size: clamp(1.5rem, 4.2vw, 2.1rem);
}
h3 {
  font-size: clamp(1.15rem, 2.8vw, 1.4rem);
}
p {
  font-size: 1em;
  line-height: 1.7;
  color: var(--color-text);
}
strong { font-weight: 700; }

a {
  transition: color .2s ease;
}

label {
  display: block;
  font-weight: 500;
  margin-bottom: 0.5vh;
  font-size: 0.95em;
}
input, textarea, select {
  width: 100%;
  padding: 1.6vh 1.4vw;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background: var(--color-surface);
  font: inherit;
  color: var(--color-text);
}
input:focus, textarea:focus, select:focus {
  outline: 2px solid var(--color-primary);
  outline-offset: 1px;
}
fieldset { border: none; }
