html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', system-ui, sans-serif;
  /* 400 en vez de 300: el peso Light era poco legible en baja visión */
  font-weight: 400;
  font-size: 17px;
  line-height: 1.8;
  color: var(--color-text-primary);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ── Headings ── */
h1, h2, h3 {
  font-family: 'Poiret One', serif;
  font-weight: 400;
  line-height: 1.1;
}
h1 { font-size: clamp(42px, 7vw, 72px);  letter-spacing: 0.04em; }
h2 { font-size: clamp(26px, 4vw, 42px);  letter-spacing: 0.03em; }
h3 { font-size: clamp(20px, 2.5vw, 30px); letter-spacing: 0.02em; }

/* ── Utilities ── */
.label {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-tertiary);
}

.subheading {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: clamp(13px, 1.2vw, 15px);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-secondary);
}

.text-opening {
  font-size: clamp(19px, 2vw, 23px);
  font-weight: 400;
  line-height: 1.65;
  color: var(--color-text-primary);
}

.accent-line {
  display: block;
  width: 40px;
  height: 1px;
  background: var(--color-accent);
  margin-bottom: 32px;
}

a { color: inherit; text-decoration: none; }

.container {
  max-width: var(--max-content);
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 80px);
}

.text-col {
  max-width: var(--max-text);
  margin: 0 auto;
}

/* ── Section padding ── */
.section { padding: var(--space-section) 0; }
.section-sm { padding: clamp(60px, 8vw, 120px) 0; }

/* ── Section label block ── */
.section-header {
  text-align: center;
  margin-bottom: clamp(40px, 6vw, 80px);
}
.section-header .label { margin-bottom: 16px; }
.section-header h2 { color: var(--color-text-primary); }
.section-header p {
  margin-top: 20px;
  color: var(--color-text-secondary);
  font-size: clamp(15px, 1.4vw, 17px);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}
