:root {
  --ink: #11110f;
  --paper: #eee9dc;
  --band-width: clamp(3.5rem, 4.4vw, 4.75rem);
  --band-height: clamp(4.25rem, 8.5vh, 5.5rem);
}

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

html,
body {
  width: 100%;
  min-height: 100%;
  margin: 0;
  overflow: hidden;
  background: #050505;
}

body {
  min-height: 100vh;
  min-height: 100svh;
  min-height: 100dvh;
}

.hero {
  position: fixed;
  inset: 0;
  overflow: hidden;
  background: #050505;
  isolation: isolate;
}

.hero__art,
.hero__art img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.hero__art img {
  object-fit: cover;
  object-position: center;
  user-select: none;
  -webkit-user-drag: none;
}

.title-band {
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: 0;
  left: 0;
  width: calc(var(--band-width) + env(safe-area-inset-left));
  margin: 0;
  padding-left: env(safe-area-inset-left);
  overflow: hidden;
  background:
    linear-gradient(95deg, rgba(255,255,255,.16), transparent 34%),
    var(--paper);
  color: var(--ink);
  box-shadow: .14rem 0 .5rem rgba(0,0,0,.13);
}

.title-band h1 {
  position: absolute;
  top: 50%;
  left: calc(env(safe-area-inset-left) + var(--band-width) / 2);
  width: max-content;
  margin: 0;
  font-family: "Arial Narrow", "Aptos Narrow", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(1rem, 1.45vw, 1.45rem);
  font-stretch: condensed;
  font-weight: 500;
  line-height: 1;
  letter-spacing: .31em;
  text-transform: uppercase;
  white-space: nowrap;
  transform: translate(-50%, -50%) rotate(-90deg);
  transform-origin: center;
}

.title-band h1 span {
  padding-inline: .12em;
}

@media (orientation: portrait), (max-width: 700px) {
  .title-band {
    top: auto;
    right: 0;
    bottom: 0;
    left: 0;
    width: auto;
    height: calc(var(--band-height) + env(safe-area-inset-bottom));
    padding: 0 0 env(safe-area-inset-bottom);
    box-shadow: 0 -.14rem .5rem rgba(0,0,0,.13);
  }

  .title-band h1 {
    position: static;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: var(--band-height);
    padding: 0 clamp(1rem, 5vw, 2rem);
    font-size: clamp(.86rem, 3.6vw, 1.24rem);
    letter-spacing: clamp(.18em, 1vw, .31em);
    text-align: center;
    transform: none;
  }
}

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