* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Futura, "Nunito Sans", "Josefin Sans", "Century Gothic", Arial, sans-serif;
  background: linear-gradient(180deg, #FFFFFF 0%, #FFF7FB 48%, #FFFFFF 100%);
  color: #000000;
}

.site-header {
  background: #FFFFFF;
  text-align: center;
  padding: 46px 18px 34px;
  border-bottom: 1px solid rgba(233, 30, 144, 0.15);
}

.header-inner {
  max-width: 900px;
  margin: 0 auto;
}

.site-header h1 {
  margin: 0;
  color: #000000;
  font-family: "Brush Script MT", "Segoe Script", "Snell Roundhand", cursive;
  font-size: clamp(3rem, 10vw, 6.25rem);
  line-height: 0.95;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.site-header p {
  margin: 18px 0 0;
  color: #000000;
  font-size: clamp(0.92rem, 2.6vw, 1.18rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

main {
  width: min(100%, 1040px);
  margin: 0 auto;
  padding: 26px 16px 54px;
}

.service-section {
  margin: 30px auto;
}

.section-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  margin-bottom: 18px;
  text-align: center;
}

.icon-wrap {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border-radius: 999px;
  background: #F5C6E0;
  color: #E91E90;
  box-shadow: 0 10px 24px rgba(233, 30, 144, 0.16);
}

.icon-wrap svg {
  width: 29px;
  height: 29px;
  fill: none;
  stroke: currentColor;
  stroke-width: 3.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(1.35rem, 4.5vw, 2.1rem);
  line-height: 1.1;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  font-weight: 800;
}

.service-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(233, 30, 144, 0.16);
  border-radius: 28px;
  padding: clamp(18px, 4vw, 34px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.07);
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(233, 30, 144, 0.35);
  box-shadow: 0 24px 62px rgba(233, 30, 144, 0.13);
}

.price-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: baseline;
  gap: 12px;
  padding: 14px 0;
  font-size: clamp(0.96rem, 2.7vw, 1.08rem);
}

.price-row::before {
  content: "";
  grid-column: 2;
  border-bottom: 1px dotted rgba(0, 0, 0, 0.35);
  transform: translateY(-0.18em);
}

.price-row span {
  grid-column: 1;
  min-width: 0;
}

.price-row strong {
  grid-column: 3;
  color: #000000;
  font-weight: 900;
  text-align: right;
  white-space: nowrap;
}

.price-row + .price-row {
  border-top: 1px solid rgba(245, 198, 224, 0.55);
}

.split-card h3 {
  margin: 8px 0 8px;
  color: #E91E90;
  font-size: clamp(1rem, 3vw, 1.18rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 900;
}

.split-card h3:not(:first-child) {
  margin-top: 30px;
  padding-top: 22px;
  border-top: 2px solid rgba(245, 198, 224, 0.7);
}

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

.simple-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(120px, 1fr));
  gap: 12px;
}

.simple-list li {
  padding: 14px 12px;
  border-radius: 18px;
  background: #FFF2FA;
  border: 1px solid rgba(233, 30, 144, 0.16);
  font-weight: 800;
}

.consult-note {
  margin: 22px 0 0;
  color: #E91E90;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.cta-section {
  display: flex;
  justify-content: center;
  padding: 22px 0 10px;
}

.book-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 188px;
  min-height: 56px;
  padding: 16px 34px;
  border-radius: 999px;
  background: #E91E90;
  color: #FFFFFF;
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 0 0 rgba(233, 30, 144, 0.42), 0 18px 36px rgba(233, 30, 144, 0.28);
  animation: pulseGlow 2.2s ease-in-out infinite;
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.book-button:hover,
.book-button:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 0 0 10px rgba(233, 30, 144, 0.1), 0 22px 44px rgba(233, 30, 144, 0.34);
  outline: none;
}

footer {
  background: #F5C6E0;
  color: #000000;
  text-align: center;
  padding: 22px 16px;
}

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

.fade-section {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 760ms ease, transform 760ms 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 18px 36px rgba(233, 30, 144, 0.28);
  }
  50% {
    box-shadow: 0 0 0 13px rgba(233, 30, 144, 0), 0 22px 44px rgba(233, 30, 144, 0.38);
  }
}

@media (max-width: 760px) {
  main {
    padding: 18px 14px 44px;
  }

  .site-header {
    padding-top: 38px;
  }

  .service-section {
    margin: 26px auto;
  }

  .section-heading {
    gap: 10px;
  }

  .icon-wrap {
    width: 44px;
    height: 44px;
  }

  .simple-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .site-header p {
    line-height: 1.6;
  }

  .section-heading {
    align-items: center;
  }

  .price-row {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px 10px;
    padding: 13px 0;
  }

  .price-row::before {
    grid-column: 1 / -1;
    grid-row: 2;
    transform: none;
    border-bottom-color: rgba(233, 30, 144, 0.22);
  }

  .price-row span {
    grid-column: 1;
  }

  .price-row strong {
    grid-column: 2;
    max-width: 145px;
    white-space: normal;
  }

  .simple-list {
    grid-template-columns: 1fr;
  }
}

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

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

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