/* ==========================================================================
   REUSABLE COMPONENTS
   ========================================================================== */

/* Section label (small gold uppercase + underline) */
.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-600);
  margin-bottom: var(--space-3);
  position: relative;
  padding-bottom: var(--space-3);
}
.section-label::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 32px;
  height: 3px;
  background: var(--gold-500);
}
.section-label.center {
  text-align: center;
}
.section-label.on-dark {
  color: var(--gold-400);
}

.section-head {
  margin-bottom: var(--space-12);
}
.section-head-rule {
  width: 40px;
  height: 3px;
  background: var(--gold-500);
  margin: 0 auto var(--space-5);
}
.section-head.center {
  text-align: center;
  max-width: 720px;
  margin-inline: auto;
}
.section-head.center .section-label::after {
  left: 50%;
  transform: translateX(-50%);
}

.section-head h2 {
  font-size: var(--fs-h1);
  color: var(--navy-900);
  margin-bottom: var(--space-4);
}

.section-head p {
  color: var(--ink-muted);
  font-size: var(--fs-lead);
}

/* Circular line icon */
.icon-circle {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--navy-700);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.icon-circle svg {
  width: 30px;
  height: 30px;
  stroke: var(--navy-800);
  fill: none;
  stroke-width: 1.6;
}
.icon-circle.sm {
  width: 56px;
  height: 56px;
}
.icon-circle.sm svg {
  width: 24px;
  height: 24px;
}
.icon-circle.xs {
  width: 40px;
  height: 40px;
}
.icon-circle.xs svg {
  width: 18px;
  height: 18px;
}
.icon-circle.gold {
  border-color: var(--gold-500);
}
.icon-circle.gold svg {
  stroke: var(--gold-600);
}
.icon-circle.on-dark {
  border-color: rgba(255,255,255,0.35);
}
.icon-circle.on-dark svg {
  stroke: var(--white);
}
.icon-circle.filled-navy {
  background: var(--navy-900);
  border: none;
}
.icon-circle.filled-navy svg {
  stroke: var(--white);
}

/* Buttons already in header-footer.css (.btn, .btn-gold, .btn-outline-*) */

.btn-lg {
  padding: 16px 30px;
  font-size: 0.85rem;
}

/* Generic section spacing */
.section {
  padding-block: var(--space-24);
}
.section.tight {
  padding-block: var(--space-16);
}
.section.bg-off {
  background: var(--off-white);
}
.section.bg-navy {
  background: var(--navy-900);
  color: var(--white);
}
.section.bg-stat {
  background: var(--stat-band);
}

@media (max-width: 767px) {
  .section { padding-block: var(--space-16); }
  .section.tight { padding-block: var(--space-12); }
}
