/* ============================================================
   block: section — editorial section frame
   Each section opens with a classified-style head:
   eyebrow · headline · lede · ornamental rule.
   ============================================================ */

.section {
  position: relative;
  padding: clamp(56px, 9vw, 110px) 0;
}

.section--alt {
  background:
    linear-gradient(180deg, transparent 0, transparent 4px, var(--rule) 4px, var(--rule) 5px, transparent 5px, transparent 100%),
    var(--paper-deep);
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}
.section--alt::before,
.section--alt::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: var(--ink);
}
.section--alt::before { top: 4px; }
.section--alt::after  { bottom: 4px; }

.section--narrow { padding: clamp(40px, 6vw, 70px) 0; }

/* — Section head — */
.section__head {
  max-width: 820px;
  margin: 0 auto clamp(32px, 5vw, 60px);
  text-align: center;
  position: relative;
}

.section__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: .76rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--rouge-deep);
  margin-bottom: 18px;
}
.section__eyebrow::before,
.section__eyebrow::after {
  content: "";
  display: inline-block;
  width: 28px; height: 1px;
  background: var(--rouge);
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4.2vw, 3rem);
  line-height: 1.04;
  margin: 0 0 14px;
  color: var(--ink);
  letter-spacing: .005em;
}
.section__title em {
  font-family: var(--font-display-it);
  color: var(--rouge-deep);
}

.section__lead {
  font-family: var(--font-body);
  font-size: clamp(1.02rem, 1.4vw, 1.15rem);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 62ch;
  margin: 0 auto;
}

/* Ornament under the head */
.section__head::after {
  content: "✶ ✶ ✶";
  display: block;
  margin-top: 22px;
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: .8em;
  color: var(--brass-dark);
}

/* — Page-end ornamental break — */
.section__break {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: clamp(28px, 5vw, 44px) 0;
  color: var(--brass-dark);
}
.section__break::before, .section__break::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--rule));
}
.section__break::after {
  background: linear-gradient(90deg, var(--rule), transparent);
}

@media (max-width: 768px) {
  .section { padding: 60px 0; }
  .section__head { margin-bottom: 32px; }
  .section__title { font-size: clamp(1.7rem, 6vw, 2.2rem); }
  .section__head::after { letter-spacing: .5em; }
}
