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

:root {
  --teal: #168f93;
  --teal-dark: #0e6e72;
  --purple: #63508f;
  --lavender: #eee9f8;
  --cream: #fffaf1;
  --ink: #34313d;
  --muted: #6d6877;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(63, 48, 88, 0.15);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--cream);
}

body {
  min-height: 100vh;
  margin: 0;
  font-family: "DM Sans", Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 15% 20%, rgba(22, 143, 147, 0.13), transparent 30%),
    radial-gradient(circle at 88% 15%, rgba(99, 80, 143, 0.13), transparent 28%),
    linear-gradient(145deg, #fffdf8 0%, #f7f1fb 100%);
}

.page-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 34px 18px;
}

.card {
  position: relative;
  width: min(720px, 100%);
  padding: 42px 54px 44px;
  overflow: hidden;
  text-align: center;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(99, 80, 143, 0.13);
  border-radius: 34px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
}

.card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 8px;
  background: linear-gradient(90deg, var(--teal), var(--purple));
}

.logo {
  display: block;
  width: min(260px, 70vw);
  height: auto;
  margin: 0 auto 22px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--teal-dark);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.82rem;
}

h1 {
  margin: 0;
  font-family: "Nunito", Arial, sans-serif;
  color: var(--purple);
  font-size: clamp(2rem, 6vw, 3.35rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.intro,
.details {
  max-width: 570px;
  margin-left: auto;
  margin-right: auto;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.72;
}

.intro {
  margin-top: 20px;
  margin-bottom: 0;
}

.details {
  margin-top: 0;
  margin-bottom: 20px;
}

.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: min(320px, 80%);
  margin: 24px auto;
  color: var(--purple);
}

.divider span:not(.heart) {
  height: 1px;
  flex: 1;
  background: linear-gradient(90deg, transparent, rgba(99, 80, 143, 0.35));
}

.divider span:last-child {
  background: linear-gradient(90deg, rgba(99, 80, 143, 0.35), transparent);
}

.heart {
  font-size: 1rem;
  color: var(--teal);
}

.tagline {
  margin: 0 0 22px;
  font-family: "Nunito", Arial, sans-serif;
  font-size: 1.23rem;
  font-weight: 800;
  color: var(--teal-dark);
}

.contact-button {
  display: inline-block;
  max-width: 100%;
  padding: 14px 22px;
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  box-shadow: 0 10px 24px rgba(22, 143, 147, 0.24);
  font-weight: 700;
  text-decoration: none;
  overflow-wrap: anywhere;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.contact-button:hover,
.contact-button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(22, 143, 147, 0.31);
}

.small-note {
  margin: 18px 0 0;
  color: #8a8491;
  font-size: 0.88rem;
}

.sparkle {
  position: absolute;
  color: #e2b64e;
  opacity: 0.7;
  font-size: 1.3rem;
}

.sparkle-one {
  top: 75px;
  left: 11%;
  transform: rotate(-14deg);
}

.sparkle-two {
  top: 116px;
  right: 12%;
  transform: rotate(12deg) scale(0.8);
}

@media (max-width: 600px) {
  .card {
    padding: 34px 23px 36px;
    border-radius: 26px;
  }

  .logo {
    width: min(220px, 72vw);
  }

  .intro,
  .details {
    font-size: 0.99rem;
  }

  .sparkle {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
