:root {
  --accent-rose: #c8437c;
  --accent-gold: #d4ae59;
  --text-main: #f1f1f1;
  --text-muted: #4a4440;
}

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

body {
  margin: 0;
  min-height: 100vh;
  min-height: 100dvh; /* fixes iOS URL-bar viewport jumps */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  font-family: "Quicksand", "Helvetica Neue", Arial, sans-serif;
  color: var(--text-main);
  background: #d51668;
  position: relative;
  overflow: hidden;
}

.hero {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  text-align: center;
  max-width: 640px;
}

.logo {
  width: min(570px, 75vw);
  height: auto;
  display: block;
  filter: drop-shadow(0 10px 32px rgba(0, 0, 0, 0.08));
}

.tagline {
  margin: 0;
  font-family: "Open Sans", "Times New Roman", serif;
  font-size: 35px;
  letter-spacing: 0.5em;
  line-height: 1.45;
  margin-top: 55px;
  font-weight: 500;
  text-transform: uppercase;
}

.subtagline {
  margin: 0;
  font-family: "Open Sans", "Times New Roman", serif;
  font-size: 20px;
  letter-spacing: 0.01em;
  line-height: 1.45;
  font-weight: 400;
}

.background-accent {
  position: fixed;
  width: 10in;
  height: 10in;
  pointer-events: none;
  z-index: 0;
}

.accent-top-left-old {
  top: 0;
  left: 0;
  background: radial-gradient(circle 5in at 0 0, var(--accent-rose) 0%, rgba(200, 67, 124, 0.55) 40%, rgba(200, 67, 124, 0) 100%);
}

.accent-top-left {
  top: 0;
  left: 0;
  background: radial-gradient(circle 5in at 0 0, var(--accent-gold) 0%, rgba(212, 174, 89, 0.55) 40%, rgba(212, 174, 89, 0) 100%);
}

.accent-bottom-right {
  right: 0;
  bottom: 0;
  background: radial-gradient(circle 5in at 100% 100%, var(--accent-gold) 0%, rgba(212, 174, 89, 0.55) 40%, rgba(212, 174, 89, 0) 100%);
}

@media (max-width: 480px) {
  .hero {
    gap: 1.25rem;
  }

  .logo {
    width: min(380px, 70vw);
  }

  .tagline {
    font-size: 25px;
    margin-top: 35px;
    letter-spacing: 0.5em;
  }

  .subtagline {
    font-size: 22px;
    line-height: 1.3;
  }

  .background-accent {
    width: 2.4in;
    height: 2.4in;
  }

  .accent-top-left-old {
    background: radial-gradient(circle 1.2in at 0 0, var(--accent-rose) 0%, rgba(200, 67, 124, 0.55) 65%, rgba(255, 255, 255, 0) 200%);
  }

  .accent-top-left {
    background: radial-gradient(circle 1in at 0 0, var(--accent-gold) 0%, rgba(212, 174, 89, 0.55) 65%, rgba(212, 174, 89, 0) 200%);
  }

  .accent-bottom-right {
    background: radial-gradient(circle 1in at 100% 100%, var(--accent-gold) 0%, rgba(212, 174, 89, 0.55) 65%, rgba(212, 174, 89, 0) 200%);
  }
}
