
/* ══════════════════════════════════════
   SHARED SECTION STYLES
══════════════════════════════════════ */
.section { padding: var(--section-pad); }
.container { max-width: 900px; margin: 0 auto; }

.section-eyebrow {
  font-size: 0.56rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 12px;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.9rem, 5.5vw, 3.2rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.15;
  margin-bottom: 16px;
}
.section-title em { font-style: italic; color: var(--amber); }
.section-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 520px;
}

/* Horizontal rule ornament */
.ornament {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 20px 0 40px;
}
.ornament-line { flex: 1; height: 1px; background: var(--brown-border); }
.ornament-diamond { color: var(--amber); font-size: 0.5rem; }