:root {
  --rose: #e6007e;
  --rose-soft: #ff4da6;
  --ink: #1c1418;
  --ink-soft: #2a2026;
  --mute: #6d5c64;
  --wash: #fff7fb;
  --cloud: #ffffff;
  --display: "Fraunces", Georgia, serif;
  --body: "DM Sans", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  height: 100%;
}

body {
  margin: 0;
  min-height: 100%;
  font-family: var(--body);
  color: var(--ink);
  background:
    radial-gradient(900px 500px at 8% -10%, rgba(230, 0, 126, 0.14), transparent 55%),
    radial-gradient(700px 420px at 100% 20%, rgba(230, 0, 126, 0.07), transparent 50%),
    linear-gradient(180deg, var(--wash), var(--cloud) 55%, #fff5fa);
  line-height: 1.55;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible {
  outline: 2px solid var(--rose);
  outline-offset: 3px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.blob {
  position: fixed;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.45;
  animation: float 16s ease-in-out infinite alternate;
}

.blob--1 {
  width: min(440px, 70vw);
  height: min(440px, 70vw);
  background: #ffb7d9;
  top: -8%;
  left: -12%;
}

.blob--2 {
  width: min(360px, 60vw);
  height: min(360px, 60vw);
  background: #ffd0e8;
  bottom: 5%;
  right: -10%;
  animation-delay: -6s;
}

@keyframes float {
  from {
    transform: translate(0, 0) scale(1);
  }
  to {
    transform: translate(24px, -18px) scale(1.06);
  }
}

.stage {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: clamp(2rem, 6vw, 3.5rem) 1.25rem 2.5rem;
  max-width: 42rem;
  margin: 0 auto;
}

.brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1.5rem;
  animation: rise 0.9s var(--ease) both;
}

.brand__logo {
  width: clamp(6.5rem, 24vw, 9rem);
  height: auto;
  filter: drop-shadow(0 18px 36px rgba(230, 0, 126, 0.18));
}

.brand__name {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.5rem, 4.5vw, 2rem);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.eyebrow {
  margin: 0 0 0.65rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rose);
  animation: rise 0.9s var(--ease) 0.08s both;
}

h1 {
  margin: 0;
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(2.1rem, 8vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  animation: rise 0.9s var(--ease) 0.14s both;
}

h1 em {
  font-style: italic;
  color: var(--rose);
}

.lead {
  margin: 0.9rem 0 0;
  max-width: 28rem;
  color: var(--mute);
  font-size: clamp(1rem, 2.8vw, 1.15rem);
  animation: rise 0.9s var(--ease) 0.2s both;
}

.dates {
  width: 100%;
  margin-top: 1.5rem;
  animation: rise 0.9s var(--ease) 0.26s both;
}

.dates__list {
  display: grid;
  gap: 0.75rem;
  margin: 0;
}

@media (min-width: 520px) {
  .dates__list {
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem;
  }
}

.dates__item {
  margin: 0;
  padding: 1rem 1.1rem;
  border-radius: 1rem;
  text-align: left;
}

.dates__item--close {
  background: var(--rose);
  color: #fff;
}

.dates__item--open {
  background: var(--ink);
  color: #fff;
  box-shadow: inset 0 0 0 1.5px rgba(230, 0, 126, 0.55);
}

.dates__item dt {
  margin: 0 0 0.35rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.85;
}

.dates__item--open dt {
  color: var(--rose-soft);
  opacity: 1;
}

.dates__item dd {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.4;
}

.dates__item strong {
  font-weight: 600;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
  margin-top: 1.75rem;
  animation: rise 0.9s var(--ease) 0.32s both;
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 2.85rem;
  padding: 0.65rem 1.25rem;
  border: 1.5px solid rgba(28, 20, 24, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(8px);
  font-size: 0.95rem;
  font-weight: 500;
  transition:
    transform 0.25s var(--ease),
    background 0.25s var(--ease),
    border-color 0.25s var(--ease),
    color 0.25s var(--ease);
}

.pill:hover {
  transform: translateY(-2px);
  border-color: rgba(230, 0, 126, 0.35);
  color: var(--rose);
}

.pill--solid {
  background: var(--rose);
  border-color: var(--rose);
  color: #fff;
}

.pill--solid:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}

.icon-facebook,
.icon-phone {
  flex-shrink: 0;
}

.info {
  display: grid;
  gap: 1.35rem;
  width: 100%;
  margin-top: 2.25rem;
  padding: 1.5rem 1.25rem;
  border-top: 1px solid rgba(28, 20, 24, 0.08);
  border-bottom: 1px solid rgba(28, 20, 24, 0.08);
  text-align: center;
  animation: rise 0.9s var(--ease) 0.38s both;
}

@media (min-width: 540px) {
  .info {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    text-align: left;
    padding-inline: 0.25rem;
  }
}

.info__block h2 {
  margin: 0 0 0.45rem;
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 400;
  letter-spacing: -0.02em;
}

.info__block p {
  margin: 0;
  color: var(--mute);
  font-size: 0.95rem;
}

.info__block a:hover {
  color: var(--rose);
}

.info__extra {
  margin-top: 0.65rem !important;
}

.info__phone {
  margin-top: 0.85rem !important;
}

.info__phone a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  color: var(--rose);
  font-weight: 500;
}

@media (min-width: 540px) {
  .info__phone a {
    justify-content: flex-start;
  }
}

.footnote {
  margin: 1.75rem 0 0;
  font-size: 0.82rem;
  color: var(--mute);
  letter-spacing: 0.01em;
  animation: rise 0.9s var(--ease) 0.44s both;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .blob,
  .brand,
  .eyebrow,
  h1,
  .lead,
  .dates,
  .actions,
  .info,
  .footnote {
    animation: none;
  }

  .pill:hover {
    transform: none;
  }
}
