:root {
  --btb-black: #050208;
  --btb-deep-purple: #120018;
  --btb-purple: #32104a;
  --btb-gold: #d8a91d;
  --btb-bright-gold: #f2c230;
  --btb-white: #ffffff;
  --btb-soft-white: #f7f1ff;
  --btb-muted: rgba(255, 255, 255, 0.76);
  --btb-card: rgba(22, 6, 36, 0.92);
  --btb-card-border: rgba(216, 169, 29, 0.48);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.page-media {
  margin: 0;
  background: var(--btb-black);
  color: var(--btb-white);
  overflow-x: hidden;
  font-family: Arial, Helvetica, sans-serif;
}

body.page-media a {
  color: inherit;
}

.media-hero {
  position: relative;
  min-height: 630px;
  color: var(--btb-white);
  overflow: hidden;
  background:
    linear-gradient(90deg,
      rgba(2, 1, 6, 0.94) 0%,
      rgba(5, 2, 12, 0.78) 29%,
      rgba(5, 2, 12, 0.26) 58%,
      rgba(5, 2, 12, 0.06) 100%),
    url("../assets/media-hero-studio.webp") center center / cover no-repeat;
}

.site-header {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 34px;
  padding: 26px clamp(28px, 5vw, 60px) 0;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex: 0 0 auto;
}

.site-logo {
  display: block;
  width: clamp(245px, 25vw, 345px);
  max-width: 100%;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(18px, 3vw, 42px);
  flex-wrap: wrap;
  padding-top: 12px;
}

.main-nav a {
  position: relative;
  color: var(--btb-white);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: clamp(0.78rem, 1.05vw, 0.94rem);
  font-weight: 900;
  padding: 0 0 12px;
  line-height: 1.1;
  transition: color 180ms ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: var(--btb-gold);
  border-radius: 999px;
  opacity: 0;
  transform: scaleX(0.55);
  transition: opacity 180ms ease, transform 180ms ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--btb-bright-gold);
}

.main-nav a:hover::after,
.main-nav a.active::after {
  opacity: 1;
  transform: scaleX(1);
}

.media-hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding: clamp(28px, 4vw, 54px) 0 145px clamp(34px, 6vw, 82px);
}

.script-title {
  margin: 0 0 0 120px;
  color: var(--btb-gold);
  font-family: "Brush Script MT", "Segoe Script", "Lucida Handwriting", cursive;
  font-size: clamp(3rem, 5vw, 4.6rem);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: 0.02em;
}

.media-hero h1 {
  margin: 2px 0 0;
  color: var(--btb-white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.1rem, 6.4vw, 5.75rem);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-shadow: 0 12px 34px rgba(0, 0, 0, 0.85);
}

.gold-divider {
  display: flex;
  align-items: center;
  gap: 18px;
  width: min(470px, 85vw);
  margin: 18px 0 18px;
  color: var(--btb-gold);
}

.gold-divider span {
  height: 3px;
  flex: 1;
  background: var(--btb-gold);
  box-shadow: 0 0 12px rgba(216, 169, 29, 0.28);
}

.gold-divider strong {
  color: var(--btb-bright-gold);
  font-size: 23px;
  line-height: 1;
}

.hero-text {
  margin: 0;
  max-width: 520px;
  color: var(--btb-soft-white);
  font-size: clamp(1.14rem, 2vw, 1.55rem);
  line-height: 1.42;
  letter-spacing: 0.02em;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.85);
}

main {
  background:
    radial-gradient(circle at 88% 4%, rgba(102, 28, 142, 0.25), transparent 32%),
    radial-gradient(circle at 0% 80%, rgba(216, 169, 29, 0.11), transparent 24%),
    linear-gradient(180deg, #13001d 0%, #08020c 70%, #050208 100%);
}

.archive-section {
  width: min(1400px, calc(100% - 56px));
  margin: 0 auto;
  padding: 34px 0 54px;
}

.section-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 18px;
  color: var(--btb-gold);
}

.section-heading span {
  height: 1px;
  flex: 1;
  max-width: 420px;
  background: linear-gradient(90deg, transparent, rgba(216, 169, 29, 0.78), transparent);
}

.section-heading h2 {
  margin: 0;
  color: var(--btb-white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.3rem, 2.3vw, 2rem);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
}

.section-heading strong {
  color: var(--btb-bright-gold);
  font-size: 1.15rem;
}

.archive-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 28px);
}

.archive-card {
  position: relative;
  min-height: 310px;
  overflow: hidden;
  border: 1px solid var(--btb-card-border);
  border-radius: 16px;
  background: var(--btb-card);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.archive-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.06), transparent 36%, rgba(216, 169, 29, 0.08));
}

.archive-badge {
  position: absolute;
  z-index: 4;
  top: 12px;
  left: 14px;
  min-width: 64px;
  padding: 5px 12px;
  border-radius: 999px;
  background: linear-gradient(180deg, #f6cc43, #b9850f);
  color: #08020c;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.38);
}

.archive-image {
  display: block;
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-bottom: 1px solid rgba(216, 169, 29, 0.28);
}

.archive-copy {
  position: relative;
  z-index: 2;
  padding: 14px 20px 20px;
}

.archive-copy h3,
.placeholder-card h3 {
  margin: 0 0 8px;
  color: var(--btb-white);
  font-size: clamp(1.05rem, 1.45vw, 1.26rem);
  line-height: 1.12;
  letter-spacing: 0.01em;
}

.archive-copy p,
.placeholder-card p {
  margin: 0;
  color: var(--btb-muted);
  font-size: 0.95rem;
  line-height: 1.35;
}

.gold-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 14px;
  min-width: 150px;
  padding: 8px 18px;
  border: 2px solid var(--btb-gold);
  border-radius: 999px;
  background: linear-gradient(180deg, #f1c743, #b68510);
  color: #09030d;
  text-decoration: none;
  font-size: 0.94rem;
  font-weight: 900;
  box-shadow: 0 0 20px rgba(216, 169, 29, 0.24);
  transition: transform 180ms ease, filter 180ms ease;
}

.gold-pill:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
}

.placeholder-card {
  display: flex;
  min-height: 310px;
  flex-direction: column;
  justify-content: center;
  padding: 38px 34px 30px;
  background:
    radial-gradient(circle at 50% 22%, rgba(184, 88, 255, 0.28), transparent 24%),
    linear-gradient(145deg, rgba(35, 8, 55, 0.95), rgba(14, 2, 24, 0.98));
}

.placeholder-note {
  margin-bottom: 18px;
  color: #c889ff;
  font-size: 4.6rem;
  line-height: 0.8;
  text-align: center;
  text-shadow: 0 0 26px rgba(196, 102, 255, 0.62);
}

.coming-label {
  margin-bottom: 14px !important;
  color: var(--btb-bright-gold) !important;
  font-size: 0.96rem !important;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

  .archive-image {
    height: 240px;
  }
}

@media (max-width: 980px) {
  .media-hero {
    min-height: auto;
    background-position: 62% center;
  }

  .site-header {
    align-items: center;
    flex-direction: column;
    padding-top: 22px;
  }

  .main-nav {
    justify-content: center;
    padding-top: 2px;
  }

  .media-hero-content {
    padding: 46px 28px 110px;
    text-align: center;
    margin: 0 auto;
  }

  .script-title {
    margin-left: 0;
  }

  .gold-divider {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-text {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 640px) {
  .media-hero {
    background:
      linear-gradient(180deg,
        rgba(2, 1, 6, 0.86) 0%,
        rgba(5, 2, 12, 0.76) 42%,
        rgba(5, 2, 12, 0.94) 100%),
      url("../assets/media-hero-studio.webp") 66% center / cover no-repeat;
  }

  .site-header {
    gap: 18px;
    padding-left: 18px;
    padding-right: 18px;
  }

  .site-logo {
    width: min(295px, 92vw);
  }

  .main-nav {
    gap: 14px 18px;
  }

  .main-nav a {
    font-size: 0.72rem;
    padding-bottom: 9px;
  }

  .media-hero h1 {
    letter-spacing: 0.04em;
  }

  .hero-text br {
    display: none;
  }

  .archive-section {
    width: min(100% - 30px, 520px);
    padding-top: 28px;
  }

  .section-heading {
    gap: 8px;
  }

  .section-heading h2 {
    font-size: 1.05rem;
    letter-spacing: 0.06em;
  }

  .section-heading span {
    max-width: 56px;
  }

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

  .archive-image {
    height: 210px;
  }
}

/* Collaboration Opportunities */
.collab-section {
  width: min(1500px, calc(100% - 56px));
  margin: 0 auto;
  padding: 12px 0 70px;
}

.collab-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 0 auto 12px;
  color: var(--btb-gold);
}

.collab-heading span {
  height: 1px;
  flex: 1;
  max-width: 460px;
  background: linear-gradient(90deg, transparent, rgba(216, 169, 29, 0.82), transparent);
}

.collab-heading h2 {
  margin: 0;
  color: var(--btb-white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 4vw, 3.8rem);
  font-weight: 500;
  letter-spacing: 0.055em;
  text-transform: uppercase;
  text-align: center;
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.88), 0 0 18px rgba(216, 169, 29, 0.16);
}

.collab-heading strong {
  color: var(--btb-bright-gold);
  font-size: 1.35rem;
  filter: drop-shadow(0 0 10px rgba(216, 169, 29, 0.45));
}

.collab-subtitle {
  margin: 0 auto 28px;
  max-width: 920px;
  color: var(--btb-bright-gold);
  font-family: "Brush Script MT", "Segoe Script", "Lucida Handwriting", cursive;
  font-size: clamp(1.35rem, 2.45vw, 2.35rem);
  line-height: 1.18;
  text-align: center;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.85);
}

.collab-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(18px, 1.8vw, 28px);
}

.collab-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--btb-card-border);
  border-radius: 20px;
  background:
    radial-gradient(circle at 50% 100%, rgba(178, 66, 255, 0.28), transparent 20%),
    linear-gradient(180deg, rgba(34, 8, 51, 0.95), rgba(12, 2, 20, 0.98));
  box-shadow:
    0 20px 46px rgba(0, 0, 0, 0.42),
    inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.collab-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 30%, rgba(216, 169, 29, 0.08)),
    radial-gradient(circle at 50% 100%, rgba(207, 104, 255, 0.38), transparent 18%);
  opacity: 0.9;
  z-index: 2;
}

.collab-image {
  display: block;
  width: 100%;
  height: 230px;
  object-fit: cover;
  object-position: center;
  border-bottom: 1px solid rgba(216, 169, 29, 0.28);
}

.collab-copy {
  position: relative;
  z-index: 3;
  display: flex;
  min-height: 285px;
  flex-direction: column;
  align-items: center;
  padding: 18px 24px 24px;
  text-align: center;
}

.collab-copy h3 {
  margin: 0;
  color: var(--btb-white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.18rem, 1.55vw, 1.7rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: 0.01em;
  text-shadow: 0 10px 24px rgba(0, 0, 0, 0.74);
}

.mini-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: min(180px, 80%);
  margin: 14px 0 16px;
  color: var(--btb-bright-gold);
}

.mini-divider span {
  height: 1px;
  flex: 1;
  background: rgba(216, 169, 29, 0.72);
}

.mini-divider strong {
  font-size: 1rem;
  line-height: 1;
}

.collab-copy p {
  margin: 0 0 20px;
  color: var(--btb-muted);
  font-size: clamp(0.96rem, 1.08vw, 1.08rem);
  line-height: 1.42;
}

.outline-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  min-width: 170px;
  padding: 10px 20px;
  border: 2px solid var(--btb-gold);
  border-radius: 999px;
  color: var(--btb-bright-gold);
  text-decoration: none;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  background: rgba(9, 3, 16, 0.55);
  box-shadow: 0 0 18px rgba(216, 169, 29, 0.14);
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.outline-button:hover {
  transform: translateY(-2px);
  background: linear-gradient(180deg, #f1c743, #b68510);
  color: #09030d;
}

@media (max-width: 1280px) {
  .collab-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .collab-card:last-child {
    grid-column: span 1;
  }
}

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

  .collab-subtitle br {
    display: none;
  }

  .collab-image {
    height: 245px;
  }
}

@media (max-width: 640px) {
  .collab-section {
    width: min(100% - 30px, 520px);
    padding-bottom: 46px;
  }

  .collab-heading {
    gap: 8px;
  }

  .collab-heading span {
    max-width: 48px;
  }

  .collab-heading h2 {
    font-size: 1.35rem;
    letter-spacing: 0.04em;
  }

  .collab-subtitle {
    font-size: 1.34rem;
    margin-bottom: 22px;
  }

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

  .collab-image {
    height: 245px;
  }

  .collab-copy {
    min-height: 245px;
  }
}
