* {
  box-sizing: border-box;
}

:root {
  --primary-pink: #E090A0;
  --secondary-pink: #F0C0D0;
  --dark-text: #3D2B2B;
  --light-background: #FFF5F7;
  --white: #FFFFFF;
  --accent-highlight: #F090B0;
  --shadow: 0 18px 50px rgba(61, 43, 43, 0.12);
  --soft-shadow: 0 12px 32px rgba(224, 144, 160, 0.18);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Futura, 'Century Gothic', 'Trebuchet MS', sans-serif;
  color: var(--dark-text);
  background: radial-gradient(circle at top left, rgba(240, 192, 208, 0.45), transparent 34rem), var(--light-background);
  line-height: 1.6;
}

a {
  color: inherit;
}

.page-shell {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0 32px;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 56px 22px;
  border-radius: 34px;
  background: linear-gradient(135deg, var(--primary-pink), var(--secondary-pink) 54%, #ffe7ee);
  box-shadow: var(--shadow);
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -80px;
  background: linear-gradient(110deg, transparent 20%, rgba(255, 255, 255, 0.26) 38%, rgba(255, 255, 255, 0.62) 50%, rgba(255, 255, 255, 0.18) 62%, transparent 82%);
  transform: translateX(-72%);
  animation: shimmer 5.8s ease-in-out infinite;
  z-index: -1;
}

.hero::after {
  content: "";
  position: absolute;
  width: 210px;
  height: 210px;
  right: -84px;
  bottom: -74px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.24);
  box-shadow: -255px -180px 0 rgba(255, 255, 255, 0.13), -60px -300px 0 rgba(255, 255, 255, 0.12);
  z-index: -1;
}

.hero-icon {
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 28px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.42);
  box-shadow: 0 14px 30px rgba(61, 43, 43, 0.12);
  font-size: 2.35rem;
  backdrop-filter: blur(12px);
}

.eyebrow,
.section-kicker {
  margin: 0;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 700;
}

.eyebrow {
  color: rgba(61, 43, 43, 0.78);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 8px;
  font-family: 'Parisienne', Futura, 'Century Gothic', 'Trebuchet MS', sans-serif;
  font-size: clamp(4rem, 18vw, 8.2rem);
  line-height: 0.9;
  font-weight: 400;
  color: var(--white);
  text-shadow: 0 10px 28px rgba(61, 43, 43, 0.16);
}

.tagline {
  margin-bottom: 8px;
  font-size: clamp(1rem, 4vw, 1.45rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--dark-text);
}

.subtitle {
  max-width: 520px;
  margin-bottom: 0;
  font-size: clamp(0.98rem, 3.4vw, 1.16rem);
  color: rgba(61, 43, 43, 0.82);
}

.sparkle {
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 0 18px rgba(255, 255, 255, 0.95), 0 0 34px rgba(240, 144, 176, 0.72);
  animation: twinkle 2.8s ease-in-out infinite;
}

.sparkle::before,
.sparkle::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  background: var(--white);
  border-radius: 999px;
}

.sparkle::before {
  width: 26px;
  height: 2px;
}

.sparkle::after {
  width: 2px;
  height: 26px;
}

.sparkle-one {
  top: 22%;
  left: 14%;
}

.sparkle-two {
  top: 20%;
  right: 18%;
  animation-delay: 0.9s;
  transform: scale(0.75);
}

.sparkle-three {
  left: 22%;
  bottom: 20%;
  animation-delay: 1.7s;
  transform: scale(0.58);
}

.services-section {
  padding: 54px 0 18px;
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 28px;
  text-align: center;
}

.section-kicker {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--accent-highlight);
}

.section-heading h2 {
  margin-bottom: 10px;
  font-size: clamp(1.75rem, 7vw, 3rem);
  line-height: 1.1;
  color: var(--dark-text);
}

.section-heading p {
  margin-bottom: 0;
  color: rgba(61, 43, 43, 0.72);
}

.cards-grid {
  display: grid;
  gap: 18px;
}

.service-card {
  position: relative;
  overflow: hidden;
  padding: 22px 18px 10px;
  border: 1px solid rgba(224, 144, 160, 0.18);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--soft-shadow);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--primary-pink), var(--secondary-pink), var(--accent-highlight));
}

.card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.card-icon {
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: var(--primary-pink);
  background: var(--light-background);
  box-shadow: inset 0 0 0 1px rgba(224, 144, 160, 0.16);
  font-size: 1.25rem;
}

.card-header h3 {
  margin-bottom: 0;
  font-size: 1.18rem;
  color: var(--primary-pink);
}

.price-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.price-list li {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(224, 144, 160, 0.18);
}

.price-list li:last-child {
  border-bottom: 0;
}

.price-list span {
  min-width: 0;
  color: rgba(61, 43, 43, 0.9);
  font-size: 0.96rem;
}

.price-list small {
  display: inline;
  color: rgba(61, 43, 43, 0.58);
  font-size: 0.84em;
}

.price-list strong {
  flex: 0 0 auto;
  color: var(--dark-text);
  font-size: 0.98rem;
  white-space: nowrap;
}

.home-service {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 30px 0 0;
  padding: 18px;
  border-radius: 24px;
  color: var(--dark-text);
  background: var(--secondary-pink);
  box-shadow: 0 14px 34px rgba(224, 144, 160, 0.2);
}

.home-icon {
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: var(--white);
  background: var(--primary-pink);
  font-size: 1.2rem;
}

.home-service p {
  margin-bottom: 0;
  font-weight: 700;
  font-size: 0.96rem;
}

.cta-section {
  padding: 46px 0 10px;
  text-align: center;
}

.cta-section p {
  margin-bottom: 18px;
  color: rgba(61, 43, 43, 0.76);
  font-size: 1.05rem;
}

.book-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 190px;
  min-height: 56px;
  padding: 15px 34px;
  border-radius: 999px;
  color: var(--white);
  background: var(--primary-pink);
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.04em;
  box-shadow: 0 14px 32px rgba(224, 144, 160, 0.42);
  transition: transform 200ms ease, box-shadow 200ms ease, background 200ms ease;
}

.book-button:hover,
.book-button:focus-visible {
  background: var(--accent-highlight);
  transform: translateY(-2px);
  box-shadow: 0 0 0 7px rgba(240, 144, 176, 0.18), 0 18px 38px rgba(240, 144, 176, 0.52);
}

.book-button:focus-visible {
  outline: 3px solid rgba(61, 43, 43, 0.28);
  outline-offset: 4px;
}

.site-footer {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 12px 0 28px;
  text-align: center;
  color: rgba(61, 43, 43, 0.62);
  font-size: 0.9rem;
}

.site-footer p {
  margin-bottom: 0;
}

.site-footer a {
  color: var(--primary-pink);
  font-weight: 800;
  text-decoration: none;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--accent-highlight);
  text-decoration: underline;
}

@keyframes shimmer {
  0%, 46% {
    transform: translateX(-78%) rotate(0.001deg);
  }
  72%, 100% {
    transform: translateX(78%) rotate(0.001deg);
  }
}

@keyframes twinkle {
  0%, 100% {
    opacity: 0.34;
    filter: blur(0);
  }
  50% {
    opacity: 1;
    filter: blur(0.2px);
  }
}

@media (min-width: 640px) {
  .page-shell {
    width: min(1120px, calc(100% - 48px));
    padding-top: 34px;
  }

  .hero {
    min-height: 500px;
    border-radius: 42px;
  }

  .cards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
  }

  .service-card {
    padding: 24px 22px 12px;
  }

  .home-service {
    padding: 22px 24px;
  }
}

@media (min-width: 960px) {
  .services-section {
    padding-top: 70px;
  }

  .cards-grid {
    gap: 26px;
  }

  .service-card:hover {
    transform: translateY(-7px);
    border-color: rgba(224, 144, 160, 0.32);
    box-shadow: 0 22px 56px rgba(224, 144, 160, 0.24);
  }

  .home-service {
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
