:root {
  --ink: #091315;
  --ink-soft: #101c1e;
  --paper: #eadfce;
  --muted: #8ea09d;
  --line: rgba(214, 225, 218, .14);
  --line-strong: rgba(214, 225, 218, .3);
  --metal: #a98d69;
  --signal: #cf8a5d;
  --teal: #557b78;
  --clay: #8d5544;
  --dial-size: min(68vw, 258px);
  --ease: cubic-bezier(.22, .76, .2, 1);
}

* { box-sizing: border-box; }

html {
  background: var(--ink);
  color-scheme: dark;
  scroll-behavior: auto;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 18% 45%, rgba(140, 83, 59, .17), transparent 37%),
    radial-gradient(circle at 80% 16%, rgba(72, 117, 113, .19), transparent 34%),
    linear-gradient(125deg, #081214 0%, #10191a 44%, #091012 100%),
    var(--ink);
  color: var(--paper);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

button, a { color: inherit; }
button { font: inherit; }
a { text-decoration: none; }

button:focus-visible, a:focus-visible {
  outline: 1px solid var(--signal);
  outline-offset: 5px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  transform: translateY(-180%);
  padding: 10px 14px;
  background: var(--paper);
  color: var(--ink);
  transition: transform .2s ease;
}

.skip-link:focus { transform: translateY(0); }

.ambient,
.ambient__beam,
.ambient__grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

.ambient { z-index: -1; overflow: hidden; }

.ambient__beam {
  opacity: .12;
  filter: blur(1px);
  transition: transform 1.4s var(--ease);
}

.ambient__beam--one {
  left: -20vw;
  width: 60vw;
  background: linear-gradient(102deg, transparent 20%, rgba(190, 102, 69, .7) 50%, transparent 63%);
  transform: rotate(-12deg) translateX(calc(var(--page-angle, 0) * .02px));
}

.ambient__beam--two {
  right: -30vw;
  left: auto;
  width: 45vw;
  background: linear-gradient(75deg, transparent, rgba(71, 123, 120, .75), transparent);
  transform: rotate(9deg);
}

.ambient__grain {
  opacity: .055;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
  mix-blend-mode: screen;
}

.site-header {
  position: relative;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  padding: 18px clamp(22px, 3vw, 52px);
  border-bottom: 1px solid var(--line);
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .36em;
}

.wordmark__mark {
  width: 36px;
  height: 36px;
  overflow: visible;
  fill: currentColor;
}

.header-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  color: rgba(234, 223, 206, .78);
  font-size: 11px;
  letter-spacing: .3em;
}

.header-meta__line { width: 32px; height: 1px; background: var(--line-strong); }

.site-stage {
  display: block;
  min-height: calc(100svh - 124px);
}

.navigation-theatre {
  position: relative;
  display: flex;
  min-height: calc(var(--dial-size) + 48px);
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 24px 0;
  overflow: visible;
  border-bottom: 1px solid var(--line);
  background: radial-gradient(circle at 50% 35%, rgba(207,138,93,.075), transparent 31%);
}

.dial-scene {
  position: relative;
  width: var(--dial-size);
  height: var(--dial-size);
  max-width: 36vh;
  max-height: 36vh;
}

.dial-halo {
  position: absolute;
  inset: -1.5%;
  border: 1px solid rgba(216, 193, 135, .08);
  border-radius: 50%;
  box-shadow: 0 0 56px rgba(216, 193, 135, .055), inset 0 0 34px rgba(216, 193, 135, .03);
}

.dial {
  --dial-counter: 0deg;
  --dial-rotation: 0deg;
  position: absolute;
  inset: 0;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  cursor: grab;
  transition: none;
  touch-action: none;
}

.dial.is-dragging { cursor: grabbing; transition: none; }

.dial::before,
.dial::after {
  content: "";
  position: absolute;
  inset: 6%;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.dial::after { display: none; }

.dial__ticks {
  position: absolute;
  z-index: 1;
  inset: 0;
  transform: rotate(var(--dial-rotation));
  transform-origin: 50% 50%;
  border-radius: 50%;
}

.tick {
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 100%;
  transform: translateX(-50%) rotate(var(--tick-angle));
}

.tick::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 5px;
  background: rgba(243, 241, 235, .28);
}

.tick.is-major::before { height: 11px; background: var(--signal); }

.dial__inner { display: none; }

.dial__spokes {
  position: absolute;
  z-index: 1;
  inset: 0;
  transform: rotate(var(--dial-rotation));
  transform-origin: 50% 50%;
  border-radius: 50%;
  pointer-events: none;
}
.dial__spokes i {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50%;
  height: 1px;
  overflow: visible;
  transform: rotate(var(--spoke-angle));
  transform-origin: 0 50%;
  background: linear-gradient(90deg, transparent 0 42%, rgba(142, 160, 157, .13) 66%, rgba(142, 160, 157, .02));
  opacity: .14;
  transition: opacity .12s linear, background .12s linear, filter .12s linear;
}
.dial__spokes i::after {
  content: "";
  position: absolute;
  top: -2px;
  left: 34%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--signal);
  opacity: 0;
  filter: blur(.3px);
}
.dial__spokes i.energy-1 { opacity: .25; background: linear-gradient(90deg, transparent 0 42%, rgba(85,123,120,.32), transparent); }
.dial__spokes i.energy-2 { opacity: var(--motion-strength, .45); background: linear-gradient(90deg, transparent 0 42%, rgba(207,138,93,.48), transparent); filter: drop-shadow(0 0 4px rgba(207,138,93,.2)); }
.dial__spokes i.energy-3 { opacity: min(1, calc(var(--motion-strength, .55) + .22)); background: linear-gradient(90deg, transparent 0 38%, rgba(207,138,93,.9), rgba(234,223,206,.3)); filter: drop-shadow(0 0 7px rgba(207,138,93,.4)); }
.dial__spokes i.energy-2::after,
.dial__spokes i.energy-3::after { animation: spoke-signal .85s var(--ease); }

@keyframes spoke-signal {
  0% { left: 34%; opacity: 0; transform: scale(.5); }
  24% { opacity: 1; }
  100% { left: 96%; opacity: 0; transform: scale(1.4); }
}

.dial-node {
  position: absolute;
  z-index: 30;
  isolation: isolate;
  top: 50%;
  left: 50%;
  display: grid;
  min-width: 56px;
  gap: 2px;
  padding: 4px 2px;
  transform:
    translate(-50%, -50%)
    rotate(calc(var(--node-angle) + var(--dial-rotation)))
    translateY(calc(var(--dial-size) * -.47))
    rotate(var(--counter-angle))
    rotate(var(--dial-counter));
  border: 0;
  background: transparent;
  color: rgba(234,223,206,.78);
  cursor: pointer;
  text-align: center;
  text-shadow: 0 1px 8px rgba(4,11,12,.92), 0 0 18px rgba(4,11,12,.72);
  transition: color .2s ease;
}

.dial-node::before {
  content: none;
}

.dial-node > span { position: relative; z-index: 2; }

.dial.is-dragging .dial-node { transition: color .35s ease, transform 0s; }
.dial-node:hover { color: var(--paper); }
.dial-node.is-active { z-index: 100; color: #fffaf0; text-shadow: 0 0 9px rgba(255,250,240,.34), 0 1px 9px rgba(4,11,12,.96); }
.dial-node.is-active > span {
  z-index: 101;
  -webkit-text-stroke: 1.6px rgba(13,29,30,.98);
  paint-order: stroke fill;
  text-shadow:
    0 0 4px rgba(13,29,30,1),
    0 0 8px rgba(13,29,30,.96),
    0 0 9px rgba(255,250,240,.28);
}
.dial-node.is-active .dial-node__degree { color: var(--signal); font-weight: 650; }
.dial-node.is-active .dial-node__name { font-size: 10px; font-weight: 720; }

.dial-node__degree { font-size: 6px; letter-spacing: .2em; transition: color .2s ease; }
.dial-node__name { font-size: 8px; font-weight: 560; letter-spacing: .18em; text-transform: uppercase; transition: font-weight .2s ease, color .2s ease; }

.axis {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  display: flex;
  width: 78%;
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--paper);
  cursor: pointer;
}

.axis__mark { width: 96%; height: 96%; overflow: visible; }
.axis__base { fill: url(#axis-base-gradient); opacity: .97; filter: drop-shadow(0 0 7px rgba(242,239,228,.13)); }
.axis__current { fill: url(#axis-current-gradient); opacity: 0; filter: drop-shadow(0 0 12px rgba(207,138,93,.72)); transition: opacity .09s linear; }
.axis.is-current .axis__current { opacity: var(--current-strength, .7); }
.axis:hover .axis__base { filter: drop-shadow(0 0 10px rgba(242,239,228,.24)); }
.axis::after {
  content: none;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: var(--paper);
  box-shadow: 0 0 0 0 rgba(207,138,93,0);
  opacity: .55;
}
.axis.is-current::after { background: var(--signal); box-shadow: 0 0 var(--current-glow, 10px) rgba(207,138,93,.6); opacity: var(--current-strength, .6); }

.axis__label {
  position: absolute;
  bottom: 2%;
  font-size: 6px;
  letter-spacing: .5em;
  white-space: nowrap;
}

.fixed-pointer {
  position: absolute;
  z-index: 2;
  top: 50%;
  top: -3%;
  right: auto;
  left: 50%;
  display: flex;
  width: auto;
  height: 11%;
  transform: translateX(-50%);
  flex-direction: column;
  align-items: center;
}

.fixed-pointer::before { content: ""; flex: 1; width: 1px; background: var(--signal); }
.fixed-pointer span { width: 7px; height: 7px; transform: rotate(45deg); border: 1px solid var(--signal); background: var(--ink); }

.dial-instruction {
  position: absolute;
  bottom: 7px;
  margin: 0;
  color: #666964;
  font-size: 7px;
  letter-spacing: .24em;
}


.content-viewport {
  position: relative;
  min-height: 100svh;
  overflow: visible;
}

.page {
  width: min(100%, 1580px);
  min-height: 100svh;
  margin-inline: auto;
  padding: clamp(46px, 6vh, 76px) clamp(24px, 4.5vw, 76px) clamp(92px, 12vh, 150px);
  opacity: 0;
  transform: translate(var(--entry-x, 0), var(--entry-y, 30px)) rotate(var(--entry-rotate, 0deg));
}

.page.is-active {
  animation: page-in 1s var(--ease) forwards;
}

@keyframes page-in {
  from { opacity: 0; transform: translate(var(--entry-x, 0), var(--entry-y, 30px)) rotate(var(--entry-rotate, 0deg)) scale(.985); filter: blur(5px); }
  to { opacity: 1; transform: translate(0, 0) rotate(0) scale(1); filter: blur(0); }
}

.page__eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: clamp(28px, 5vh, 62px);
  color: var(--muted);
  font-size: 9px;
  letter-spacing: .28em;
}

.page > .page__eyebrow { justify-content: center; }
.page > h1,
.page > h2,
.page > .page__lede { margin-right: auto; margin-left: auto; text-align: center; }

.page__eyebrow::before { content: ""; width: 42px; height: 1px; background: var(--signal); }
.page__eyebrow span { color: var(--signal); }

h1, h2 {
  max-width: 840px;
  margin: 0;
  color: var(--paper);
  font-size: clamp(48px, 5.4vw, 92px);
  font-weight: 480;
  letter-spacing: -.06em;
  line-height: .92;
}

h1 em, h2 em {
  color: var(--signal);
  font-family: "Iowan Old Style", "Baskerville", Georgia, serif;
  font-weight: 400;
}

.page__lede {
  max-width: 610px;
  margin: 34px 0 0;
  color: #b5b7b2;
  font-size: clamp(15px, 1.25vw, 20px);
  font-weight: 350;
  line-height: 1.6;
}

.page[data-page="live"] { padding-top: clamp(34px, 4.2vh, 54px); padding-bottom: clamp(66px, 8.4vh, 104px); }
.page[data-page="live"] .page__eyebrow { margin-bottom: clamp(18px, 3.2vh, 40px); }
.page[data-page="live"] > .page__lede { margin-top: 22px; }
.page[data-page="live"] .video-grid { margin-top: 30px; }
.page[data-page="live"] .media-console { min-height: 50px; margin-bottom: 10px; }

.home-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 30px; margin-top: 38px; }

.text-action {
  display: inline-flex;
  align-items: center;
  gap: 35px;
  padding: 0 0 9px;
  border: 0;
  border-bottom: 1px solid var(--line-strong);
  background: none;
  cursor: pointer;
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  transition: border-color .25s ease, color .25s ease;
}

.text-action:hover { color: var(--signal); border-color: var(--signal); }
.text-action--muted { color: var(--muted); }

.signal-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 680px;
  margin: clamp(58px, 8vh, 100px) auto 0;
  border-top: 1px solid var(--line);
}

.signal-strip div { display: grid; gap: 6px; padding: 24px 20px 0 0; }
.signal-strip strong { font-size: clamp(25px, 2.4vw, 42px); font-weight: 350; letter-spacing: -.04em; }
.signal-strip span { color: var(--muted); font-size: 9px; letter-spacing: .12em; text-transform: uppercase; }

.discography-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 1.7vw, 24px);
  max-width: 1040px;
  margin: 56px auto 0;
}

.release-tile {
  position: relative;
  display: grid;
  min-width: 0;
  grid-template-columns: minmax(0, 1fr) auto;
  border: 1px solid var(--line);
  background: rgba(9,19,21,.5);
  overflow: hidden;
  transition: border-color .3s ease, transform .45s var(--ease), background .3s ease;
}

.release-tile:hover { border-color: rgba(207,138,93,.56); background: rgba(207,138,93,.045); transform: translateY(-5px); }
.release-cover { grid-column: 1 / -1; aspect-ratio: 1; overflow: hidden; background: var(--ink-soft); }
.release-cover img { width: 100%; height: 100%; object-fit: cover; transition: filter .45s ease, transform .65s var(--ease); }
.release-tile:hover .release-cover img { filter: saturate(1.08) contrast(1.03); transform: scale(1.025); }
.release-info { display: grid; gap: 5px; min-width: 0; padding: 16px 8px 17px 16px; }
.release-info strong { overflow: hidden; font-size: clamp(14px, 1.25vw, 19px); font-weight: 440; letter-spacing: -.025em; text-overflow: ellipsis; white-space: nowrap; }
.release-info small { color: var(--muted); font-size: 8px; letter-spacing: .1em; text-transform: uppercase; }
.release-open { align-self: center; padding: 16px; color: var(--signal); font-size: 15px; }
.platform-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 26px; margin-top: 28px; }
.platform-links a { color: var(--muted); font-size: 9px; letter-spacing: .17em; text-transform: uppercase; }
.platform-links a:hover { color: var(--signal); }

.video-grid { max-width: 920px; margin: 48px auto 0; }
.video-grid.enhanced { display: block; max-width: none; }
.video-grid.enhanced > .video-card { display: none; }
.video-card { position: relative; display: block; min-height: 300px; overflow: hidden; border: 1px solid var(--line); }
.video-card img { width: 100%; height: 100%; object-fit: cover; }
.video-label { position: absolute; right: 24px; bottom: 24px; left: 24px; }

.media-rotator { position: relative; }
.media-stage-sizer {
  position: relative;
  display: flex;
  width: 100%;
  height: 500px;
  align-items: flex-start;
  justify-content: center;
  margin-inline: auto;
  overflow: visible;
}
.media-console {
  display: grid;
  min-height: 74px;
  align-items: end;
  max-width: 1040px;
  margin: 0 auto 18px;
  contain: layout size;
}
.media-readout { min-width: 0; text-align: center; }
.media-readout h2 {
  max-width: 28ch;
  margin: .3rem auto;
  overflow: hidden;
  display: -webkit-box;
  color: var(--paper);
  font-size: clamp(1.55rem, 2.5vw, 2.8rem);
  font-weight: 440;
  line-height: 1.08;
  letter-spacing: -.045em;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.media-readout p { margin: 0; color: var(--muted); font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; }
.player-stage-shell {
  position: relative;
  width: 1120px;
  height: 500px;
  min-height: 500px;
  max-height: 500px;
  zoom: var(--media-stage-scale, 1);
  contain: layout size;
}
.player-stage-shell > .stage-arrow {
  position: absolute;
  top: 50%;
  z-index: 20;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: rgba(9,19,21,.76);
  color: var(--paper);
  font-size: 1.25rem;
  cursor: pointer;
  transform: translateY(-50%);
  transition: border-color .25s ease, background .25s ease, transform .25s ease;
}
.player-stage-shell > .stage-arrow-prev { left: -112px; }
.player-stage-shell > .stage-arrow-next { right: -112px; }
.player-stage-shell > .stage-arrow:hover { border-color: var(--signal); background: rgba(207,138,93,.14); transform: translateY(-50%) scale(1.06); }
.media-viewport {
  position: relative;
  width: 952px;
  height: 500px;
  min-height: 500px;
  max-height: 500px;
  margin-inline: auto;
  overflow: visible;
  outline: none;
  perspective: 1500px;
  perspective-origin: 50% 50%;
  touch-action: pan-y;
  contain: layout size;
}
.media-viewport:focus-visible { box-shadow: inset 0 0 0 1px var(--signal); }
.media-carousel {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform: none;
  transform-style: preserve-3d;
}
.media-face {
  position: absolute;
  inset: 17px 5%;
  display: block;
  overflow: hidden;
  border: 1px solid rgba(207,138,93,.34);
  border-radius: 22px;
  background: var(--ink-soft);
  box-shadow: 0 34px 90px rgba(0,0,0,.62), 0 0 0 1px rgba(234,223,206,.025) inset;
  color: var(--paper);
  opacity: var(--media-opacity, 1);
  transform: translate3d(var(--media-x, 0), 0, var(--media-z, 0)) rotateY(var(--media-rotate, 0deg)) scale(var(--media-scale, 1));
  transform-origin: 50% 50%;
  transform-style: preserve-3d;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  contain: layout size;
  will-change: transform, opacity;
  transition: transform .95s cubic-bezier(.2,.72,.15,1), opacity .35s ease;
}
.media-face.is-wrapping { transition: opacity .35s ease; }
.media-face.is-distant { opacity: 0; pointer-events: none; }
.media-face::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 5;
  border-radius: inherit;
  pointer-events: none;
  background:
    radial-gradient(circle at 17px 17px, rgba(234,223,206,.7) 0 1px, rgba(207,138,93,.36) 2px 3px, transparent 4px),
    radial-gradient(circle at calc(100% - 17px) 17px, rgba(234,223,206,.7) 0 1px, rgba(207,138,93,.36) 2px 3px, transparent 4px),
    radial-gradient(circle at 17px calc(100% - 17px), rgba(234,223,206,.55) 0 1px, rgba(85,123,120,.32) 2px 3px, transparent 4px),
    radial-gradient(circle at calc(100% - 17px) calc(100% - 17px), rgba(234,223,206,.55) 0 1px, rgba(85,123,120,.32) 2px 3px, transparent 4px),
    linear-gradient(115deg, transparent 35%, rgba(234,223,206,.04) 50%, transparent 65%);
}
.media-face::after { content: ""; position: absolute; inset: 9px; z-index: 5; border: 1px solid rgba(234,223,206,.06); border-radius: 15px; pointer-events: none; }
.media-preview { position: absolute; inset: 0; width: 100%; height: 100%; overflow: hidden; }
.media-preview[hidden] { display: none; }
.media-face img { display: block; width: 100%; height: 100%; object-fit: cover; filter: saturate(.72) contrast(1.07) brightness(.8); transform: scale(1.015); transition: transform .9s ease, filter .5s ease; }
.media-face:hover img { transform: scale(1.05); filter: saturate(.95) contrast(1.06) brightness(.88); }
.media-face-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(5,12,13,.9) 0%, rgba(5,12,13,.25) 62%, rgba(5,12,13,.48)), linear-gradient(0deg, rgba(5,12,13,.94), transparent 60%); }
.media-face.is-active img,
.media-face.is-active:hover img { filter: saturate(1) contrast(1.02) brightness(1.08); }
.media-face.is-active .media-face-shade { background: linear-gradient(90deg, rgba(5,12,13,.34) 0%, rgba(5,12,13,.04) 64%, rgba(5,12,13,.1)), linear-gradient(0deg, rgba(5,12,13,.62), transparent 57%); }
.media-face-copy { position: absolute; inset: auto auto 0 0; z-index: 3; max-width: 82%; padding: 2.7rem; transition: opacity .35s ease; }
.media-face.is-side .media-face-copy { opacity: .52; }
.media-face.is-side .media-face-copy span { color: rgba(207,138,93,.68); }
.media-face.is-side .media-face-copy h2,
.media-face.is-side .media-play { color: rgba(234,223,206,.58); }
.media-face-copy span { color: var(--signal); font-size: .62rem; font-weight: 600; letter-spacing: .17em; text-transform: uppercase; }
.media-face-copy h2 { max-width: 15ch; margin: .5rem 0 1.15rem; color: var(--paper); font-size: 4rem; font-weight: 470; line-height: 1; letter-spacing: -.055em; }
.media-play { display: inline-flex; align-items: center; gap: .64rem; padding: 0; border: 0; background: transparent; color: var(--paper); cursor: pointer; }
.media-play b { font-size: .56rem; font-weight: 600; letter-spacing: .13em; text-transform: uppercase; }
.media-play i { display: grid; width: 36px; height: 36px; place-items: center; border: 1px solid var(--signal); border-radius: 50%; font-size: .53rem; font-style: normal; transition: background .25s ease, color .25s ease, transform .25s ease; }
.media-play:hover i, .media-play:focus-visible i { background: var(--signal); color: var(--ink); transform: scale(1.08); }
.media-embed { position: absolute; inset: 0; z-index: 4; display: grid; width: 100%; height: 100%; overflow: hidden; background: #000; }
.media-embed[hidden] { display: none; }
.media-embed iframe { position: absolute; inset: 0; display: block; width: 100%; height: 100%; border: 0; }
.media-position { display: flex; justify-content: center; gap: .55rem; margin-top: 18px; }
.media-position i { width: 28px; height: 2px; background: rgba(234,223,206,.2); transition: width .35s ease, background .35s ease; }
.media-position i.active { width: 58px; background: var(--signal); box-shadow: 0 0 13px rgba(207,138,93,.48); }

.story-layout { max-width: 760px; margin: 54px auto 0; }
.story-copy { border-top: 1px solid var(--line); }
.story-copy p { margin: 0; padding: 20px 0; border-bottom: 1px solid var(--line); color: #babcb7; font-size: 15px; line-height: 1.75; }
.story-copy em { color: var(--paper); }
.photo-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); grid-auto-flow: dense; grid-auto-rows: clamp(150px, 16vw, 230px); gap: 14px; max-width: 1080px; margin: 54px auto 0; }
.photo-card { min-height: 0; margin: 0; overflow: hidden; border: 1px solid var(--line); background: var(--ink-soft); }
.photo-card--wide { grid-column: span 2; }
.photo-card--portrait { grid-row: span 2; }
.photo-card img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.68) contrast(1.05) brightness(.78); transition: filter .5s ease, transform .8s var(--ease); }
.photo-card:hover img { transform: scale(1.025); filter: saturate(.9) contrast(1.03) brightness(.86); }
.press-panel { position: relative; display: grid; grid-template-columns: .58fr 2.42fr; align-items: stretch; gap: 18px; max-width: 1080px; margin: 14px auto 0; padding: 26px 30px; overflow: hidden; border: 1px solid var(--line); background: linear-gradient(110deg, rgba(207,138,93,.11), rgba(85,123,120,.07) 55%, transparent); }
.press-panel::before { content: ""; position: absolute; top: 0; bottom: 0; left: -22%; width: 18%; pointer-events: none; background: linear-gradient(90deg, transparent, rgba(207,138,93,.1), rgba(234,223,206,.08), transparent); transform: skewX(-14deg); animation: press-scan 8s ease-in-out infinite; }
@keyframes press-scan { 0%, 22% { left: -22%; opacity: 0; } 35% { opacity: 1; } 68% { left: 108%; opacity: .65; } 100% { left: 108%; opacity: 0; } }
.press-panel__intro { position: relative; z-index: 1; display: flex; flex-direction: column; justify-content: space-between; min-height: 210px; padding-right: 20px; border-right: 1px solid var(--line); }
.press-panel__intro p { max-width: 16ch; margin: 0; color: var(--muted); font-size: 9px; letter-spacing: .08em; line-height: 1.55; text-transform: uppercase; }
.press-card__label { color: var(--signal); font-size: 8px; letter-spacing: .28em; }
.press-features { position: relative; z-index: 1; display: grid; grid-template-columns: 1.08fr .92fr; gap: 12px; }
.press-feature { position: relative; display: flex; min-width: 0; min-height: 210px; flex-direction: column; justify-content: flex-end; padding: 20px; overflow: hidden; border: 1px solid var(--line); background: rgba(5,12,13,.48); transition: border-color .3s ease, background .3s ease, transform .4s var(--ease); }
.press-feature:hover { border-color: rgba(207,138,93,.55); background: rgba(207,138,93,.07); transform: translateY(-3px); }
.press-feature > span { position: relative; z-index: 2; margin-bottom: auto; color: var(--signal); font-size: 7px; letter-spacing: .18em; }
.press-feature strong { position: relative; z-index: 2; max-width: 19ch; font-size: clamp(18px, 1.8vw, 28px); font-weight: 410; letter-spacing: -.035em; line-height: 1.03; }
.press-feature small { position: relative; z-index: 2; margin-top: 15px; color: var(--muted); font-size: 7px; letter-spacing: .14em; text-transform: uppercase; }
.press-feature small b { color: var(--signal); font-size: 11px; font-weight: 400; }
.press-feature--djmag .press-feature__images { position: absolute; inset: 0; display: grid; grid-template-columns: .38fr .62fr; overflow: hidden; }
.press-feature--djmag .press-feature__images img { width: 100%; height: 100%; object-fit: cover; object-position: center top; filter: saturate(.7) contrast(1.06) brightness(.52); transition: filter .45s ease, transform .65s var(--ease); }
.press-feature--djmag .press-feature__images img + img { border-left: 1px solid rgba(234,223,206,.15); object-fit: contain; background: #ece9df; }
.press-feature--djmag::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(5,12,13,.9), rgba(5,12,13,.22) 62%), linear-gradient(0deg, rgba(5,12,13,.97), transparent 76%); }
.press-feature--djmag:hover .press-feature__images img { filter: saturate(.9) contrast(1.04) brightness(.62); transform: scale(1.025); }
.press-feature--article img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: saturate(.68) brightness(.38) contrast(1.08); transform: scale(1.02); transition: filter .45s ease, transform .65s var(--ease); }
.press-feature--article::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(5,12,13,.92), rgba(5,12,13,.25)), linear-gradient(0deg, rgba(5,12,13,.96), transparent 72%); }
.press-feature--article:hover img { filter: saturate(.9) brightness(.48) contrast(1.06); transform: scale(1.055); }
.press-stats { position: relative; z-index: 1; display: grid; grid-column: 1 / -1; grid-template-columns: repeat(3, 1fr); gap: 12px; border-top: 1px solid var(--line); padding-top: 20px; color: var(--muted); font-size: 8px; letter-spacing: .09em; text-transform: uppercase; }
.press-stats strong { color: var(--paper); font-size: 18px; font-weight: 400; }
.visual-caption { max-width: 700px; margin: 24px auto 0; color: var(--muted); font-size: 12px; letter-spacing: .05em; line-height: 1.7; text-align: center; }

.contact-email { display: flex; max-width: 800px; align-items: center; justify-content: space-between; margin: 54px auto 0; padding: 22px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); font-size: clamp(22px, 3vw, 44px); font-weight: 350; letter-spacing: -.025em; }
.contact-email:hover { color: var(--signal); }
.social-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: 800px; margin: 56px auto 0; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.social-grid a { position: relative; display: grid; gap: 7px; min-height: 110px; padding: 22px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); transition: background .25s ease; }
.social-grid a:hover { background: rgba(216,193,135,.05); }
.social-grid span { font-size: 15px; }
.social-grid small { color: var(--muted); font-size: 9px; letter-spacing: .12em; text-transform: uppercase; }
.social-grid b { position: absolute; top: 20px; right: 20px; color: var(--signal); font-weight: 400; }

.return-wheel {
  position: fixed;
  z-index: 40;
  right: clamp(14px, 2vw, 30px);
  top: 14px;
  bottom: auto;
  display: flex;
  box-sizing: border-box;
  width: 96px;
  height: 32px;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 0 9px;
  border: 1px solid rgba(142,160,157,.32);
  border-radius: 18px;
  background: rgba(7,17,19,.74);
  box-shadow: 0 10px 34px rgba(0,0,0,.22);
  color: rgba(234,223,206,.72);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  backdrop-filter: blur(10px);
  transition: opacity .48s ease, transform .56s var(--ease), border-color .25s ease, color .25s ease;
}
.return-wheel.is-visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.return-wheel.is-content-entry { transition: opacity 4.6s cubic-bezier(.18,.72,.22,1), transform 2.4s var(--ease), border-color .25s ease, color .25s ease; }
.return-wheel:hover { border-color: rgba(207,138,93,.62); color: var(--paper); }
.return-wheel span { color: var(--signal); font-size: 13px; line-height: 1; }
.return-wheel small { color: rgba(234,223,206,.72); font-size: 5.5px; letter-spacing: .12em; white-space: nowrap; }

.floating-wordmark {
  position: fixed;
  z-index: 40;
  top: 18px;
  left: clamp(22px, 3vw, 52px);
  color: var(--paper);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity .48s ease, transform .56s var(--ease);
}
.floating-wordmark.is-visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.floating-wordmark.is-content-entry { transition: opacity 4.6s cubic-bezier(.18,.72,.22,1), transform 2.4s var(--ease); }
.floating-wordmark:hover { color: #fffaf0; }


.site-footer {
  position: relative;
  z-index: 10;
  display: flex;
  min-height: 42px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 10px clamp(22px, 3vw, 52px);
  border-top: 1px solid var(--line);
  color: #686a66;
  font-size: 7px;
  letter-spacing: .24em;
}

@media (max-width: 1100px) {
  :root { --dial-size: min(68vw, 250px); }
  .page { padding-right: 42px; padding-left: 42px; }
  .video-grid { grid-template-columns: 1fr; }
  .video-card { min-height: 280px; }
  .photo-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); grid-auto-rows: clamp(180px, 24vw, 280px); }
  .press-panel { grid-template-columns: 1fr 1fr; }
  .press-stats { grid-column: 1 / -1; border-top: 1px solid var(--line); border-left: 0; padding-top: 18px; padding-left: 0; }
}

@media (max-width: 820px) {
  :root { --dial-size: min(68vw, 238px); }
  .site-header { min-height: 66px; }
  .return-wheel { top: 12px; }
  .navigation-theatre { min-height: calc(var(--dial-size) + 44px); padding: 22px 0; }
  .dial-scene { width: var(--dial-size); height: var(--dial-size); }
  .dial-node { transform: translate(-50%, -50%) rotate(calc(var(--node-angle) + var(--dial-rotation))) translateY(calc(var(--dial-size) * -.47)) rotate(var(--counter-angle)) rotate(var(--dial-counter)) scale(.9); }
  .fixed-pointer { top: -3%; }
  .dial-instruction { bottom: 6px; }
  .content-viewport, .page { min-height: 100svh; }
  .page { padding: 48px 24px 86px; }
  h1, h2 { font-size: clamp(50px, 14vw, 78px); }
  .signal-strip { margin-top: 62px; }
  .discography-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .media-console { min-height: 70px; margin-bottom: 12px; }
  .media-readout p { display: none; }
  .social-grid { grid-template-columns: 1fr; }
  .press-panel { grid-template-columns: 1fr; }
  .press-panel__intro { min-height: auto; padding: 0 0 18px; border-right: 0; border-bottom: 1px solid var(--line); }
  .press-panel__intro p { max-width: none; margin-top: 16px; }
  .press-features { grid-template-columns: 1fr; }
  .site-footer { align-items: flex-start; flex-direction: column; padding-top: 16px; padding-bottom: 16px; }
}

@media (max-width: 480px) {
  :root { --dial-size: min(66vw, 224px); }
  .wordmark { gap: 10px; letter-spacing: .25em; }
  .wordmark__mark { width: 28px; height: 28px; }
  .navigation-theatre { min-height: calc(var(--dial-size) + 40px); padding: 20px 0; }
  .dial-node { min-width: 54px; padding: 7px 2px; }
  .dial-node__degree { font-size: 6px; }
  .dial-node__name { font-size: 7px; letter-spacing: .13em; }
  .dial-node.is-active .dial-node__name { font-size: 9px; }
  .axis__label { font-size: 5px; }
  .dial-instruction { font-size: 6px; }
  .signal-strip { grid-template-columns: 1fr; gap: 12px; }
  .signal-strip div { grid-template-columns: 105px 1fr; align-items: baseline; padding-top: 14px; border-bottom: 1px solid var(--line); }
  .video-card { min-height: 240px; }
  .discography-grid { grid-template-columns: 1fr; }
  .photo-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 180px; gap: 9px; }
  .photo-card--wide { grid-column: span 2; }
  .press-panel { grid-template-columns: 1fr; }
  .press-stats { grid-template-columns: 1fr; }
  .contact-email { font-size: 20px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
