/*
 * Yorke press kit — page styles.
 * Loaded only on the "Press Kit — Yorke" page template.
 *
 * Everything is scoped under .epk. The label site is a white-ground design and
 * this page is dark, so unscoped selectors here would leak into the rest of the
 * theme. Class names such as .wrap, .btn and .quote already exist site-wide.
 */

body.epk-active {
  background: #0d0e14;
  color: #fff;
}

.epk {
  --ink: #0d0e14;
  --ink-2: #15161f;
  --line: rgba(255, 255, 255, .13);
  --muted-d: #8a8da1;
  background: var(--ink);
  color: var(--white);
}

.epk a { color: inherit; }
.epk ::selection { background: var(--pink); color: var(--white); }

/* ---------- section shell ---------- */
.epk .epk-sec { padding: clamp(56px, 9vh, 110px) clamp(16px, 4vw, 48px); }
/* Keep anchored headings clear of the two stacked sticky bars. */
.epk [id], .epk-subnav ~ * [id] { scroll-margin-top: calc(var(--mm-navh, 71px) + var(--mm-subnavh, 46px) + 10px); }
.epk .epk-wrap { max-width: 1180px; margin: 0 auto; }
/* Grid children default to min-width:auto, which lets a nowrap child push its
   column past the viewport on narrow screens. */
.epk .epk-wrap > *,
.epk .music-grid > *,
.epk .video-grid > *,
.epk .poster-grid > *,
.epk .quote-grid > * { min-width: 0; }

.epk .eyebrow {
  font-weight: 300; font-size: 12px; letter-spacing: .42em; text-transform: uppercase;
  color: var(--pink); margin-bottom: 14px;
}
.epk h2 {
  font-weight: 900; font-stretch: 95%; text-transform: uppercase;
  font-size: clamp(26px, 3.6vw, 40px); letter-spacing: .01em; margin-bottom: 26px;
  color: var(--white);
}
.epk h3.sub {
  font-weight: 900; font-stretch: 95%; text-transform: uppercase; font-size: 15px;
  letter-spacing: .16em; color: var(--lav); margin-bottom: 20px;
  padding-bottom: 12px; border-bottom: 1px solid var(--line);
}

/* ---------- section sub-nav ----------
   Horizontally scrollable rather than a burger, so it never collides with the
   site header's own mobile menu. */
/* Sits directly beneath the site header, which is itself sticky (z-index 80).
   --mm-navh is measured at runtime in epk.js because the header height changes
   with the logged-in admin bar and at the mobile breakpoint. */
.epk-subnav {
  position: sticky; top: var(--mm-navh, 71px); z-index: 40;
  display: flex; gap: 26px; align-items: center;
  padding: 12px clamp(16px, 4vw, 48px);
  background: color-mix(in srgb, #0d0e14 92%, transparent);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, .13);
  overflow-x: auto; -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.epk-subnav::-webkit-scrollbar { display: none; }
.epk-subnav a {
  font-size: 12px; letter-spacing: .18em; text-transform: uppercase; font-weight: 600;
  color: var(--lav); white-space: nowrap; transition: color .2s;
}
.epk-subnav a:hover { color: var(--pink); }
.epk-subnav .sn-cta {
  background: var(--pink); color: var(--white); border-radius: 99px;
  padding: 8px 16px; font-weight: 700; letter-spacing: .14em; margin-left: auto;
}
.epk-subnav .sn-cta:hover { background: var(--pink-2); color: var(--white); }

/* ---------- hero ---------- */
.epk .epk-hero {
  position: relative; display: flex; align-items: flex-end;
  min-height: min(84vh, 820px);
  padding: clamp(40px, 7vh, 90px) clamp(16px, 4vw, 48px);
  overflow: hidden; background: var(--ink);
}
.epk .hero-art { position: absolute; inset: 0; }
.epk .hero-art img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 30%;
  filter: grayscale(1) contrast(1.04);
}
.epk .hero-art::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(to right, rgba(13, 14, 20, .86) 0%, rgba(13, 14, 20, .55) 42%, rgba(13, 14, 20, .12) 70%),
    linear-gradient(to top, rgba(13, 14, 20, .92) 0%, transparent 45%);
}
.epk .hero-inner { position: relative; z-index: 1; max-width: 640px; }
.epk .hero-inner h1 {
  font-weight: 900; font-stretch: 95%; text-transform: uppercase;
  font-size: clamp(58px, 9vw, 120px); line-height: .92; letter-spacing: .01em;
  color: var(--white);
}
.epk .hero-inner .tag {
  margin-top: 22px; font-size: clamp(16px, 1.6vw, 19px); color: var(--lav); max-width: 44ch;
}
.epk .cta-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.epk .epk-btn {
  display: inline-flex; align-items: center; gap: 9px;
  border-radius: 99px; padding: 13px 26px;
  font-size: 13px; letter-spacing: .14em; text-transform: uppercase; font-weight: 700;
  transition: background .2s, color .2s, border-color .2s;
}
.epk .epk-btn.solid { background: var(--pink); color: var(--white); }
.epk .epk-btn.solid:hover { background: var(--pink-2); }
.epk .epk-btn.ghost { border: 1px solid var(--line); color: var(--white); }
.epk .epk-btn.ghost:hover { border-color: var(--pink); color: var(--pink); }
.epk .platforms { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 34px; }
.epk .platforms a {
  font-size: 11.5px; letter-spacing: .22em; text-transform: uppercase; font-weight: 600;
  color: var(--muted-d); border-bottom: 1px solid transparent; padding-bottom: 2px;
  transition: color .2s, border-color .2s;
}
.epk .platforms a:hover { color: var(--pink); border-color: var(--pink); }
@media (max-width: 860px) { .epk .epk-hero { min-height: min(78vh, 700px); } }

/* ---------- proof strip ---------- */
.epk .proof {
  background: var(--navy); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: 26px clamp(16px, 4vw, 48px);
}
.epk .proof .epk-wrap { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.epk .proof .cell { border-left: 2px solid var(--pink); padding-left: 16px; }
.epk .proof .n {
  font-weight: 900; font-stretch: 95%; font-size: clamp(19px, 2.2vw, 26px);
  text-transform: uppercase; line-height: 1.15;
}
.epk .proof .l {
  font-size: 11px; letter-spacing: .22em; text-transform: uppercase; color: var(--lav); margin-top: 5px;
}
@media (max-width: 860px) { .epk .proof .epk-wrap { grid-template-columns: repeat(2, 1fr); } }

/* ---------- about ---------- */
.epk .about .epk-wrap {
  display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(28px, 5vw, 70px); align-items: start;
}
.epk .about p { color: var(--lav); margin-bottom: 18px; max-width: 62ch; }
.epk .about p strong { color: var(--white); font-weight: 700; }
.epk .axes { margin-top: 30px; display: grid; gap: 14px; }
.epk .axis { border: 1px solid var(--line); background: var(--ink-2); padding: 16px 20px; }
.epk .axis .t {
  font-weight: 900; font-stretch: 95%; text-transform: uppercase; font-size: 14px; letter-spacing: .06em;
}
.epk .axis .d { font-size: 13.5px; color: var(--muted-d); margin-top: 4px; }
.epk .about-photo img { width: 100%; filter: grayscale(1) contrast(1.04); }
@media (max-width: 860px) { .epk .about .epk-wrap { grid-template-columns: 1fr; } }

/* ---------- music ---------- */
.epk .music { background: var(--navy); }
.epk .music-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.epk .embed-card { background: var(--ink-2); border: 1px solid var(--line); padding: 18px; }
.epk .embed-card .cap {
  display: flex; flex-wrap: wrap; justify-content: space-between; align-items: baseline;
  gap: 4px 10px; margin-bottom: 12px;
}
.epk .embed-card .cap .t { font-weight: 900; font-stretch: 95%; text-transform: uppercase; font-size: 15px; }
.epk .embed-card .cap .s {
  font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--pink); font-weight: 600;
}
.epk .embed-card iframe { width: 100%; border: 0; border-radius: 12px; display: block; }
.epk .single-note { margin-top: 26px; }
@media (max-width: 860px) { .epk .music-grid { grid-template-columns: 1fr; } }

/* ---------- videos ---------- */
.epk .video-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.epk .video-card .frame {
  position: relative; width: 100%; aspect-ratio: 16/9;
  background: var(--ink-2); border: 1px solid var(--line);
}
.epk .video-card iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.epk .video-card .cap {
  margin-top: 12px; font-size: 12px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--lav); font-weight: 600;
}
@media (max-width: 860px) { .epk .video-grid { grid-template-columns: 1fr; } }

/* ---------- visual still ---------- */
.epk .still-band .epk-wrap {
  display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(28px, 5vw, 70px); align-items: center;
}
.epk .still { max-width: 340px; }
/* Stills cross-fade in place. Ratio matches the 1170x2254 visualiser frame, and
   object-fit is contain rather than cover so an odd-sized still is letterboxed
   instead of cropped. */
.epk .still-stack {
  position: relative; aspect-ratio: 1170/2254;
  background: var(--ink); border: 1px solid var(--line);
}
.epk .still-stack img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain;
  opacity: 0; transition: opacity .6s ease;
}
.epk .still-stack img.on { opacity: 1; }
.epk .still-dots { display: flex; gap: 9px; margin-top: 14px; justify-content: center; }
.epk .still-dots button {
  width: 9px; height: 9px; padding: 0; border: 0; border-radius: 99px; cursor: pointer;
  background: rgba(255, 255, 255, .28); transition: background .2s, transform .2s;
}
.epk .still-dots button[aria-selected="true"] { background: var(--pink); transform: scale(1.3); }
.epk .still-dots button:hover { background: rgba(255, 255, 255, .5); }
.epk .still-copy p:last-child { color: var(--lav); max-width: 54ch; }
@media (max-width: 860px) {
  .epk .still-band .epk-wrap { grid-template-columns: 1fr; }
  .epk .still { max-width: 280px; }
}

/* ---------- live ---------- */
.epk .live { background: var(--navy); }
.epk .live .epk-wrap.live-top {
  display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(28px, 5vw, 70px); align-items: start;
}
.epk .live p { color: var(--lav); margin-bottom: 18px; max-width: 56ch; }
.epk .venue-list { list-style: none; margin-top: 8px; }
.epk .venue-list li {
  display: flex; justify-content: space-between; gap: 14px;
  padding: 13px 2px; border-bottom: 1px solid var(--line); font-size: 14.5px;
}
.epk .venue-list .v { font-weight: 700; }
.epk .venue-list .w {
  color: var(--muted-d); font-size: 12px; letter-spacing: .14em; text-transform: uppercase;
  align-self: center; text-align: right;
}
.epk .live-photo img { width: 100%; }
.epk .live-photo figcaption {
  font-size: 10px; letter-spacing: .3em; text-transform: uppercase; color: var(--muted-d); margin-top: 10px;
}
.epk .live-footage { margin-top: clamp(40px, 6vw, 64px); }
@media (max-width: 860px) { .epk .live .epk-wrap.live-top { grid-template-columns: 1fr; } }
@media (max-width: 560px) {
  .epk .venue-list li { flex-direction: column; gap: 3px; }
  .epk .venue-list .w { align-self: flex-start; text-align: left; }
}

/* ---------- billing posters ---------- */
.epk .posters h2 { margin-bottom: 8px; }
.epk .posters .lede { color: var(--lav); max-width: 64ch; margin-bottom: 34px; }
.epk .poster-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.epk .poster { display: flex; flex-direction: column; }
.epk .poster .frame {
  background: var(--ink); border: 1px solid var(--line);
  aspect-ratio: 3/4; display: flex; align-items: center; justify-content: center; overflow: hidden;
}
/* contain, never cover: these posters are mixed aspect ratios and must not crop */
.epk .poster .frame img { width: 100%; height: 100%; object-fit: contain; }
.epk .poster .role {
  display: inline-block; align-self: flex-start; margin-top: 14px;
  font-size: 10px; letter-spacing: .2em; text-transform: uppercase; font-weight: 700;
  padding: 4px 10px; border-radius: 99px;
}
.epk .role-head { background: var(--pink); color: var(--white); }
.epk .role-supp { border: 1px solid var(--line); color: var(--lav); }
.epk .poster .t { font-weight: 800; font-stretch: 95%; font-size: 14.5px; margin-top: 10px; line-height: 1.35; }
.epk .poster .m { font-size: 12px; color: var(--muted-d); margin-top: 3px; }
@media (max-width: 1000px) { .epk .poster-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .epk .poster-grid { grid-template-columns: 1fr; } }

/* ---------- press ---------- */
.epk .quote-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-bottom: 44px; }
.epk .quote {
  background: var(--ink-2); border: 1px solid var(--line); border-top: 3px solid var(--pink);
  padding: 26px 24px; display: flex; flex-direction: column; gap: 16px;
}
.epk .quote blockquote { font-size: 16.5px; line-height: 1.5; font-weight: 500; }
.epk .quote blockquote::before { content: "\201C"; color: var(--pink); font-weight: 900; }
.epk .quote blockquote::after { content: "\201D"; color: var(--pink); font-weight: 900; }
.epk .quote cite {
  font-style: normal; font-size: 11.5px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--lav); margin-top: auto;
}
.epk .quote cite a { transition: color .2s; }
.epk .quote cite a:hover { color: var(--pink); }
.epk .featured { display: flex; flex-wrap: wrap; gap: 10px 26px; align-items: center; margin-bottom: 52px; }
.epk .featured .fl {
  font-size: 11px; letter-spacing: .3em; text-transform: uppercase; color: var(--muted-d); margin-right: 6px;
}
.epk .featured a {
  font-weight: 800; font-stretch: 95%; text-transform: uppercase; font-size: 14px; color: var(--lav);
  border-bottom: 1px solid transparent; padding-bottom: 2px; transition: color .2s, border-color .2s;
}
.epk .featured a:hover { color: var(--pink); border-color: var(--pink); }
.epk .dl-list { list-style: none; border-top: 1px solid var(--line); }
.epk .dl-list li a {
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 16px 4px; border-bottom: 1px solid var(--line); transition: color .2s;
}
.epk .dl-list li a:hover { color: var(--pink); }
.epk .dl-list .n { font-weight: 700; font-size: 14.5px; }
.epk .dl-list .m {
  font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted-d); white-space: nowrap;
}
@media (max-width: 860px) { .epk .quote-grid { grid-template-columns: 1fr; } }

/* ---------- photos ---------- */
.epk .photos { background: var(--navy); }
.epk .photo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: start; }
.epk .photo-grid img { width: 100%; height: auto; }
.epk .photos .note { margin-top: 18px; font-size: 12.5px; color: var(--muted-d); }
.epk .photos .note a { color: var(--pink); font-weight: 700; }
@media (max-width: 700px) { .epk .photo-grid { grid-template-columns: 1fr; } }

/* ---------- contact ---------- */
.epk .epk-contact { text-align: center; }
.epk .epk-contact .email {
  display: inline-block; margin-top: 8px; max-width: 100%;
  font-weight: 900; font-stretch: 95%; font-size: clamp(16px, 4.4vw, 36px);
  text-transform: uppercase; letter-spacing: .01em; overflow-wrap: anywhere;
  border-bottom: 3px solid var(--pink); padding-bottom: 4px; transition: color .2s;
}
.epk .epk-contact .email:hover { color: var(--pink); }
.epk .epk-contact .who { margin-top: 22px; color: var(--lav); font-size: 14.5px; }
.epk .epk-contact .who strong { color: var(--white); }

/* ---------- scroll reveal ----------
   Applies only when the inline head script has set .js-anim, so with JS off or
   reduced motion on, every element is simply visible. */
html.js-anim .epk .reveal {
  opacity: 0; transform: translateY(20px);
  transition: opacity .7s cubic-bezier(.2, .7, .2, 1), transform .7s cubic-bezier(.2, .7, .2, 1);
  transition-delay: var(--d, 0ms);
}
html.js-anim .epk .reveal.in { opacity: 1; transform: none; }
html.js-anim .epk .hero-inner > * {
  opacity: 0; transform: translateY(22px);
  animation: epkHeroIn .85s cubic-bezier(.2, .7, .2, 1) forwards;
}
html.js-anim .epk .hero-inner > *:nth-child(1) { animation-delay: .10s; }
html.js-anim .epk .hero-inner > *:nth-child(2) { animation-delay: .18s; }
html.js-anim .epk .hero-inner > *:nth-child(3) { animation-delay: .26s; }
html.js-anim .epk .hero-inner > *:nth-child(4) { animation-delay: .34s; }
html.js-anim .epk .hero-inner > *:nth-child(5) { animation-delay: .42s; }
@keyframes epkHeroIn { to { opacity: 1; transform: none; } }
html.js-anim .epk .hero-art img { transform: scale(1.06); animation: epkArtIn 1.6s cubic-bezier(.2, .7, .2, 1) forwards; }
@keyframes epkArtIn { to { transform: scale(1); } }
@media (prefers-reduced-motion: reduce) {
  html.js-anim .epk .reveal,
  html.js-anim .epk .hero-inner > *,
  html.js-anim .epk .hero-art img {
    opacity: 1 !important; transform: none !important; animation: none !important; transition: none !important;
  }
}
