/* ══════════════════════════════════════════
   LINEIGE — SECTIONS (shared)
══════════════════════════════════════════ */

section {
  padding: var(--section-pad-y) var(--section-pad-x);
  position: relative;
}

section.alt {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transition: background 0.4s ease;
}

/* Section eyebrow label */
.s-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--acid);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 0.65rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.s-label::before {
  content: '';
  width: 22px;
  height: 1px;
  background: var(--acid);
  flex-shrink: 0;
}

/* Section heading */
.s-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--snow);
  font-weight: 400;
  line-height: 1.08;
  margin-bottom: 3.5rem;
}

.s-title em {
  font-style: italic;
  color: var(--accent2);
}

[data-theme="light"] .s-title em {
  color: var(--accent);
}