/* ─── CONTAINER ───────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── SECTION HEADERS ─────────────────────────────────────── */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
}

.section-eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--red);
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
}

.section-desc {
  font-size: 16px;
  color: var(--mid);
  max-width: 560px;
  line-height: 1.75;
  margin-top: 14px;
}

.divider {
  width: 48px;
  height: 3px;
  background: var(--red);
  margin: 20px 0;
}

/* ─── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 900px) {
  .container { padding: 0 20px; }
}

@media (max-width: 600px) {
  .container { padding: 0 16px; }
}
