:root {
  --ink: #161411;
  --paper: #f4efe4;
  --paper-warm: #e7dac7;
  --bone: #fbf7ef;
  --burgundy: #7b1f23;
  --stage-red: #bd342e;
  --ochre: #b7833c;
  --blue-gray: #243747;
  --muted: #6e6257;
  --line: rgba(22, 20, 17, 0.16);
  --dark-line: rgba(251, 247, 239, 0.18);
  --shadow: 0 30px 80px rgba(22, 20, 17, 0.22);
  --serif: "Cormorant Garamond", "Iowan Old Style", "Baskerville", Georgia, serif;
  --sans: "Avenir Next", "Gill Sans", "Trebuchet MS", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(90deg, rgba(22, 20, 17, 0.035) 1px, transparent 1px) 0 0 / 72px 72px,
    linear-gradient(180deg, var(--bone), var(--paper) 42%, #e9dfd1);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 18px;
  left: 50%;
  width: min(calc(100% - 28px), 1180px);
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 10px 24px;
  padding: 12px 18px 14px;
  border: 1px solid rgba(244, 239, 228, 0.2);
  background: rgba(22, 20, 17, 0.64);
  color: var(--bone);
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 50px rgba(22, 20, 17, 0.18);
  transition:
    background 0.25s ease,
    transform 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(22, 20, 17, 0.88);
}

.brand {
  grid-column: 2;
  justify-self: center;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand span {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 1px solid var(--dark-line);
  background: rgba(251, 247, 239, 0.96);
  color: var(--ink);
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0;
}

.brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.brand strong {
  font-family: var(--serif);
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 600;
  white-space: nowrap;
}

.site-nav {
  grid-column: 1 / -1;
  justify-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 3px;
  max-width: 100%;
}

.site-nav a {
  padding: 8px 12px;
  color: rgba(251, 247, 239, 0.82);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.075em;
  transition:
    color 0.2s ease,
    background 0.2s ease;
}

.site-nav a:hover,
.site-nav a.is-active {
  background: rgba(251, 247, 239, 0.12);
  color: var(--bone);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 42px;
  border: 1px solid var(--dark-line);
  background: transparent;
  color: var(--bone);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 6px auto;
  background: currentColor;
  transition: transform 0.2s ease;
}

.nav-open .menu-toggle span:first-child {
  transform: translateY(4px) rotate(42deg);
}

.nav-open .menu-toggle span:last-child {
  transform: translateY(-4px) rotate(-42deg);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 42vw);
  align-items: end;
  overflow: hidden;
  background: var(--ink);
  color: var(--bone);
}

.hero::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(22, 20, 17, 0.98) 0%, rgba(22, 20, 17, 0.7) 38%, rgba(22, 20, 17, 0.16) 70%),
    radial-gradient(circle at 24% 22%, rgba(183, 131, 60, 0.24), transparent 34%);
}

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

.hero-media img {
  height: 100%;
  object-fit: cover;
  object-position: 74% center;
  filter: saturate(0.9) contrast(1.08);
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(760px, calc(100vw - 32px));
  padding: 150px 0 82px clamp(20px, 7vw, 92px);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--ochre);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

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

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 0.95;
}

h1 {
  max-width: 680px;
  margin-bottom: 26px;
  font-size: clamp(68px, 10vw, 152px);
}

h2 {
  font-size: clamp(42px, 6vw, 88px);
}

h3 {
  font-size: clamp(26px, 3vw, 38px);
}

.hero-lead {
  max-width: 660px;
  color: rgba(251, 247, 239, 0.84);
  font-family: var(--serif);
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.16;
}

.hero-actions,
.video-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 18px;
  border: 1px solid currentColor;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  border-color: var(--stage-red);
  background: var(--stage-red);
  color: var(--bone);
  box-shadow: 0 18px 34px rgba(189, 52, 46, 0.28);
}

.button.ghost {
  color: var(--bone);
  background: rgba(251, 247, 239, 0.06);
}

.hero-card {
  position: relative;
  z-index: 2;
  align-self: end;
  justify-self: end;
  width: min(440px, calc(100% - 28px));
  margin: 0 clamp(14px, 5vw, 58px) 44px 0;
  padding: 26px;
  border: 1px solid rgba(251, 247, 239, 0.25);
  background: rgba(251, 247, 239, 0.1);
  backdrop-filter: blur(16px);
}

.hero-card span,
.management-card span,
.credential-grid span {
  color: var(--ochre);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.hero-card strong {
  display: block;
  margin: 9px 0 10px;
  font-family: var(--serif);
  font-size: 32px;
  line-height: 1;
}

.hero-card p {
  margin: 0;
  color: rgba(251, 247, 239, 0.72);
}

.hero-copy.reveal,
.hero-card.reveal {
  opacity: 1;
  transform: none;
}

.marquee-band {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: var(--burgundy);
  color: var(--bone);
}

.marquee-band div {
  display: flex;
  width: max-content;
  animation: drift 32s linear infinite;
}

.marquee-band span {
  padding: 18px 24px;
  font-family: var(--serif);
  font-size: clamp(22px, 3vw, 38px);
  white-space: nowrap;
}

@keyframes drift {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-36%);
  }
}

.section {
  width: min(1180px, calc(100% - 32px));
  margin-inline: auto;
  padding-block: clamp(78px, 10vw, 138px);
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(28px, 6vw, 80px);
  align-items: start;
}

.section-kicker h2,
.section-heading h2 {
  margin-bottom: 0;
}

.intro-text {
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
}

.stat-row {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stat-row article {
  padding: 30px clamp(16px, 4vw, 38px);
  border-right: 1px solid var(--line);
}

.stat-row article:last-child {
  border-right: 0;
}

.stat-row strong {
  display: block;
  color: var(--burgundy);
  font-family: var(--serif);
  font-size: clamp(54px, 8vw, 112px);
  line-height: 0.9;
}

.stat-row span {
  display: block;
  max-width: 160px;
  color: var(--muted);
  font-weight: 700;
}

.split-feature {
  display: grid;
  grid-template-columns: minmax(300px, 48vw) minmax(0, 1fr);
  min-height: 720px;
  background: var(--ink);
  color: var(--bone);
}

.image-panel {
  height: 100%;
  margin: 0;
}

.image-panel img {
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.feature-copy {
  align-self: center;
  padding: clamp(38px, 7vw, 92px);
}

.feature-copy p {
  max-width: 620px;
  color: rgba(251, 247, 239, 0.76);
  font-size: 19px;
}

.award-list {
  display: grid;
  gap: 14px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.award-list li {
  padding: 16px 0 16px 28px;
  border-top: 1px solid var(--dark-line);
  color: rgba(251, 247, 239, 0.86);
  position: relative;
}

.award-list li::before {
  position: absolute;
  left: 0;
  color: var(--ochre);
  content: "—";
}

.spotify-section {
  width: min(1320px, calc(100% - 32px));
}

.spotify-intro {
  max-width: 760px;
  margin: -24px 0 34px auto;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
}

.spotify-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.spotify-grid iframe {
  width: 100%;
  height: 352px;
  border: 0;
  border-radius: 0;
  background: var(--ink);
}

.spotify-card {
  display: grid;
  gap: 0;
  background: var(--ink);
  box-shadow: 0 22px 52px rgba(22, 20, 17, 0.14);
}

.spotify-card a {
  display: grid;
  min-height: 46px;
  place-items: center;
  border: 1px solid var(--line);
  border-top: 0;
  background: var(--bone);
  color: var(--burgundy);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.spotify-card a:hover {
  background: var(--burgundy);
  color: var(--bone);
}

.critics-section {
  width: min(1320px, calc(100% - 32px));
}

.critics-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.88fr);
  gap: 24px;
  align-items: stretch;
  margin-bottom: 24px;
}

.critics-stage {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  grid-template-rows: 280px 280px;
  gap: 14px;
  min-height: 574px;
}

.critics-photo {
  display: grid;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    linear-gradient(45deg, rgba(22, 20, 17, 0.05) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(22, 20, 17, 0.05) 25%, transparent 25%),
    var(--bone);
  background-size: 18px 18px;
  box-shadow: 0 24px 60px rgba(22, 20, 17, 0.12);
}

.critics-photo.main {
  grid-row: span 2;
}

.critics-photo.accent {
  transform: translateY(28px);
}

.critics-photo img,
.critics-photo-wall img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.critics-grid {
  columns: 2 420px;
  column-gap: 24px;
}

.critic-card {
  break-inside: avoid;
  margin: 0 0 24px;
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid rgba(33, 29, 25, 0.1);
  border-left: 5px solid var(--ochre);
  background:
    linear-gradient(140deg, rgba(185, 137, 67, 0.12), transparent 42%),
    rgba(255, 252, 245, 0.78);
  box-shadow: 0 26px 70px rgba(22, 20, 17, 0.1);
}

.critic-card blockquote {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 29px);
  line-height: 1.28;
}

.critic-card cite {
  display: block;
  margin-top: 24px;
  color: var(--burgundy);
  font-size: 13px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.critic-lead {
  display: grid;
  align-content: end;
  min-height: 574px;
  border-left-color: var(--burgundy);
  background:
    linear-gradient(145deg, rgba(123, 31, 35, 0.2), transparent 50%),
    linear-gradient(0deg, rgba(185, 137, 67, 0.14), transparent 42%),
    var(--bone);
}

.critic-lead blockquote,
.critic-compact blockquote {
  font-size: clamp(25px, 3vw, 42px);
  line-height: 1.12;
}

.critics-photo-wall {
  columns: 5 190px;
  column-gap: 14px;
  margin-top: 34px;
}

.critics-photo-wall img {
  display: inline-block;
  height: auto;
  max-height: 360px;
  margin: 0 0 14px;
  padding: 10px;
  break-inside: avoid;
  border: 1px solid var(--line);
  background:
    linear-gradient(45deg, rgba(22, 20, 17, 0.045) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(22, 20, 17, 0.045) 25%, transparent 25%),
    var(--bone);
  background-size: 18px 18px;
  box-shadow: 0 18px 42px rgba(22, 20, 17, 0.1);
  transition:
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    transform 0.22s ease;
}

.critics-photo-wall img:hover {
  border-color: rgba(123, 31, 35, 0.42);
  box-shadow: 0 26px 56px rgba(22, 20, 17, 0.16);
  transform: translateY(-3px);
}

.dark-section {
  width: 100%;
  max-width: none;
  padding-inline: max(16px, calc((100vw - 1180px) / 2));
  background:
    linear-gradient(120deg, rgba(123, 31, 35, 0.28), transparent 36%),
    var(--blue-gray);
  color: var(--bone);
}

.section-heading {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: clamp(22px, 5vw, 72px);
  align-items: end;
  margin-bottom: 52px;
}

.management-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px;
}

.management-card {
  display: grid;
  min-height: 520px;
  align-content: end;
  overflow: hidden;
  position: relative;
  border: 1px solid var(--dark-line);
}

.management-card img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  opacity: 0.75;
}

.management-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(22, 20, 17, 0.88), rgba(22, 20, 17, 0.12));
}

.management-card div {
  position: relative;
  z-index: 1;
  max-width: 620px;
  padding: clamp(24px, 5vw, 52px);
}

.management-card p,
.timeline p {
  color: rgba(251, 247, 239, 0.74);
}

.timeline {
  display: grid;
  border: 1px solid var(--dark-line);
}

.timeline article {
  padding: 28px;
  border-bottom: 1px solid var(--dark-line);
}

.timeline article:last-child {
  border-bottom: 0;
}

.timeline time {
  color: var(--ochre);
  font-weight: 900;
}

.credentials {
  padding-bottom: 90px;
}

.credential-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.credential-grid article {
  min-height: 260px;
  padding: 28px;
  background: rgba(251, 247, 239, 0.56);
}

.credential-grid h3 {
  margin: 18px 0 12px;
  font-size: 30px;
}

.credential-grid p {
  color: var(--muted);
}

.gallery-section {
  padding-top: 40px;
}

.editorial-gallery {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  grid-auto-rows: 250px;
  gap: 18px;
}

.editorial-gallery figure {
  position: relative;
  overflow: hidden;
  margin: 0;
  background: var(--ink);
  box-shadow: var(--shadow);
}

.editorial-gallery figure.tall {
  grid-row: span 2;
}

.editorial-gallery figure.wide {
  grid-column: span 2;
}

.editorial-gallery img {
  height: 100%;
  object-fit: contain;
  background: #15110e;
  transition: transform 0.5s ease;
}

.editorial-gallery figure:hover img {
  transform: scale(1.04);
}

.editorial-gallery figcaption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  padding: 10px 12px;
  background: rgba(22, 20, 17, 0.72);
  color: var(--bone);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.scene-copy {
  max-width: 820px;
  margin: 44px 0 0 auto;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
}

.scene-copy p {
  margin-bottom: 18px;
}

.channel-section {
  width: min(1320px, calc(100% - 32px));
}

.channel-lead {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: -22px 0 34px auto;
  max-width: 960px;
}

.channel-lead p {
  max-width: 660px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
}

.channel-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.channel-grid a {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(251, 247, 239, 0.7);
  box-shadow: 0 20px 48px rgba(22, 20, 17, 0.1);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease;
}

.channel-grid a:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 58px rgba(22, 20, 17, 0.16);
}

.channel-grid img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #0f0d0b;
}

.channel-grid span {
  padding: 14px 15px;
  color: var(--burgundy);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.agenda {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(24px, 5vw, 70px);
  align-items: start;
}

.agenda-card {
  position: sticky;
  top: 120px;
  padding: clamp(30px, 5vw, 54px);
  background: var(--burgundy);
  color: var(--bone);
}

.agenda-card p:not(.eyebrow) {
  color: rgba(251, 247, 239, 0.78);
}

.agenda-list {
  display: grid;
  gap: 14px;
}

.agenda-event {
  display: grid;
  grid-template-columns: 136px 1fr;
  gap: clamp(18px, 3vw, 34px);
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid var(--line);
  background: rgba(251, 247, 239, 0.64);
  box-shadow: 0 18px 42px rgba(22, 20, 17, 0.08);
}

.agenda-event time {
  display: grid;
  align-content: center;
  min-height: 124px;
  padding: 16px;
  background: var(--ink);
  color: var(--bone);
  text-align: center;
}

.agenda-event time span {
  color: var(--ochre);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.agenda-event time strong {
  font-family: var(--serif);
  font-size: clamp(54px, 7vw, 84px);
  line-height: 0.9;
}

.agenda-event h3 {
  margin-bottom: 10px;
  font-size: clamp(27px, 3.2vw, 42px);
}

.agenda-event p {
  margin-bottom: 8px;
  color: var(--muted);
}

.agenda-event p:last-child {
  margin-bottom: 0;
  color: var(--ink);
  font-weight: 800;
}

.press-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 32px;
  align-items: start;
}

.press-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.press-images img {
  height: 380px;
  object-fit: cover;
}

.press-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.press-cloud a,
.video-links a {
  border: 1px solid var(--line);
  background: rgba(251, 247, 239, 0.62);
  padding: 12px 14px;
  color: var(--blue-gray);
  font-weight: 800;
}

.video-links,
.youtube-grid {
  margin-top: 28px;
}

.press-cloud a:hover,
.video-links a:hover {
  border-color: var(--burgundy);
  color: var(--burgundy);
}

.full-gallery-section {
  width: min(1480px, calc(100% - 32px));
}

.full-gallery {
  columns: 4 260px;
  column-gap: 20px;
  margin-top: 42px;
}

.gallery-item {
  display: inline-block;
  width: 100%;
  margin: 0 0 20px;
  break-inside: avoid;
  border: 1px solid var(--line);
  background: rgba(251, 247, 239, 0.72);
  box-shadow: 0 20px 46px rgba(22, 20, 17, 0.12);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease;
}

.gallery-item a {
  display: grid;
  min-width: 0;
}

.gallery-item img {
  width: 100%;
  height: auto;
  max-height: 460px;
  padding: 16px;
  object-fit: contain;
  background:
    linear-gradient(45deg, rgba(22, 20, 17, 0.045) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(22, 20, 17, 0.045) 25%, transparent 25%),
    var(--bone);
  background-size: 18px 18px;
  transition: transform 0.24s ease;
}

.gallery-item:hover {
  border-color: rgba(123, 31, 35, 0.45);
  box-shadow: 0 28px 58px rgba(22, 20, 17, 0.18);
  transform: translateY(-4px);
}

.youtube-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.youtube-grid a {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(251, 247, 239, 0.7);
  color: var(--ink);
  box-shadow: 0 20px 48px rgba(22, 20, 17, 0.1);
}

.youtube-grid img {
  height: 210px;
  object-fit: contain;
  background: #0f0d0b;
}

.youtube-grid span {
  padding: 14px 15px;
  color: var(--burgundy);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.contact-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(28px, 6vw, 82px);
  align-items: start;
  padding: clamp(80px, 10vw, 130px) max(16px, calc((100vw - 1180px) / 2));
  background: var(--ink);
  color: var(--bone);
}

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

.contact-copy p:not(.eyebrow) {
  max-width: 620px;
  color: rgba(251, 247, 239, 0.75);
  font-size: 19px;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.social-links a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  border: 1px solid var(--dark-line);
  padding: 11px 14px;
  color: var(--bone);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.social-links a:hover {
  border-color: var(--ochre);
  color: var(--ochre);
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 36px);
  border: 1px solid var(--dark-line);
  background: rgba(251, 247, 239, 0.06);
}

.form-honey {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: rgba(251, 247, 239, 0.8);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--dark-line);
  border-radius: 0;
  background: rgba(251, 247, 239, 0.9);
  color: var(--ink);
  font: 16px var(--sans);
  padding: 14px 15px;
}

.contact-form textarea {
  resize: vertical;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 20px max(16px, calc((100vw - 1180px) / 2));
  background: #0f0d0b;
  color: rgba(251, 247, 239, 0.58);
  font-size: 13px;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: rgba(251, 247, 239, 0.72);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.site-footer a:hover {
  color: var(--ochre);
}

.site-credit {
  color: rgba(251, 247, 239, 0.48);
}

.reveal {
  opacity: 1;
  transform: translateY(24px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

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

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

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
  }

  .brand {
    grid-column: 1;
    justify-self: start;
  }

  .brand span {
    width: 46px;
    height: 46px;
  }

  .brand img {
    width: 38px;
    height: 38px;
  }

  .brand strong {
    font-size: clamp(18px, 4vw, 23px);
  }

  .menu-toggle {
    grid-column: 2;
    justify-self: end;
    display: block;
  }

  .site-nav {
    grid-column: auto;
    position: fixed;
    top: 86px;
    left: 14px;
    right: 14px;
    display: grid;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--dark-line);
    background: rgba(22, 20, 17, 0.96);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition:
      opacity 0.2s ease,
      transform 0.2s ease;
  }

  .nav-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

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

  .hero::after {
    background:
      linear-gradient(0deg, rgba(22, 20, 17, 0.98) 0%, rgba(22, 20, 17, 0.76) 52%, rgba(22, 20, 17, 0.18) 100%),
      radial-gradient(circle at 30% 20%, rgba(183, 131, 60, 0.18), transparent 32%);
  }

  .hero-media img {
    object-position: 62% center;
  }

  .hero-copy {
    padding: 128px 20px 24px;
  }

  .hero-card {
    justify-self: start;
    margin: 0 20px 28px;
  }

  .intro-grid,
  .section-heading,
  .split-feature,
  .management-layout,
  .agenda,
  .press-layout,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .split-feature {
    min-height: auto;
  }

  .image-panel {
    height: 520px;
  }

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

  .editorial-gallery {
    grid-template-columns: 1fr 1fr;
  }

  .editorial-gallery figure.tall,
  .editorial-gallery figure.wide {
    grid-column: auto;
    grid-row: auto;
  }

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

  .critics-feature {
    grid-template-columns: 1fr;
  }

  .critics-stage {
    grid-template-rows: 240px 240px;
    min-height: 494px;
  }

  .critic-lead {
    min-height: auto;
  }

  .critics-grid {
    columns: 1;
  }

  .channel-lead {
    display: grid;
  }

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

  .agenda-card {
    position: static;
  }

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

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

  .brand strong {
    max-width: 190px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  h1 {
    font-size: clamp(58px, 18vw, 84px);
  }

  h2 {
    font-size: clamp(38px, 12vw, 58px);
  }

  .hero-copy {
    padding-top: 116px;
  }

  .hero-card strong {
    font-size: 27px;
  }

  .stat-row,
  .credential-grid,
  .editorial-gallery,
  .venue-strip,
  .press-images {
    grid-template-columns: 1fr;
  }

  .stat-row article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .stat-row article:last-child {
    border-bottom: 0;
  }

  .image-panel {
    height: 410px;
  }

  .feature-copy {
    padding: 44px 20px;
  }

  .editorial-gallery {
    grid-auto-rows: 320px;
  }

  .press-images img {
    height: 300px;
  }

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

  .spotify-grid iframe {
    height: 352px;
  }

  .critics-stage {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    min-height: auto;
  }

  .critics-photo,
  .critics-photo.main {
    grid-row: auto;
    min-height: 310px;
  }

  .critics-photo.accent {
    transform: none;
  }

  .critic-card {
    padding: 28px 22px;
  }

  .critic-card blockquote,
  .critic-lead blockquote,
  .critic-compact blockquote {
    font-size: clamp(21px, 7vw, 31px);
    line-height: 1.22;
  }

  .critics-photo-wall {
    columns: 2 140px;
  }

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

  .agenda-event {
    grid-template-columns: 1fr;
  }

  .agenda-event time {
    min-height: auto;
    grid-template-columns: auto auto;
    justify-content: start;
    gap: 12px;
    text-align: left;
  }

  .agenda-event time strong {
    font-size: 58px;
  }

  .full-gallery {
    columns: 1;
  }

  .gallery-item {
    margin-bottom: 18px;
  }

  .gallery-item img {
    max-height: 72vh;
    padding: 12px;
  }

  .site-footer {
    display: grid;
  }
}
