@font-face {
  font-family: "Playfair Display";
  src: url("/assets/playfair-display-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
}
* { box-sizing: border-box; }
html { background: #fff; }
body {
  margin: 0;
  color: #4c186e;
  background: radial-gradient(ellipse at 50% 100%, #fdebf4 0%, #fff 70%);
}
main {
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 32px 24px;
}
.splash { width: 100%; text-align: center; }
.logo {
  position: relative;
  width: min(280px, 70vw, 46svh);
  aspect-ratio: 320 / 200;
  margin: 0 auto;
  overflow: hidden;
}
.logo img {
  position: absolute;
  width: 156.25%;
  height: auto;
  max-width: none;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
h1 {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 400;
  font-size: clamp(2.25rem, 6vw, 4rem);
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin: clamp(24px, 5svh, 48px) 0 0;
  overflow-wrap: break-word;
}
