/* ==========================================================
   Creative Pro Theme — Main Stylesheet
   ========================================================== */

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --black:       #0a0e27;
  --surface:     #111d3a;
  --surface-2:   #1a2851;
  --border:      #2a3f66;
  --blue:        #00d4ff;
  --blue-dim:    #0099cc;
  --blue-light:  #00e5ff;
  --white:       #f0f5ff;
  --gray:        #6b7388;
  --gray-light:  #9ca3af;
  --serif:       'Cormorant Garamond', Georgia, serif;
  --sans:        'Inter', system-ui, sans-serif;
  --mono:        'Space Mono', monospace;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--blue-dim); }

/* ─── NAV ─── */
#main-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.75rem 4rem;
  background: linear-gradient(to bottom, rgba(8,8,8,0.95) 0%, transparent 100%);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s;
}

#main-nav.scrolled {
  border-bottom-color: var(--border);
  background: rgba(8,8,8,0.92);
}

.nav-logo {
  font-family: var(--sans);
  font-size: 1.1rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  color: var(--white);
  text-decoration: none;
}

.nav-logo span {
  color: var(--blue);
}

/* WP nav menu compatibility */
#main-nav .nav-links,
#main-nav ul.menu {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

#main-nav .nav-links a,
#main-nav ul.menu a {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray-light);
  text-decoration: none;
  transition: color 0.2s;
}

#main-nav .nav-links a:hover,
#main-nav ul.menu a:hover {
  color: var(--blue);
}

/* ─── QUICK ACTION MENU ─── */
.quick-actions-nav {
  position: sticky;
  top: 80px;
  z-index: 99;
  background: var(--black);
  border-bottom: 1px solid var(--border);
  padding: 0.75rem 4rem;
  backdrop-filter: blur(8px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.quick-actions-label {
  font-family: var(--sans);
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray);
  background: var(--surface-2);
  border: 1px solid var(--border);
  padding: 0.4rem 0.8rem;
  border-radius: 2px;
  display: inline-block;
  flex-shrink: 0;
}

.quick-actions-menu {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
  align-items: center;
  flex-grow: 1;
}

.quick-actions-menu a {
  font-family: var(--sans);
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-light);
  text-decoration: none;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.quick-actions-menu a:hover {
  color: var(--blue);
}

@media (max-width: 768px) {
  .quick-actions-nav {
    padding: 0.6rem 2rem;
  }

  .quick-actions-label {
    font-size: 0.55rem;
    padding: 0.35rem 0.6rem;
  }

  .quick-actions-menu {
    gap: 1.5rem;
  }

  .quick-actions-menu a {
    font-size: 0.55rem;
  }
}

@media (max-width: 540px) {
  .quick-actions-nav {
    padding: 0.5rem 1rem;
  }

  .quick-actions-label {
    font-size: 0.52rem;
    padding: 0.3rem 0.5rem;
  }

  .quick-actions-menu {
    gap: 1rem;
  }

  .quick-actions-menu a {
    font-size: 0.52rem;
  }
}

/* ─── HERO ─── */
#hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 4rem 6rem;
  position: relative;
  overflow: hidden;
}

.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-slider::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,14,39,0.6) 0%, rgba(10,14,39,0.8) 100%);
  z-index: 1;
  pointer-events: none;
}

.hero-slider-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slider-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  pointer-events: none;
}

.hero-slider-img.active {
  opacity: 1;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 75% 40%, rgba(0,212,255,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 20% 70%, rgba(0,212,255,0.04) 0%, transparent 50%);
}

.hero-line {
  position: absolute;
  top: 0;
  left: 4rem;
  width: 1px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, var(--border) 20%, var(--border) 80%, transparent);
}

.hero-eyebrow {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  color: var(--blue);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
  z-index: 2;
}

.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 2rem;
  height: 1px;
  background: var(--blue);
}

h1.hero-name {
  font-family: var(--sans);
  font-size: clamp(4rem, 9vw, 9rem);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: -0.01em;
  color: var(--white);
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

h1.hero-name em {
  color: var(--blue);
}

.hero-sub {
  display: flex;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.hero-tagline {
  font-size: 0.85rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: var(--gray-light);
  max-width: 28rem;
}

.hero-badges {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.badge {
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--blue-dim);
  border: 1px solid var(--border);
  padding: 0.35rem 0.75rem;
  border-radius: 1px;
}

.hero-cta {
  margin-top: 3rem;
  display: flex;
  gap: 1.5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.btn-primary {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--blue);
  padding: 1rem 2.5rem;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}

.btn-primary:hover {
  background: #00b8d4;
  transform: translateY(-1px);
}

.btn-ghost {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-light);
  border: 1px solid var(--border);
  padding: 1rem 2.5rem;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s, transform 0.2s;
}

.btn-ghost:hover {
  border-color: var(--blue-dim);
  color: var(--blue);
  transform: translateY(-1px);
}

/* ─── SECTION STRUCTURE ─── */
section {
  padding: 7rem 4rem;
  border-top: 1px solid var(--border);
}

.section-label {
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 4rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.section-label::after {
  content: '';
  display: inline-block;
  flex: 1;
  max-width: 6rem;
  height: 1px;
  background: var(--blue-dim);
}

h2.section-title {
  font-family: var(--sans);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--white);
}

h2.section-title em {
  color: var(--blue);
}

/* ─── ABOUT ─── */
#about .about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  margin-top: 4rem;
  align-items: start;
}

.about-body p {
  font-size: 1rem;
  font-weight: 300;
  color: var(--gray-light);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.about-body p strong {
  color: var(--white);
  font-weight: 400;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.stat-block {
  background: var(--surface);
  padding: 2.5rem;
  border: 1px solid var(--border);
}

.stat-block:first-child {
  grid-column: 1 / -1;
  background: var(--surface-2);
}

.stat-number {
  font-family: var(--sans);
  font-size: 3rem;
  font-weight: 300;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray);
}

.training-note {
  margin-top: 2rem;
  padding: 1.5rem;
  border-left: 2px solid var(--blue-dim);
  background: var(--surface);
}

.training-note p {
  font-family: var(--sans);
  font-size: 0.95rem;
  font-style: italic;
  color: var(--gray);
  margin-bottom: 0 !important;
  line-height: 1.7;
}

.training-note span {
  font-family: var(--sans);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray);
  display: block;
  margin-top: 0.5rem;
}

/* ─── REEL ─── */
#reels .reels-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 4rem;
}

.reel-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 3rem;
  padding-bottom: 5.5rem;
  min-height: 420px;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.3s;
  text-decoration: none;
  display: block;
  color: inherit;
}

.reel-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,212,255,0.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
}

.reel-card:hover {
  border-color: var(--blue-dim);
}

.reel-card:hover::before {
  opacity: 1;
}

.reel-type {
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 1.5rem;
}

.reel-title {
  font-family: var(--sans);
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 1.1;
}

.reel-desc {
  font-size: 0.82rem;
  color: var(--gray-light);
  font-weight: 300;
  line-height: 1.7;
}

/* ─── REEL DESCRIPTION RICH TEXT FORMATTING ─── */
.reel-desc p {
  margin: 0 0 0.8rem 0;
}

.reel-desc ul {
  margin: 1rem 0;
  padding-left: 1.5rem;
  list-style: disc;
}

.reel-desc ol {
  margin: 1rem 0;
  padding-left: 1.5rem;
  list-style: decimal;
}

.reel-desc li {
  margin: 0.3rem 0;
  padding-left: 0.5rem;
  color: var(--gray-light);
  font-weight: 300;
  font-size: 0.82rem;
  line-height: 1.7;
}

.reel-desc strong,
.reel-desc b {
  color: var(--white);
  font-weight: 500;
}

.reel-desc em,
.reel-desc i {
  font-style: italic;
  color: var(--gray-light);
}

.reel-desc a {
  color: var(--blue);
  text-decoration: none;
  transition: color 0.2s ease;
}

.reel-desc a:hover {
  color: var(--blue-light);
  text-decoration: underline;
}

.reel-play {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 2rem;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
}

.reel-play-icon {
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid var(--blue-dim);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.reel-play-icon svg {
  fill: var(--blue);
  margin-left: 2px;
}

/* ─── REEL THUMBNAILS & MODAL ─── */
.reel-card-video {
  padding: 0;
  display: flex;
  flex-direction: column;
padding-bottom: 20px;
}

.reel-thumbnail {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--black);
}

.reel-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reel-play-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 14, 39, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.reel-card-video:hover .reel-play-overlay {
  opacity: 1;
  background: rgba(10, 14, 39, 0.6);
}

.reel-card-video .reel-play-overlay .reel-play-icon {
  width: 4rem;
  height: 4rem;
  border: 2px solid var(--blue-light);
}

.reel-card-video .reel-play-overlay .reel-play-icon svg {
  width: 16px;
  height: 16px;
  fill: var(--blue-light);
}

.reel-card-video .reel-type,
.reel-card-video .reel-title,
.reel-card-video .reel-desc,
.reel-card-video .reel-play {
  padding: 0 3rem;
}

.reel-card-video .reel-type {
  margin-top: 3rem;
  margin-bottom: 1rem;
}

/* ─── REEL VIDEO MODAL ─── */
.reel-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.reel-modal.active {
  display: flex;
  opacity: 1;
}

.reel-modal-content {
  position: relative;
  width: 100%;
  max-width: 90vw;
  aspect-ratio: 16 / 9;
  background: var(--black);
}

.reel-modal-close {
  position: absolute;
  top: -3rem;
  right: 0;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  padding: 0;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s;
}

.reel-modal-close:hover {
  color: var(--blue);
}

.reel-modal iframe {
  width: 100%;
  height: 100%;
  border: none;
}

@media (max-width: 768px) {
  .reel-modal-close {
    top: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
  }

  .reel-modal-content {
    max-width: 95vw;
    aspect-ratio: 9 / 16;
  }
}

/* ─── VENTURE LOGO ─── */
.venture-logo {
  margin-bottom: 1.5rem;
  max-height: 150px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.venture-logo img {
  max-height: 150px;
  width: auto;
  max-width: 100%;
  display: block;
}

/* ─── HEADSHOTS ─── */
#headshots .hs-intro {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: end;
  margin-bottom: 3rem;
}

.hs-desc {
  font-size: 0.95rem;
  color: var(--gray-light);
  line-height: 1.8;
  font-weight: 300;
  max-width: 36rem;
}

.hs-meta {
  text-align: right;
}

.hs-meta-label {
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 0.5rem;
}

.hs-meta-value {
  font-family: var(--sans);
  font-size: 1.8rem;
  color: var(--blue);
  font-weight: 300;
}

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

.hs-card {
  aspect-ratio: 2/3;
  background: var(--surface);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  transition: border-color 0.3s;
}

.hs-card:hover {
  border-color: var(--blue-dim);
}

/* WP featured image inside headshot card */
.hs-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hs-card-inner {
  width: 100%;
  padding: 1.25rem;
  background: linear-gradient(to top, rgba(8,8,8,0.9) 0%, transparent 100%);
  position: relative;
  z-index: 1;
}

.hs-num {
  font-family: var(--mono);
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  color: var(--blue-dim);
}

.hs-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hs-placeholder svg {
  opacity: 0.06;
}

/* Photographer Credits */
.hs-credits {
  margin-top: 2rem;
  display: flex;
  justify-content: flex-end;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.hs-credit-link,
.hs-credit {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
}

.hs-credit-link {
  color: var(--blue-dim);
  text-decoration: none;
  transition: color 0.2s;
}

.hs-credit-link:hover {
  color: var(--blue);
  text-decoration: underline;
}

.hs-credits-label {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-light);
  flex-basis: 100%;
  text-align: right;
  margin-bottom: 0.5rem;
}

/* ─── PRODUCTIONS ─── */
#productions .section-title {
  margin-bottom: 4rem;
}

.prod-interactive {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.prod-content {
  grid-column: 1;
}

.prod-main {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 4rem;
  position: relative;
  overflow: hidden;
}

.prod-main::after {
  content: '"';
  font-family: var(--sans);
  font-size: 20rem;
  color: var(--blue);
  opacity: 0.03;
  position: absolute;
  top: -3rem;
  right: -1rem;
  line-height: 1;
  pointer-events: none;
}

.prod-tag {
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 2rem;
}

.prod-image {
  margin-bottom: 2rem;
  overflow: hidden;
  border: 1px solid var(--border);
}

.prod-image-img {
  width: 100%;
  height: auto;
  display: block;
}

.prod-title {
  font-family: var(--sans);
  font-size: clamp(1.6rem, 3.2vw, 2.8rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.prod-title em {
  color: var(--blue);
}

.prod-details {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.prod-detail-row {
  display: flex;
  gap: 1rem;
  font-size: 0.78rem;
}

.prod-detail-key {
  color: var(--gray);
  min-width: 5rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.65rem;
}

.prod-detail-val {
  color: var(--gray-light);
}

.prod-body {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.8;
  font-weight: 300;
}

/* ─── PRODUCTION SELECTOR ─── */
.prod-selector {
  grid-column: 2;
  display: flex;
  flex-direction: column;
  gap: 2px;
  grid-auto-rows: 1fr;
}

.prod-selector-card {
  background: var(--surface-2);
  border: 2px solid var(--border);
  padding: 2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.prod-selector-card:hover {
  border-color: var(--blue-dim);
  background: var(--surface);
}

.prod-selector-card.active {
  border-color: var(--blue-light);
  background: var(--surface);
}

.prod-selector-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,212,255,0.08) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}

.prod-selector-card.active::before {
  opacity: 1;
}

.prod-selector-featured-badge {
  font-family: var(--mono);
  font-size: 0.55rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue-light);
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.prod-selector-title {
  font-family: var(--sans);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.5rem;
  line-height: 1.2;
  position: relative;
  z-index: 1;
}

.prod-selector-genre {
  font-family: var(--mono);
  font-size: 0.55rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 1;
}

.prod-selector-venue {
  font-size: 0.75rem;
  color: var(--gray-light);
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 1;
}

.prod-selector-dates {
  font-size: 0.75rem;
  color: var(--gray);
  position: relative;
  z-index: 1;
  margin-top: auto;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  .prod-interactive {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .prod-content {
    grid-column: 1;
  }

  .prod-selector {
    grid-column: 1;
    flex-direction: row;
    gap: 2px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .prod-selector-card {
    min-width: 50%;
    scroll-snap-align: start;
  }

  .prod-main {
    padding: 2rem;
  }

  .prod-title {
    font-size: clamp(1.2rem, 2.4vw, 2rem);
  }
}

/* ─── VENTURES ─── */
#ventures {
  background: var(--surface);
}

#ventures .ventures-grid {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}

.venture-card {
  background: var(--black);
  border: 1px solid var(--border);
  padding: 3rem;
  transition: border-color 0.3s;
}

.venture-card:hover {
  border-color: var(--blue-dim);
}

.venture-index {
display: none;
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: var(--blue-dim);
  margin-bottom: 2rem;
}

.venture-name {
  font-family: var(--sans);
  font-size: 2rem;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 1.1;
}

.venture-desc {
  font-size: 0.83rem;
  color: var(--gray);
  line-height: 1.8;
  font-weight: 300;
}

.venture-cat {
  display: inline-block;
  margin-top: 1.5rem;
  font-family: var(--mono);
  font-size: 0.55rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue-dim);
  border: 1px solid var(--border);
  padding: 0.3rem 0.7rem;
}

/* ─── GENERIC LINK STYLING ─── */
.venture-desc a,
.prod-description a,
.prod-body a,
.prod-title a,
.post-content a {
  color: var(--blue);
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.venture-desc a::after,
.prod-description a::after,
.prod-body a::after,
.prod-title a::after,
.post-content a::after {
  content: ' ↗';
  font-size: 0.85em;
  opacity: 0.8;
}

.venture-desc a:hover,
.prod-description a:hover,
.prod-body a:hover,
.prod-title a:hover,
.post-content a:hover {
  color: var(--blue-light);
}

.venture-desc a:hover::after,
.prod-description a:hover::after,
.prod-body a:hover::after,
.prod-title a:hover::after,
.post-content a:hover::after {
  opacity: 1;
}

/* ─── RESUME ─── */
#resume .resume-inner {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}

.resume-text {
  font-size: 0.92rem;
  color: var(--gray-light);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 2.5rem;
}

.resume-skills {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.skill-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  background: var(--surface);
  border: 1px solid var(--border);
  font-size: 0.78rem;
}

.skill-name {
  color: var(--gray-light);
  letter-spacing: 0.05em;
}

.skill-bar {
  flex: 1;
  margin: 0 2rem;
  height: 1px;
  background: var(--border);
  position: relative;
}

.skill-bar-fill {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background: var(--blue-dim);
}

.skill-level {
  font-family: var(--mono);
  font-size: 0.58rem;
  letter-spacing: 0.15em;
  color: var(--blue-dim);
}

.resume-download-area {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 3rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.resume-download-title {
  font-family: var(--sans);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 1rem;
}

.resume-download-sub {
  font-size: 0.8rem;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.resume-last-updated-italic {
  font-size: 0.8rem;
  color: var(--gray-light);
  font-style: italic;
  margin-bottom: 0.5rem;
}

.resume-last-updated {
  font-family: var(--mono);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray);
  margin-top: 1rem;
  margin-bottom: 2rem;
}

.resume-cta-group {
  display: flex;
  gap: 1rem;
  align-items: center;
}

/* Resume Modal */
.resume-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.resume-modal.active {
  display: flex;
}

.resume-modal-content {
  position: relative;
  width: 100%;
  max-width: 900px;
  height: 90vh;
  background: var(--black);
  border: 1px solid var(--border);
}

.resume-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  z-index: 10000;
  transition: color 0.2s;
}

.resume-modal-close:hover {
  color: var(--blue);
}

#resume-iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ─── TRAINING & EDUCATION ─── */
.training-section {
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

.training-section-title {
  font-family: var(--sans);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 2rem;
}

.training-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.training-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 1.5rem;
  border-radius: 2px;
  transition: border-color 0.2s;
}

.training-card:hover {
  border-color: var(--blue-dim);
}

.training-institution {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0.8rem;
}

.training-type,
.training-instructors,
.training-degree,
.training-year {
  font-size: 0.8rem;
  color: var(--gray-light);
  line-height: 1.6;
  margin-bottom: 0.4rem;
  display: flex;
  align-items: baseline;
  gap: 1rem;
}

.training-type:last-child,
.training-instructors:last-child,
.training-degree:last-child,
.training-year:last-child {
  margin-bottom: 0;
}

.training-label {
  font-family: var(--mono);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray);
  font-weight: 500;
  min-width: 120px;
  flex-shrink: 0;
}

/* ─── ARTICLES ─── */
.articles-intro {
  font-size: 0.92rem;
  color: var(--gray-light);
  line-height: 1.7;
  margin-top: 2rem;
  margin-bottom: 3rem;
}

#articles .articles-grid {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.article-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 3rem;
  transition: border-color 0.3s;
}

.article-card:hover {
  border-color: var(--blue-dim);
}

.article-tag {
  font-family: var(--mono);
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 1.5rem;
}

.article-title {
  font-family: var(--sans);
  font-size: 1.7rem;
  font-weight: 300;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 1rem;
}

.article-excerpt {
  font-size: 0.82rem;
  color: var(--gray);
  line-height: 1.8;
  font-weight: 300;
}

.article-read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 2rem;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue-dim);
  text-decoration: none;
  transition: color 0.2s;
}

.article-read-more:hover {
  color: var(--blue);
}

.article-read-more::after {
  content: '→';
}

/* ─── CONTACT ─── */
#contact {
  background: var(--surface);
}

#contact .contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8rem;
  margin-top: 4rem;
  align-items: start;
}

.contact-intro {
  font-size: 0.92rem;
  color: var(--gray-light);
  line-height: 1.9;
  font-weight: 300;
  margin-bottom: 3rem;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.contact-link-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  background: var(--black);
  border: 1px solid var(--border);
  text-decoration: none;
  transition: border-color 0.2s;
  color: inherit;
}

.contact-link-row:hover {
  border-color: var(--blue-dim);
}

.contact-link-label {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray);
}

.contact-link-val {
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--white);
}

.contact-link-arrow {
  color: var(--blue-dim);
  font-size: 0.9rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group input,
.form-group textarea {
  background: var(--black);
  border: 1px solid var(--border);
  color: var(--white);
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 300;
  padding: 1.1rem 1.25rem;
  outline: none;
  transition: border-color 0.2s;
  resize: none;
  width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray);
  font-size: 0.78rem;
  letter-spacing: 0.05em;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--blue-dim);
}

.form-group textarea {
  min-height: 130px;
}

.form-submit {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--blue);
  border: none;
  padding: 1.1rem 2.5rem;
  cursor: pointer;
  transition: background 0.2s;
  align-self: flex-start;
}

.form-submit:hover {
  background: #00b8d4;
}

.form-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.form-message {
  padding: 0.75rem 1rem;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  border: 1px solid var(--border);
}

.form-message.success {
  color: var(--blue);
  border-color: var(--blue-dim);
  background: rgba(0,212,255,0.06);
}

.form-message.error {
  color: #e07070;
  border-color: #3a1a1a;
  background: rgba(224,112,112,0.06);
}

/* ─── REPRESENTATION SECTION ─── */
.contact-representation {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

.representation-title,
.contact-form-title {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.representation-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.representation-box {
  background: var(--black);
  border: 1px solid var(--border);
  padding: 1.25rem;
  border-radius: 2px;
  transition: border-color 0.2s;
}

.representation-box:hover {
  border-color: var(--blue-dim);
}

.rep-category {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0 0 0.75rem 0;
}

.rep-field {
  font-size: 0.72rem;
  color: var(--gray-light);
  margin: 0.5rem 0;
  line-height: 1.4;
}

.rep-label {
  font-weight: 500;
  color: var(--white);
  display: inline-block;
  min-width: 50px;
}

.rep-field a {
  color: var(--blue);
  text-decoration: none;
}

.rep-field a:hover {
  color: var(--blue-light);
  text-decoration: underline;
}

/* ─── FOOTER ─── */
footer {
  padding: 3rem 4rem;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-logo {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: var(--gray);
}

.footer-logo span {
  color: var(--blue-dim);
}

.footer-unions {
  display: flex;
  gap: 1.5rem;
}

.footer-union {
  font-family: var(--mono);
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray);
}

.footer-copy {
  font-size: 0.65rem;
  color: var(--gray);
  letter-spacing: 0.08em;
}

/* ─── LOCATION TAG ─── */
.location-tag {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--mono);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-light);
}

.location-tag::before {
  content: '◎';
  color: var(--blue-dim);
  font-size: 1.2em;
}

/* ─── FADE-IN ANIMATION ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.fade-up {
  animation: fadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.25s; }
.delay-3 { animation-delay: 0.4s; }
.delay-4 { animation-delay: 0.55s; }

/* ─── BLOG / SINGLE POST STYLES ─── */
.post-content h2,
.post-content h3,
.post-content h4 {
  font-family: var(--sans);
  font-weight: 300;
  color: var(--white);
  margin: 2rem 0 1rem;
}

.post-content h2 { font-size: 2rem; }
.post-content h3 { font-size: 1.5rem; }
.post-content h4 { font-size: 1.2rem; }

.post-content p {
  margin-bottom: 1.5rem;
}

.post-content a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.post-content ul,
.post-content ol {
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--gray-light);
}

.post-content blockquote {
  border-left: 2px solid var(--blue-dim);
  padding: 1rem 1.5rem;
  background: var(--surface);
  margin: 2rem 0;
  font-family: var(--sans);
  color: var(--gray-light);
}

/* Pagination */
.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.posts-navigation,
.pagination {
  margin-top: 4rem;
  display: flex;
  gap: 1rem;
}

.posts-navigation a,
.pagination a {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  color: var(--blue-dim);
  text-decoration: none;
  border: 1px solid var(--border);
  padding: 0.5rem 1rem;
  transition: border-color 0.2s, color 0.2s;
}

.posts-navigation a:hover,
.pagination a:hover {
  border-color: var(--blue-dim);
  color: var(--blue);
}

/* ─── PRODUCTION PAGE TEMPLATE ─── */

.production-page {
  background: var(--black);
}

/* Hero Image Section — Full Viewport Height */
.production-hero {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  margin-bottom: 0;
  position: relative;
}

.production-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.production-hero-placeholder {
  width: 100%;
  height: 100vh;
  background: var(--surface);
}

/* Container Layout */
/* Sticky Header Section */
/* Sticky Title Section */
.production-sticky-title {
  position: sticky;
  top: 130px;
  background: var(--black);
  border-bottom: 1px solid var(--border);
  z-index: 101;
  padding: 1.5rem 0;
}

.production-title-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.production-title-header {
  font-family: var(--sans);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--blue);
  margin: 0;
  line-height: 1.1;
}

.production-container {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 2rem 5rem;
}

/* Content Column */
.production-content {
  min-width: 0;
}

.production-title {
  font-family: var(--sans);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 3rem;
  line-height: 1.1;
}

/* Section Titles */
.production-section-title {
  font-size: 1rem;
  font-weight: 500;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.5rem;
}

/* Gallery Grid */
.production-gallery {
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.gallery-item {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
  position: relative;
}

.gallery-item-button {
  width: 100%;
  height: 100%;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  position: relative;
  display: block;
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.gallery-item-button:hover img {
  transform: scale(1.05);
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.4);
  color: var(--blue);
  font-size: 2rem;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.gallery-item-button:hover .gallery-item-overlay {
  opacity: 1;
}

/* Production Description */
.production-description {
  font-size: 0.95rem;
  color: var(--gray-light);
  line-height: 1.9;
  margin-bottom: 3rem;
}

.production-description p {
  margin-bottom: 1.5rem;
}

.production-description a {
  color: var(--blue);
  text-decoration: none;
}

.production-description a:hover {
  color: var(--blue-light);
  text-decoration: underline;
}

/* Sidebar Container — Sticky */
.production-sidebar {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  position: sticky;
  top: 220px;
  height: fit-content;
}

/* Sidebar Section Title */
.sidebar-section-title {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  margin-top: 0;
}

/* Production Details Section */
.production-details-section {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 1.5rem;
  border-radius: 2px;
}

.detail-rows {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.detail-row {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}

.detail-row:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.detail-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray);
  font-weight: 600;
}

.detail-value {
  font-size: 0.85rem;
  color: var(--gray-light);
  line-height: 1.3;
}

/* Ticket Purchase Section */
.production-ticket-section {
  padding: 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 2px;
}

.ticket-button {
  display: block;
  background: var(--blue);
  color: var(--black);
  padding: 0.9rem 1.2rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.2s ease;
  text-align: center;
  width: 100%;
  border: none;
  cursor: pointer;
}

.ticket-button:hover {
  background: var(--blue-light);
}

/* Cast Information Section */
.production-cast-section {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 1.5rem;
  border-radius: 2px;
}

.cast-content {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.cast-member {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}

.cast-member:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.cast-member-name {
  font-size: 0.8rem;
  color: var(--white);
  font-weight: 600;
}

.cast-member-role {
  font-size: 0.75rem;
  color: var(--gray-light);
  font-style: italic;
}

/* Crew Information Section */
.production-crew-section {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 1.5rem;
  border-radius: 2px;
}

.crew-content {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.crew-member {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}

.crew-member:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.crew-member-name {
  font-size: 0.8rem;
  color: var(--white);
  font-weight: 600;
}

.crew-member-role {
  font-size: 0.75rem;
  color: var(--gray-light);
  font-style: italic;
}

/* Gallery Modal/Lightbox */
.production-gallery-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 999;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.production-gallery-modal.active {
  display: flex;
}

.gallery-modal-content {
  position: relative;
  max-width: 80vw;
  max-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-modal-image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.gallery-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1000;
  transition: color 0.2s;
}

.gallery-modal-close:hover {
  color: var(--blue);
}

/* ─── RESPONSIVE: PRODUCTION PAGE ─── */
/* ─── RESPONSIVE: PRODUCTION PAGE ─── */
@media (max-width: 1024px) {
  .production-container {
    gap: 2rem;
  }

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

@media (max-width: 768px) {
  .production-container {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem 2rem 3rem;
  }

  .production-hero {
    height: 100vh;
    margin-bottom: 0;
  }

  .production-hero-placeholder {
    height: 100vh;
  }

  .production-sticky-title {
    padding: 1.25rem 0;
    top: 130px;
    z-index: 101;
  }

  .production-title-header {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .production-gallery {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
  }

  .production-description {
    font-size: 0.9rem;
  }
}

@media (max-width: 540px) {
  .production-sticky-title {
    padding: 1rem 0;
    top: 130px;
    z-index: 101;
  }

  .production-title-container {
    padding: 0 1.5rem;
  }

  .production-title-header {
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  }

  .production-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 1.5rem 1.5rem 2rem;
  }

  .production-sidebar {
    top: 205px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .production-hero {
    height: 100vh;
    margin-bottom: 0;
  }

  .production-hero-placeholder {
    height: 100vh;
  }

  .detail-label {
    font-size: 0.6rem;
  }

  .detail-value {
    font-size: 0.8rem;
  }

  .sidebar-section-title {
    font-size: 0.7rem;
  }

  .cast-member-name,
  .crew-member-name {
    font-size: 0.75rem;
  }

  .cast-member-role,
  .crew-member-role {
    font-size: 0.7rem;
  }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  #main-nav { padding: 1.25rem 2rem; }
  #main-nav .nav-links,
  #main-nav ul.menu { gap: 1.5rem; }

  section { padding: 5rem 2rem; }
  #hero { padding: 0 2rem 4rem; }
  .hero-line { left: 2rem; }

  #about .about-grid,
  #reels .reels-grid,
  #productions .prod-feature,
  #resume .resume-inner,
  #contact .contact-inner,
  #headshots .hs-intro,
  #articles .articles-grid,
  #ventures .ventures-grid { grid-template-columns: 1fr; gap: 3rem; }

  .hs-grid { grid-template-columns: repeat(2, 1fr); }
  .hs-meta { text-align: left; }

  footer { flex-direction: column; gap: 1.5rem; text-align: center; }
  .footer-unions { justify-content: center; }
}

@media (max-width: 540px) {
  #main-nav .nav-links,
  #main-nav ul.menu { display: none; }
  .hs-grid { grid-template-columns: 1fr 1fr; }
  .about-stats { grid-template-columns: 1fr; }
  .stat-block:first-child { grid-column: 1; }
}
