/* ─────────────────────────────────────────
   typography.css — Fonts & shared section styles
   ───────────────────────────────────────── */

/* ── Animations globales ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  0%, 100% { opacity: 0.45; }
  50%       { opacity: 1; }
}

/* ── Scroll reveal ── */
section {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.85s ease, transform 0.85s ease;
}
section.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Section headers (label + title + rule) ── */
.s-label {
  text-align: center;
  font-size: 0.56rem;
  letter-spacing: 0.44em;
  text-transform: uppercase;
  color: var(--ink-light);
  margin-bottom: 0.7rem;
}

.s-title {
  text-align: center;
  font-family: "Cormorant Garamond", serif;
  font-weight: 300;
  font-size: clamp(2.3rem, 5vw, 3.8rem);
  color: var(--ink);
  letter-spacing: 0.02em;
}

.s-rule {
  width: 28px;
  height: 1px;
  background: var(--stone);
  margin: 1.4rem auto 4.5rem;
}

/* ── Dark section overrides ── */
.dark-section .s-label { color: rgba(255, 250, 243, 0.5); }
.dark-section .s-title { color: var(--white); }
.dark-section .s-rule  { background: rgba(255, 250, 243, 0.2); }

/* ── Shared button ── */
.btn-primary {
  display: inline-block;
  padding: 0.9rem 2.8rem;
  border: 1px solid var(--ink);
  color: var(--ink);
  font-size: 0.6rem;
  font-weight: 300;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s;
}
.btn-primary:hover {
  background: var(--ink);
  color: var(--white);
}
