:root {
  --bg: #050005;
  --pink: #ff2aa4;
  --pink-soft: rgba(255, 42, 164, 0.34);
  --ink: #fff7ff;
  --muted: rgba(255, 247, 255, 0.72);
  --line: rgba(255, 255, 255, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  background: var(--bg);
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 42, 164, 0.22), transparent 38%),
    var(--bg);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
}

.site {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.hero {
  width: 100%;
  min-height: 100vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--bg);
}

.hero-artwork {
  display: block;
  width: auto;
  height: auto;
  max-width: 100vw;
  max-height: 100vh;
  object-fit: contain;
  object-position: center;
  -webkit-user-drag: none;
  user-select: none;
}

.site-footer {
  width: 100%;
  padding: 16px 18px 18px;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(5, 0, 5, 0.82), #050005);
  color: var(--muted);
  text-align: center;
  font-size: clamp(10px, 1.4vw, 13px);
  line-height: 1.45;
  letter-spacing: 0.01em;
}

.site-footer a {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.footer-line {
  display: block;
}


.hero-artwork {
  max-height: 100vh;
}

@media (max-width: 700px) {
  .hero {
    min-height: 78vh;
    align-items: start;
  }

  .hero-artwork {
    width: 100vw;
    height: auto;
    max-width: 100vw;
  }

  .site-footer {
    padding: 14px 16px max(14px, env(safe-area-inset-bottom));
  }
}
