:root {
  --pink: #ff6b9d;
  --pink-soft: #ffe4ef;
  --pink-deep: #e8437a;
  --mint: #5eead4;
  --mint-soft: #d5faf5;
  --lemon: #fde047;
  --lemon-soft: #fef9c3;
  --grape: #c084fc;
  --grape-soft: #f3e8ff;
  --orange: #fb923c;
  --orange-soft: #ffedd5;
  --cream: #fff8f0;
  --text: #3d2c4a;
  --text-muted: #6b5b7a;
  --white: #ffffff;
  --font: "Nunito", system-ui, -apple-system, sans-serif;
  --radius: 20px;
  --radius-sm: 12px;
  --header-height: 68px;
  --shadow-candy: 0 8px 32px rgba(255, 107, 157, 0.15);
  --shadow-card: 0 4px 20px rgba(61, 44, 74, 0.08);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--text);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.container {
  width: min(100% - 2rem, 1080px);
  margin-inline: auto;
}

a {
  color: var(--pink-deep);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
  font-weight: 600;
  transition: color 0.15s ease;
}

a:hover {
  color: var(--grape);
}

/* Candy background decorations */

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

.sprinkle {
  position: absolute;
  width: 8px;
  height: 20px;
  border-radius: 4px;
  opacity: 0.35;
}

.s1 { top: 12%; left: 5%; background: var(--pink); transform: rotate(25deg); }
.s2 { top: 28%; right: 8%; background: var(--mint); transform: rotate(-15deg); }
.s3 { top: 45%; left: 3%; background: var(--lemon); transform: rotate(40deg); }
.s4 { top: 62%; right: 4%; background: var(--grape); transform: rotate(-30deg); }
.s5 { top: 78%; left: 10%; background: var(--orange); transform: rotate(10deg); }
.s6 { top: 18%; right: 15%; background: var(--orange); transform: rotate(55deg); }
.s7 { top: 55%; left: 92%; background: var(--pink); transform: rotate(-45deg); }
.s8 { top: 85%; right: 12%; background: var(--mint); transform: rotate(20deg); }
.s9 { top: 35%; left: 88%; background: var(--lemon); transform: rotate(-20deg); }
.s10 { top: 70%; left: 6%; background: var(--grape); transform: rotate(35deg); }
.s11 { top: 8%; left: 45%; background: var(--mint); transform: rotate(-55deg); }
.s12 { top: 92%; left: 50%; background: var(--pink); transform: rotate(15deg); }

.candy-float {
  position: absolute;
  border-radius: 50%;
  opacity: 0.2;
}

.candy-1 {
  width: 120px;
  height: 120px;
  top: 10%;
  right: 6%;
  background: radial-gradient(circle at 30% 30%, var(--pink-soft), var(--pink));
  animation: float 8s ease-in-out infinite;
}

.candy-2 {
  width: 80px;
  height: 80px;
  bottom: 20%;
  left: 4%;
  background: radial-gradient(circle at 35% 35%, var(--mint-soft), var(--mint));
  animation: float 10s ease-in-out infinite reverse;
}

.candy-3 {
  width: 60px;
  height: 60px;
  top: 50%;
  right: 3%;
  background: radial-gradient(circle at 30% 30%, var(--lemon-soft), var(--lemon));
  animation: float 7s ease-in-out infinite 1s;
}

.candy-4 {
  width: 90px;
  height: 90px;
  bottom: 8%;
  right: 20%;
  background: radial-gradient(circle at 35% 35%, var(--grape-soft), var(--grape));
  animation: float 9s ease-in-out infinite 0.5s;
}

@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-16px) scale(1.05); }
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: linear-gradient(135deg, var(--pink) 0%, var(--grape) 100%);
  box-shadow: 0 4px 24px rgba(255, 107, 157, 0.3);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
  padding-block: 0.75rem;
  gap: 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--white);
  font-weight: 800;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.logo:hover {
  color: var(--white);
  opacity: 0.95;
}

.logo-candy {
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  backdrop-filter: blur(4px);
}

.candy-piece {
  display: block;
  width: 1.25rem;
  height: 1.25rem;
  background: linear-gradient(135deg, var(--lemon), var(--orange));
  border-radius: 50% 50% 50% 20%;
  transform: rotate(-20deg);
  box-shadow: inset -2px -2px 4px rgba(0, 0, 0, 0.1);
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 700;
  white-space: nowrap;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  transition: background 0.15s ease, color 0.15s ease;
}

.nav-links a:hover {
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
}

/* Hero */

.hero {
  position: relative;
  z-index: 1;
  padding: 3.5rem 0 3rem;
  background: linear-gradient(180deg, var(--pink-soft) 0%, var(--cream) 70%);
  border-bottom: 3px dashed rgba(255, 107, 157, 0.25);
}

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

.hero-badge {
  font-size: 3rem;
  line-height: 1;
  margin-bottom: 0.5rem;
  filter: drop-shadow(0 4px 8px rgba(255, 107, 157, 0.3));
}

.eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.875rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pink-deep);
}

.hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(2.25rem, 6vw, 3.25rem);
  font-weight: 800;
  line-height: 1.1;
  background: linear-gradient(135deg, var(--pink-deep), var(--grape));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  margin: 0 auto;
  max-width: 48ch;
  font-size: 1.125rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Policy sections */

.policy {
  position: relative;
  z-index: 1;
  padding: 2.5rem 0 4rem;
}

.policy-section {
  position: relative;
  margin-bottom: 1.75rem;
  padding: 2rem 2rem 2rem 3.5rem;
  background: var(--white);
  border: 2px solid transparent;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  background-clip: padding-box;
}

.policy-section::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: calc(var(--radius) + 2px);
  background: linear-gradient(135deg, var(--pink-soft), var(--mint-soft), var(--lemon-soft));
  z-index: -1;
}

.policy-section--highlight {
  background: linear-gradient(135deg, rgba(255, 228, 239, 0.5), rgba(255, 255, 255, 0.95));
}

.policy-section--highlight::before {
  background: linear-gradient(135deg, var(--pink), var(--grape), var(--mint));
}

.section-icon {
  position: absolute;
  left: 1rem;
  top: 1.75rem;
  font-size: 1.5rem;
  line-height: 1;
}

.policy-section h2 {
  margin: 0 0 1rem;
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--text);
}

.policy-section h3 {
  margin: 1.75rem 0 0.75rem;
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--pink-deep);
}

.policy-section p {
  margin: 0;
  color: var(--text-muted);
}

.policy-section p + p {
  margin-top: 1rem;
}

/* Footer */

.site-footer {
  position: relative;
  z-index: 1;
  padding: 2.5rem 0;
  background: linear-gradient(135deg, #3d2c4a 0%, #5c3d6e 100%);
  color: rgba(255, 255, 255, 0.75);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

.footer-candies {
  display: flex;
  gap: 0.5rem;
}

.footer-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.dot-pink { background: var(--pink); }
.dot-mint { background: var(--mint); }
.dot-lemon { background: var(--lemon); }
.dot-grape { background: var(--grape); }
.dot-orange { background: var(--orange); }

.footer-brand {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 600;
}

.footer-contact {
  margin: 0;
}

.footer-contact a {
  color: var(--pink-soft);
  text-decoration: none;
}

.footer-contact a:hover {
  color: var(--white);
}

/* Responsive */

@media (max-width: 768px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-header {
    position: static;
  }

  html {
    scroll-padding-top: 0;
  }

  .hero {
    padding: 2.5rem 0 2rem;
  }

  .hero-badge {
    font-size: 2.5rem;
  }

  .policy-section {
    padding: 1.5rem 1.25rem 1.5rem 1.25rem;
  }

  .section-icon {
    position: static;
    margin-bottom: 0.5rem;
  }

  .candy-float {
    opacity: 0.12;
  }

  .sprinkle {
    opacity: 0.2;
  }
}
