:root {
  color-scheme: light;
  --bg: #fff8fd;
  --pink: #ffd7eb;
  --pink-strong: #ff8fc8;
  --blue: #aee7ff;
  --blue-strong: #58bdea;
  --cream: #fffdf7;
  --gold: #ffd76d;
}

* {
  box-sizing: border-box;
}

html {
  min-block-size: 100%;
}

body {
  min-block-size: 100dvb;
  margin: 0;
  background:
    radial-gradient(circle at 14% 18%, rgba(255, 215, 235, 0.95) 0 5.4rem, transparent 5.45rem),
    radial-gradient(circle at 88% 16%, rgba(174, 231, 255, 0.82) 0 6.2rem, transparent 6.25rem),
    radial-gradient(circle at 78% 84%, rgba(255, 215, 109, 0.42) 0 7rem, transparent 7.05rem),
    radial-gradient(circle at 20% 86%, rgba(174, 231, 255, 0.48) 0 4.4rem, transparent 4.45rem),
    linear-gradient(135deg, #fff8fd 0%, #f3fbff 46%, #fffdf7 100%);
  overflow: hidden;
}

body::before,
body::after,
.page-shell::before,
.page-shell::after {
  position: fixed;
  z-index: 0;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

body::before {
  content: "♡";
  inset-block-start: 9dvh;
  inset-inline-start: 8vw;
  color: rgba(255, 143, 200, 0.38);
  font-size: clamp(4.5rem, 11vw, 9rem);
  transform: rotate(-18deg);
}

body::after {
  content: "✦";
  inset-block-end: 9dvh;
  inset-inline-end: 9vw;
  color: rgba(88, 189, 234, 0.38);
  font-size: clamp(4rem, 10vw, 8rem);
  transform: rotate(12deg);
}

.page-shell {
  position: relative;
  display: grid;
  min-block-size: 100dvb;
  place-items: center;
  padding: clamp(1.25rem, 5vw, 4rem);
  isolation: isolate;
}

.page-shell::before {
  content: "✧";
  inset-block-start: 18dvh;
  inset-inline-end: 20vw;
  color: rgba(255, 215, 109, 0.62);
  font-size: clamp(2.2rem, 6vw, 4.8rem);
  transform: rotate(-8deg);
}

.page-shell::after {
  content: "●";
  inset-block-end: 20dvh;
  inset-inline-start: 18vw;
  color: rgba(255, 143, 200, 0.28);
  font-size: clamp(2.5rem, 7vw, 5rem);
}

.brand-logo {
  position: relative;
  z-index: 1;
  display: block;
  inline-size: min(34rem, 84vw);
  block-size: auto;
  filter: drop-shadow(0 1.4rem 2.4rem rgba(255, 143, 200, 0.2));
}

@media (max-width: 34rem) {
  .brand-logo {
    inline-size: min(24rem, 88vw);
  }
}
