/* ============================================
   COMPONENTS — section labels, titles, dividers,
   tags, scripture, quote rails.
   ============================================ */

/* ----- Section structural primitives ----- */
.section {
  padding: 100px 0;
}

.section-label {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 300;
  color: var(--ink);
  line-height: 1.3;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.section-title strong {
  font-weight: 700;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 620px;
  line-height: 1.8;
}

/* ----- Divider — gradient fade bar ----- */
.divider {
  width: 72px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent) 50%, transparent);
  border-radius: var(--r-pill);
  margin: 24px 0;
}

.divider-center { margin: 24px auto; }
.divider-warm   { background: linear-gradient(90deg, transparent, var(--warm) 50%, transparent); }
.divider-green  { background: linear-gradient(90deg, transparent, var(--warm-green) 50%, transparent); }

/* ----- Scripture verse citation ----- */
.scripture {
  margin-top: 24px;
  font-style: italic;
  font-size: 0.95rem;
  color: var(--text-light);
  max-width: 620px;
  line-height: 1.7;
}

.scripture-attr {
  font-style: normal;
  font-weight: 600;
  color: var(--warm);
}

.scripture-center {
  text-align: center;
  margin: 48px auto 0;
}

.scripture-on-dark {
  color: rgba(255,255,255,0.55);
}

/* ----- Quote rails (used by .belief-quote, .legal-contact, blockquote) ----- */
.quote-rail {
  position: relative;
  overflow: hidden;
}

.quote-rail::before {
  content: '';
  position: absolute;
  top: 12px;
  bottom: 12px;
  left: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--warm), var(--warm-soft));
  border-radius: var(--r-pill);
}

.quote-rail-green::before {
  background: linear-gradient(180deg, var(--warm-green), var(--warm-green-hover));
}

/* ----- Tags / pills ----- */
.tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--r-pill);
  background: var(--accent-tint);
  color: var(--accent-soft);
}

.tag-warm {
  background: var(--warm-tint);
  color: var(--warm-soft);
}

.tag-green {
  background: var(--warm-green-light);
  color: var(--warm-green);
}

/* ----- Misc utilities ----- */
.text-center { text-align: center; }
.mt-sm { margin-top: 16px; }
.mt-md { margin-top: 24px; }
.mt-lg { margin-top: 32px; }
.mt-xl { margin-top: 48px; }

/* Indented quote-text appearance (italic, deeper color) */
.lead-quote {
  font-family: var(--font-heading);
  font-weight: 300;
  font-style: italic;
  line-height: 1.7;
  color: var(--charcoal);
}

.lead-quote strong {
  font-weight: 600;
  font-style: normal;
  color: var(--accent);
}

.attr-label {
  margin-top: 24px;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
