@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@400;600;700;800;900&display=swap');

:root {
  --hot-pink: #E91E90;
  --light-pink: #F5C6E0;
  --black: #000000;
  --white: #FFFFFF;
  --soft-white: #FFF8FC;
  --shadow: 0 18px 45px rgba(233, 30, 144, 0.14);
  --border: rgba(233, 30, 144, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Futura, "Nunito Sans", "Josefin Sans", "Century Gothic", Arial, sans-serif;
  color: var(--black);
  background: linear-gradient(180deg, var(--white) 0%, var(--soft-white) 54%, var(--white) 100%);
  line-height: 1.6;
  text-rendering: geometricPrecision;
}

.hero {
  background: var(--white);
  text-align: center;
  padding: clamp(4rem, 10vw, 7rem) 1.25rem clamp(2.75rem, 7vw, 4.5rem);
  position: relative;
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: rgba(245, 198, 224, 0.45);
  filter: blur(2px);
  z-index: 0;
}

.hero::before {
  width: 13rem;
  height: 13rem;
  top: -6rem;
  left: -5rem;
}

.hero::after {
  width: 16rem;
  height: 16rem;
  right: -7rem;
  bottom: -9rem;
}

.shell {
  max-width: 980px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--hot-pink);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  color: var(--black);
  font-size: clamp(2.35rem, 8vw, 5.2rem);
  line-height: 0.98;
  font-weight: 900;
  letter-spacing: -0.055em;
}

.subtitle {
  margin: 1.15rem auto 0;
  max-width: 720px;
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  color: rgba(0, 0, 0, 0.74);
  font-weight: 600;
}

main {
  width: min(100%, 1060px);
  margin: 0 auto;
  padding: clamp(1.75rem, 5vw, 3.5rem) 1rem clamp(3rem, 7vw, 5rem);
}

.policy-section {
  margin: 0 auto clamp(1.1rem, 3vw, 1.65rem);
}

.section-card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--border);
  border-radius: clamp(1.2rem, 3vw, 2rem);
  padding: clamp(1.25rem, 4vw, 2.4rem);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.section-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 0.38rem;
  background: linear-gradient(180deg, var(--hot-pink), var(--light-pink));
}

.section-heading {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: clamp(1rem, 3vw, 1.35rem);
}

.icon-wrap {
  flex: 0 0 auto;
  width: clamp(2.75rem, 7vw, 3.6rem);
  height: clamp(2.75rem, 7vw, 3.6rem);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--light-pink);
  color: var(--hot-pink);
  box-shadow: 0 10px 22px rgba(233, 30, 144, 0.15);
}

.icon-wrap svg {
  width: 55%;
  height: 55%;
  fill: currentColor;
}

h2 {
  margin: 0;
  color: var(--black);
  font-size: clamp(1.25rem, 4vw, 2rem);
  line-height: 1.12;
  font-weight: 900;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}

.policy-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

.policy-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: start;
  padding: clamp(0.85rem, 2.5vw, 1.05rem);
  border-radius: 1rem;
  background: rgba(245, 198, 224, 0.18);
  border: 1px solid rgba(245, 198, 224, 0.55);
  font-size: clamp(0.98rem, 2.4vw, 1.08rem);
  font-weight: 600;
}

.check {
  width: 1.45rem;
  height: 1.45rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.05rem;
  border-radius: 50%;
  background: var(--hot-pink);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 900;
  line-height: 1;
}

.cta-section {
  padding: clamp(1.25rem, 5vw, 2.3rem) 0 0;
  text-align: center;
}

.book-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: min(100%, 17rem);
  padding: 1rem 2.4rem;
  border-radius: 999px;
  background: var(--hot-pink);
  color: var(--white);
  text-decoration: none;
  font-size: 1.08rem;
  font-weight: 900;
  letter-spacing: 0.03em;
  box-shadow: 0 0 0 rgba(233, 30, 144, 0.35), 0 16px 32px rgba(233, 30, 144, 0.28);
  animation: pulseGlow 2.4s ease-in-out infinite;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.book-button:hover,
.book-button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 0 0 10px rgba(233, 30, 144, 0.08), 0 20px 42px rgba(233, 30, 144, 0.34);
}

.book-button:focus-visible {
  outline: 3px solid var(--black);
  outline-offset: 4px;
}

footer {
  background: var(--light-pink);
  color: var(--black);
  text-align: center;
  padding: 1.35rem 1rem;
}

footer p {
  margin: 0;
  font-size: 0.96rem;
  font-weight: 700;
}

.fade-section {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.fade-section.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes pulseGlow {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(233, 30, 144, 0.28), 0 16px 32px rgba(233, 30, 144, 0.28);
  }
  50% {
    box-shadow: 0 0 0 12px rgba(233, 30, 144, 0), 0 16px 38px rgba(233, 30, 144, 0.38);
  }
}

@media (max-width: 640px) {
  .hero {
    padding-top: 3.5rem;
  }

  main {
    padding-left: 0.85rem;
    padding-right: 0.85rem;
  }

  .section-heading {
    align-items: flex-start;
  }

  .policy-list li {
    gap: 0.65rem;
  }

  .book-button {
    width: 100%;
    max-width: 22rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .fade-section {
    opacity: 1;
    transform: none;
  }
}