/* ══════════════════════════════════════════════════════════════════
   CATCHING KLOVER — link hub
   Single accent: red on black. No white, no gray. If something needs
   to recede, drop the red's opacity — never introduce another hue.
   ══════════════════════════════════════════════════════════════════ */

:root {
  --black:       #000000;
  --red:         #FF1A1A;  /* display type, borders — the poster red */
  --red-legible: #FF5C5C;  /* anything under ~18px, for contrast */
  --red-dim:     #8A0F0F;  /* hover/pressed, dividers, footer */

  --serif:  "Playfair Display", "Iowan Old Style", Georgia, serif;
  --serif-condensed: "Cormorant", "Playfair Display", Georgia, serif;

  --col: 34rem;          /* ~544px — poster column, never wider */
  --gutter: 1.5rem;
  --ease: cubic-bezier(.2, .6, .3, 1);
}

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

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  min-height: 100svh;
  background: var(--black);
  color: var(--red);
  font-family: var(--serif);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* ─── Film grain ─────────────────────────────────────────────────
   Red-tinted fractal noise, screen-blended so it lifts the blacks
   instead of graying them. Should be barely conscious.            */
.grain {
  position: fixed;
  inset: 0;
  z-index: 90;
  pointer-events: none;
  opacity: .038;
  mix-blend-mode: screen;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='260' height='260'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='matrix' values='1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 220px 220px;
}

/* ─── Page column ────────────────────────────────────────────────── */
.page {
  width: 100%;
  max-width: var(--col);
  margin-inline: auto;
  padding: clamp(2rem, 7vw, 3.5rem) var(--gutter) 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  animation: rise .9s var(--ease) both;
}

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

/* ─── Eyebrow ────────────────────────────────────────────────────── */
.eyebrow {
  margin: 0 0 clamp(1.25rem, 4vw, 1.75rem);
  font-family: var(--serif-condensed);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(.8rem, 3.1vw, 1.05rem);
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: .3em;
  text-indent: .3em;          /* re-centers the trailing letter-space */
  color: var(--red-legible);
}

/* ─── Hero frame ─────────────────────────────────────────────────── */
.frame {
  position: relative;
  isolation: isolate;         /* keeps the duotone blend local */
  display: block;
  width: 100%;
  margin: 0;
  aspect-ratio: 4 / 3;
  border: clamp(9px, 2.6vw, 14px) solid var(--red);
  background: var(--black);
  overflow: hidden;
}

.frame__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Crush to grayscale first so the red multiply reads as a true
     duotone rather than a color wash. */
  filter: grayscale(1) brightness(1.45) contrast(1.28);
}

/* Whites → red, blacks stay black. This is the duotone. */
.frame__duotone {
  position: absolute;
  inset: 0;
  background: var(--red);
  mix-blend-mode: multiply;
  pointer-events: none;
}

/* ─── Logotype ───────────────────────────────────────────────────── */
.logotype {
  margin: clamp(1.1rem, 4vw, 1.6rem) 0 clamp(1.75rem, 6vw, 2.5rem);
  font-weight: 500;
  /* Caps run ~42% wider than the old lowercase wordmark, so both ends
     of this clamp are set by the one-line fit, not by taste. */
  font-size: clamp(1.7rem, 8.6vw, 3rem);
  line-height: 1;
  letter-spacing: .01em;
  color: var(--red);
  text-transform: uppercase;
  white-space: nowrap;        /* one line, like the poster */
}

.logotype__word { display: inline-block; }
.logotype__word + .logotype__word { margin-left: .18em; }

/* The swashed letters, straight off the poster. */
.logotype em {
  font-style: italic;
  font-weight: 500;
  padding-inline: .012em;
}

/* ─── Link stack ─────────────────────────────────────────────────── */
.links {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: .6rem;
}

.link {
  display: block;
  padding: 1.05rem 1.25rem;
  border: 1px solid var(--red);
  background: transparent;
  color: var(--red-legible);
  font-family: var(--serif-condensed);
  font-weight: 600;
  font-size: clamp(.85rem, 3.2vw, 1.05rem);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: .22em;
  text-indent: .22em;
  text-decoration: none;
  transition: background-color .15s var(--ease),
              color .15s var(--ease),
              border-color .15s var(--ease);
}

.link:hover,
.link:focus-visible {
  background: var(--red);
  color: var(--black);
}

.link:active { background: var(--red-dim); color: var(--black); }

.link:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
}

/* ─── Current show ───────────────────────────────────────────────── */
.show {
  margin-top: clamp(2rem, 7vw, 2.75rem);
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.show[hidden] { display: none; }

/* The show poster. Already red/black artwork, so it gets no duotone —
   just a hairline to seat it against the page. */
.poster {
  display: block;
  border: 1px solid var(--red-dim);
  transition: border-color .2s var(--ease);
}

.poster__img {
  display: block;
  width: 100%;
  height: auto;
}

.poster:hover,
.poster:focus-visible { border-color: var(--red); }

.poster:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
}

.show__when {
  margin: .65rem 0 0;
  font-family: var(--serif-condensed);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(.78rem, 3vw, .95rem);
  line-height: 1.6;
  text-transform: uppercase;
  letter-spacing: .24em;
  text-indent: .24em;
  color: var(--red-legible);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0 .55em;
}

.show__dot { color: var(--red-legible); opacity: .55; }

/* ─── Videos ─────────────────────────────────────────────────────── */
.videos {
  width: 100%;
  margin-top: clamp(2.5rem, 8vw, 3.5rem);
}

.section-label {
  margin: 0 0 1.1rem;
  font-family: var(--serif-condensed);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(.8rem, 3.1vw, 1.05rem);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: .3em;
  text-indent: .3em;
  color: var(--red-legible);
}

.videos__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.video {
  display: block;
  text-decoration: none;
}

.video__frame {
  position: relative;
  isolation: isolate;
  display: block;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--red-dim);
  background: var(--black);
  overflow: hidden;
  transition: border-color .2s var(--ease);
}

.video__thumb {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Same duotone idea as the hero, but tuned gentler: these stills
     range from night-lit to full daylight, and the hero's brightness
     blew the bright ones out to flat red. */
  filter: grayscale(1) brightness(.92) contrast(1.4);
}

.video__duotone {
  position: absolute;
  inset: 0;
  background: var(--red);
  mix-blend-mode: multiply;
}

/* Play glyph — red ring + triangle, inverts on hover. */
.video__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 3.25rem;
  height: 3.25rem;
  border: 1px solid var(--red);
  border-radius: 50%;
  /* Near-opaque so the glyph still reads over blown-out red areas of
     a thumbnail, not just the dark ones. */
  background: rgba(0, 0, 0, .78);
  transition: background-color .2s var(--ease);
}

.video__play::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 54%;
  transform: translate(-50%, -50%);
  border-style: solid;
  border-width: .5rem 0 .5rem .85rem;
  border-color: transparent transparent transparent var(--red);
  transition: border-left-color .2s var(--ease);
}

.video:hover .video__frame,
.video:focus-visible .video__frame { border-color: var(--red); }

.video:hover .video__play,
.video:focus-visible .video__play { background: var(--red); }

.video:hover .video__play::after,
.video:focus-visible .video__play::after { border-left-color: var(--black); }

.video:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
}

.video__title {
  display: block;
  margin-top: .6rem;
  font-family: var(--serif-condensed);
  font-weight: 600;
  font-size: clamp(.78rem, 3vw, .95rem);
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: .22em;
  text-indent: .22em;
  color: var(--red-legible);
}

/* The swapped-in player inherits the frame's box. */
.video__frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ─── Footer ─────────────────────────────────────────────────────── */
.footer {
  margin-top: clamp(2.5rem, 9vw, 4rem);
}

.footer p {
  margin: 0;
  font-family: var(--serif-condensed);
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .28em;
  text-indent: .28em;
  color: var(--red-dim);
}

/* ─── Motion preferences ─────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .page { animation: none; }
  * { transition-duration: .01ms !important; }
}
