/* ===========================================================================
   THE 25 — Editorial design system
   Rooted in the D Magazine print feature: pumpkin orange, warm ink black,
   azure play-buttons, heavy condensed display + literary serif body.
   =========================================================================== */

/* Cinderblock — condensed display family, mapped across the weight axis.
   File number (50–400) → CSS weight. */
@font-face { font-family: "Cinderblock"; src: url("fonts/Cinderblock_50.otf")  format("opentype"); font-weight: 100; font-style: normal; font-display: swap; }
@font-face { font-family: "Cinderblock"; src: url("fonts/Cinderblock_75.otf")  format("opentype"); font-weight: 200; font-style: normal; font-display: swap; }
@font-face { font-family: "Cinderblock"; src: url("fonts/Cinderblock_100.otf") format("opentype"); font-weight: 300; font-style: normal; font-display: swap; }
@font-face { font-family: "Cinderblock"; src: url("fonts/Cinderblock_125.otf") format("opentype"); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: "Cinderblock"; src: url("fonts/Cinderblock_150.otf") format("opentype"); font-weight: 500; font-style: normal; font-display: swap; }
@font-face { font-family: "Cinderblock"; src: url("fonts/Cinderblock_175.otf") format("opentype"); font-weight: 600; font-style: normal; font-display: swap; }
@font-face { font-family: "Cinderblock"; src: url("fonts/Cinderblock_200.otf") format("opentype"); font-weight: 700; font-style: normal; font-display: swap; }
@font-face { font-family: "Cinderblock"; src: url("fonts/Cinderblock_400.otf") format("opentype"); font-weight: 900; font-style: normal; font-display: swap; }

:root {
  /* palette (overridable by Tweaks) */
  --orange: #e9531e;
  --orange-deep: color-mix(in srgb, var(--orange) 80%, #000);
  --ink: #1a0a04;
  --ink-soft: #2c1812;
  --paper: #f9f4ec;
  --white: #ffffff;
  --blue: #16a3df;
  --muted: #cba48d;            /* ghosted subtitle tone on orange */
  --ghost: rgba(35, 8, 2, 0.42); /* oxblood ghost letters over orange */
  --rule: rgba(26, 10, 4, 0.16);

  /* fonts */
  --flexa: "GT Flexa", "DM Sans", "Inter", system-ui, sans-serif;

  --display: "Cinderblock", "Anton", "Arial Narrow", sans-serif;
  --serif: "Financier Text", "Newsreader", Georgia, "Times New Roman", serif;
  --sans: "Founders Grotesk", "Archivo", system-ui, -apple-system, sans-serif;

  --maxw: 1280px;
  --gutter: clamp(20px, 5vw, 88px);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--orange);
  color: var(--ink);
  font-family: var(--serif);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }

::selection { background: var(--ink); color: var(--orange); }

/* ---- shared display / label utilities ---------------------------------- */
.display {
  font-family: var(--display);
  font-weight: 400;
  line-height: 0.86;
  letter-spacing: 0.005em;
  text-transform: uppercase;
}
.kicker {
  font-family: var(--sans);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: clamp(11px, 0.85vw, 13px);
  line-height: 1.3;
}
.byline-sans {
  font-family: var(--sans);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

/* ===========================================================================
   PLAY BUTTON (video motif)
   =========================================================================== */
.play {
  --sz: 46px;
  width: var(--sz);
  height: var(--sz);
  border-radius: 50%;
  background: var(--blue);
  border: none;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.22);
}
.play::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: calc(var(--sz) * 0.2) 0 calc(var(--sz) * 0.2) calc(var(--sz) * 0.32);
  border-color: transparent transparent transparent #fff;
  margin-left: calc(var(--sz) * 0.08);
}
.play:hover { transform: scale(1.09); box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3); }
.play:active { transform: scale(0.97); }
.play.sm { --sz: 34px; }
.play.lg { --sz: 64px; }
.play .pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid var(--blue);
  animation: pulse 2.6s ease-out infinite;
}
@keyframes pulse {
  0% { transform: scale(1); opacity: 0.55; }
  70%, 100% { transform: scale(1.9); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) { .play .pulse { display: none; } }

/* ===========================================================================
   HERO
   =========================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--orange);
  overflow: hidden;
  display: block;
}
.hero__ghost {
  position: absolute;
  font-family: var(--display);
  text-transform: uppercase;
  color: rgba(35, 8, 2, 0.13);
  line-height: 0.7;
  font-size: clamp(600px, 110vw, 2000px);
  letter-spacing: 0.025em;
  top: 50%;
  left: clamp(-20px, -1vw, 0px);
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 0;
  white-space: nowrap;
  mix-blend-mode: multiply;
}
.hero__blob {
  position: absolute;
  background: var(--ink);
  z-index: 1;
  pointer-events: none;
}
.hero__left {
  position: relative;
  z-index: 3;
  padding: clamp(28px, 4vw, 60px) clamp(24px, 3.5vw, 64px) clamp(40px, 6vh, 80px);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 100vh;
  pointer-events: none;
}
.hero__left > * { pointer-events: auto; }
.hero__pageno {
  font-family: var(--sans);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--ink);
  display: flex;
  gap: 14px;
  align-items: center;
  text-transform: uppercase;
  opacity: 0.85;
  white-space: nowrap;
}
.hero__title {
  position: relative;
  margin-top: clamp(32px, 7vh, 80px);
}
.hero__title .display {
  color: var(--white);
  font-size: clamp(34px, 6.4vw, 84px);
  font-weight: 400;
  line-height: 0.9;
}
.hero__title .line { letter-spacing: 0.02em; }
.hero__title .num {
  color: var(--ink);
  -webkit-text-stroke: 0;
}
.hero__title .line {
  display: block;
  width: fit-content;
  margin: 0 0 4px;
  white-space: nowrap;
}
.hero__sub {
  font-family: var(--display);
  text-transform: uppercase;
  color: rgba(26, 10, 4, 0.62);
  font-size: clamp(22px, 3.4vw, 46px);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0.02em;
  margin-top: clamp(16px, 2vw, 28px);
  white-space: nowrap;
}
.hero__byline {
  display: flex;
  align-items: center;
  gap: 16px;
  border-top: 2px solid var(--ink);
  padding-top: 16px;
  /* stay clear of photo column (photo = 58% from right → left 42% is safe) */
  max-width: min(480px, calc(40vw - 32px));
  margin-top: clamp(28px, 4vh, 56px);
}
.hero__byline p {
  margin: 0;
  font-family: var(--sans);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: clamp(11px, 0.85vw, 13px);
  color: var(--ink);
  line-height: 1.45;
}
.hero__photo {
  position: absolute;
  right: 0;
  top: 0;                          /* touch the top edge */
  width: 52%;
  /* stops well above scrollcue + caption */
  height: calc(100vh - clamp(100px, 14vh, 150px));
  z-index: 2;
  padding: 0 clamp(12px, 1.5vw, 28px) 0 0;
  display: flex;
  align-items: stretch;
  overflow: hidden;
}
.hero__photo image-slot {
  width: 100%;
  height: 100%;
}
.hero__rot {
  position: relative;
  width: 100%;
  height: 100%;
  background: transparent;
  overflow: hidden;
}
/* gradient scrim so caption is always readable */
.hero__rot::after {
  content: "";
  position: absolute;
  inset: 40% 0 0 0;
  background: linear-gradient(to top, rgba(26, 10, 4, 0.72) 0%, transparent 100%);
  pointer-events: none;
  z-index: 3;
}
.hero__rotimg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 0;
  transition: opacity 1s ease;
}
.hero__rotimg.on { opacity: 1; }
.hero__rot--empty {
  background: rgba(26, 10, 4, 0.08);
  border: 2px dashed rgba(26, 10, 4, 0.24);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.hero__coverhint {
  max-width: 16em;
  text-align: center;
  padding: 24px;
}
.hero__coverhint .kicker { color: var(--blue); margin-bottom: 10px; }
.hero__coverhint p {
  font-family: var(--serif);
  font-size: 15px;
  line-height: 1.45;
  color: var(--ink);
  margin: 0;
}
.hero__credit {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: rotate(180deg);
  writing-mode: vertical-rl;
  font-family: var(--sans);
  font-weight: 700;
  letter-spacing: 0.16em;
  font-size: 10px;
  text-transform: uppercase;
  color: rgba(26, 10, 4, 0.6);
}
.hero__caption {
  position: absolute;
  right: clamp(20px, 3vw, 54px);
  bottom: clamp(28px, 4vw, 64px);
  z-index: 4;
  max-width: 150px;
}
.hero__caption .kicker { color: var(--blue); }
.hero__caption p {
  font-family: var(--serif);
  font-size: 14px;
  line-height: 1.35;
  margin: 6px 0 0;
  color: var(--white);
}
.scrollcue {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  z-index: 5;
  font-family: var(--sans);
  font-weight: 800;
  letter-spacing: 0.2em;
  font-size: 10px;
  text-transform: uppercase;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  opacity: 0.8;
}
.scrollcue span:last-child { animation: bob 1.8s ease-in-out infinite; font-size: 14px; }
@keyframes bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(5px); } }

/* ===========================================================================
   NAV — sticky top bar + contents overlay
   =========================================================================== */
.topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px clamp(16px, 3vw, 40px);
  background: var(--ink);
  color: var(--white);
  transform: translateY(-100%);
  transition: transform 0.35s ease;
}
.topbar.show { transform: translateY(0); }
.topbar__title {
  font-family: var(--display);
  text-transform: uppercase;
  font-size: clamp(14px, 1.4vw, 20px);
  letter-spacing: 0.01em;
  color: var(--white);
}
.topbar__title b { color: var(--orange); }
.topbar__right { display: flex; align-items: center; gap: 14px; }
.topbar__progress {
  font-family: var(--sans);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--muted);
}
.btn-contents {
  font-family: var(--sans);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 11px;
  background: var(--orange);
  color: var(--ink);
  border: none;
  padding: 8px 16px;
  cursor: pointer;
  display: flex;
  flex-direction: row;
  gap: 8px;
  align-items: center;
  justify-content: center;
}
.btn-contents:hover { background: var(--white); }
.btn-contents .bars { display: inline-flex; flex-direction: column; gap: 3px; }
.btn-contents .bars i { width: 16px; height: 2px; background: var(--ink); display: block; }

/* progress bar */
.scrollprog {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  background: var(--orange);
  z-index: 2005;
  width: 0;
}
.topbar.show ~ .scrollprog { background: var(--blue); }

/* contents overlay */
.contents {
  position: fixed;
  inset: 0;
  padding-bottom: 100px;
  z-index: 2010;
  background: var(--ink);
  color: var(--white);
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.contents.open { opacity: 1; pointer-events: auto; }
.contents__head {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 22px clamp(20px, 4vw, 56px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}
.contents__head-title { flex-shrink: 0; }
.contents__head-right {
  flex: 1;
  min-width: 0;
  border-left: 1px solid rgba(255,255,255,0.14);
  padding-left: 24px;
}
.contents__head .display { color: var(--orange); font-weight: 200; font-size: clamp(22px, 3vw, 40px); letter-spacing: 0.06em; }
.contents__close {
  background: none;
  border: 1.5px solid rgba(255,255,255,0.3);
  color: var(--white);
  width: 36px; height: 36px;
  border-radius: 50%;
  font-size: 22px;
  cursor: pointer;
  line-height: 1;
  flex-shrink: 0;
  transition: background 0.2s, border-color 0.2s;
  display: flex; align-items: center; justify-content: center;
}
.contents__close:hover { background: #3d1209; border-color: #3d1209; color: var(--white); }

/* contents newsletter — in header */
.contents__nl {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}
.contents__nl-eyebrow {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 8px;
}
.contents__nl-kicker {
  font-family: var(--flexa);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  flex-shrink: 0;
  background: rgba(233,83,30,0.18);
  padding: 3px 7px;
  border-radius: 2px;
}
.contents__nl-pitch {
  font-family: var(--flexa);
  font-size: 12px;
  font-weight: 400;
  color: rgba(255,255,255,0.75);
  line-height: 1.3;
}
.contents__nl-form {
  display: flex;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 3px;
  overflow: hidden;
  max-width: 320px;
}
.contents__nl-input {
  flex: 1;
  background: rgba(255,255,255,0.07);
  border: none;
  outline: none;
  color: var(--white);
  font-family: var(--flexa);
  font-size: 12px;
  padding: 9px 11px;
  min-width: 0;
}
.contents__nl-input::placeholder { color: rgba(255,255,255,0.35); }
.contents__nl-btn {
  background: var(--orange);
  border: none;
  color: var(--white);
  font-family: var(--flexa);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 9px 13px;
  cursor: pointer;
  transition: background 0.2s;
  flex-shrink: 0;
  white-space: nowrap;
}
.contents__nl-btn:hover { background: #3d1209; }

.contents__list {
  overflow-y: auto;
  flex: 1;
  min-height: 0;
  padding: clamp(16px, 3vw, 40px) clamp(20px, 4vw, 56px) 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: repeat(13, auto);
  grid-auto-flow: column;
  column-gap: clamp(24px, 3vw, 48px);
}
@media (max-width: 720px) { .contents__list { grid-template-columns: 1fr; grid-template-rows: none; grid-auto-flow: row; } }
.contents__item {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 11px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
  break-inside: avoid;
  color: var(--white);
  text-decoration: none;
}
.contents__item .r {
  font-family: var(--display);
  font-weight: 200;
  font-size: 28px;
  color: var(--orange);
  width: 1.6em;
  flex: 0 0 auto;
}
.contents__item .r::after { content: "."; }
.contents__item .n {
  font-family: var(--display);
  font-weight: 100;
  text-transform: uppercase;
  font-size: 28px;
  letter-spacing: 0.05em;
  transition: color 0.15s;
}
.contents__item .g {
  margin-left: auto;
  font-family: var(--flexa);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.contents__item:hover .n { color: var(--orange); }

/* ===========================================================================
   SECTIONS — generic
   =========================================================================== */
section { position: relative; }
.sec-orange { background: var(--orange); color: var(--ink); }
.sec-paper { background: var(--paper); color: var(--ink); }
.sec-ink { background: var(--ink); color: var(--paper); }

.divider {
  min-height: 64vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(60px, 10vh, 140px) var(--gutter);
  position: relative;
  overflow: hidden;
}
.divider__ghost {
  position: absolute;
  font-family: var(--display);
  text-transform: uppercase;
  color: var(--ghost);
  font-size: clamp(160px, 30vw, 460px);
  line-height: 0.7;
  right: -0.06em;
  bottom: -0.18em;
  pointer-events: none;
  mix-blend-mode: multiply;
}
.divider .kicker { color: var(--blue); position: relative; z-index: 2; }
.divider h2 {
  font-family: var(--display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(48px, 9vw, 150px);
  line-height: 0.86;
  margin: 4px 0 0;
  max-width: 16ch;
  position: relative;
  z-index: 2;
}
.divider p {
  position: relative;
  z-index: 2;
  font-family: var(--serif);
  font-size: clamp(17px, 1.5vw, 22px);
  line-height: 1.5;
  max-width: 56ch;
  margin: 26px 0 0;
}

/* ===========================================================================
   INTRO ESSAY
   =========================================================================== */
.intro {
  padding: clamp(70px, 11vh, 150px) var(--gutter);
  background: var(--paper);
}
.intro__wrap { max-width: 980px; margin: 0 auto; }
.intro__head {
  margin-bottom: 30px;
}
.intro h2 {
  font-family: var(--display);
  font-weight: 200;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  font-size: clamp(36px, 4.8vw, 72px);
  line-height: 0.9;
  margin: 0;
  max-width: 20ch;
}
.intro__body { columns: 2; column-gap: 52px; }
@media (max-width: 760px) { .intro__body { columns: 1; } }
.intro__body p {
  margin: 0 0 1.05em;
  font-size: clamp(16px, 1.15vw, 18.5px);
  line-height: 1.6;
  text-align: justify;
  hyphens: auto;
}
.intro__body p:first-child::first-letter {
  font-family: var(--display);
  color: var(--orange);
  padding-right: 0.36em;
  initial-letter: 3;
}
@supports not (initial-letter: 1) {
  .intro__body p:first-child::first-letter {
    float: left;
    font-size: 5.4em;
    line-height: 0.82;
    padding: 0 0.22em 0 0;
  }
}
.intro__sig {
  font-family: var(--sans);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 13px;
  margin-top: 8px;
  color: var(--orange-deep);
  break-inside: avoid;
}

/* ===========================================================================
   ARTIST ENTRY
   =========================================================================== */
.entry {
  padding: clamp(60px, 9vh, 130px) var(--gutter);
  border-bottom: 1px solid var(--rule);
  background: var(--paper);
}
.entry__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(34px, 5vw, 88px);
  align-items: start;
}
.entry--right .entry__media { order: 2; }
.entry__media { position: relative; overflow: visible; }
.entry__media image-slot {
  width: 100%;
  height: clamp(360px, 48vw, 620px);
}
.entry__credit {
  font-family: var(--sans);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 10px;
  color: rgba(26, 10, 4, 0.5);
  margin-top: 10px;
}
.entry__media-img .play {
  position: absolute;
  right: 0;
  bottom: 0;
  top: auto;
  left: auto;
  z-index: 5;
  transform: translate(50%, 50%);
}
.entry--right .entry__media-img .play {
  right: auto;
  left: 0;
  transform: translate(-50%, 50%);
}
.entry__name-row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.entry__name-row .entry__name { flex: 1; margin: 0; }
.entry__copylink {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: none;
  border: 1.5px solid rgba(26,10,4,0.18);
  cursor: pointer;
  color: var(--ink);
  opacity: 0.5;
  flex-shrink: 0;
  transition: opacity 0.25s ease, background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}
.entry__copylink:hover {
  opacity: 1;
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
  transform: scale(1.08);
}
.entry__copylink.copied {
  opacity: 1;
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}
.entry__copylink-tooltip {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--ink);
  color: var(--white);
  font-family: var(--body);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 5px 10px;
  border-radius: 4px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease 0.35s;
}
.entry__copylink-tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: var(--ink);
}
.entry__copylink:hover .entry__copylink-tooltip {
  opacity: 1;
  transition: opacity 0.2s ease 0.35s;
}
.entry__copylink.copied .entry__copylink-tooltip {
  opacity: 1;
  transition: opacity 0.15s ease 0s;
}
.entry__copylink.copied .entry__copylink-tooltip {
  background: var(--orange);
}
.entry__copylink.copied .entry__copylink-tooltip::after {
  border-top-color: var(--orange);
}
.entry--featured .entry__copylink { border-color: rgba(26,10,4,0.25); }

.entry__rank {
  font-family: var(--display);
  font-weight: 200;
  font-size: clamp(72px, 12vw, 168px);
  line-height: 0.74;
  color: var(--ink);
  letter-spacing: 0.04em;
  margin-bottom: 18px;
}
.entry__rank::after { content: "."; margin-left: 0.04em; }
.entry__name {
  font-family: var(--display);
  font-weight: 200;
  text-transform: uppercase;
  color: var(--orange);
  font-size: clamp(34px, 5.2vw, 76px);
  line-height: 0.9;
  margin: 16px 0 0;
}
.entry__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
  margin: 18px 0 22px;
}
.tag {
  font-family: var(--sans);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 11px;
  padding: 7px 11px 5px;
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  color: var(--ink);
}
.tag.solid { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.entry__body p {
  margin: 0 0 1em;
  font-size: 20px;
  line-height: 28px;
}
.entry__body p:first-child::first-letter {
  font-family: var(--display);
  font-weight: 400;
  color: var(--orange);
  padding-right: 0.36em;
  initial-letter: 3;
}
@supports not (initial-letter: 1) {
  .entry__body p:first-child::first-letter {
    float: left;
    font-size: 5.6em;
    line-height: 0.82;
    padding: 0 0.22em 0 0;
  }
}
.entry__writer {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  font-family: var(--sans);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
  color: var(--orange-deep);
}
.entry__writer::before { content: ""; width: 26px; height: 2px; background: var(--orange-deep); }

/* featured entry — orange immersive, full bleed */
.entry--featured {
  background: var(--orange);
  color: var(--ink);
  border-bottom: none;
  padding: clamp(50px, 7vh, 110px) var(--gutter);
  overflow: hidden;
}
.entry--featured .entry__rank { color: var(--white); }
.entry--featured .entry__rank::after { color: var(--white); }
.entry--featured .entry__name { color: var(--ink); }
.entry--featured .tag { border-color: var(--ink); color: var(--ink); }
.entry--featured .tag.solid { background: var(--ink); color: var(--orange); }
.entry--featured .entry__writer,
.entry--featured .entry__writer::before { color: var(--ink); }
.entry--featured .entry__writer::before { background: var(--ink); }
.entry--featured .entry__credit { color: rgba(26, 10, 4, 0.55); }
.entry--featured .entry__bigname {
  position: absolute;
  font-family: var(--display);
  text-transform: uppercase;
  color: var(--ghost);
  font-size: clamp(120px, 22vw, 320px);
  line-height: 0.7;
  left: -0.04em;
  bottom: -0.12em;
  pointer-events: none;
  z-index: 0;
  mix-blend-mode: multiply;
  white-space: nowrap;
}
.entry--featured .entry__body p:first-child::first-letter { color: var(--white); }

/* ===========================================================================
   IMAGE-SLOT THEMING (parts)
   =========================================================================== */
image-slot { color: rgba(26, 10, 4, 0.55); }
image-slot::part(frame) { background: rgba(26, 10, 4, 0.06); }
.on-dark image-slot,
.entry--featured image-slot { color: rgba(255, 255, 255, 0.82); }
.on-dark image-slot::part(frame),
.entry--featured image-slot::part(frame) { background: rgba(0, 0, 0, 0.22); }
.on-dark image-slot::part(ring),
.entry--featured image-slot::part(ring) { border-color: rgba(255, 255, 255, 0.5); }

/* ===========================================================================
   STUDIOS
   =========================================================================== */
.studios { padding: clamp(60px, 9vh, 120px) var(--gutter); }
.studios__grid {
  max-width: var(--maxw);
  margin: 34px auto 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}
.studio {
  background: var(--paper);
  padding: 26px 24px;
  transition: background 0.2s;
}
.studio:hover { background: var(--white); }
.studio__name {
  font-family: var(--sans);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--blue);
  font-size: 14px;
  line-height: 1.15;
  margin: 0 0 14px;
}
.studio__row { font-size: 14px; line-height: 1.4; margin: 0 0 8px; }
.studio__row b {
  font-family: var(--sans);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  display: block;
  margin-bottom: 1px;
}

/* ===========================================================================
   JUDGES
   =========================================================================== */
.judges { padding: clamp(60px, 9vh, 120px) var(--gutter); }
.judges__grid {
  max-width: var(--maxw);
  margin: 40px auto 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: clamp(24px, 2.6vw, 40px);
}
.judge image-slot,
.judge img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: top center;
  display: block;
  filter: grayscale(1) contrast(1.05);
}
.judge__name {
  font-family: var(--display);
  font-weight: 200;
  text-transform: uppercase;
  font-size: 32px;\n  line-height: 1.0;
  margin: 14px 0 8px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.judge__name b { color: var(--ink); display: inline; font-weight: 200; }
.judge__bio {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  line-height: 1.45;
}
.judge__rule { width: 30px; height: 2px; background: var(--ink); margin: 0 0 10px; }

/* ===========================================================================
   VIDEO MODAL
   =========================================================================== */
.modal {
  position: fixed;
  inset: 0;
  z-index: 2020;
  background: rgba(8, 4, 2, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 4vw, 60px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
}
.modal.open { opacity: 1; pointer-events: auto; }
.modal__box {
  width: min(1040px, 100%);
  transform: translateY(14px) scale(0.98);
  transition: transform 0.32s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.modal.open .modal__box { transform: none; }
.modal__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 14px;
}
.modal__head .kicker { color: var(--blue); }
.modal__head h3 {
  font-family: var(--display);
  text-transform: uppercase;
  color: var(--white);
  font-size: clamp(26px, 4vw, 52px);
  line-height: 0.9;
  margin: 6px 0 0;
  font-weight: 200;
}
.modal__close {
  background: none;
  border: 2px solid rgba(255, 255, 255, 0.7);
  color: #fff;
  width: 48px; height: 48px;
  border-radius: 50%;
  font-size: 22px;
  cursor: pointer;
  flex: 0 0 auto;
}
.modal__close:hover { background: var(--orange); border-color: var(--orange); color: var(--ink); }
.modal__stage {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.14);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal__stage iframe,
.modal__stage video { width: 100%; height: 100%; border: 0; display: block; }
.modal__placeholder {
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-family: var(--sans);
  padding: 30px;
}
.modal__placeholder .display {
  color: rgba(255, 255, 255, 0.18);
  font-size: clamp(40px, 8vw, 96px);
  line-height: 0.9;
  margin-bottom: 14px;
}
.modal__placeholder p { font-size: 14px; line-height: 1.5; max-width: 42ch; margin: 0 auto; }
.modal__placeholder code {
  font-family: ui-monospace, monospace;
  color: var(--blue);
  background: rgba(22, 163, 223, 0.1);
  padding: 2px 6px;
  border-radius: 4px;
}

/* ===========================================================================
   FOOTER
   =========================================================================== */
.foot {
  background: var(--ink);
  color: var(--paper);
  padding: clamp(60px, 10vh, 130px) var(--gutter);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.foot__ghost {
  position: absolute;
  font-family: var(--display);
  color: rgba(233, 83, 30, 0.08);
  font-size: clamp(160px, 34vw, 520px);
  line-height: 0.7;
  left: 50%; top: 54%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.foot__inner { position: relative; z-index: 2; }
.foot .display { color: var(--orange); font-size: clamp(40px, 7vw, 110px); line-height: 0.86; }
.foot p {
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.62);
  margin: 22px auto 0;
  max-width: 58ch;
  line-height: 1.6;
}
.foot__top {
  margin-top: 34px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  color: var(--orange);
  background: none;
  border: none;
  cursor: pointer;
}
.foot__top:hover { color: var(--white); }

/* ===========================================================================
   CONTENTS — section links (Studios / Judges / Playlist)
   =========================================================================== */
.contents__sections {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0 clamp(20px, 4vw, 56px) 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  margin-bottom: 8px;
}
.contents__seclink {
  font-family: var(--flexa);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 12px;
  color: var(--ink);
  background: var(--orange);
  border: none;
  padding: 12px 18px 10px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s, color 0.2s;
}
.contents__seclink:hover { background: #3d1209; color: var(--white); }
.contents__seclabel {
  font-family: var(--flexa);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 11px;
  color: var(--muted);
  padding: 20px clamp(20px, 4vw, 56px) 10px;
}

/* main newsletter section */
.newsletter {
  background: var(--ink);
  color: var(--white);
  padding: clamp(36px, 5vw, 64px) clamp(24px, 6vw, 96px);
  border-top: 4px solid var(--orange);
}
.newsletter__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
  flex-wrap: wrap;
}
.newsletter__text {
  flex: 1 1 320px;
}
.newsletter__text .kicker {
  color: var(--orange);
  margin-bottom: 12px;
}
.newsletter__title {
  font-family: var(--sans);
  font-weight: 800;
  font-size: clamp(28px, 3.5vw, 46px);
  color: var(--white);
  margin: 0 0 14px;
  letter-spacing: 0.04em;
  line-height: 1;
}
.newsletter__body {
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.65;
  color: rgba(255,255,255,0.7);
  max-width: 440px;
  margin: 0;
}
.newsletter__form {
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.newsletter__placeholder {
  display: flex;
  gap: 0;
  border: 1.5px solid rgba(255,255,255,0.25);
  border-radius: 4px;
  overflow: hidden;
}
.newsletter__input {
  flex: 1;
  background: rgba(255,255,255,0.07);
  border: none;
  outline: none;
  color: var(--white);
  font-family: var(--flexa);
  font-size: 15px;
  padding: 14px 16px;
  min-width: 0;
}
.newsletter__input::placeholder { color: rgba(255,255,255,0.35); }
.newsletter__btn {
  background: var(--orange);
  border: none;
  color: var(--white);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 22px;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}
.newsletter__btn:hover { background: var(--orange-deep); }
.newsletter__fine {
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  margin: 0;
  letter-spacing: 0.03em;
}

/* ── Lock all image slots — photos are final ── */
image-slot { pointer-events: none !important; }

/* ===========================================================================
   STUDIOS — map view
   =========================================================================== */
.studiomap { padding: clamp(60px, 9vh, 120px) 0 0; background: var(--paper); }
.studiomap__head {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter) clamp(28px, 4vw, 48px);
}
.studiomap__head .kicker { color: var(--blue); }
.studiomap__head h2 {
  font-family: var(--display);
  font-weight: 200;
  text-transform: uppercase;
  font-size: clamp(40px, 7vw, 104px);
  line-height: 0.86;
  margin: 12px 0 16px;
}
.studiomap__head p {
  max-width: 62ch;
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.5;
  margin: 0;
}
.studiomap__grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: stretch;
  border-top: 2px solid var(--ink);
}
.studiomap__mapwrap {
  position: relative;
  min-height: 520px;
  overflow: hidden;
}
.studiomap__leaflet {
  width: 100%;
  height: 100%;
  min-height: 520px;
}
/* lift Leaflet controls above our reset button */
.studiomap__mapwrap .leaflet-control-zoom { z-index: 500; }
.studiomap__reset {
  position: absolute;
  left: clamp(12px, 2vw, 24px);
  bottom: clamp(12px, 2vw, 24px);
  z-index: 500;
  font-family: var(--sans);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 11px;
  color: var(--ink);
  background: var(--paper);
  border: 1.5px solid var(--ink);
  cursor: pointer;
  padding: 7px 12px;
}
.studiomap__reset:hover { background: var(--ink); color: var(--white); }
.studiomap__list {
  background: var(--paper);
  padding: clamp(20px, 2.5vw, 40px) clamp(20px, 3vw, 48px);
  columns: 2;
  column-gap: clamp(28px, 3vw, 56px);
}
.studiomap__item {
  display: block;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  border-bottom: 1px solid var(--rule);
  padding: 16px 0;
  cursor: pointer;
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  transition: background 0.15s;
}
.studiomap__item .loc { color: var(--orange); margin-bottom: 7px; display: block; }
.studiomap__item.on { background: rgba(26, 10, 4, 0.07); box-shadow: inset 3px 0 0 var(--orange); padding-left: 12px; }
.studiomap__name {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(18px, 1.5vw, 23px);
  line-height: 1.08;
  margin-bottom: 4px;
}
.studiomap__sub {
  font-family: var(--serif);
  font-size: 13px;
  line-height: 1.35;
  color: rgba(26, 10, 4, 0.62);
}
.studiomap__item.on .studiomap__name { color: inherit; }

/* ===========================================================================
   PLAYLIST (footer)
   =========================================================================== */
.playlist {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto clamp(40px, 6vw, 72px);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: clamp(22px, 3vw, 34px);
  text-align: left;
}
.playlist__head { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; }
.playlist__head .kicker { color: var(--blue); }
.playlist__head h3 {
  font-family: var(--display);
  font-weight: 200;
  text-transform: uppercase;
  color: var(--paper);
  font-size: clamp(28px, 4vw, 48px);
  line-height: 0.9;
  margin: 4px 0 0;
}
.playlist__track {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.playlist__num {
  font-family: var(--display);
  font-weight: 200;
  font-size: 22px;
  color: var(--orange);
  width: 1.6em;
  flex: 0 0 auto;
}
.playlist__meta { flex: 1; min-width: 0; }
.playlist__song {
  font-family: var(--sans);
  font-weight: 700;
  color: var(--paper);
  font-size: 15px;
  letter-spacing: 0.01em;
}
.playlist__artist {
  font-family: var(--serif);
  font-style: italic;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
}
.playlist__bars { display: flex; align-items: flex-end; gap: 3px; height: 18px; }
.playlist__bars i { width: 3px; background: var(--blue); height: 40%; transform-origin: bottom; }
@media (prefers-reduced-motion: no-preference) {
  .playlist__bars i { animation: eq 0.9s ease-in-out infinite; }
  .playlist__bars i:nth-child(2) { animation-delay: 0.18s; }
  .playlist__bars i:nth-child(3) { animation-delay: 0.36s; }
  .playlist__bars i:nth-child(4) { animation-delay: 0.12s; }
}
@keyframes eq { 0%, 100% { height: 28%; } 50% { height: 95%; } }
.playlist__note {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.45);
  margin: 18px 0 0;
}

/* ===========================================================================
   REVEAL ANIMATION
   =========================================================================== */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1); }
  .reveal.in { opacity: 1; transform: none; }
  .reveal.d1 { transition-delay: 0.08s; }
  .reveal.d2 { transition-delay: 0.16s; }
  .reveal.d3 { transition-delay: 0.24s; }
}
body.no-motion .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }

/* ===========================================================================
   RESPONSIVE
   =========================================================================== */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .hero__sub { white-space: normal; }
  .hero__photo { position: relative; width: 100%; height: auto; top: auto; right: auto; overflow: visible; padding: 0; order: -1; }
  .hero__photo image-slot { height: 52vw; }
  .hero__rot { height: 52vw; }
  .hero__left { min-height: auto; padding-bottom: 56px; }
  .hero__byline { max-width: 100%; }
  .hero__caption { position: static; max-width: none; margin-top: 22px; }
  .hero__credit { display: none; }
  .entry__inner { grid-template-columns: 1fr; gap: 28px; }
  .entry--right .entry__media { order: 0; }
  .entry__media image-slot { height: clamp(300px, 70vw, 460px); }
  .studiomap__grid { grid-template-columns: 1fr; }
  .studiomap__list { columns: 1; }
  .studiomap__mapwrap { min-height: 380px; }
}
@media (max-width: 520px) {
  .intro__body { columns: 1; }
  .hero__title .display { font-size: clamp(40px, 12vw, 64px); }
}
