:root {
  --bg: #050506;
  --panel: #0a0a0c;
  --gold: #c8a474;
  --gold-soft: rgba(200, 164, 116, 0.82);
  --red: #b73a33;
  --red-soft: #7c2722;
  --line: rgba(200, 164, 116, 0.55);
  --line-soft: rgba(200, 164, 116, 0.22);
  --text: #dbc39f;
  --muted: #a9916e;
  --shadow: 0 14px 38px rgba(0,0,0,.45);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background:
    radial-gradient(circle at top center, rgba(255,255,255,.035), transparent 28%),
    linear-gradient(to bottom, #050506, #030304 55%, #020203);
  color: var(--text);
  font-family: Georgia, 'Times New Roman', serif;
  letter-spacing: .01em;
}

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

img { max-width: 100%; display: block; }

.site {
  max-width: 1440px;
  margin: 0 auto;
  padding: 14px 14px 34px;
}

.frame {
  border: 1px solid var(--line);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.015);
  background: linear-gradient(to bottom, rgba(8,8,9,.98), rgba(5,5,6,.98));
}

/* Header and navigation */

.topbar {
  display: grid;
  grid-template-columns: 170px 1fr;
  align-items: start;
  border-bottom: 1px solid var(--line-soft);
}

.logo-wrap {
  padding: 20px 18px 16px;
  border-right: 1px solid rgba(200,164,116,.16);
}

.logo-wrap img {
  width: 108px;
  height: auto;
}

.nav-wrap {
  padding: 18px 18px 12px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 34px;
  justify-content: center;
  flex-wrap: wrap;
  min-height: 48px;
  border-bottom: 1px solid var(--line-soft);
  padding: 4px 10px 12px;
}

.nav a {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: var(--gold);
  position: relative;
  padding-bottom: 8px;
}

.nav a.active,
.nav a:hover {
  color: #ead5b4;
}

.nav a.active::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--red);
}

.nav a.external::after {
  content: ' ↗';
  color: var(--gold-soft);
  font-size: .8em;
}

/* Home hero */

.hero {
  display: grid;
  grid-template-columns: 440px 1fr;
  min-height: 570px;
}

.hero-copy {
  padding: 34px 34px 28px;
}

.stack-title {
  font-size: 74px;
  line-height: .9;
  letter-spacing: .13em;
  margin: 6px 0 14px;
  text-transform: uppercase;
  color: #d8ba8b;
}

.stack-title span {
  display: block;
}

.divider-mark {
  display: flex;
  gap: 8px;
  margin: 18px 0 22px;
  color: var(--red);
}

.divider-mark::before,
.divider-mark::after {
  content: none;
}

.divider-mark span {
  width: 24px;
  height: 1px;
  background: var(--red);
  display: block;
}

.hero-tagline {
  font-size: 22px;
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: #d1ab77;
  margin: 12px 0 10px;
}

.hero-sub {
  font-style: italic;
  font-size: 22px;
  color: var(--muted);
  margin: 8px 0 28px;
}

.btn {
  display: inline-block;
  background: linear-gradient(to bottom, #8a2d28, #6c211d);
  border: 1px solid rgba(209,157,92,.75);
  color: #e6cfb3;
  text-transform: uppercase;
  letter-spacing: .12em;
  padding: 16px 28px;
  min-width: 250px;
  text-align: center;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.06), var(--shadow);
}

.btn small {
  display: block;
  margin-top: 4px;
  font-style: italic;
  text-transform: none;
  letter-spacing: .04em;
  color: #d8b98e;
}

.hero-art {
  position: relative;
  min-height: 570px;
  background:
    linear-gradient(to bottom, rgba(0,0,0,.08), rgba(0,0,0,.1)),
    url('assets/home/hero-castle-star.jpg') center center / cover no-repeat;
}

.hero-quote {
  position: absolute;
  right: 362px;
  top: 273px;
  max-width: 340px;
  font-style: italic;
  text-align: center;
  color: #d1ab77;
  font-size: 21px;
  line-height: 1.45;
  text-shadow: 0 2px 20px rgba(0,0,0,.8);
}

.hero-quote .byline {
  color: var(--red);
  display: block;
  margin-top: 16px;
  font-size: 18px;
}

/* Panels and cards */

.panel-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 0 0 16px;
}

.panel {
  border: 1px solid var(--line);
  margin: 0;
  background: linear-gradient(to bottom, rgba(8,8,9,.98), rgba(4,4,4,.98));
}

.panel-inner {
  padding: 10px 12px 14px;
}

.panel-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 10px;
  padding: 0 4px;
}

.panel-head h2 {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: .17em;
  font-size: 24px;
  font-weight: normal;
}

.panel-head a {
  color: var(--gold);
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: .14em;
}

.cards-row {
  display: grid;
  gap: 10px;
}

.cards-row.six {
  grid-template-columns: repeat(6, 1fr);
}

.cards-row.six.mission {
  gap: 8px;
}

.card,
.poster-card,
.mini-card {
  display: block;
}

.thumb-frame {
  border: 1px solid var(--line);
  background: #090909;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
}

.card .thumb-frame,
.poster-card .thumb-frame,
.mini-card .thumb-frame {
  aspect-ratio: 4 / 5;
}

.thumb-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  max-width: 100%;
}

.caption,
.subcaption {
  text-align: center;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .11em;
}

.caption {
  font-size: 12px;
  padding-top: 7px;
  min-height: 2.35em;
  line-height: 1.15;
  display: flex;
  align-items: center;
  justify-content: center;
}

.subcaption {
  font-size: 10px;
  color: var(--muted);
  padding-top: 2px;
  min-height: 1.35em;
  line-height: 1.15;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mission .caption {
  font-size: 10px;
}

.cards-row .card,
.cards-row .poster-card,
.cards-row .mini-card,
.grid-list .card,
.grid-list .poster-card,
.grid-list .mini-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.cards-row .thumb-frame,
.grid-list .thumb-frame,
.mission-cards .thumb-frame {
  flex: 0 0 auto;
}

.cards-row .card .caption,
.cards-row .poster-card .caption {
  min-height: 2.6em;
}

.cards-row .card .subcaption {
  min-height: 1.45em;
}

.cards-row.home-four {
  grid-template-columns: repeat(4, 1fr);
}

.cards-row.home-four.mission {
  grid-template-columns: repeat(4, 1fr);
}

.cards-row.home-four .caption,
.grid-list .caption {
  min-height: 2.6em;
  line-height: 1.12;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.cards-row.home-four .subcaption,
.grid-list .subcaption {
  min-height: 1.45em;
  line-height: 1.1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.cards-row,
.grid-list,
.mission-cards {
  align-items: start;
}

.cards-row > a,
.grid-list > a,
.mission-cards > a {
  width: 100%;
  max-width: 100%;
}

/* Footer quote */

.footer-quote {
  padding: 16px 0 28px;
  text-align: center;
  color: var(--gold);
  font-style: italic;
  font-size: 24px;
}

.footer-quote::before,
.footer-quote::after {
  content: '';
  display: block;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--line), transparent);
  margin: 0 24px 12px;
}

.footer-quote::after {
  margin: 12px 24px 0;
}

/* Inner pages */

.inner-page {
  padding: 24px 18px 28px;
}

.page-title {
  margin: 8px 0 24px;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-weight: normal;
  font-size: 76px;
  text-align: center;
}

.page-title.smallish {
  font-size: 64px;
}

.grid-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.grid-list.roster-large {
  grid-template-columns: repeat(4, 1fr);
}

.grid-list .card .thumb-frame,
.grid-list .poster-card .thumb-frame {
  aspect-ratio: 4 / 5;
}

/* Detail pages */

.detail-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-items: start;
}

.back-link {
  color: var(--gold);
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: .12em;
  display: inline-block;
  margin-bottom: 14px;
}

.big-image .thumb-frame {
  aspect-ratio: 4 / 5;
}

.thumb-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 12px;
}

.thumb-row.five {
  grid-template-columns: repeat(5, 1fr);
}

.thumb-row .thumb-frame {
  aspect-ratio: 1.06 / 1;
}

.second-image {
  margin-top: 22px;
}

.detail-title {
  margin: 12px 0 8px;
  font-weight: normal;
  text-transform: uppercase;
  letter-spacing: .15em;
  font-size: 72px;
  line-height: .95;
}

.detail-kicker {
  color: var(--red);
  font-size: 22px;
  font-style: italic;
  margin-bottom: 18px;
}

.copy-block {
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  padding: 22px 0;
  margin: 12px 0 20px;
  color: #c8ac83;
  font-size: 20px;
  line-height: 1.55;
}

.quote-block {
  text-align: center;
  font-style: italic;
  color: #d3b17a;
  font-size: 22px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line-soft);
}

.info-box {
  border: 1px solid var(--line);
  padding: 16px 22px;
  margin-top: 18px;
}

.info-box h3 {
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-weight: normal;
  font-size: 28px;
  text-align: center;
}

.work-list,
.credits-grid {
  color: #d6b585;
  font-size: 17px;
  line-height: 1.65;
}

.work-list .row,
.credits-grid .row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px dotted rgba(200,164,116,.3);
  padding: 7px 0;
}

.credits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 28px;
}

/* Stills and lightbox */

.film-stills-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 18px;
}

.film-stills-row .thumb-frame {
  aspect-ratio: 16 / 9;
}

.film-stills-row .thumb-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
}

.lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.lightbox.active {
  display: flex;
}

.lightbox-img {
  max-width: 92vw;
  max-height: 86vh;
  object-fit: contain;
  box-shadow: 0 20px 60px rgba(0,0,0,.7);
  border: 1px solid rgba(200, 164, 116, 0.45);
}

.lightbox-close {
  position: fixed;
  top: 22px;
  right: 32px;
  color: #dbc39f;
  font-size: 42px;
  line-height: 1;
  cursor: pointer;
}

.lightbox-trigger {
  cursor: pointer;
}

/* YouTube trailer embed */

.trailer-embed {
  margin-top: 32px;
  width: 100%;
  max-width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  overflow: hidden;
  border: 1px solid var(--line);
}

.trailer-embed iframe {
  width: 100% !important;
  height: 100% !important;
  display: block;
  border: 0;
}

/* Text-only glowing previous / next navigation */

.picture-nav,
.profile-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin: 34px 0 18px;
}

.picture-nav-link,
.profile-nav-link {
  display: block;
  border: none !important;
  padding: 8px 0;
  background: transparent !important;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .12em;
  transition: color .25s ease, text-shadow .25s ease;
}

.picture-nav-link span,
.profile-nav-link span {
  display: block;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 6px;
  transition: color .25s ease, text-shadow .25s ease;
}

.picture-nav-link strong,
.profile-nav-link strong {
  display: block;
  font-size: 18px;
  font-weight: normal;
  color: var(--gold);
  transition: color .25s ease, text-shadow .25s ease;
}

.picture-nav-link:hover,
.profile-nav-link:hover {
  transform: none !important;
  background: transparent !important;
  border: none !important;
}

.picture-nav-link:hover span,
.picture-nav-link:hover strong,
.profile-nav-link:hover span,
.profile-nav-link:hover strong {
  color: #f6dfb8;
  text-shadow:
    0 0 5px rgba(246, 223, 184, 0.75),
    0 0 12px rgba(200, 164, 116, 0.55),
    0 0 24px rgba(183, 58, 51, 0.32);
}

.picture-nav-link.disabled,
.profile-nav-link.disabled {
  opacity: .45;
  pointer-events: none;
}

/* Placeholder pages */

.placeholder-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 14px;
}

.placeholder-gallery .thumb-frame {
  aspect-ratio: 4 / 3;
}

.placeholder-note {
  border: 1px solid var(--line-soft);
  color: var(--muted);
  padding: 14px 16px;
  margin-top: 18px;
  font-size: 15px;
  line-height: 1.55;
}

.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.action-row .btn {
  min-width: 190px;
  padding: 13px 18px;
  font-size: 13px;
}

/* Mission page */

.mission-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
  margin-bottom: 22px;
}

.mission-button-wrap {
  margin-top: 24px;
  text-align: center;
}

.mission-statement {
  font-size: 26px;
  text-transform: uppercase;
  letter-spacing: .11em;
  line-height: 1.5;
  color: #d8ba8b;
  text-align: center;
}

.mission-subcopy {
  margin-top: 24px;
  text-align: left;
  color: #d0b183;
  font-size: 18px;
  line-height: 1.6;
}

.mission-subcopy p {
  max-width: 620px;
  margin: 0 auto 1em;
}

.mission-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 1120px;
  margin: 34px auto 0;
}

.mission-cards .mini-card .thumb-frame {
  aspect-ratio: 4 / 5;
}

.note {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
  margin-top: 8px;
}

/* Mission principles */

.mission-principles {
  max-width: 1350px;
  margin: 42px auto 0;
  display: grid;
  gap: 24px;
}

.mission-principle {
  display: grid;
  grid-template-columns: 480px 1fr;
  gap: 28px;
  align-items: stretch;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.24);
  padding: 18px;
}

.mission-principle-image {
  border: 1px solid var(--line);
  background: #090909;
  overflow: hidden;
  aspect-ratio: 4 / 5;
}

.mission-principle-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mission-principle-copy {
  border: 1px solid var(--line-soft);
  padding: 28px 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.mission-principle-copy h2 {
  margin: 0 0 18px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: normal;
  font-size: 28px;
}

.mission-principle-copy p {
  margin: 0;
  color: #c8ac83;
  font-size: 18px;
  line-height: 1.55;
}

.mission-principle-copy p + p {
  margin-top: 1.15em;
}

/* Join the Studio page */

.join-hero {
  display: grid;
  grid-template-columns: minmax(320px, 480px) 1fr;
  gap: 30px;
  align-items: stretch;
  margin-bottom: 36px;
}

.join-hero-image {
  aspect-ratio: 4 / 5;
  border: 1px solid var(--line);
  background: #090909;
  overflow: hidden;
}

.join-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.join-hero-copy,
.join-top-copy {
  border: 1px solid var(--line-soft);
  padding: 30px;
  background: rgba(0, 0, 0, 0.18);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.join-feature-frame {
  display: grid;
  grid-template-columns: minmax(320px, 520px) 1fr;
  gap: 28px;
  align-items: stretch;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.24);
  padding: 18px;
  margin: 34px auto 42px;
}

.join-feature-image {
  border: 1px solid var(--line);
  background: #090909;
  overflow: hidden;
  aspect-ratio: 4 / 5;
}

.join-feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.join-feature-copy {
  border: 1px solid var(--line-soft);
  padding: 30px;
  color: #c8ac83;
  font-size: 20px;
  line-height: 1.55;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.join-feature-copy h2 {
  margin: 0 0 20px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: normal;
  font-size: 32px;
  line-height: 1.15;
}

.join-feature-copy p {
  margin: 0;
}

.join-feature-copy p + p {
  margin-top: 1.15em;
}

.join-section-heading {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
  margin: 46px 0 24px;
}

.join-section-heading span {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--line), transparent);
}

.join-section-heading h2 {
  margin: 0;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-weight: normal;
  font-size: 42px;
}

.stakeholder-frame {
  display: grid;
  grid-template-columns: minmax(320px, 520px) 1fr;
  gap: 28px;
  align-items: stretch;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.24);
  padding: 18px;
  margin: 34px auto 42px;
}

.stakeholder-image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  align-content: start;
}

.stakeholder-image-card {
  border: 1px solid var(--line);
  background: #090909;
  overflow: hidden;
}

.stakeholder-thumb {
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.stakeholder-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stakeholder-caption {
  min-height: 3.1em;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8px 6px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .11em;
  font-size: 11px;
  line-height: 1.15;
  border-top: 1px solid var(--line-soft);
}

.stakeholder-copy-panel {
  border: 1px solid var(--line-soft);
  padding: 30px;
  color: #c8ac83;
  font-size: 20px;
  line-height: 1.55;
}

.stakeholder-copy-panel h2 {
  margin: 0 0 18px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: normal;
  font-size: 32px;
  line-height: 1.15;
}

.stakeholder-copy-panel p {
  margin: 0;
}

.stakeholder-copy-panel p + p {
  margin-top: 1.15em;
}

.join-kicker {
  color: var(--red);
  font-style: italic;
  font-size: 18px;
  margin-bottom: 10px;
}

.join-button-row {
  margin-top: 28px;
  text-align: center;
}

.join-closing-frame {
  max-width: 940px;
  margin: 38px auto 0;
  text-align: center;
  color: #d8ba8b;
  font-size: 24px;
  line-height: 1.45;
  font-style: italic;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  padding: 24px 28px;
}

/* ==================================================
   RESPONSIVE CSS START
   Everything below this heading changes layout for tablets/phones.
   Do not paste normal desktop/global styles inside these @media blocks.
================================================== */

/* Responsive layout */

@media (max-width: 1180px) {
  .hero {
    grid-template-columns: 390px 1fr;
  }

  .hero-art {
    min-height: 500px;
  }

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

  .cards-row.home-four {
    grid-template-columns: repeat(4, 1fr);
  }

  .grid-list,
  .grid-list.roster-large {
    grid-template-columns: repeat(4, 1fr);
  }

  .mission-cards {
    grid-template-columns: repeat(3, 1fr);
    max-width: 1120px;
  }

  .detail-layout,
  .mission-layout,
  .credits-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 950px) {
  .hero,
  .detail-layout,
  .mission-layout,
  .credits-grid,
  .join-hero,
  .join-feature-frame,
  .stakeholder-frame {
    grid-template-columns: 1fr;
  }

  .hero-art {
    min-height: 430px;
  }

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

  .cards-row.home-four {
    grid-template-columns: repeat(4, 1fr);
  }

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

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

  .logo-wrap {
    border-right: none;
    display: flex;
    justify-content: center;
  }

  .nav {
    gap: 18px;
  }

  .stack-title {
    font-size: 56px;
  }

  .page-title,
  .detail-title {
    font-size: 48px;
  }

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

  .mission-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    max-width: 100%;
  }

  .cards-row.home-four {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-copy {
    padding: 22px;
    text-align: center;
  }

  .hero-copy .divider-mark {
    justify-content: center;
  }

  .hero-copy .btn {
    margin-left: auto;
    margin-right: auto;
  }



  .hero-quote {
    position: static;
    max-width: none;
    padding: 16px;
    background: rgba(0,0,0,.45);
    margin: auto 0 0;
  }

  .hero-art {
    display: flex;
    align-items: flex-end;
    min-height: 430px;
    background-position: 60% center;
  }

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

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

@media (max-width: 760px) {
  .picture-nav,
  .profile-nav {
    grid-template-columns: 1fr;
  }

  .mission-principle {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 540px) {
  .mission-principle-copy p,
  .pillar-copy p,
  .mission-subcopy p,
  .join-feature-copy p,
  .stakeholder-copy-panel p,
  .join-closing-frame p {
    font-size: 16px;
    line-height: 1.55;
  }

  .mission-principle-copy h2,
  .join-feature-copy h2,
  .stakeholder-copy-panel h2 {
    font-size: 24px;
    line-height: 1.15;
  }

  .mission-statement {
    font-size: 20px;
    line-height: 1.25;
  }
}

@media (max-width: 540px) {
  .copy-block,
  .profile-copy,
  .star-copy,
  .filmmaker-copy,
  .picture-copy,
  .product-copy,
  .shop-copy,
  .product-description,
  .shop-product-copy,
  .detail-layout p,
  .shop-detail p {
    font-size: 16px;
    line-height: 1.55;
  }

  .copy-block {
    line-height: 1.58;
  }

  .detail-title,
  .product-title {
    font-size: 34px;
    line-height: 1.05;
  }

  .detail-kicker,
  .product-kicker {
    font-size: 16px;
    line-height: 1.35;
  }

  .info-box,
  .quote-block,
  .special-features,
  .product-note {
    font-size: 16px;
    line-height: 1.5;
  }

  .info-box h3,
  .special-features h3,
  .product-section-title {
    font-size: 20px;
    line-height: 1.15;
  }

}

@media (max-width: 540px) {
  .thumb-row,
  .thumb-row.five {
    grid-template-columns: 1fr;
  }



  /* Keep Stars, Filmmakers and Pictures listing pages two per row on mobile */
  .grid-list,
  .grid-list.roster-large {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .grid-list .caption {
    font-size: 10px;
    letter-spacing: .08em;
    min-height: 2.8em;
  }

  .grid-list .subcaption {
    font-size: 9px;
    min-height: 1.6em;
  }

  /* Keep homepage image cards two per row on mobile */
  .cards-row.home-four {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .cards-row.home-four .caption {
    font-size: 10px;
    letter-spacing: .08em;
    min-height: 2.8em;
  }

  .cards-row.home-four .subcaption {
    font-size: 9px;
    min-height: 1.6em;
  }

  .mission-cards,
  .stakeholder-image-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .stack-title {
    font-size: 42px;
  }

  .page-title,
  .detail-title {
    font-size: 36px;
  }

  .page-title.smallish {
    font-size: 36px;
    letter-spacing: .14em;
    line-height: 1.1;
  }

  .detail-kicker,
  .hero-sub,
  .footer-quote {
    font-size: 18px;
  }

  .join-section-heading {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .join-section-heading span {
    display: none;
  }

  .join-section-heading h2 {
    font-size: 32px;
  }

  .join-feature-copy h2,
  .stakeholder-copy-panel h2 {
    font-size: 26px;
  }

  .join-closing-frame {
    font-size: 19px;
  }

  .btn {
    width: 100%;
    min-width: 0;
  }
}

/* ==================================================
   RESPONSIVE CSS END
   Normal/global CSS may be added below this line.
================================================== */

/* --------------------------------------------------
   SHOP PRODUCT PAGE
-------------------------------------------------- */

.shop-intro {
  max-width: 920px;
  margin: 0 auto 34px;
  text-align: center;
  color: #d0b183;
  font-size: 20px;
  line-height: 1.6;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  padding: 22px 24px;
}

.shop-intro strong {
  color: #d8ba8b;
  font-weight: normal;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  align-items: start;
}

.shop-card {
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.24);
  padding: 12px;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.shop-card .thumb-frame {
  aspect-ratio: 4 / 5;
}

.shop-card-copy {
  border-top: 1px solid var(--line-soft);
  margin-top: 10px;
  padding-top: 12px;
  text-align: center;
}

.shop-title {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .11em;
  font-size: 14px;
  line-height: 1.2;
  min-height: 2.7em;
  display: flex;
  align-items: center;
  justify-content: center;
}

.shop-format {
  color: var(--muted);
  font-size: 13px;
  font-style: italic;
  margin: 8px 0 10px;
  min-height: 2.6em;
  line-height: 1.35;
}

.shop-price {
  color: #d8ba8b;
  font-size: 18px;
  margin: 10px 0 14px;
  letter-spacing: .06em;
}

.shop-card .btn,
.shop-buy-panel .btn {
  width: 100%;
  min-width: 0;
  cursor: pointer;
  font-family: Georgia, 'Times New Roman', serif;
}

/* Shop product buy panel */

.shop-buy-panel {
  margin-top: 28px;
  padding: 24px;
  border: 1px solid rgba(200, 164, 116, 0.45);
  background:
    radial-gradient(circle at top left, rgba(183, 58, 51, 0.22), transparent 42%),
    linear-gradient(180deg, rgba(16, 12, 10, 0.96), rgba(5, 5, 6, 0.96));
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.55);
  text-align: left;
}

.shop-buy-panel h3 {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 1.35rem;
  font-weight: normal;
  letter-spacing: 0.04em;
  text-transform: none;
}

.shop-buy-panel p {
  margin: 0 0 18px;
  color: var(--text);
  font-size: 1rem;
  line-height: 1.55;
}

.edition-label {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.edition-select {
  display: block;
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(200, 164, 116, 0.5);
  border-radius: 0;
  background: #050506;
  color: var(--text);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1rem;
  line-height: 1.4;
  outline: none;
}

.edition-select:focus {
  border-color: var(--gold);
}

/* Keep the native dropdown readable on Windows/Chrome */
.edition-select option {
  background-color: #080304;
  color: #f0d5a5;
}

.edition-select option:checked {
  background-color: #6f1715;
  color: #fff0d0;
}

.shop-price-large {
  margin-top: 18px;
  color: var(--gold);
  font-size: 1.6rem;
  line-height: 1;
  letter-spacing: 0.03em;
}

.edition-note {
  margin-top: 10px;
  color: var(--text);
  line-height: 1.5;
  font-size: 0.98rem;
  font-style: normal;
}

.edition-button {
  display: flex;
  width: 100%;
  min-height: 66px;
  margin-top: 20px;
  padding: 14px 20px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  border: 1px solid rgba(200, 164, 116, 0.55);
  background: linear-gradient(180deg, #9a2f2a, #6f1e1a);
  color: #f2d9ad;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.38);
  transition:
    transform 0.2s ease,
    background 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease,
    box-shadow 0.25s ease;
}

.edition-button:hover {
  background: linear-gradient(180deg, #b23a33, #84241f);
  transform: translateY(-1px);
}

.edition-button small,
.shop-buy-panel .btn small {
  display: block;
  margin-top: 4px;
  color: rgba(242, 217, 173, 0.86);
  font-size: 0.82rem;
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.05em;
  text-transform: none;
  opacity: 1;
}

/* Digital download: original red */
.edition-button.edition-digital {
  background: linear-gradient(180deg, #9a2f2a, #6f1e1a);
  border-color: rgba(200, 164, 116, 0.55);
  color: #f2d9ad;
}

/* Blu-ray: darker, richer red */
.edition-button.edition-bluray {
  background: linear-gradient(180deg, #8f2821 0%, #5f1815 100%);
  border-color: rgba(200, 164, 116, 0.72);
  color: #f6ddb5;
  box-shadow: 0 0 18px rgba(143, 40, 33, 0.18), 0 14px 30px rgba(0, 0, 0, 0.38);
}

/* Signed Blu-ray: deepest collector red */
.edition-button.edition-signed {
  background: linear-gradient(180deg, #6f1715 0%, #350908 100%);
  border-color: rgba(216, 186, 139, 0.88);
  color: #f7e1bd;
  box-shadow: 0 0 24px rgba(111, 23, 21, 0.28), 0 14px 30px rgba(0, 0, 0, 0.38);
}

.edition-button.edition-bluray:hover,
.edition-button.edition-signed:hover {
  color: #fff0d0;
  border-color: var(--gold);
}

.snipcart-basket-link {
  display: table;
  margin: 16px auto 0;
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 1px solid rgba(200, 164, 116, 0.45);
  padding-bottom: 4px;
}

.snipcart-basket-link:hover {
  color: var(--text);
  border-bottom-color: var(--text);
}

/* These Snipcart buttons are only used by the visible Add to Basket button.
   They must never appear visually on the page. */
.snipcart-hidden-product {
  display: none !important;
  visibility: hidden !important;
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* ==================================================
   SHOP RESPONSIVE CSS START
   The @media blocks below only affect the shop on smaller screens.
   Add normal shop styling ABOVE this section, not inside these blocks.
================================================== */

@media (max-width: 950px) {
  .shop-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 820px) {
  .shop-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 540px) {
  .shop-intro {
    font-size: 18px;
  }

  .shop-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .shop-card {
    padding: 8px;
  }

  .shop-title {
    font-size: 10px;
    letter-spacing: .08em;
  }

  .shop-format {
    font-size: 11px;
  }

  .shop-price {
    font-size: 15px;
  }

  .shop-card .btn,
  .shop-buy-panel .btn {
    font-size: 10px;
    padding: 11px 8px;
    letter-spacing: .08em;
  }

  .shop-buy-panel h3 {
    font-size: 24px;
  }

  .shop-price-large {
    font-size: 22px;
  }

  .edition-select {
    font-size: 14px;
    padding: 12px 10px;
  }

  .shop-buy-panel .btn small {
    font-size: 9px;
  }


}

/* ==================================================
   SHOP RESPONSIVE CSS END
   Normal/global CSS may be added below this line.
================================================== */

/* Consistent paragraph spacing inside film descriptions */

.copy-block p {
  margin: 0 0 1.05em;
}

.copy-block p:last-child {
  margin-bottom: 0;
}

.big-image + section + .shop-buy-panel {
  margin-top: 30px;
}