/* ============================================================
   SECTION COMMONS
   ============================================================ */
.section { padding: 7rem 3rem; }
.section-inner { max-width: 1160px; margin: 0 auto; }

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1.1rem;
}
.eyebrow::before {
  content:'';
  width: 28px; height: 2px;
  background: var(--teal);
  border-radius: 2px;
  flex-shrink: 0;
}

.section-h2 {
  font-size: clamp(2rem, 3.8vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--charcoal);
}

/* reveal animation class */
.reveal {
  opacity: 0;
  transform: translateY(36px);
}

