/* ============================================================
   SHARED SECTION UTILITIES
   ============================================================ */
.section-grain::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.72' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-size: 300px 300px;
  z-index: 0;
}

.section-eyebrow {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: #C4886A;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: #C4886A;
  opacity: 0.6;
  flex-shrink: 0;
}

/* Fade+rise scroll animation */
.anim-fade {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}
.anim-fade.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.anim-fade.delay-1 { transition-delay: 0.1s; }
.anim-fade.delay-2 { transition-delay: 0.2s; }
.anim-fade.delay-3 { transition-delay: 0.32s; }
.anim-fade.delay-4 { transition-delay: 0.44s; }
.anim-fade.delay-5 { transition-delay: 0.56s; }
