:root {
  /* Brand palette */
  --pink-very-light: #fff4fb;
  --pink-light: #ffeef5;
  --pink-mid: #f8c4d6;
  --pink-strong: #ff7fa8;
  --pink-deep: #f25c92;
  --cream: #fff8f1;
  --gold-soft: #f7ddc2;
  --lavender-soft: #f5e9ff;
  --text-dark: #3c2433;
  --text-soft: rgba(60, 36, 51, 0.78);
  --white: #ffffff;

  /* Shadows / radius */
  --shadow-soft: 0 18px 45px rgba(114, 57, 87, 0.25);
  --shadow-strong: 0 22px 60px rgba(114, 57, 87, 0.4);
  --radius-xl: 36px;
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --radius-pill: 999px;

  /* Typography */
  --font-heading: "Playfair Display", "Times New Roman", serif;
  --font-body: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;

  /* Layout */
  --header-height: 150px;
  --content-width: min(1200px, 92vw);

  /* Misc */
  --transition-fast: 0.16s ease;
  --transition-med: 0.26s ease;
}

/* Reset */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: var(--font-body);
  color: var(--text-dark);
  background:
    radial-gradient(circle at top left, #fff8f1 0, #ffeef5 38%, #fbd4e2 72%, #f8c4d6 100%),
    radial-gradient(circle at bottom right, #f5e9ff 0, rgba(245, 233, 255, 0) 55%);
  background-attachment: fixed;
  position: relative;
  overflow-x: hidden;
}

/* Containers / sections */

.container {
  width: var(--content-width);
  margin-inline: auto;
}

.section {
  padding: 80px 0;
  position: relative;
  z-index: 1;
}

/* Section headings */

.section-heading {
  text-align: center;
  margin-bottom: 32px;
}

.section-heading span.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: rgba(255, 238, 245, 0.95);
  border: 1px solid rgba(255, 127, 168, 0.35);
  color: rgba(60, 36, 51, 0.7);
  backdrop-filter: blur(8px);
}

.section-heading h2 {
  margin-top: 10px;
  font-family: var(--font-heading);
  font-size: clamp(26px, 3.1vw, 32px);
  line-height: 1.25;
}

.section-heading h2 .highlight {
  background: linear-gradient(90deg, var(--pink-strong), var(--pink-deep));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-heading p.sub {
  margin-top: 8px;
  font-size: 14px;
  color: var(--text-soft);
}

/* Background floaters & sparkles */

.bg-floaters {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.bg-floaters span {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #ffffff, rgba(255, 255, 255, 0));
  opacity: 0.35;
  filter: blur(1px);
  animation: float 16s ease-in-out infinite alternate;
}

/* Different sizes/positions */

.bg-floaters span:nth-child(1) {
  width: 120px; height: 120px;
  top: 6%; left: 4%;
  animation-delay: 0s;
}

.bg-floaters span:nth-child(2) {
  width: 160px; height: 160px;
  top: 18%; right: 10%;
  animation-delay: 3s;
}

.bg-floaters span:nth-child(3) {
  width: 140px; height: 140px;
  bottom: 10%; left: 14%;
  animation-delay: 6s;
}

.bg-floaters span:nth-child(4) {
  width: 100px; height: 100px;
  bottom: 4%; right: 6%;
  animation-delay: 9s;
}

.bg-floaters span:nth-child(5) {
  width: 90px; height: 90px;
  top: 45%; left: 50%;
  transform: translateX(-50%);
  animation-delay: 12s;
}

/* Optional twinkly sparkles */

.bg-floaters span.sparkle {
  width: 18px;
  height: 18px;
  background: radial-gradient(circle, #fff 0, rgba(255, 255, 255, 0.3) 55%, transparent 70%);
  filter: blur(0);
  animation: twinkle 3.5s ease-in-out infinite;
}

/* Simple utility */

.text-center {
  text-align: center;
}

/* Scroll reveal base (states filled in animations.css) */

.reveal {
  opacity: 0;
  transform: translateY(24px) scale(0.98);
  transition:
    opacity var(--transition-med),
    transform var(--transition-med);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}
