/* =========================================================
   DESIGN TOKENS
   ========================================================= */
:root {
  --brand-primary: #9E1F63;     /* Magenta */
  --brand-secondary: #AD824E;   /* Gold-Brown */
  --brand-highlight: #E6C761;   /* Bright Gold */
  --gold-deep: #8F6A3F;
  --page-bg: #0B1220;
  --surface: #11182A;
  --text: #ECECF2;
  --muted: #EDEDED;
  --container: min(1200px, 92vw);
  --header-h: 76px;
}

/* =========================================================
   STARBURST
   ========================================================= */
.hero-starburst {
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: clamp(380px, 45vw, 540px);
    aspect-ratio: 1 / 1;
    z-index: 1;
    opacity: 0.95;
    background: url('../img/starburst.svg') center no-repeat;
    background-size: contain;
    pointer-events: none;
}
@media (max-width: 860px) {
  .hero-starburst {
    width: clamp(400px, 62vw, 520px);
  }
}

/* =========================================================
   HEALING SECTION
   ========================================================= */
.healing-section {
  position: relative;
  background: linear-gradient(to bottom, #9e1f63 0%, #c09c66 100%);
  color: #fff;
  padding: 0;
  margin: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.healing-inner {
  width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  padding: 0;
}
.healing-content {
  flex: 1 1 650px;
  text-align: center;
  max-width: 720px;
  margin-top: -1.75rem;
}
.healing-content h2 {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--brand-secondary);
}
.healing-content p {
  font-size: clamp(0.95rem, 1.3vw, 1.15rem);
  line-height: 1.5;
  color: #fff;
  opacity: 0.95;
  margin-bottom: 0.6rem;
}
.healing-photo {
  flex: 1 1 320px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.healing-photo img {
  width: 85%;
  max-width: 280px;
  height: auto;
  border-radius: 24px;
  object-fit: cover;
  background: transparent;
  z-index: 2;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.3);
}
@media (max-width: 860px) {
  .healing-inner {
    flex-direction: column-reverse;
    gap: 1.5rem;
    text-align: center;
  }
  .healing-photo {
    display: none;
  }
}

/* =========================================================
   RENEWAL SECTION
   ========================================================= */
.renewal-section {
    position: relative;
    background: url("../img/renewal-bg.jpg") center no-repeat;
    background-size: cover;
    color: #fff;
    padding: 120px 0 80px;
    text-align: center;
    overflow: visible;
}
.renewal-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 0;
}
.renewal-content {
  position: relative;
  z-index: 2;
  width: 80%;
  max-width: 650px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
}
.renewal-content h2 {
  font-family: "Montserrat", cursive;
  color: #c09c66;
  font-size: clamp(2rem, 3vw, 2.8rem);
  margin-bottom: 1.5rem;
  font-weight: 400;
}
