/* ============================
   Animated Section Headers
============================ */
.section-header {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.5px;
  position: relative;
  display: inline-block;
  color: #111;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.section-header.appear {
  opacity: 1;
  transform: translateY(0);
}

/* Underline Accent (No Gradient) */
.section-header::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0%;
  height: 4px;
  background: #111; /* solid pro underline */
  border-radius: 2px;
  transition: width 0.8s ease-out 0.2s;
}

.section-header.appear::after {
  width: 100%;
}

/* ============================
   Pro Divider (No Gradient)
============================ */
.gradient-divider {
  width: 100%;
  height: 6px;
  background: #111; /* solid pro bar */
  border-radius: 3px;
  opacity: 0;
  transform: scaleX(0.6);
  transform-origin: left;
  transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.gradient-divider.appear {
  opacity: 1;
  transform: scaleX(1);
}

/* ============================
   Parallax Hero
============================ */
.parallax-hero {
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.parallax-layer {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  will-change: transform;
}

/* ============================
   Premium Heading Styling
============================ */
h1, h2, h3, h4, h5, h6 {
  color: #111 !important;
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: clamp(2.2rem, 4vw, 3rem);
}

/* ============================
   Body Text
============================ */
p, li, address {
  color: #333 !important;
  font-size: 1.05rem;
  line-height: 1.6;
}
