@font-face {
  font-family: "SL Holding Sans";
  src: url("assets/fonts/holding-sans-bold.woff") format("woff");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  color-scheme: light;
  font-family: Arial, Helvetica, sans-serif;
  color: #080808;
  background: #fff;
}

* { box-sizing: border-box; }
svg { overflow: hidden; }
html, body { margin: 0; min-width: 280px; }

.holding-page {
  display: grid;
  grid-template-columns: 1038fr 978fr;
  min-height: 100vh;
  min-height: 100svh;
}

.brand {
  position: relative;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto auto;
  align-items: center;
  min-width: 0;
  min-height: 100vh;
  min-height: 100svh;
  isolation: isolate;
  background: #fff;
}

.brand-panel {
  position: absolute;
  z-index: -1;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: fill;
}

.mobile-wordmark { display: none; }

.announcement {
  grid-row: 2;
  position: relative;
  margin: 0 auto;
  padding: 0.3em 0.55em;
  max-width: calc(100% - 2rem);
  font: 700 clamp(1.25rem, 1.56vw, 2rem)/1.12 "SL Holding Sans", "Arial Narrow", Arial, sans-serif;
  letter-spacing: -0.025em;
  text-align: center;
  background: #fff;
}

.copyright {
  grid-row: 3;
  align-self: end;
  padding: 0.75rem 1.25rem max(1.1rem, env(safe-area-inset-bottom));
  margin-top: clamp(2rem, 9vh, 6rem);
  font-size: 0.75rem;
  line-height: 1.5;
  color: #474747;
  text-align: center;
}

.copyright span { display: block; }

.character {
  display: flex;
  align-items: flex-end;
  margin: 0;
  min-width: 0;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  background: #080808;
}

.character-art {
  display: block;
  width: 100%;
  height: 100vh;
  height: 100svh;
  object-fit: cover;
  object-position: 50% 0;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

/* Portrait/tablet: retain both panels without cropping off the character's face. */
@media (max-aspect-ratio: 6/5), (max-width: 700px) {
  .holding-page {
    display: flex;
    flex-direction: column;
    min-height: 100svh;
  }

  .brand {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 0;
    padding: clamp(1.75rem, 6vw, 3rem) 1.25rem 1.5rem;
  }

  .brand-panel { display: none; }

  .mobile-wordmark {
    display: block;
    width: min(82%, 30rem);
    height: auto;
  }

  .announcement {
    margin-top: 1rem;
    padding: 0;
    font-size: clamp(1.25rem, 4.7vw, 1.75rem);
  }

  .character {
    min-height: 0;
    overflow: visible;
  }

  .character-art {
    height: auto;
    aspect-ratio: 978 / 1152;
    object-fit: contain;
  }

  /* One semantic copyright, placed at the foot of the whole stacked page. */
  .holding-page { position: relative; padding-bottom: 4.75rem; }
  .brand { position: static; isolation: auto; }
  .copyright {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0;
    padding: 0.85rem 1rem max(0.85rem, env(safe-area-inset-bottom));
    background: #fff;
  }
}

/* Keep lettering proportional in unusually wide/short browser windows. */
@media (min-aspect-ratio: 21/9) and (min-width: 701px) {
  .brand-panel { object-fit: contain; }
  .copyright { margin-top: 1rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; }
}
