:root {
  --bg: #050505;
  --bg-soft: #0d0d0e;
  --surface: #141415;
  --text: #f1f1ef;
  --muted: #a2a4a7;
  --line: rgba(255, 255, 255, 0.14);
  --accent: #d4d6d8;
  --accent-dark: #b8bbbe;
  --max: 1240px;
  --header-h: 80px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 20px); }
.page-top-anchor {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
a { color: inherit; }
img { display: block; max-width: 100%; }
button, input, textarea { font: inherit; }

::selection { background: var(--accent); color: var(--bg); }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -100px;
  z-index: 999;
  background: var(--accent);
  color: var(--bg);
  padding: 10px 14px;
  text-decoration: none;
  font-weight: 700;
}
.skip-link:focus { top: 16px; }

.container {
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 34px;
  border-bottom: 1px solid transparent;
  transition: background-color .25s ease, border-color .25s ease, backdrop-filter .25s ease;
}
.site-header.is-scrolled {
  background: rgba(5, 5, 5, .88);
  border-color: var(--line);
  backdrop-filter: blur(16px);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-decoration: none;
  text-transform: uppercase;
}
.brand-home-link {
  min-height: 48px;
  padding: 4px 8px 4px 4px;
  margin-left: -4px;
  border-radius: 999px;
}
.brand-home-link:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}
.brand-logo {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 50%;
  object-fit: contain;
}
.site-nav { display: flex; gap: 30px; }
.site-nav a {
  position: relative;
  color: var(--muted);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color .2s ease;
}
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 2px;
  background: var(--accent);
  transition: right .2s ease;
}
.site-nav a:hover, .site-nav a:focus-visible { color: var(--text); }
.site-nav a:hover::after, .site-nav a:focus-visible::after { right: 0; }
.menu-toggle { display: none; }

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  isolation: isolate;
  overflow: hidden;
  background: #050505;
}
.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}
.hero-media {
  left: 43%;
  overflow: hidden;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% 45%;
  filter: grayscale(1) contrast(1.08);
}
.hero-shade {
  z-index: 1;
  background:
    linear-gradient(90deg, #050505 0%, #050505 30%, rgba(5,5,5,.9) 43%, rgba(5,5,5,.35) 67%, rgba(5,5,5,.08) 100%),
    linear-gradient(0deg, rgba(5,5,5,.92) 0%, transparent 45%);
}
.hero-orbit {
  position: absolute;
  z-index: 2;
  border: 1px solid rgba(212,214,216,.24);
  border-radius: 50%;
  pointer-events: none;
}
.orbit-one { width: 44vw; height: 44vw; right: -15vw; top: 9vh; }
.orbit-two { width: 20vw; height: 20vw; right: 14vw; top: 30vh; border-style: dashed; }
.hero-content {
  position: relative;
  z-index: 3;
  padding-top: calc(var(--header-h) + 70px);
  padding-bottom: 10vh;
}
.eyebrow {
  margin: 0 0 20px;
  color: var(--accent);
  font-size: .71rem;
  font-weight: 900;
  letter-spacing: .24em;
  text-transform: uppercase;
}
.hero h1,
.section h2 {
  margin: 0;
  font-size: clamp(4.4rem, 12vw, 10rem);
  font-weight: 900;
  line-height: .78;
  letter-spacing: -.075em;
  text-transform: uppercase;
}
.hero h1 {
  max-width: 760px;
  font-size: clamp(5.6rem, 13vw, 11.5rem);
  text-transform: lowercase;
  letter-spacing: -.085em;
}
.hero-tagline {
  max-width: 640px;
  margin: 34px 0 0;
  color: #d7d7d3;
  font-size: clamp(1.05rem, 2vw, 1.45rem);
  line-height: 1.45;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border: 1px solid transparent;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .13em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform .2s ease, background-color .2s ease, color .2s ease, border-color .2s ease;
}
.button:hover, .button:focus-visible { transform: translateY(-2px); }
.button-primary { background: var(--accent); color: var(--bg); }
.button-primary:hover, .button-primary:focus-visible { background: var(--accent-dark); }
.button-ghost { border-color: rgba(255,255,255,.45); color: var(--text); }
.button-ghost:hover, .button-ghost:focus-visible { border-color: var(--text); background: rgba(255,255,255,.08); }
.scroll-cue {
  position: absolute;
  z-index: 4;
  right: 32px;
  bottom: 42px;
  display: flex;
  gap: 18px;
  align-items: center;
  color: var(--muted);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-decoration: none;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.section { padding: clamp(90px, 12vw, 170px) 0; }
.section h2 { font-size: clamp(3.5rem, 8vw, 7.8rem); }
.section-about { background: #eeeeeb; color: var(--bg); }
.about-grid { display: grid; grid-template-columns: .85fr 1.45fr; gap: clamp(50px, 10vw, 150px); align-items: start; }
.about-copy { max-width: 730px; padding-top: 16px; }
.about-copy .lead { margin: 0 0 42px; font-size: clamp(1.55rem, 3vw, 2.55rem); line-height: 1.16; letter-spacing: -.035em; }
.about-copy p:not(.lead) { max-width: 660px; color: #3e4448; font-size: 1rem; }
.about-copy p + p { margin-top: 22px; }
.fact-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 54px; background: rgba(11,13,15,.15); border: 1px solid rgba(11,13,15,.15); }
.fact { background: #eeeeeb; padding: 22px 18px; }
.fact span, .fact strong { display: block; }
.fact span { margin-bottom: 7px; color: #697074; font-size: .65rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.fact strong { font-size: .9rem; }

.section-music { background: var(--bg-soft); }
.section-topline { display: flex; justify-content: space-between; align-items: flex-end; gap: 60px; margin-bottom: 70px; }
.section-note { max-width: 420px; margin: 0; color: var(--muted); font-size: 1rem; line-height: 1.6; }
.link-grid { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.channel-card {
  min-height: 210px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: end;
  padding: 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  transition: background-color .25s ease, color .25s ease;
}
.channel-card:hover, .channel-card:focus-visible { background: var(--accent); color: var(--bg); }
.channel-number { align-self: start; color: var(--accent); font-size: .67rem; font-weight: 800; letter-spacing: .15em; }
.channel-card:hover .channel-number, .channel-card:focus-visible .channel-number { color: var(--bg); }
.channel-copy strong, .channel-copy small { display: block; }
.channel-copy strong { font-size: clamp(1.6rem, 3vw, 3rem); line-height: 1; letter-spacing: -.05em; }
.channel-copy small { margin-top: 12px; color: var(--muted); }
.channel-card:hover small, .channel-card:focus-visible small { color: rgba(11,13,15,.72); }
.channel-arrow { font-size: 1.5rem; }

.section-dates { background: var(--bg); }
.text-link { color: var(--accent); font-size: .75rem; font-weight: 800; letter-spacing: .14em; text-decoration: none; text-transform: uppercase; }
.dates-list { border-top: 1px solid var(--line); }
.date-row {
  display: grid;
  grid-template-columns: 190px 1.5fr 1fr auto;
  gap: 28px;
  align-items: center;
  min-height: 104px;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  transition: background-color .2s ease, padding .2s ease;
}
.date-row:hover, .date-row:focus-visible { background: rgba(255,255,255,.04); padding: 0 16px; }
.date-row time { color: var(--accent); font-size: .76rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.date-main strong, .date-main small { display: block; }
.date-main strong { font-size: 1.08rem; }
.date-main small, .date-city { margin-top: 6px; color: var(--muted); font-size: .82rem; }
.date-arrow { font-size: 1.25rem; }
.empty-state { padding: 50px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); color: var(--muted); }

.section-presskit { background: #d4d6d8; color: var(--bg); }
.section-presskit .eyebrow { color: var(--bg); opacity: .72; }
.presskit-grid { display: grid; grid-template-columns: .85fr 1.35fr; gap: clamp(50px, 9vw, 140px); }
.presskit-intro { max-width: 450px; margin: 40px 0 0; color: rgba(11,13,15,.72); }
.download-list { border-top: 1px solid rgba(11,13,15,.3); }
.download-row {
  display: grid;
  grid-template-columns: 46px 1fr auto 30px;
  gap: 20px;
  align-items: center;
  min-height: 110px;
  border-bottom: 1px solid rgba(11,13,15,.3);
  text-decoration: none;
  transition: background-color .2s ease, padding .2s ease;
}
.download-row:hover, .download-row:focus-visible { background: rgba(11,13,15,.08); padding: 0 14px; }
.download-index { font-size: .68rem; font-weight: 800; }
.download-copy strong, .download-copy small { display: block; }
.download-copy strong { font-size: clamp(1.25rem, 2vw, 1.8rem); letter-spacing: -.03em; }
.download-copy small { margin-top: 5px; color: rgba(11,13,15,.65); }
.download-type { font-size: .67rem; font-weight: 800; letter-spacing: .1em; }
.download-arrow { font-size: 1.25rem; }

.section-contact { background: #07090a; }
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(50px, 10vw, 160px); align-items: start; }
.contact-card { width: 100%; max-width: 720px; padding: clamp(28px, 5vw, 58px); border: 1px solid var(--line); background: var(--surface); }
.contact-card > p { max-width: 520px; margin: 0 0 18px; color: var(--muted); font-size: 1rem; line-height: 1.6; }
.contact-email { display: inline-flex; max-width: 100%; padding-bottom: 4px; border-bottom: 1px solid rgba(212,214,216,.55); color: var(--accent); font-size: clamp(1rem, 1.4vw, 1.2rem); font-weight: 700; line-height: 1.35; letter-spacing: 0; overflow-wrap: anywhere; text-decoration: none; transition: border-color .2s ease, color .2s ease; }
.contact-email:hover, .contact-email:focus-visible { border-color: var(--text); color: var(--text); }
.contact-meta { display: flex; flex-wrap: wrap; gap: 10px 28px; margin: 28px 0 30px; padding-top: 24px; border-top: 1px solid var(--line); color: var(--muted); font-size: .8rem; font-weight: 700; letter-spacing: .04em; }

.site-footer { padding: 60px 0 38px; border-top: 1px solid var(--line); background: #07090a; }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr auto; gap: 50px; align-items: start; }
.footer-brand { margin-bottom: 16px; }
.footer-brand .brand-logo { width: 48px; height: 48px; flex-basis: 48px; }
.site-footer p { margin: 0; color: var(--muted); font-size: .85rem; }
.footer-links, .footer-legal { display: flex; flex-direction: column; gap: 10px; }
.footer-links a, .footer-legal a, .footer-legal span { color: var(--muted); font-size: .73rem; font-weight: 700; letter-spacing: .08em; text-decoration: none; text-transform: uppercase; }
.footer-links a:hover, .footer-legal a:hover { color: var(--accent); }
.noscript { position: fixed; inset: auto 0 0; z-index: 999; padding: 15px; background: #b00020; color: #fff; text-align: center; }

.legal-page { min-height: 100vh; padding: calc(var(--header-h) + 80px) 0 100px; background: var(--text); color: var(--bg); }
.legal-page h1 { margin: 0 0 45px; font-size: clamp(3rem, 8vw, 7rem); line-height: .85; letter-spacing: -.06em; text-transform: uppercase; }
.legal-copy { max-width: 780px; }
.legal-copy h2 { margin-top: 42px; font-size: 1.35rem; }
.legal-copy p, .legal-copy li { color: #3e4448; }
.placeholder { display: inline-block; padding: 2px 6px; border: 1px dashed #8b2f2f; background: #fff4f4; color: #8b2f2f; font-weight: 700; }
.back-link { display: inline-block; margin-bottom: 34px; color: #333; font-weight: 700; text-decoration: none; }

@media (max-width: 920px) {
  :root { --header-h: 70px; }
  .site-header { padding: 0 22px; }
  .menu-toggle {
    display: grid;
    place-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--text);
    cursor: pointer;
  }
  .menu-toggle span:not(.sr-only) { width: 24px; height: 2px; background: currentColor; transition: transform .2s ease, opacity .2s ease; }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .site-nav {
    position: fixed;
    inset: var(--header-h) 0 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    padding: 30px;
    background: rgba(7,9,10,.98);
    transform: translateX(100%);
    transition: transform .25s ease;
  }
  .site-nav.is-open { transform: translateX(0); }
  .site-nav a { padding: 10px 0; font-size: clamp(1.7rem, 7vw, 3rem); letter-spacing: -.02em; text-transform: none; }
  .site-nav a::after { display: none; }
  .about-grid, .presskit-grid, .contact-grid { grid-template-columns: 1fr; }
  .about-grid, .presskit-grid { gap: 58px; }
  .section-topline { align-items: flex-start; flex-direction: column; gap: 30px; }
  .date-row { grid-template-columns: 150px 1fr auto; }
  .date-city { grid-column: 2; }
  .date-arrow { grid-row: 1 / span 2; grid-column: 3; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-legal { grid-column: 1 / -1; flex-direction: row; flex-wrap: wrap; }
}

@media (max-width: 640px) {
  .container { width: min(calc(100% - 30px), var(--max)); }
  .hero {
    min-height: max(780px, 100svh);
  }
  .hero-content {
    padding-top: min(54svh, 460px);
    padding-bottom: 72px;
  }
  .hero h1 { font-size: clamp(4.4rem, 23vw, 7rem); }
  .hero-shade {
    background:
      linear-gradient(0deg, #050505 0%, rgba(5,5,5,.98) 20%, rgba(5,5,5,.78) 42%, rgba(5,5,5,.16) 72%, rgba(5,5,5,.04) 100%),
      linear-gradient(90deg, rgba(5,5,5,.28) 0%, transparent 55%);
  }
  .hero-media {
    inset: 0 0 auto 0;
    height: 68%;
    left: 0;
  }
  .hero-media img {
    object-position: 54% 24%;
    opacity: 1;
  }
  .scroll-cue { display: none; }
  .section { padding: 82px 0; }
  .section h2 { font-size: clamp(3.2rem, 18vw, 5.3rem); }
  .fact-row, .link-grid { grid-template-columns: 1fr; }
  .channel-card { min-height: 165px; }
  .date-row { grid-template-columns: 1fr auto; gap: 10px 20px; padding: 24px 0; }
  .date-row:hover, .date-row:focus-visible { padding: 24px 12px; }
  .date-row time, .date-main, .date-city { grid-column: 1; }
  .date-arrow { grid-column: 2; grid-row: 1 / span 3; }
  .download-row { grid-template-columns: 30px 1fr 24px; gap: 12px; padding: 20px 0; }
  .download-row:hover, .download-row:focus-visible { padding: 20px 10px; }
  .download-type { grid-column: 2; }
  .download-arrow { grid-column: 3; grid-row: 1 / span 2; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-legal { grid-column: auto; }
}

@media (max-width: 640px) {
  .hero-actions .button { min-width: 0; }
  .contact-card { padding: 28px 22px 30px; }
  .contact-email { font-size: 1rem; }
  .contact-card .button { width: 100%; }
  .contact-meta { gap: 8px 18px; }
}

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

/* dreyer / R2K custom layer */
.hero-logo-watermark {
  position: absolute;
  z-index: 2;
  left: clamp(22px, 4vw, 64px);
  top: clamp(105px, 15vh, 160px);
  width: clamp(190px, 27vw, 430px);
  aspect-ratio: 1;
  border-radius: 50%;
  object-fit: contain;
  opacity: .095;
  pointer-events: none;
}

.format-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  padding: 9px 12px;
  border: 1px solid rgba(255,255,255,.28);
  background: rgba(5,5,5,.35);
  color: #e4e4e2;
  font-size: .67rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}
.format-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(212,214,216,.12);
}

.channel-card.is-disabled,
.download-row.is-disabled,
.date-row.is-disabled {
  cursor: default;
}
.channel-card.is-disabled {
  color: rgba(241,241,239,.78);
}
.channel-card.is-disabled .channel-number,
.channel-card.is-disabled .channel-arrow {
  color: #777a7d;
}
.channel-card.is-disabled:hover,
.channel-card.is-disabled:focus-visible {
  background: transparent;
  color: rgba(241,241,239,.78);
}
.download-row.is-disabled {
  color: rgba(5,5,5,.76);
}
.download-row.is-disabled:hover,
.download-row.is-disabled:focus-visible {
  padding: 0;
  background: transparent;
}
.button.is-disabled {
  opacity: .5;
  pointer-events: none;
}
.contact-email.is-disabled {
  color: #8f9295;
  cursor: default;
}

.agency-lockup {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 34px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}
.agency-lockup img {
  width: 78px;
  height: 78px;
  flex: 0 0 78px;
  border-radius: 50%;
  object-fit: contain;
}
.agency-lockup span,
.agency-lockup strong,
.agency-lockup small {
  display: block;
}
.agency-lockup span {
  color: var(--muted);
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.agency-lockup strong {
  margin-top: 2px;
  font-size: 1.8rem;
  line-height: 1.05;
  letter-spacing: -.05em;
}
.agency-lockup small {
  margin-top: 7px;
  color: var(--muted);
  font-size: .76rem;
}

.footer-grid.has-no-socials {
  grid-template-columns: 1fr auto;
}
.footer-grid.has-no-socials .footer-links {
  display: none;
}

@media (max-width: 920px) {
  .hero-media { left: 30%; }
  .hero-logo-watermark { opacity: .07; }
  .footer-grid.has-no-socials { grid-template-columns: 1fr auto; }
}

@media (max-width: 640px) {
  .hero-media { left: 0; }
  .brand { font-size: .68rem; letter-spacing: .12em; }
  .brand-logo { width: 34px; height: 34px; flex-basis: 34px; }
  .hero-logo-watermark { display: none; }
  .format-chip { margin-top: 18px; }
  .agency-lockup img { width: 66px; height: 66px; flex-basis: 66px; }
  .footer-grid.has-no-socials { grid-template-columns: 1fr; }
}

@media (max-width: 410px) {
  .site-header { padding-inline: 14px; }
  .brand { gap: 8px; }
  .brand-home-link { padding-right: 5px; }
}
