:root {
  --ink: #070707;
  --muted: #64645f;
  --line: rgba(8, 8, 8, 0.1);
  --white: #ffffff;
  --paper: #ffffff;
  --gold: #c79a2b;
  --green: #0b5b3e;
  --red: #b3262f;
  --shadow: 0 32px 90px rgba(10, 16, 12, 0.14);
  --soft-shadow: 0 18px 50px rgba(10, 16, 12, 0.09);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 20;
  padding: 0.7rem 1rem;
  background: var(--ink);
  color: var(--white);
  border-radius: var(--radius);
}

.skip-link:focus {
  top: 1rem;
}

.section-pad {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
  padding: 104px 0;
}

.site-header {
  position: fixed;
  inset: 18px 0 auto;
  z-index: 10;
  transition: transform 300ms ease, opacity 300ms ease;
}

.nav-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 64px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 10px 12px 10px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 20px 70px rgba(8, 8, 8, 0.08);
}

.site-header.is-scrolled .nav-shell {
  border-color: var(--line);
  background: var(--white);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 820;
  letter-spacing: 0;
}

.tm-word {
  position: relative;
  display: inline-block;
  padding-right: 0.58em;
  line-height: 1;
}

.tm-word sup {
  position: absolute;
  top: -0.52em;
  right: -0.02em;
  font-size: 0.46em;
  font-weight: 850;
  letter-spacing: 0.02em;
}


.brand-word {
  font-weight: 820;
}

.tm-word {
  white-space: nowrap;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: var(--white);
  background:
    linear-gradient(135deg, var(--ink) 0 48%, var(--gold) 48% 64%, var(--green) 64% 100%);
  border-radius: 8px;
  font-size: 0.82rem;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 2vw, 28px);
  color: rgba(7, 7, 7, 0.72);
  font-size: 0.92rem;
  font-weight: 680;
}

.nav-links a,
.text-link,
.footer-links a,
.contact-panel a {
  position: relative;
}

.nav-podcast-link {
  color: var(--ink);
}

.nav-podcast-link::before {
  content: "";
  position: absolute;
  left: -11px;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--red);
  transform: translateY(-50%);
  box-shadow: 0 0 0 5px rgba(179, 38, 47, 0.1);
}

.nav-links a::after,
.text-link::after,
.footer-links a::after,
.contact-panel a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -5px;
  height: 1px;
  background: var(--gold);
  transition: right 220ms ease;
}

.nav-links a:hover::after,
.text-link:hover::after,
.footer-links a:hover::after,
.contact-panel a:hover::after {
  right: 0;
}

.nav-cta,
.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  border: 1px solid transparent;
  padding: 0.86rem 1.05rem;
  font-weight: 760;
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.nav-cta {
  background: var(--ink);
  color: var(--white);
  font-size: 0.88rem;
}

.button:hover,
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--soft-shadow);
}

.button-dark {
  background: var(--ink);
  color: var(--white);
}

.button-glass {
  border-color: var(--line);
  background: var(--white);
}

.button-gold {
  background: var(--gold);
  color: #141100;
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 94svh;
  overflow: hidden;
  display: grid;
  align-items: end;
  background: var(--paper);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.015);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.74) 45%, rgba(255, 255, 255, 0.2) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0) 55%, var(--white) 100%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 820px) minmax(260px, 360px);
  align-items: end;
  gap: clamp(28px, 6vw, 84px);
  padding-top: 190px;
  padding-bottom: 56px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 26px;
  font-size: clamp(4.2rem, 8.4vw, 7.4rem);
  line-height: 0.9;
  letter-spacing: 0;
}

h2 {
  font-size: clamp(2.45rem, 5.8vw, 5.8rem);
  line-height: 0.95;
  letter-spacing: 0;
  margin-bottom: 22px;
}

h3 {
  font-size: clamp(1.12rem, 1.4vw, 1.42rem);
  line-height: 1.08;
  margin-bottom: 10px;
}

p {
  color: var(--muted);
  line-height: 1.65;
}

.hero-lede {
  max-width: 650px;
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  color: rgba(7, 7, 7, 0.72);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.glass {
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
}

.signal-panel {
  padding: 24px;
  border-radius: var(--radius);
  transform: translateY(-18px);
}

.signal-top {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 820;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.live-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--red);
  box-shadow: 0 0 0 8px rgba(179, 38, 47, 0.12);
}

.signal-panel strong {
  display: block;
  margin: 22px 0 10px;
  font-size: 1.8rem;
  line-height: 1;
}

.mini-meter,
.wave {
  display: flex;
  align-items: end;
  gap: 5px;
  height: 28px;
}

.mini-meter span,
.wave span {
  width: 5px;
  border-radius: 10px;
  background: var(--gold);
  animation: meter 950ms ease-in-out infinite alternate;
}

.mini-meter span:nth-child(2),
.wave span:nth-child(2) {
  animation-delay: 120ms;
  height: 72%;
}

.mini-meter span:nth-child(3),
.wave span:nth-child(3) {
  animation-delay: 220ms;
  height: 46%;
}

.mini-meter span:nth-child(4),
.wave span:nth-child(4) {
  animation-delay: 80ms;
  height: 92%;
  background: var(--green);
}

.mini-meter span:nth-child(5),
.wave span:nth-child(5) {
  animation-delay: 180ms;
  height: 58%;
  background: var(--red);
}

.wave span:nth-child(6) {
  animation-delay: 300ms;
  height: 82%;
}

@keyframes meter {
  from {
    height: 22%;
  }
  to {
    height: 100%;
  }
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.14fr) minmax(280px, 0.56fr);
  gap: clamp(28px, 7vw, 92px);
  align-items: start;
}

.split-heading p {
  font-size: 1.08rem;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 60px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--soft-shadow);
}

.stat-row article,
.story-card,
.content-grid article,
.media-rail article,
.artist-grid article {
  background: var(--white);
}

.stat-row article {
  min-height: 240px;
  padding: 28px;
}

.stat-row span,
.media-rail span,
.story-card span,
.artist-grid span {
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.division {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(320px, 0.82fr);
  gap: clamp(32px, 6vw, 76px);
  align-items: center;
}

.division.reverse {
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 0.98fr);
}

.division-media {
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: var(--white);
}

.division-media img,
.fashion-stage img,
.museum-card img {
  transition: transform 900ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.zoom-card:hover img {
  transform: scale(1.055);
}

.division-copy > p:not(.eyebrow) {
  font-size: 1.05rem;
}

.radio-player {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 18px;
  align-items: center;
  margin: 28px 0;
  padding: 18px;
  border-radius: var(--radius);
}

.play-button {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 999px;
  color: var(--white);
  background: var(--ink);
  cursor: pointer;
}

.play-button span {
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 14px solid currentColor;
  transform: translateX(2px);
}

.play-button.is-playing span {
  width: 16px;
  height: 20px;
  border: 0;
  border-left: 5px solid currentColor;
  border-right: 5px solid currentColor;
  transform: none;
}

.radio-player small {
  display: block;
  color: var(--green);
  font-weight: 820;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.radio-player strong {
  display: block;
  margin: 4px 0 10px;
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
}

.content-grid article {
  padding: 24px;
}

.accent-strip {
  overflow: hidden;
  margin-top: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

.accent-strip img {
  height: clamp(180px, 18vw, 260px);
  object-fit: cover;
}

.editorial-band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.band-head {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  margin-bottom: 34px;
}

.band-head h2 {
  max-width: 820px;
}

.text-link {
  color: var(--green);
  font-weight: 830;
  white-space: nowrap;
}

.story-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
  gap: 14px;
}

.wide-visual,
.artist-showcase {
  overflow: hidden;
  margin-bottom: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.wide-visual img {
  height: clamp(320px, 36vw, 520px);
  object-fit: cover;
}

.story-card {
  min-height: 340px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
  transition: transform 240ms ease, box-shadow 240ms ease;
}

.story-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.story-card h3 {
  margin-top: 72px;
  font-size: clamp(1.45rem, 2.2vw, 2.1rem);
}

.story-card,
.portal-card,
.artist-grid article,
.media-rail article,
.footer-group,
.contact-panel,
.radio-player,
.museum-card,
.business-card {
  position: relative;
}

.media-rail {
  display: grid;
  gap: 10px;
  margin-top: 30px;
}

.media-rail article {
  display: grid;
  grid-template-columns: 42px 0.6fr 1fr;
  gap: 14px;
  align-items: center;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
}

.media-rail p {
  margin-bottom: 0;
  font-size: 0.94rem;
}

.clothing {
  overflow: hidden;
}

.fashion-stage {
  position: relative;
  overflow: hidden;
  margin-top: 52px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.fashion-stage:hover img {
  transform: scale(1.04);
}

.drop-card {
  position: absolute;
  right: 28px;
  bottom: 28px;
  width: min(380px, calc(100% - 56px));
  padding: 24px;
  border-radius: var(--radius);
}

.museum-card {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(320px, 0.72fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.museum-card img {
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.museum-card:hover img {
  transform: scale(1.04);
}

.museum-copy {
  align-self: center;
  padding: clamp(28px, 5vw, 58px);
}

.experience {
  position: relative;
  min-height: 680px;
  display: grid;
  place-items: center;
  overflow: hidden;
  text-align: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.experience-copy {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 820px;
}

.experience-copy h2 {
  overflow-wrap: anywhere;
}

.orbital {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
}

.orbital span {
  position: absolute;
  width: min(72vw, 720px);
  aspect-ratio: 1;
  border: 1px solid rgba(11, 91, 62, 0.16);
  border-radius: 999px;
  animation: orbit 18s linear infinite;
}

.orbital span:nth-child(2) {
  width: min(54vw, 540px);
  border-color: rgba(199, 154, 43, 0.2);
  animation-duration: 13s;
  animation-direction: reverse;
}

.orbital span:nth-child(3) {
  width: min(34vw, 340px);
  border-color: rgba(179, 38, 47, 0.14);
  animation-duration: 9s;
}

@keyframes orbit {
  to {
    transform: rotate(360deg);
  }
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}

.pill-row span {
  padding: 0.74rem 0.92rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  box-shadow: none;
  font-weight: 760;
}

.experience-visual {
  overflow: hidden;
  width: min(720px, 100%);
  margin: 30px auto 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

.experience-visual img {
  height: clamp(220px, 28vw, 360px);
  object-fit: cover;
}


.portal-previews {
  border-top: 1px solid var(--line);
}

.portal-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.portal-card {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--soft-shadow);
  transition: transform 240ms ease, box-shadow 240ms ease;
}

.portal-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.portal-click {
  position: absolute;
  inset: 0;
  z-index: 3;
}

.portal-preview {
  position: relative;
  min-height: 230px;
  overflow: hidden;
  background: var(--white);
}

.portal-preview iframe,
.portal-preview img {
  width: 100%;
  height: 100%;
  min-height: 230px;
  border: 0;
  object-fit: cover;
  transform-origin: top center;
}

.portal-preview::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 42%, rgba(255, 255, 255, 0.96) 100%);
  pointer-events: none;
}

.portal-info {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 10px;
  min-height: 172px;
  align-content: start;
  padding: 20px;
}

.portal-info h3 {
  margin: 0;
  font-size: 1.28rem;
}

.portal-info p {
  margin-bottom: 0;
  font-size: 0.94rem;
}

.status {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--green);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.status::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: currentColor;
  box-shadow: 0 0 0 6px rgba(11, 91, 62, 0.1);
}

.status.pending {
  color: var(--gold);
}

.status.pending::before {
  box-shadow: 0 0 0 6px rgba(199, 154, 43, 0.13);
}

.event-list {
  display: grid;
  gap: 1px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
}

.event-visual {
  overflow: hidden;
  background: var(--white);
}

.event-visual img {
  height: clamp(280px, 32vw, 460px);
  object-fit: cover;
}

.event-list article {
  display: grid;
  grid-template-columns: 110px 1fr auto;
  gap: 26px;
  align-items: center;
  padding: 24px;
  background: var(--white);
}

.event-list time {
  color: var(--gold);
  font-weight: 880;
  font-size: 1.4rem;
}

.event-list p {
  margin: 0;
}

.event-list a {
  color: var(--green);
  font-weight: 820;
}

.artists h2 {
  max-width: 760px;
}

.artist-showcase {
  margin-top: 40px;
  margin-bottom: 18px;
}

.artist-showcase img {
  height: clamp(300px, 34vw, 480px);
  object-fit: cover;
}

.artist-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 40px;
}

.artist-grid article {
  min-height: 112px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
}

.artist-grid strong {
  font-size: 1.08rem;
  line-height: 1.2;
}

.business-card {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 0.74fr);
  gap: 30px;
  align-items: center;
  padding: clamp(28px, 5vw, 58px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(7, 7, 7, 0.98), rgba(11, 91, 62, 0.94)),
    var(--ink);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.business-card > div:first-child,
.business-card > p,
.business-actions {
  grid-column: 1;
}

.business-visual {
  grid-column: 2;
  grid-row: 1 / span 3;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.business-visual img {
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.business-card .eyebrow,
.business-card p {
  color: rgba(255, 255, 255, 0.96);
}

.business-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.business-card .button-dark {
  background: var(--white);
  color: var(--ink);
}

.business-card .button-glass {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
}

.newsletter {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.74fr);
  gap: 36px;
  align-items: end;
  border-top: 1px solid var(--line);
}

.newsletter-copy h2 {
  max-width: 720px;
}

.newsletter-form label {
  display: block;
  margin-bottom: 10px;
  color: var(--green);
  font-weight: 820;
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.newsletter-form div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.newsletter-form input {
  min-height: 54px;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0 1rem;
  background: var(--white);
  box-shadow: none;
  outline: none;
}

.newsletter-form input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(199, 154, 43, 0.12);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.58fr);
  gap: 42px;
  align-items: start;
}

.contact-panel {
  display: grid;
  gap: 18px;
  padding: 28px;
  border-radius: var(--radius);
}

.contact-panel a {
  width: fit-content;
  font-weight: 780;
}

.legal-hero {
  padding-top: 190px;
  padding-bottom: 54px;
}

.legal-hero h1 {
  max-width: 980px;
  font-size: clamp(3.2rem, 6.8vw, 6.4rem);
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.32fr) minmax(0, 1fr);
  gap: clamp(32px, 6vw, 84px);
  padding-top: 36px;
}

.legal-nav {
  position: sticky;
  top: 112px;
  display: grid;
  align-content: start;
  gap: 4px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

.legal-nav a {
  padding: 0.72rem 0.78rem;
  border-radius: 8px;
  color: rgba(7, 7, 7, 0.72);
  font-weight: 760;
}

.legal-nav a:hover {
  background: rgba(11, 91, 62, 0.06);
  color: var(--ink);
}

.legal-content {
  display: grid;
  gap: 18px;
}

.legal-content article {
  scroll-margin-top: 128px;
  padding: clamp(24px, 4vw, 44px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

.legal-content h2 {
  max-width: 760px;
  font-size: clamp(1.8rem, 3.6vw, 3.4rem);
  line-height: 1;
}

.legal-content p {
  max-width: 860px;
}

.legal-note {
  color: rgba(7, 7, 7, 0.52);
  font-size: 0.92rem;
}

.legal-footer-bottom {
  grid-column: 1 / -1;
}

.footer {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1.28fr);
  gap: clamp(34px, 6vw, 78px);
  border-top: 1px solid var(--line);
  padding-top: 88px;
  padding-bottom: 42px;
}

.footer-hero h2 {
  max-width: 520px;
  margin: 34px 0 18px;
  font-size: clamp(2.2rem, 4.5vw, 4.4rem);
  line-height: 0.96;
}

.footer-hero p {
  max-width: 500px;
  font-size: 1.02rem;
}

.footer-directory {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

.footer-group {
  min-height: 260px;
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 24px;
  border: 1px solid var(--line);
  background: var(--white);
}

.footer-group h3 {
  margin: 0 0 8px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-group a,
.footer-legal a {
  width: fit-content;
  color: rgba(7, 7, 7, 0.72);
  font-weight: 740;
}

.footer-signal {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  align-items: center;
  margin-top: 8px;
  padding: 18px;
  color: var(--white);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(7, 7, 7, 0.98), rgba(11, 91, 62, 0.94)),
    var(--ink);
  box-shadow: var(--soft-shadow);
}

.footer-signal .button-dark {
  background: var(--white);
  color: var(--ink);
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 22px;
  align-items: center;
  padding-top: 10px;
}

.footer small {
  color: rgba(7, 7, 7, 0.52);
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px 24px;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.94) 50%, rgba(255, 255, 255, 0.72) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.1) 42%, var(--white) 100%);
}

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

@media (max-width: 980px) {
  .section-pad {
    width: min(100% - 28px, var(--max));
    padding: 76px 0;
  }

  .nav-shell {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .nav-toggle {
    width: 44px;
    height: 44px;
    display: grid;
    gap: 5px;
    place-content: center;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
  }

  .nav-toggle span {
    width: 18px;
    height: 2px;
    background: var(--ink);
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-links.is-open {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 76px;
    display: grid;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .nav-links.is-open a {
    padding: 14px;
    border-radius: 8px;
  }

  .nav-links.is-open a:hover {
    background: rgba(11, 91, 62, 0.06);
  }

  .hero {
    min-height: 88svh;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0.98) 52%, var(--white) 100%);
  }

  .hero-grid,
  .split-heading,
  .division,
  .division.reverse,
  .museum-card,
  .business-card,
  .newsletter,
  .contact-grid,
  .footer {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 30px;
    align-items: center;
    padding-top: 150px;
  }

  h1 {
    font-size: clamp(3.5rem, 11vw, 5.6rem);
  }

  .signal-panel {
    transform: none;
  }

  .stat-row,
  .artist-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .story-grid {
    grid-template-columns: 1fr;
  }

  .business-visual {
    grid-column: 1;
    grid-row: auto;
  }

  .band-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .story-card {
    min-height: 260px;
  }

  .story-card h3 {
    margin-top: 40px;
  }


  .portal-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-directory {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-nav {
    position: static;
  }

  .footer-legal {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .site-header {
    top: 10px;
  }

  .hero {
    min-height: 820px;
  }

  h1 {
    font-size: clamp(3.15rem, 13vw, 4.2rem);
  }

  h2 {
    font-size: clamp(2.3rem, 13vw, 4rem);
  }

  .hero-actions,
  .business-actions {
    display: grid;
  }

  .signal-panel {
    display: none;
  }

  .stat-row,
  .content-grid,
  .artist-grid {
    grid-template-columns: 1fr;
  }

  .media-rail article {
    grid-template-columns: 1fr;
  }

  .drop-card {
    position: static;
    width: auto;
    margin: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .museum-card img {
    min-height: 340px;
  }


  .portal-grid {
    grid-template-columns: 1fr;
  }

  .portal-card {
    min-height: 390px;
  }

  .event-list article {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .footer-directory,
  .footer-signal {
    grid-template-columns: 1fr;
  }

  .footer-group {
    min-height: auto;
  }

  .wide-visual img,
  .artist-showcase img,
  .event-visual img,
  .business-visual img {
    min-height: 280px;
    height: 58vw;
  }

  .text-link {
    white-space: normal;
  }

  .newsletter-form div {
    grid-template-columns: 1fr;
  }
}

/* Pure white canvas override requested for Yardrock. */
html,
body {
  background: #ffffff !important;
  background-color: #ffffff !important;
}

body,
main,
section,
.site-shell,
.hero,
.section-pad,
.editorial-band,
.feature-band,
.legal-hero,
.legal-layout {
  background-color: #ffffff !important;
}

body::before,
body::after,
main::before,
main::after,
.site-shell::before,
.site-shell::after {
  background: transparent !important;
}


/* Premium fashion editorial layer inspired by luxury monochrome retail systems. */
:root {
  --ink: #050505;
  --muted: #575757;
  --line: rgba(5, 5, 5, 0.14);
  --gold: #b99738;
  --green: #063f2c;
  --red: #9e1f2b;
  --shadow: 0 26px 80px rgba(0, 0, 0, 0.09);
  --soft-shadow: none;
  --radius: 0px;
  --max: 1320px;
}

body {
  background: #ffffff !important;
  color: var(--ink);
  font-family: Arial, Helvetica, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

.section-pad {
  width: min(var(--max), calc(100% - 64px));
  padding: clamp(88px, 11vw, 156px) 0;
}

.site-header {
  inset: 0 0 auto;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
}

.nav-shell {
  width: 100%;
  max-width: none;
  min-height: 72px;
  padding: 0 32px;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  grid-template-columns: 240px 1fr auto;
}

.brand {
  gap: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 0;
  background: var(--ink);
  color: #ffffff;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
}

.brand-word {
  font-size: 0.82rem;
  font-weight: 900;
}

.tm-word {
  padding-right: 0.48em;
}

.tm-word sup {
  top: -0.5em;
  right: 0;
  font-size: 0.42em;
}

.nav-links {
  gap: clamp(18px, 2.2vw, 36px);
  color: var(--ink);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-links a::after,
.text-link::after,
.footer-links a::after,
.contact-panel a::after {
  bottom: -9px;
  background: var(--ink);
}

.nav-podcast-link::before {
  width: 4px;
  height: 4px;
  left: -9px;
  background: var(--red);
  box-shadow: none;
}

.nav-cta,
.button {
  min-height: 42px;
  border-radius: 0;
  padding: 0.82rem 1.15rem;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  box-shadow: none !important;
}

.button:hover,
.nav-cta:hover,
.story-card:hover,
.portal-card:hover {
  transform: translateY(-2px);
}

.button-dark,
.nav-cta {
  background: var(--ink);
  color: #ffffff;
}

.button-glass,
.button-gold {
  color: var(--ink);
  border-color: var(--ink);
  background: #ffffff;
}

.hero {
  min-height: 100svh;
  align-items: stretch;
  border-bottom: 1px solid var(--line);
}

.hero-media {
  left: 47%;
  right: 0;
  width: 53%;
}

.hero-media img {
  transform: none;
  filter: grayscale(8%) contrast(1.04);
}

.hero-overlay {
  background: linear-gradient(90deg, #ffffff 0 48%, rgba(255, 255, 255, 0.1) 68%, rgba(255, 255, 255, 0) 100%) !important;
}

.hero-grid {
  min-height: 100svh;
  grid-template-columns: minmax(0, 0.82fr) minmax(260px, 0.32fr);
  align-items: end;
  padding-top: 128px;
  padding-bottom: 72px;
}

.eyebrow,
.section-kicker,
.radio-player small,
.footer-group h3,
.newsletter-form label,
.signal-top,
.stat-row span,
.media-rail span,
.story-card span,
.artist-grid span,
.status {
  color: var(--ink);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow::before,
.section-kicker::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 1px;
  margin-right: 12px;
  vertical-align: middle;
  background: var(--ink);
}

h1 {
  max-width: 850px;
  font-size: clamp(4.6rem, 8.9vw, 9.6rem);
  line-height: 0.86;
  font-weight: 900;
  letter-spacing: -0.035em;
}

h2 {
  font-size: clamp(2.8rem, 6.4vw, 7rem);
  line-height: 0.9;
  font-weight: 900;
  letter-spacing: -0.035em;
}

h3 {
  font-weight: 850;
  letter-spacing: -0.012em;
}

p {
  color: var(--muted);
  line-height: 1.75;
}

.hero-lede,
.split-heading p,
.division-copy > p:not(.eyebrow),
.footer-hero p {
  max-width: 600px;
  font-size: clamp(1rem, 1.2vw, 1.18rem);
}

.glass,
.signal-panel,
.radio-player,
.contact-panel,
.legal-nav,
.legal-content article {
  border: 1px solid var(--line);
  background: #ffffff;
  box-shadow: none;
}

.signal-panel {
  align-self: end;
  padding: 22px;
  border-left: 4px solid var(--ink);
}

.live-dot {
  width: 7px;
  height: 7px;
  background: var(--red);
  box-shadow: none;
}

.mini-meter span,
.wave span {
  width: 3px;
  border-radius: 0;
  background: var(--ink);
}

.mini-meter span:nth-child(4),
.wave span:nth-child(4) {
  background: var(--green);
}

.mini-meter span:nth-child(5),
.wave span:nth-child(5) {
  background: var(--red);
}

.split-heading {
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.42fr);
  border-top: 1px solid var(--line);
  padding-top: 36px;
}

.stat-row,
.content-grid,
.event-list,
.footer-directory {
  gap: 0;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
}

.stat-row {
  border: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.stat-row article,
.content-grid article,
.artist-grid article,
.footer-group {
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stat-row article {
  min-height: 290px;
  padding: 32px;
}

.stat-row article h3 {
  margin-top: 96px;
  font-size: clamp(1.55rem, 2vw, 2.25rem);
}

.division {
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.72fr);
  gap: clamp(40px, 7vw, 108px);
  border-top: 1px solid var(--line);
}

.division.reverse {
  grid-template-columns: minmax(360px, 0.72fr) minmax(0, 1.04fr);
}

.division-media,
.wide-visual,
.artist-showcase,
.fashion-stage,
.museum-card,
.business-card,
.accent-strip,
.experience-visual,
.portal-card {
  border-radius: 0;
  box-shadow: none;
}

.division-media img {
  min-height: 680px;
  object-fit: cover;
}

.radio-player {
  grid-template-columns: 52px 1fr;
  margin: 34px 0 22px;
  padding: 18px 0;
  border-left: 0;
  border-right: 0;
}

.play-button {
  width: 46px;
  height: 46px;
  border-radius: 0;
}

.content-grid {
  border: 1px solid var(--line);
}

.content-grid article {
  padding: 26px;
}

.accent-strip {
  margin-top: 22px;
}

.accent-strip img {
  height: clamp(220px, 24vw, 360px);
  filter: saturate(0.88) contrast(1.04);
}

.editorial-band,
.portal-previews,
.newsletter,
.experience,
.footer {
  border-top: 1px solid var(--line);
  border-bottom: 0;
}

.band-head {
  border-top: 1px solid var(--line);
  padding-top: 28px;
}

.text-link,
.event-list a {
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.wide-visual img,
.artist-showcase img {
  height: clamp(460px, 48vw, 760px);
  filter: grayscale(7%) contrast(1.03);
}

.story-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.story-card {
  min-height: 390px;
  border: 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  box-shadow: none;
}

.story-card h3 {
  margin-top: 96px;
  font-size: clamp(1.65rem, 2.35vw, 2.55rem);
}

.media-rail article {
  grid-template-columns: 50px 0.5fr 1fr;
  padding: 18px 0;
  border: 0;
  border-top: 1px solid var(--line);
  border-radius: 0;
  box-shadow: none;
}

.fashion-stage img {
  min-height: 760px;
  object-fit: cover;
}

.drop-card {
  right: 0;
  bottom: 0;
  width: min(430px, 100%);
  padding: 30px;
  border: 1px solid var(--line);
  border-right: 0;
  border-bottom: 0;
}

.museum-card {
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.62fr);
}

.museum-copy {
  border-left: 1px solid var(--line);
}

.experience {
  min-height: 760px;
  text-align: left;
  place-items: end start;
}

.experience-copy {
  max-width: 980px;
}

.orbital span {
  border-radius: 0;
  border-color: rgba(5, 5, 5, 0.12) !important;
}

.pill-row {
  justify-content: flex-start;
}

.pill-row span {
  border-radius: 0;
  background: #ffffff;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.portal-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.portal-card {
  min-height: 470px;
  border: 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.portal-preview {
  min-height: 270px;
}

.portal-preview iframe,
.portal-preview img {
  min-height: 270px;
}

.portal-preview::after {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 54%, rgba(255, 255, 255, 0.92) 100%);
}

.portal-info {
  padding: 22px;
}

.status.live {
  color: var(--green);
}

.status.pending {
  color: var(--red);
}

.status::before,
.status.pending::before {
  box-shadow: none;
}

.event-list {
  border-radius: 0;
  box-shadow: none;
}

.event-list article {
  grid-template-columns: 150px 1fr auto;
  padding: 30px 0;
  border-top: 1px solid var(--line);
}

.event-list time {
  color: var(--ink);
  font-size: clamp(1.9rem, 3.4vw, 3.8rem);
  letter-spacing: -0.04em;
}

.artist-grid {
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.artist-grid article {
  min-height: 148px;
  border-radius: 0;
  box-shadow: none;
}

.business-card {
  color: #ffffff;
  background: #050505;
}

.business-card h2,
.business-card .eyebrow,
.business-card p {
  color: #ffffff;
}

.newsletter-form input {
  min-height: 52px;
  border-radius: 0;
}

.contact-panel {
  padding: 0 0 0 28px;
  border: 0;
  border-left: 1px solid var(--line);
}

.footer {
  padding-top: 96px;
}

.footer-directory {
  border-radius: 0;
}

.footer-group {
  min-height: 300px;
  border-top: 0;
  border-left: 0;
}

.footer-group a,
.footer-legal a {
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 750;
}

.footer-signal {
  border-radius: 0;
  background: var(--ink);
  box-shadow: none;
}

.hero-overlay,
body,
main,
section,
.site-shell,
.hero,
.section-pad,
.editorial-band,
.feature-band,
.legal-hero,
.legal-layout {
  background-color: #ffffff !important;
}

@media (max-width: 980px) {
  .nav-shell {
    min-height: 64px;
    grid-template-columns: auto auto;
    padding: 0 18px;
  }

  .nav-links.is-open {
    left: 0;
    right: 0;
    top: 64px;
    border-left: 0;
    border-right: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .hero-media {
    left: 0;
    width: 100%;
    opacity: 0.28;
  }

  .hero-overlay {
    background: rgba(255, 255, 255, 0.84) !important;
  }

  .hero-grid,
  .split-heading,
  .division,
  .division.reverse,
  .museum-card,
  .business-card,
  .newsletter,
  .contact-grid,
  .footer {
    grid-template-columns: 1fr;
  }

  .division-media img,
  .fashion-stage img {
    min-height: 520px;
  }

  .portal-grid,
  .story-grid,
  .artist-grid,
  .stat-row,
  .footer-directory {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .museum-copy,
  .contact-panel {
    border-left: 0;
  }
}

@media (max-width: 640px) {
  .section-pad {
    width: min(100% - 28px, var(--max));
    padding: 76px 0;
  }

  h1 {
    font-size: clamp(3.4rem, 17vw, 5.2rem);
  }

  h2 {
    font-size: clamp(2.55rem, 14vw, 4.35rem);
  }

  .portal-grid,
  .story-grid,
  .artist-grid,
  .stat-row,
  .content-grid,
  .footer-directory {
    grid-template-columns: 1fr;
  }

  .event-list article,
  .media-rail article {
    grid-template-columns: 1fr;
  }

  .drop-card {
    border: 0;
    border-top: 1px solid var(--line);
  }
}


/* Navigation, news desk and media legal refinements. */
.nav-group {
  position: relative;
}

.nav-group summary {
  list-style: none;
  cursor: pointer;
}

.nav-group summary::-webkit-details-marker {
  display: none;
}

.nav-group summary::after {
  content: "+";
  display: inline-block;
  margin-left: 7px;
  font-size: 0.78em;
}

.nav-group[open] summary::after {
  content: "-";
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 24px);
  left: 50%;
  z-index: 30;
  min-width: 230px;
  display: grid;
  gap: 0;
  padding: 10px 0;
  border: 1px solid var(--line);
  background: #ffffff;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.1);
  transform: translateX(-50%);
}

.nav-dropdown a {
  padding: 13px 18px;
  white-space: nowrap;
}

.nav-dropdown a:hover {
  background: #050505;
  color: #ffffff;
}

.nav-dropdown a::after,
.nav-group summary::after {
  background: none;
}

.nav-links [aria-current="page"] {
  color: var(--red);
}

.contact-card {
  display: grid;
  gap: 22px;
  padding: clamp(24px, 4vw, 44px);
  border: 1px solid var(--line);
  background: #ffffff;
}

.contact-card h3 {
  max-width: 420px;
  margin: 0;
  font-size: clamp(1.65rem, 2.6vw, 3rem);
  line-height: 0.98;
}

.contact-card-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.contact-card-list a {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.news-hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 0.72fr);
  gap: clamp(40px, 7vw, 108px);
  align-items: end;
  padding-top: 128px;
  border-bottom: 1px solid var(--line);
}

.news-hero h1 {
  max-width: 920px;
}

.news-hero-media {
  overflow: hidden;
  border: 1px solid var(--line);
}

.news-hero-media img {
  min-height: 680px;
  height: 72svh;
  object-fit: cover;
  filter: grayscale(7%) contrast(1.04);
}

.feed-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin: 0 0 22px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.feed-filter {
  min-height: 48px;
  padding: 0 20px;
  border: 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #ffffff;
  color: var(--ink);
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.feed-filter.is-active,
.feed-filter:hover {
  background: var(--ink);
  color: #ffffff;
}

.feed-note {
  max-width: 780px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 0.95rem;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.news-card {
  min-height: 340px;
  display: grid;
  align-content: space-between;
  gap: 22px;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #ffffff;
  transition: transform 220ms ease, background 220ms ease;
}

.news-card:hover {
  background: rgba(5, 5, 5, 0.025);
  transform: translateY(-2px);
}

.news-card span,
.news-card time {
  color: var(--ink);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.news-card h3 {
  margin: 42px 0 0;
  font-size: clamp(1.35rem, 2vw, 2.2rem);
  line-height: 1;
}

.news-card p {
  margin: 0;
  font-size: 0.98rem;
}

.news-card a {
  width: fit-content;
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.news-card.is-hidden {
  display: none;
}

.news-submit .business-card {
  margin-top: 0;
}

.footer-group-legal {
  grid-template-columns: 1fr;
  gap: 10px;
}

.legal-content article:nth-child(odd) {
  border-left: 4px solid var(--ink);
}

.legal-content article:nth-child(even) {
  border-left: 4px solid var(--green);
}

@media (max-width: 980px) {
  .nav-group {
    width: 100%;
  }

  .nav-group summary,
  .nav-links.is-open > a {
    display: block;
    padding: 14px;
  }

  .nav-dropdown {
    position: static;
    min-width: 0;
    padding: 0 0 0 14px;
    border: 0;
    border-top: 1px solid var(--line);
    box-shadow: none;
    transform: none;
  }

  .news-hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 118px;
  }

  .news-hero-media img {
    min-height: 420px;
    height: 54vw;
  }

  .news-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .news-grid {
    grid-template-columns: 1fr;
  }

  .contact-card-actions,
  .feed-controls {
    display: grid;
  }

  .feed-filter {
    width: 100%;
    text-align: left;
  }
}


/* Full platform expansion: pages, forms, article system and cookie notice. */
.page-hero {
  min-height: 92svh;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 0.72fr);
  gap: clamp(40px, 7vw, 108px);
  align-items: end;
  padding-top: 128px;
  border-bottom: 1px solid var(--line);
}

.page-hero-media {
  overflow: hidden;
  border: 1px solid var(--line);
}

.page-hero-media img {
  min-height: 640px;
  height: 68svh;
  object-fit: cover;
  filter: grayscale(7%) contrast(1.04);
}

.feature-matrix,
.schedule-grid,
.product-grid,
.article-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.feature-matrix article,
.schedule-grid article,
.product-grid article,
.article-card-grid article {
  min-height: 300px;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #ffffff;
}

.feature-matrix span,
.schedule-grid span,
.product-grid span,
.article-card-grid span,
.article-meta span,
.article-meta time {
  color: var(--ink);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.product-grid,
.article-card-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.article-card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-grid img,
.article-card-grid img {
  width: 100%;
  height: clamp(260px, 28vw, 420px);
  margin: -28px -28px 24px;
  width: calc(100% + 56px);
  object-fit: cover;
  border-bottom: 1px solid var(--line);
}

.article-card-grid a,
.share-row a,
.article-next a {
  width: fit-content;
}

.premium-form,
.mini-contact-form {
  display: grid;
  gap: 18px;
  max-width: 860px;
  padding: clamp(24px, 4vw, 48px);
  border: 1px solid var(--line);
  background: #ffffff;
}

.premium-form h2 {
  margin-bottom: 10px;
  font-size: clamp(2.2rem, 4vw, 4.8rem);
}

.premium-form label,
.mini-contact-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.premium-form input,
.premium-form textarea,
.premium-form select,
.mini-contact-form input,
.mini-contact-form textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid var(--line);
  border-radius: 0;
  padding: 0.9rem;
  background: #ffffff;
  color: var(--ink);
  font: inherit;
  text-transform: none;
  letter-spacing: 0;
}

.premium-form textarea,
.mini-contact-form textarea {
  resize: vertical;
}

.dark-form {
  max-width: none;
  border-color: rgba(255, 255, 255, 0.25);
  background: transparent;
}

.dark-form label,
.dark-form h2 {
  color: #ffffff;
}

.dark-form input,
.dark-form textarea,
.dark-form select {
  border-color: rgba(255, 255, 255, 0.28);
}

.article-page {
  padding-top: 150px;
}

.article-header {
  max-width: 980px;
}

.article-meta,
.share-row,
.article-next,
.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  align-items: center;
}

.article-meta {
  margin: 28px 0;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.share-row {
  margin: 28px 0 36px;
}

.share-row a,
.social-row a {
  padding-bottom: 4px;
  border-bottom: 1px solid var(--ink);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.article-hero-image {
  width: 100%;
  max-height: 720px;
  object-fit: cover;
  border: 1px solid var(--line);
}

.article-body {
  max-width: 820px;
  margin-top: 56px;
}

.article-body p {
  color: var(--ink);
  font-size: clamp(1.15rem, 1.55vw, 1.45rem);
  line-height: 1.72;
}

.article-next {
  margin-top: 44px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.cookie-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  background: #ffffff;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.12);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner p {
  margin: 0;
  max-width: 760px;
}

.cookie-banner div {
  display: flex;
  gap: 12px;
  align-items: center;
}

@media (max-width: 980px) {
  .page-hero,
  .feature-matrix,
  .schedule-grid,
  .product-grid,
  .article-card-grid {
    grid-template-columns: 1fr;
  }

  .page-hero {
    min-height: auto;
    padding-top: 118px;
  }

  .page-hero-media img {
    min-height: 420px;
    height: 54vw;
  }

  .cookie-banner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }

  .cookie-banner div,
  .article-next {
    display: grid;
  }
}


/* Yardrock TV video feature update. */
.video-feature {
  aspect-ratio: 16 / 9;
  min-height: 520px;
  display: grid;
  background: #050505;
}

.video-feature iframe {
  width: 100%;
  height: 100%;
  min-height: inherit;
  border: 0;
}

@media (max-width: 980px) {
  .video-feature {
    min-height: 360px;
  }
}

@media (max-width: 640px) {
  .video-feature {
    min-height: 240px;
  }
}


/* Fit Yardrock TV video safely inside the homepage split section. */
.video-division {
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.78fr);
  align-items: center;
}

.video-division .division-copy {
  min-width: 0;
}

.video-feature {
  width: 100%;
  min-width: 0;
  min-height: 0 !important;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  align-self: center;
}

.video-feature iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0 !important;
}

.video-division .division-copy h2 {
  font-size: clamp(2.45rem, 5vw, 5.8rem);
}

@media (max-width: 980px) {
  .video-division {
    grid-template-columns: 1fr;
  }
}


/* Traditional dancehall and reggae artist signal. */
.dancehall-marquee {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-top: 28px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.dancehall-marquee span {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  padding: 0 18px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: clamp(0.82rem, 1vw, 1rem);
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  background: #ffffff;
  transition: background 220ms ease, color 220ms ease, transform 220ms ease;
}

.dancehall-marquee span:hover {
  background: var(--ink);
  color: #ffffff;
  transform: translateY(-2px);
}

.artist-note {
  max-width: 920px;
  margin: 24px 0 0;
  padding-left: 22px;
  border-left: 4px solid var(--red);
  color: var(--ink);
  font-size: clamp(1rem, 1.25vw, 1.18rem);
}

.artist-grid article:nth-child(1) {
  border-top: 4px solid var(--red);
}

.artist-grid article:nth-child(2) {
  border-top: 4px solid var(--gold);
}

.artist-grid article:nth-child(3),
.artist-grid article:nth-child(4) {
  border-top: 4px solid var(--green);
}


/* Dedicated legal policy pages. */
.legal-page-layout {
  align-items: start;
}

.legal-page-nav a[aria-current="page"],
.legal-page-nav a:hover {
  background: var(--ink);
  color: #ffffff;
}

.legal-page-content article {
  border-left-width: 4px;
}

.legal-page-content article p {
  max-width: 900px;
}


/* Reggae artist camouflage hero treatment. */
.hero-media img {
  object-position: center right;
}

.hero-overlay {
  background:
    linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0.98) 24%, rgba(255, 255, 255, 0.84) 42%, rgba(255, 255, 255, 0.38) 61%, rgba(255, 255, 255, 0.04) 100%) !important;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

@media (max-width: 980px) {
  .hero-media img {
    object-position: center;
  }

  .hero-overlay {
    background: rgba(255, 255, 255, 0.88) !important;
  }
}

/* Dynamic Yardrock visual rhythm. */
.visual-rhythm {
  display: grid;
  gap: clamp(24px, 5vw, 64px);
  background: #fff;
}

.rhythm-lead {
  max-width: 820px;
}

.rhythm-lead h2 {
  margin: 10px 0 0;
  font-size: clamp(2rem, 4.8vw, 5.4rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.rhythm-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
  gap: clamp(14px, 2.2vw, 28px);
  perspective: 1400px;
}

.rhythm-stack {
  display: grid;
  gap: clamp(14px, 2.2vw, 28px);
}

.rhythm-frame {
  --rx: 0deg;
  --ry: 0deg;
  --lift: 0px;
  position: relative;
  margin: 0;
  min-height: 260px;
  overflow: hidden;
  border: 1px solid rgba(3, 41, 30, 0.12);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 34px 80px rgba(6, 33, 25, 0.13);
  transform: translateY(var(--lift)) rotateX(var(--rx)) rotateY(var(--ry));
  transform-style: preserve-3d;
  transition: transform 280ms ease, box-shadow 280ms ease, border-color 280ms ease;
}

.rhythm-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.72) 0%, rgba(255, 255, 255, 0) 38%),
    linear-gradient(180deg, rgba(0, 0, 0, 0) 58%, rgba(0, 0, 0, 0.32) 100%);
  pointer-events: none;
}

.rhythm-frame img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: block;
  object-fit: cover;
  transform: scale(1.04);
  animation: premiumImageDrift 16s ease-in-out infinite alternate;
}

.rhythm-frame-large {
  min-height: clamp(420px, 54vw, 720px);
}

.rhythm-stack .rhythm-frame {
  min-height: clamp(200px, 25vw, 346px);
}

.rhythm-frame:hover {
  --lift: -8px;
  border-color: rgba(200, 160, 60, 0.4);
  box-shadow: 0 44px 92px rgba(6, 33, 25, 0.18);
}

.division-media,
.fashion-stage,
.museum-card,
.event-visual,
.artist-showcase,
.portal-card {
  transform-style: preserve-3d;
}

.division-media img,
.fashion-stage > img,
.museum-card > img,
.event-visual img,
.artist-showcase img {
  transition: transform 650ms cubic-bezier(0.2, 0.75, 0.2, 1), filter 650ms ease;
}

.division-media:hover img,
.fashion-stage:hover > img,
.museum-card:hover > img,
.event-visual:hover img,
.artist-showcase:hover img {
  transform: scale(1.055);
  filter: saturate(1.04) contrast(1.02);
}

@keyframes premiumImageDrift {
  from {
    transform: scale(1.04) translate3d(-1.2%, -0.8%, 0);
  }
  to {
    transform: scale(1.1) translate3d(1.4%, 1%, 0);
  }
}

@media (max-width: 980px) {
  .rhythm-gallery {
    grid-template-columns: 1fr;
  }

  .rhythm-frame,
  .rhythm-frame-large,
  .rhythm-stack .rhythm-frame {
    min-height: clamp(240px, 72vw, 480px);
    border-radius: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .rhythm-frame,
  .rhythm-frame img,
  .division-media img,
  .fashion-stage > img,
  .museum-card > img,
  .event-visual img,
  .artist-showcase img {
    animation: none !important;
    transition: none !important;
    transform: none !important;
  }
}
