:root {
  --black: #08090c;
  --black-soft: #101218;
  --white: #f6f3ec;
  --muted: #aaa9ad;
  --blue: #b5ddfb;
  --blue-deep: #688ce4;
  --line: rgba(255,255,255,.14);
  --serif: "Playfair Display", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--white);
  background: var(--black);
  font-family: var(--sans);
  line-height: 1.5;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
img { display: block; width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: 92px;
  padding: 18px clamp(20px, 4vw, 70px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(to bottom, rgba(8,9,12,.9), transparent);
}
.brand { display: inline-flex; flex-direction: column; gap: 1px; }
.brand-kicker { color: var(--muted); font-size: .68rem; text-transform: uppercase; letter-spacing: .2em; }
.brand-title { font-family: var(--serif); font-size: clamp(1rem, 2vw, 1.45rem); }

.menu-button {
  width: 54px;
  height: 54px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(8,9,12,.5);
  backdrop-filter: blur(12px);
  display: grid;
  place-content: center;
  gap: 5px;
  cursor: pointer;
  z-index: 110;
}
.menu-button span { width: 22px; height: 1px; background: var(--white); transition: transform .35s, opacity .25s; }
.menu-button[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-button[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-button[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.menu-panel {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(5,6,9,.97);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: .35s ease;
}
.menu-panel.open { opacity: 1; visibility: visible; transform: none; }
.menu-inner {
  min-height: 100%;
  padding: 120px clamp(24px, 8vw, 150px) 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.menu-label { color: var(--blue); text-transform: uppercase; letter-spacing: .2em; font-size: .75rem; }
.menu-inner a {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--serif);
  font-size: clamp(2rem, 6vw, 5.5rem);
  line-height: 1.05;
  transition: color .2s, padding-left .2s;
}
.menu-inner a:hover { color: var(--blue); padding-left: 14px; }
.menu-inner a span { font-family: var(--sans); color: var(--muted); font-size: .75rem; }

.hero {
  min-height: 100svh;
  padding: 130px clamp(24px, 7vw, 130px) 72px;
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, .75fr);
  align-items: center;
  gap: clamp(40px, 8vw, 130px);
  overflow: hidden;
}
.hero-glow {
  position: absolute;
  width: 750px;
  height: 750px;
  right: -220px;
  top: -160px;
  background: radial-gradient(circle, rgba(104,140,228,.26), transparent 64%);
  pointer-events: none;
}
.eyebrow { margin: 0 0 18px; color: var(--blue); font-size: .76rem; font-weight: 600; text-transform: uppercase; letter-spacing: .2em; }
.hero h1, .section-heading h2, .contact h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -.045em;
  line-height: .98;
}
.hero h1 { font-size: clamp(4rem, 8vw, 8.5rem); }
.hero h1 em, .section-heading h2 em { color: var(--blue); font-weight: 500; }
.hero-text { max-width: 640px; margin: 30px 0; color: #d1d0d3; font-size: clamp(1rem, 1.5vw, 1.28rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.button {
  min-height: 48px;
  padding: 13px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-weight: 600;
}
.button-primary { background: var(--white); color: var(--black); }
.button-primary:hover { background: var(--blue); }
.button-ghost { border-color: var(--line); }
.button-ghost:hover { border-color: var(--white); }
.poster-wrap { margin: 0; position: relative; max-width: 520px; justify-self: end; }
.poster-wrap img { border-radius: 3px; box-shadow: 0 35px 80px rgba(0,0,0,.55); }
.poster-wrap figcaption { margin-top: 10px; color: var(--muted); font-size: .75rem; text-align: right; }
.scroll-cue { position: absolute; left: clamp(24px, 7vw, 130px); bottom: 30px; display: flex; align-items: center; gap: 12px; color: var(--muted); font-size: .72rem; text-transform: uppercase; letter-spacing: .18em; }
.scroll-cue i { display: block; width: 50px; height: 1px; background: var(--muted); }

.section { padding: clamp(95px, 12vw, 180px) clamp(24px, 7vw, 130px); }
.section-heading { max-width: 980px; margin-bottom: clamp(45px, 7vw, 90px); }
.section-heading.centered { margin-inline: auto; text-align: center; }
.section-heading h2, .contact h2 { font-size: clamp(3rem, 6.8vw, 7rem); }
.section-intro { max-width: 690px; margin-top: 24px; color: var(--muted); font-size: 1.05rem; }
.centered .section-intro { margin-inline: auto; }

.story { background: var(--white); color: var(--black); }
.story .eyebrow { color: #506fbe; }
.story-grid { display: grid; grid-template-columns: 1.12fr .88fr; gap: clamp(40px, 8vw, 120px); align-items: center; }
.story-image { overflow: hidden; border-radius: 28px; }
.story-image img { aspect-ratio: 16 / 10; object-fit: cover; transition: transform .7s; }
.story-image:hover img { transform: scale(1.025); }
.story-copy h3 { margin: 0 0 24px; font-family: var(--serif); font-size: clamp(2rem, 4vw, 4rem); font-weight: 500; }
.story-copy p { color: #46464a; }
.story-copy .lead { color: var(--black); font-size: clamp(1.2rem, 2vw, 1.65rem); }
.film-facts { margin: 38px 0 0; border-top: 1px solid rgba(0,0,0,.18); }
.film-facts div { padding: 16px 0; display: flex; justify-content: space-between; border-bottom: 1px solid rgba(0,0,0,.18); }
.film-facts dt { color: #777; }
.film-facts dd { margin: 0; font-weight: 600; }


/* Responsive Vimeo trailer */
.trailer-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 0%, rgba(104,140,228,.18), transparent 46%),
    #050609;
}
.trailer-section .section-heading { margin-bottom: clamp(34px, 5vw, 64px); }
.trailer-section .section-intro { margin-inline: auto; }
.trailer-player {
  width: min(1180px, 100%);
  margin-inline: auto;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: clamp(16px, 2.5vw, 30px);
  background: #000;
  box-shadow: 0 35px 100px rgba(0,0,0,.5);
}
.trailer-player iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.cast { background: #0b0d12; }
.cast-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 24px; }
.cast-card { position: relative; min-height: 650px; overflow: hidden; border-radius: 32px; }
.cast-card img { height: 100%; object-fit: cover; filter: saturate(.9); transition: transform .75s; }
.cast-card:hover img { transform: scale(1.035); }
.cast-overlay { position: absolute; inset: auto 0 0; padding: 120px 34px 30px; background: linear-gradient(transparent, rgba(0,0,0,.82)); }
.cast-overlay p { margin: 0; text-transform: uppercase; letter-spacing: .15em; font-size: .72rem; }
.cast-overlay h3 { margin: 3px 0 0; font-family: var(--serif); font-size: clamp(3rem, 6vw, 6rem); font-weight: 500; }

.creators { background: linear-gradient(180deg, #0b0d12, var(--black)); }
.creator-list { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.creator-card { padding: 16px; border: 1px solid var(--line); border-radius: 22px; display: flex; align-items: center; gap: 18px; background: rgba(255,255,255,.025); }
.creator-card img { width: 96px; aspect-ratio: 1; object-fit: cover; border-radius: 50%; }
.creator-card p { margin: 0 0 4px; color: var(--muted); font-size: .74rem; text-transform: uppercase; letter-spacing: .1em; }
.creator-card h3 { margin: 0; font-family: var(--serif); font-size: 1.45rem; font-weight: 500; }
.director-feature { margin-top: 90px; display: grid; grid-template-columns: .9fr 1.1fr; min-height: 660px; background: var(--blue); color: var(--black); border-radius: 36px; overflow: hidden; }
.director-copy { padding: clamp(35px, 6vw, 90px); align-self: center; }
.director-copy .eyebrow { color: #3859a8; }
.director-copy h3 { margin: 0 0 25px; font-family: var(--serif); font-size: clamp(3.2rem, 6vw, 6rem); font-weight: 500; }
.director-copy p { max-width: 600px; font-size: 1.05rem; }
.director-copy blockquote { margin: 35px 0; padding-left: 22px; border-left: 2px solid var(--black); font-family: var(--serif); font-size: clamp(1.5rem, 2.8vw, 2.4rem); font-style: italic; }
.director-copy a { text-decoration: underline; }
.director-feature > img { height: 100%; object-fit: cover; object-position: center 30%; }

.gallery-section { background: var(--white); color: var(--black); }
.gallery-section .eyebrow { color: #506fbe; }
.gallery-section .section-intro { color: #55565a; }
.stills-grid { display: grid; grid-template-columns: 1.3fr .7fr; grid-template-rows: repeat(2, 330px); gap: 18px; }
.still { margin: 0; position: relative; overflow: hidden; border-radius: 24px; }
.still-wide { grid-row: 1 / span 2; }
.still img { width: 100%; height: 100%; object-fit: cover; transition: transform .75s; }
.still:hover img { transform: scale(1.035); }
.still figcaption { position: absolute; inset: auto 0 0; padding: 70px 22px 18px; color: white; background: linear-gradient(transparent, rgba(0,0,0,.72)); }

.bts { background: #0b0d12; }
.bts-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.bts-card { border: 1px solid var(--line); border-radius: 26px; overflow: hidden; background: rgba(255,255,255,.025); }
.bts-card img { aspect-ratio: 4 / 3; object-fit: cover; }
.bts-card > div { padding: 26px; }
.bts-card span { color: var(--blue); font-size: .72rem; text-transform: uppercase; letter-spacing: .16em; }
.bts-card h3 { margin: 9px 0 12px; font-family: var(--serif); font-size: 2rem; font-weight: 500; line-height: 1.05; }
.bts-card p { color: var(--muted); }
.bts-placeholder { min-height: 100%; display: flex; flex-direction: column; justify-content: flex-end; background: linear-gradient(145deg, rgba(181,221,251,.15), rgba(104,140,228,.03)); }
.placeholder-mark { min-height: 260px; display: grid; place-items: center; font-family: var(--serif); font-size: 8rem; color: var(--blue); }

.contact { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(50px, 10vw, 150px); align-items: start; }
.contact-copy { position: sticky; top: 130px; }
.contact-copy > p:not(.eyebrow) { max-width: 520px; color: var(--muted); font-size: 1.08rem; }
.contact-email { display: block; width: fit-content; margin-top: 12px; border-bottom: 1px solid var(--white); }
.contact-copy .contact-email:first-of-type { margin-top: 25px; }
.contact-form { display: grid; gap: 20px; padding: clamp(26px, 4vw, 55px); background: var(--black-soft); border: 1px solid var(--line); border-radius: 28px; }
.contact-form label { display: grid; gap: 8px; color: #d3d2d5; font-size: .82rem; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; padding: 14px 0; border: 0; border-bottom: 1px solid var(--line); border-radius: 0; color: var(--white); background: transparent; outline: none; }
.contact-form select option { color: var(--black); }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--blue); }
.form-success { margin: 4px 0 0; color: var(--blue); font-size: .9rem; font-weight: 600; }
.form-note { margin: 0; color: var(--muted); font-size: .75rem; }

footer { min-height: 150px; padding: 35px clamp(24px, 7vw, 130px); display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 20px; border-top: 1px solid var(--line); color: var(--muted); font-size: .8rem; }
footer > a:last-child { justify-self: end; }
.footer-brand { color: var(--white); }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s ease, transform .8s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; padding-top: 125px; }
  .hero-copy { max-width: 760px; }
  .poster-wrap { justify-self: start; max-width: min(76vw, 520px); }
  .scroll-cue { display: none; }
  .story-grid, .director-feature, .contact { grid-template-columns: 1fr; }
  .creator-list, .bts-grid { grid-template-columns: 1fr; }
  .creator-card { max-width: 650px; }
  .director-feature > img { max-height: 620px; }
  .contact-copy { position: static; }
}

@media (max-width: 720px) {
  .site-header { height: 76px; padding: 13px 18px; }
  .brand-kicker { display: none; }
  .menu-button { width: 48px; height: 48px; }
  .hero { padding: 112px 20px 70px; gap: 50px; }
  .hero h1 { font-size: clamp(3.45rem, 17vw, 5.8rem); }
  .poster-wrap { max-width: 100%; }
  .section { padding: 90px 20px; }
  .section-heading h2, .contact h2 { font-size: clamp(3rem, 15vw, 5rem); }
  .cast-grid { grid-template-columns: 1fr; }
  .cast-card { min-height: 510px; }
  .creator-card img { width: 78px; }
  .director-feature { margin-top: 55px; border-radius: 24px; }
  .stills-grid { display: flex; flex-direction: column; }
  .still { min-height: 340px; }
  footer { grid-template-columns: 1fr; text-align: center; }
  footer > a:last-child { justify-self: center; }
}

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

/* Click-to-open movie still gallery */
.gallery-preview {
  padding: 0;
  border: 0;
  color: inherit;
  background: none;
  text-align: left;
  cursor: pointer;
}
.gallery-preview:focus-visible {
  outline: 3px solid #506fbe;
  outline-offset: 4px;
}
.still-overlay {
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  padding: 85px 22px 20px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  color: #fff;
  background: linear-gradient(transparent, rgba(0,0,0,.8));
}
.still-overlay strong {
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2.2vw, 2rem);
  font-weight: 500;
}
.still-overlay small {
  color: rgba(255,255,255,.75);
  text-transform: uppercase;
  letter-spacing: .12em;
}

.gallery-modal {
  width: min(1180px, calc(100% - 32px));
  max-height: calc(100svh - 32px);
  padding: 0;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 28px;
  color: var(--white);
  background: #0b0d12;
  overflow: auto;
}
.gallery-modal::backdrop {
  background: rgba(2,3,5,.88);
  backdrop-filter: blur(12px);
}
.gallery-modal-inner { padding: clamp(20px, 4vw, 46px); }
.gallery-modal-topbar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}
.gallery-modal-topbar .eyebrow { margin-bottom: 5px; }
.gallery-modal-topbar h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 500;
}
.gallery-close {
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--white);
  background: transparent;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}
.gallery-stage {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
}
.gallery-stage figure { margin: 0; min-width: 0; }
.gallery-stage img {
  width: 100%;
  max-height: 65svh;
  aspect-ratio: 16 / 10;
  object-fit: contain;
  border-radius: 18px;
  background: #050609;
}
.gallery-stage figcaption {
  min-height: 32px;
  padding-top: 10px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
  font-size: .88rem;
}
.gallery-arrow {
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--white);
  background: rgba(255,255,255,.04);
  cursor: pointer;
}
.gallery-arrow:hover,
.gallery-close:hover { background: rgba(255,255,255,.1); }
.gallery-thumbnails {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 10px;
}
.gallery-thumbnail {
  padding: 0;
  border: 2px solid transparent;
  border-radius: 10px;
  background: none;
  overflow: hidden;
  opacity: .58;
  cursor: pointer;
}
.gallery-thumbnail.active {
  border-color: var(--blue);
  opacity: 1;
}
.gallery-thumbnail img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

@media (max-width: 720px) {
  .still-overlay { align-items: flex-start; flex-direction: column; }
  .gallery-modal { width: calc(100% - 16px); max-height: calc(100svh - 16px); border-radius: 20px; }
  .gallery-modal-inner { padding: 18px; }
  .gallery-stage { grid-template-columns: 1fr 1fr; gap: 10px; }
  .gallery-stage figure { grid-column: 1 / -1; grid-row: 1; }
  .gallery-prev, .gallery-next { width: 100%; border-radius: 999px; }
  .gallery-stage figcaption { font-size: .78rem; }
  .gallery-thumbnails { grid-template-columns: repeat(3, 1fr); }
}

/* Four-part behind-the-scenes section */
.bts-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.bts-card {
  width: 100%;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 26px;
  color: var(--white);
  background: rgba(255,255,255,.025);
  text-align: left;
  overflow: hidden;
  cursor: pointer;
  transition: transform .35s ease, border-color .35s ease, background .35s ease;
}
.bts-card:hover {
  transform: translateY(-7px);
  border-color: rgba(181,221,251,.5);
  background: rgba(255,255,255,.045);
}
.bts-card:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 5px;
}
.bts-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform .65s ease;
}
.bts-card:hover img { transform: scale(1.04); }
.bts-card-copy {
  min-height: 290px;
  padding: 25px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.bts-card .bts-category,
.bts-card .bts-link {
  color: var(--blue);
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .15em;
}
.bts-card-copy > strong {
  margin: 10px 0 13px;
  font-family: var(--serif);
  font-size: clamp(1.65rem, 2.4vw, 2.2rem);
  font-weight: 500;
  line-height: 1.05;
}
.bts-card .bts-description {
  color: var(--muted);
  line-height: 1.65;
}
.bts-card .bts-link {
  margin-top: auto;
  padding-top: 24px;
}

.bts-modal {
  width: min(1120px, calc(100% - 32px));
  max-height: calc(100svh - 32px);
  padding: 0;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 28px;
  color: var(--white);
  background: #0b0d12;
  overflow: auto;
}
.bts-modal::backdrop {
  background: rgba(2,3,5,.88);
  backdrop-filter: blur(12px);
}
.bts-modal-inner { padding: clamp(24px, 4vw, 52px); }
.bts-modal-topbar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: clamp(28px, 5vw, 54px);
}
.bts-modal-topbar .eyebrow { margin-bottom: 6px; }
.bts-modal-topbar h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.6rem, 6vw, 5.5rem);
  font-weight: 500;
  line-height: 1;
}
.bts-modal-close {
  flex: 0 0 auto;
  width: 50px;
  height: 50px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--white);
  background: transparent;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}
.bts-modal-close:hover { background: rgba(255,255,255,.1); }
.bts-modal-content { min-height: 260px; }
.bts-popup-intro {
  max-width: 820px;
  margin-bottom: 36px;
}
.bts-popup-intro p {
  margin-top: 0;
  color: #d5d4d7;
  font-size: clamp(1.04rem, 1.8vw, 1.25rem);
  line-height: 1.8;
}
.bts-popup-intro-wide { max-width: 920px; }
.editable-note {
  padding-left: 18px;
  border-left: 2px solid var(--blue);
  color: var(--muted) !important;
  font-size: .92rem !important;
}

.equipment-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.equipment-item,
.post-grid article {
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255,255,255,.025);
}
.equipment-item span,
.post-grid span,
.artist-item span,
.playlist-callout span,
.bts-video-placeholder span {
  color: var(--blue);
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .15em;
}
.equipment-item h3,
.post-grid h3,
.artist-item h3,
.playlist-callout h3 {
  margin: 8px 0 12px;
  font-family: var(--serif);
  font-size: clamp(1.55rem, 2.6vw, 2.2rem);
  font-weight: 500;
  line-height: 1.08;
}
.equipment-item p,
.post-grid p,
.artist-item p,
.bts-video-placeholder p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.68;
}

.post-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.bts-quote {
  margin: 28px 0 0;
  padding: clamp(24px, 4vw, 42px);
  border-radius: 20px;
  color: var(--black);
  background: var(--blue);
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  font-style: italic;
  line-height: 1.35;
}

.artist-list { display: grid; gap: 14px; }
.artist-item {
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255,255,255,.025);
}
.artist-item h3 { margin-bottom: 5px; }
.artist-item p { margin: 0; }
.artist-item > a {
  flex: 0 0 auto;
  padding: 12px 16px;
  border: 1px solid rgba(181,221,251,.45);
  border-radius: 999px;
  color: var(--blue);
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .1em;
}
.artist-item > a:hover { background: rgba(181,221,251,.1); }
.playlist-callout {
  margin-top: 22px;
  padding: clamp(24px, 4vw, 40px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-radius: 22px;
  color: var(--black);
  background: var(--blue);
}
.playlist-callout span { color: #3859a8; }
.playlist-callout h3 { margin-bottom: 0; }
.playlist-callout .button-primary { flex: 0 0 auto; }

.on-set-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.on-set-gallery figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255,255,255,.025);
}
.on-set-gallery img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  cursor: zoom-in;
  transition: transform .35s ease;
}
.on-set-gallery figure:hover img { transform: scale(1.03); }
.on-set-gallery figcaption {
  padding: 14px 18px 18px;
  color: var(--muted);
  font-size: .82rem;
}

.photo-lightbox {
  width: min(1100px, calc(100% - 32px));
  max-height: calc(100svh - 32px);
  padding: 0;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 28px;
  background: #0b0d12;
  overflow: auto;
}
.photo-lightbox::backdrop {
  background: rgba(2,3,5,.88);
  backdrop-filter: blur(12px);
}
.photo-lightbox-inner { padding: clamp(20px, 4vw, 36px); }
.photo-lightbox-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}
.photo-lightbox-topbar h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.7rem, 4vw, 3rem);
  font-weight: 500;
}
.photo-lightbox-close {
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--white);
  background: transparent;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}
.photo-lightbox-close:hover { background: rgba(255,255,255,.1); }
.photo-lightbox img {
  display: block;
  width: 100%;
  max-height: 75svh;
  object-fit: contain;
  border-radius: 18px;
  background: #050609;
}

@media (max-width: 1120px) {
  .bts-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .post-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .bts-grid,
  .equipment-list,
  .on-set-gallery { grid-template-columns: 1fr; }
  .bts-card-copy { min-height: 250px; }
  .bts-modal { width: calc(100% - 16px); max-height: calc(100svh - 16px); border-radius: 20px; }
  .bts-modal-inner { padding: 18px; }
  .bts-modal-topbar { gap: 12px; }
  .bts-modal-close { width: 44px; height: 44px; }
  .photo-lightbox { width: calc(100% - 16px); max-height: calc(100svh - 16px); border-radius: 20px; }
  .photo-lightbox-inner { padding: 18px; }
  .photo-lightbox-close { width: 44px; height: 44px; }
  .artist-item,
  .playlist-callout { align-items: flex-start; flex-direction: column; }
  .artist-item > a,
  .playlist-callout .button-primary { width: 100%; text-align: center; }
}

/* Reset inherited card text styling from the original BTS cards. */
.bts-card .bts-card-copy {
  color: var(--white);
  font-size: 1rem;
  text-transform: none;
  letter-spacing: normal;
}
.bts-card-copy > strong,
.bts-card .bts-description {
  text-transform: none;
  letter-spacing: normal;
}
.bts-card .bts-description { font-size: .95rem; }
