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

html, body {
  width: 100%; height: 100%;
  overflow: hidden;
  background: #0a0a0c;
}

#gl {
  position: fixed; inset: 0;
  width: 100%; height: 100%;
  display: block;
}

/* subtle grain + vignette over the shader for an editorial feel */
.veil {
  position: fixed; inset: 0; z-index: 5; pointer-events: none;
  background:
    radial-gradient(ellipse 80% 70% at 50% 45%, transparent 40%, rgba(10,10,12,.55) 100%);
}

.overlay {
  position: fixed; inset: 0; z-index: 10;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  pointer-events: none;
  padding: 2rem;
}

.brand {
  font-family: 'Cormorant', serif; font-weight: 400;
  font-size: clamp(3.4rem, 13vw, 12rem);
  letter-spacing: .26em; text-indent: .26em;
  color: #f4f1ea; text-transform: uppercase; line-height: .95;
  opacity: 0; animation: rise 1.6s .45s cubic-bezier(.2,.7,.2,1) forwards;
}

.tagline {
  font-family: 'Jost', sans-serif; font-weight: 200;
  font-size: clamp(.62rem, 1.05vw, .85rem);
  letter-spacing: .42em; text-indent: .42em;
  color: rgba(244,241,234,.62); text-transform: uppercase;
  text-align: center;
  margin-top: 2.6rem;
  opacity: 0; animation: rise 1.6s 1.15s cubic-bezier(.2,.7,.2,1) forwards;
}

.footer {
  position: fixed; left: 0; right: 0; bottom: 1.6rem; z-index: 10;
  text-align: center;
  font-family: 'Jost', sans-serif; font-weight: 200;
  font-size: clamp(.56rem, .9vw, .72rem);
  letter-spacing: .34em; text-indent: .34em;
  color: rgba(244,241,234,.42); text-transform: uppercase;
  opacity: 0; animation: rise 1.6s 1.7s cubic-bezier(.2,.7,.2,1) forwards;
}

.footer a {
  color: rgba(244,241,234,.7);
  text-decoration: none;
  text-shadow: 0 1px 12px rgba(0,0,0,.55), 0 0 22px rgba(244,241,234,.18);
  transition: color .4s ease, text-shadow .4s ease;
}

.footer a:hover {
  color: #f4f1ea;
  text-shadow: 0 1px 12px rgba(0,0,0,.55), 0 0 26px rgba(244,241,234,.4);
}

@keyframes rise {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 600px) {
  .overlay  { padding: 1.4rem; justify-content: center; }
  .brand {
    writing-mode: vertical-rl;
    text-orientation: upright;
    letter-spacing: .04em; text-indent: 0;
    font-size: clamp(2.8rem, 15vw, 5.5rem);
    line-height: 1.02;
  }
  .tagline  { letter-spacing: .34em; text-indent: .34em; margin-top: 1.6rem; }
  .footer   { bottom: 1.1rem; letter-spacing: .26em; text-indent: .26em; }
}
