/* ============================================
   ANDREW RUSSELL — ACTOR WEBSITE
   Design: Cinematic Editorial
   ============================================ */

:root {
  --navy:    #0d1b2a;
  --navy-mid:#162336;
  --navy-lt: #1e3252;
  --cream:   #f5f0e8;
  --white:   #ffffff;
  --gold:    #c9a84c;
  --gold-lt: #e8c97a;
  --slate:   #8a9bb5;
  --text:    #e8e4dc;
  --text-dim:#6b7d96;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', sans-serif;
  --font-mono:    'DM Mono', monospace;

  --radius: 4px;
  --transition: 0.3s ease;
  --max-w: 1200px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--navy);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

body.menu-open #nav,
body.menu-open #nav.scrolled {
  background: #081423;
  border-bottom: 1px solid rgba(201,168,76,0.2);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

/* ---- UTILITIES ---- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}

.section-label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section-label.center { text-align: center; }

h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

h2.center { text-align: center; }
h2 em { color: var(--gold); font-style: italic; }

p { color: var(--slate); margin-bottom: 1rem; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  transition: all var(--transition);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
  font-weight: 500;
}
.btn-primary:hover { background: var(--gold-lt); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,76,0.3); }

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.3);
}
.btn-secondary:hover { border-color: var(--gold); color: var(--gold); }

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}
.btn-outline:hover { background: var(--gold); color: var(--navy); }

.btn.large { padding: 1.1rem 2.8rem; font-size: 0.9rem; }

/* ---- NAV ---- */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 2.5rem;
  transition: background var(--transition), padding var(--transition);
}

#nav.scrolled {
  background: rgba(13, 27, 42, 0.97);
  backdrop-filter: blur(12px);
  padding: 0.85rem 2.5rem;
  border-bottom: 1px solid rgba(201,168,76,0.15);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 0.05em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--slate);
  text-decoration: none;
  transition: color var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a.nav-cta {
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.4);
  padding: 0.5rem 1.2rem;
  border-radius: var(--radius);
}
.nav-links a.nav-cta:hover { background: var(--gold); color: var(--navy); }

.nav-live-item[hidden] {
  display: none !important;
}

.nav-links a.nav-live-link {
  color: #ffb3ba;
  border: 1px solid rgba(255, 113, 143, 0.5);
  border-radius: 999px;
  padding: 0.42rem 0.95rem 0.42rem 0.8rem;
  background: rgba(92, 18, 38, 0.35);
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.nav-links a.nav-live-link::before {
  content: '';
  width: 0.46rem;
  height: 0.46rem;
  border-radius: 50%;
  background: #ff4d6d;
  box-shadow: 0 0 0 0 rgba(255, 77, 109, 0.75);
  animation: livePulse 1.6s infinite;
}

@keyframes livePulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 77, 109, 0.7);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(255, 77, 109, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 77, 109, 0);
  }
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all var(--transition);
}

.twitch-live-banner {
  position: relative;
  z-index: 45;
  padding: 5.3rem 0 0.9rem;
}

.twitch-live-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 300px);
  gap: 1.1rem;
  align-items: center;
  text-decoration: none;
  border: 1px solid rgba(255, 113, 143, 0.34);
  border-left: 4px solid #ff4d6d;
  border-radius: 10px;
  padding: 0.9rem 1rem;
  background: linear-gradient(135deg, rgba(30,50,82,0.84) 0%, rgba(13,27,42,0.92) 100%);
  box-shadow: 0 14px 30px rgba(0,0,0,0.22);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.twitch-live-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 113, 143, 0.6);
  box-shadow: 0 18px 34px rgba(0,0,0,0.26);
}

.twitch-live-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 0.35rem;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: #ff9fb0;
}

.twitch-live-dot {
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: #ff4d6d;
  box-shadow: 0 0 0 0 rgba(255, 77, 109, 0.7);
  animation: livePulse 1.6s infinite;
}

.twitch-live-copy h3 {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2vw, 1.5rem);
  line-height: 1.2;
  color: var(--white);
}

.twitch-live-subtext {
  margin: 0;
  color: #b9c6db;
  font-size: 0.92rem;
}

.twitch-live-thumb-wrap {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 113, 143, 0.26);
  background: rgba(13,27,42,0.8);
}

.twitch-live-thumb {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

/* ---- HERO ---- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 8rem 2.5rem 4rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(201,168,76,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(30,50,82,0.8) 0%, transparent 70%),
    linear-gradient(135deg, #0d1b2a 0%, #162336 50%, #0d1b2a 100%);
}

/* Subtle geometric lines */
.hero-bg::before {
  content: '';
  position: absolute;
  top: 10%; right: 5%;
  width: 400px; height: 400px;
  border: 1px solid rgba(201,168,76,0.08);
  border-radius: 50%;
}
.hero-bg::after {
  content: '';
  position: absolute;
  top: 15%; right: 10%;
  width: 280px; height: 280px;
  border: 1px solid rgba(201,168,76,0.06);
  border-radius: 50%;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
  padding: 0.5rem 1rem;
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 2rem;
  background: rgba(201,168,76,0.05);
  animation: fadeInDown 0.8s ease both;
}

.hero-badge a {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color var(--transition), border-color var(--transition);
}

.hero-badge a:hover {
  color: var(--white);
  border-bottom-color: rgba(255,255,255,0.4);
}

.badge-divider {
  color: rgba(201,168,76,0.7);
}

.badge-dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-name {
  font-family: var(--font-display);
  font-size: clamp(4rem, 10vw, 8.5rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.02em;
  display: flex;
  flex-direction: column;
  margin-bottom: 1.5rem;
}

.name-line {
  display: block;
  color: var(--white);
  animation: fadeInLeft 0.8s ease both;
}
.name-line.accent {
  color: var(--gold);
  animation-delay: 0.15s;
}

.hero-title {
  font-family: var(--font-mono);
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 1rem;
  animation: fadeInLeft 0.8s ease 0.3s both;
}

.hero-unions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--slate);
  margin-bottom: 2.5rem;
  animation: fadeInLeft 0.8s ease 0.45s both;
}
.hero-unions .divider { color: var(--gold); }

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.6s both;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 2.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dim);
  z-index: 2;
}
.scroll-line {
  width: 40px; height: 1px;
  background: var(--text-dim);
  position: relative;
  overflow: hidden;
}
.scroll-line::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: var(--gold);
  animation: scrollLine 2s ease 1s infinite;
}
@keyframes scrollLine { to { left: 100%; } }

/* ---- CREDIT HIGHLIGHT ---- */
.credit-highlight {
  padding: 5rem 0;
  background: var(--navy-mid);
  border-top: 1px solid rgba(201,168,76,0.15);
  border-bottom: 1px solid rgba(201,168,76,0.15);
}

.credit-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4rem;
  align-items: center;
  background: rgba(30,50,82,0.4);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 8px;
  padding: 3rem;
  position: relative;
  overflow: hidden;
}

.credit-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--gold);
}

.credit-logo-area {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
}

.credit-network {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--white);
  white-space: nowrap;
  padding: 0.5rem 1.2rem;
  border: 2px solid var(--gold);
  border-radius: 4px;
  text-align: center;
  min-width: 120px;
}
.credit-network.secondary {
  font-size: 1rem;
  border-color: rgba(201,168,76,0.4);
  color: var(--slate);
}

.credit-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.credit-title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.credit-desc { margin-bottom: 1.25rem; }

.credit-link {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 0.05em;
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition);
}
.credit-link:hover { border-color: var(--gold); }

/* ---- ABOUT SNAP ---- */
.about-snap {
  padding: 7rem 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 6rem;
  align-items: center;
}

.about-text p { font-size: 1.05rem; line-height: 1.8; }
.about-text .btn { margin-top: 0.75rem; }

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.stat {
  display: flex;
  flex-direction: column;
  padding: 1.75rem;
  background: rgba(30,50,82,0.4);
  border: 1px solid rgba(201,168,76,0.12);
  border-radius: 4px;
  transition: border-color var(--transition), transform var(--transition);
}
.stat:hover { border-color: rgba(201,168,76,0.4); transform: translateY(-3px); }

.stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
}

/* ---- SKILLS ---- */
.skills-section {
  padding: 7rem 0;
  background: var(--navy-mid);
}

.skills-section h2 { margin-bottom: 3.5rem; }

.skills-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.skill-card {
  padding: 2.5rem 2rem;
  background: rgba(13,27,42,0.8);
  border: 1px solid rgba(201,168,76,0.1);
  border-radius: 4px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.skill-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.skill-card:hover { border-color: rgba(201,168,76,0.3); transform: translateY(-4px); }
.skill-card:hover::after { transform: scaleX(1); }

.skill-icon { font-size: 2rem; margin-bottom: 1rem; }

.skill-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.skill-card p { font-size: 0.9rem; margin-bottom: 0; }

/* ---- REPRESENTATION ---- */
.rep-section {
  padding: 6rem 0;
}

.rep-section p.section-label { margin-bottom: 3rem; }

.rep-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: rgba(30,50,82,0.3);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 8px;
  overflow: hidden;
}

.rep-item {
  flex: 1;
  padding: 2.5rem 3rem;
  text-align: center;
}

.rep-item h3 {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.rep-item p { margin: 0; font-size: 1rem; color: var(--white); }

.rep-divider {
  width: 1px;
  height: 80px;
  background: rgba(201,168,76,0.2);
}

/* ---- SOCIAL CTA ---- */
.social-cta {
  padding: 7rem 0;
  background: var(--navy-mid);
  text-align: center;
  border-top: 1px solid rgba(201,168,76,0.1);
}

.social-cta h2 { margin-bottom: 0.75rem; }
.social-cta > .container > p { font-size: 1.1rem; margin-bottom: 2.5rem; }

.social-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.social-links a {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  text-decoration: none;
  transition: color var(--transition);
}
.social-links a:hover { color: var(--gold); }

.social-total-wrap {
  margin-top: 2.1rem;
}

.social-total-label {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--gold);
}

.social-total-count {
  margin: 0.35rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.6vw, 1.7rem);
  color: var(--white);
  line-height: 1.2;
}

.social-links-rich {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 360px));
  gap: 0.8rem;
  margin: 1.5rem auto 0;
  justify-content: center;
  max-width: 1160px;
  text-align: left;
}

.social-links .social-link-item {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr) auto;
  align-items: center;
  column-gap: 0.75rem;
  text-transform: none;
  letter-spacing: normal;
  font-family: var(--font-body);
  font-size: 0.9rem;
  background: rgba(13,27,42,0.72);
  border: 1px solid rgba(201,168,76,0.18);
  border-radius: 8px;
  padding: 0.72rem 0.8rem;
  text-decoration: none;
  color: var(--white);
  transition: transform var(--transition), border-color var(--transition), background var(--transition);
}

.social-link-item:hover {
  transform: translateY(-1px);
  border-color: rgba(201,168,76,0.45);
  background: rgba(21,37,59,0.9);
}

.social-link-icon {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  background: rgba(201,168,76,0.12);
  flex-shrink: 0;
}

.social-link-copy {
  display: inline-flex;
  flex-direction: column;
  gap: 0.12rem;
  min-width: 130px;
}

.social-link-name {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: #d4deec;
  line-height: 1.1;
}

.social-link-handle {
  font-family: var(--font-body);
  font-size: 0.86rem;
  color: var(--text-dim);
  line-height: 1.2;
  overflow: visible;
  text-overflow: clip;
  white-space: normal;
  word-break: break-word;
}

.social-link-count {
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  color: var(--gold);
  white-space: nowrap;
}

.social-link-item-static .social-link-count {
  color: #a5b4c8;
}

/* ---- FOOTER ---- */
footer {
  padding: 2rem 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
}

.footer-copy {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--text-dim);
  letter-spacing: 0.05em;
}

.footer-email {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 0.05em;
}
.footer-email:hover { text-decoration: underline; }

/* ---- ANIMATIONS ---- */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-16px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-24px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- INNER PAGES HERO ---- */
.page-hero {
  padding: 10rem 0 5rem;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0d1b2a 0%, #162336 100%);
  z-index: -1;
}

.page-hero-inner { max-width: 700px; }

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 1rem;
}
.page-hero h1 span { color: var(--gold); }

.page-hero p {
  font-size: 1.1rem;
  max-width: 480px;
}

.about-hero-minimal {
  padding: 8rem 0 1.15rem;
}

.about-hero-minimal .page-hero-inner {
  max-width: 560px;
}

.about-hero-minimal h1 {
  font-size: clamp(2.1rem, 4.6vw, 3.3rem);
  line-height: 1.06;
  margin-bottom: 0.55rem;
}

.about-hero-minimal p {
  font-size: 1rem;
  max-width: 460px;
}

.page-hero-compact {
  padding: 8.5rem 0 3.4rem;
}

/* ---- ABOUT PAGE ---- */
.about-full {
  padding: 2.1rem 0 6rem;
}

.about-personal {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 2.2rem;
  align-items: center;
  margin-bottom: 3.25rem;
  background: rgba(30,50,82,0.34);
  border: 1px solid rgba(201,168,76,0.16);
  border-radius: 10px;
  padding: 1rem;
}

.about-personal-photo img {
  width: 100%;
  display: block;
  border-radius: 8px;
  border: 1px solid rgba(201,168,76,0.2);
  aspect-ratio: 2 / 3;
  object-fit: cover;
  object-position: 50% 16%;
}

.about-personal-copy {
  padding: 0.9rem 1rem 0.9rem 0.2rem;
}

.about-personal-copy h2 {
  font-size: clamp(1.9rem, 3.9vw, 2.8rem);
  margin-bottom: 0.8rem;
}

.about-full-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}

.bio-block h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--white);
  margin: 2rem 0 0.75rem;
}
.bio-block h3:first-child { margin-top: 0; }

.bio-sidebar {
  position: sticky;
  top: 7rem;
}

.sidebar-card {
  background: rgba(30,50,82,0.4);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 8px;
  padding: 2.5rem;
  margin-bottom: 1.5rem;
}

.sidebar-card h4 {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tag {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  padding: 0.35rem 0.85rem;
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 2rem;
  color: var(--slate);
  letter-spacing: 0.05em;
}

.text-white { color: var(--white); }

.about-value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 3rem;
}

.about-value-card {
  background: rgba(30,50,82,0.35);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 8px;
  padding: 1.6rem;
}

.about-value-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 0.55rem;
}

.about-value-card p {
  margin-bottom: 0;
  font-size: 0.92rem;
}

.about-actions {
  margin-top: 2.5rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.about-location {
  margin: 0;
  color: var(--white);
  font-size: 1rem;
}

.tag-link {
  text-decoration: none;
  color: var(--slate);
}

.tag-link-primary { color: var(--gold); }

.social-tag-list {
  display: grid;
  gap: 0.65rem;
}

.social-tag-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  width: 100%;
  text-decoration: none;
  color: var(--white);
  border: 1px solid rgba(201,168,76,0.24);
  border-radius: 10px;
  background: rgba(13,27,42,0.58);
  padding: 0.56rem 0.72rem;
  transition: border-color var(--transition), background var(--transition), transform var(--transition);
}

.social-tag-link:hover {
  border-color: rgba(201,168,76,0.55);
  background: rgba(24,39,60,0.9);
  transform: translateY(-1px);
}

.social-tag-link:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.social-tag-left {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  min-width: 0;
}

.social-tag-icon {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
  background: rgba(201,168,76,0.14);
  border: 1px solid rgba(201,168,76,0.22);
}

.social-tag-icon svg {
  width: 14px;
  height: 14px;
}

.social-tag-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
  line-height: 1.2;
}

.social-tag-platform {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

.social-tag-handle {
  font-family: var(--font-body);
  font-size: 0.96rem;
  color: var(--white);
  opacity: 0.92;
  word-break: break-word;
}

.social-tag-arrow {
  color: var(--gold);
  font-size: 0.88rem;
  flex-shrink: 0;
}

.social-tag-meta {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  flex-shrink: 0;
}

.social-tag-count {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: lowercase;
  color: var(--gold);
}

.social-tag-count-static {
  color: var(--slate);
}

.social-tag-link-primary .social-tag-icon {
  background: rgba(201,168,76,0.2);
  border-color: rgba(201,168,76,0.38);
}

/* ---- RESUME PAGE ---- */
.resume-section {
  padding: 6rem 0;
}

.resume-clean {
  padding-top: 3rem;
}

.resume-snapshot-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.resume-snapshot-card {
  padding: 1.2rem 1.15rem;
  border-radius: 8px;
  background: rgba(30,50,82,0.33);
  border: 1px solid rgba(201,168,76,0.15);
}

.resume-snapshot-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 0.45rem;
}

.resume-snapshot-card p {
  margin-bottom: 0;
  font-size: 0.88rem;
}

.resume-quicklinks {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.9rem;
}

.resume-quicklinks a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 0.45rem 0.8rem;
  border: 1px solid rgba(201,168,76,0.24);
  border-radius: 999px;
  background: rgba(13,27,42,0.55);
  transition: border-color var(--transition), color var(--transition), background var(--transition);
}

.resume-quicklinks a:hover {
  color: var(--white);
  border-color: rgba(201,168,76,0.5);
  background: rgba(24,39,60,0.85);
}

.resume-main-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-bottom: 1.2rem;
}

.resume-main-grid-secondary {
  margin-bottom: 0;
}

.resume-panel {
  background: rgba(13,27,42,0.58);
  border: 1px solid rgba(201,168,76,0.14);
  border-radius: 8px;
  padding: 1.45rem 1.4rem;
}

.resume-panel-head h2 {
  font-size: clamp(1.55rem, 3vw, 2.2rem);
  margin-bottom: 1.1rem;
}

.resume-highlight-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.resume-highlight-list article {
  border: 1px solid rgba(201,168,76,0.12);
  border-radius: 7px;
  padding: 0.85rem 0.8rem;
  background: rgba(30,50,82,0.28);
}

.resume-highlight-list h3 {
  font-family: var(--font-display);
  font-size: 1.02rem;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 0.3rem;
}

.resume-highlight-list p {
  margin-bottom: 0.35rem;
  font-size: 0.82rem;
}

.resume-highlight-list span {
  font-family: var(--font-mono);
  font-size: 0.64rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--gold);
}

.resume-details {
  margin-top: 1rem;
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(10,20,33,0.5);
}

.resume-details summary {
  cursor: pointer;
  list-style: none;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 0.82rem 0.9rem;
  background: rgba(201,168,76,0.06);
  border-bottom: 1px solid rgba(201,168,76,0.16);
}

.resume-details[open] summary {
  color: var(--white);
}

.resume-details-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding: 0.95rem 0.9rem 1rem;
}

.resume-details-grid h4,
.resume-training-grid h4 {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.45rem;
}

.resume-details-grid ul,
.resume-training-grid ul {
  margin: 0;
  padding-left: 1rem;
  display: grid;
  gap: 0.35rem;
}

.resume-details-grid li,
.resume-training-grid li {
  color: var(--slate);
  font-size: 0.84rem;
  line-height: 1.45;
}

.resume-details-note {
  margin-top: 0.55rem;
  margin-bottom: 0;
  font-size: 0.76rem;
  color: var(--text-dim);
}

.resume-bullet-list {
  margin: 0;
  padding-left: 1.15rem;
  display: grid;
  gap: 0.6rem;
}

.resume-bullet-list li {
  color: var(--slate);
  font-size: 0.92rem;
  line-height: 1.45;
}

.resume-bullet-list strong {
  color: var(--white);
}

.resume-training-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.resume-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.resume-col h2 {
  font-size: 1.5rem;
  border-bottom: 1px solid rgba(201,168,76,0.2);
  padding-bottom: 0.75rem;
  margin-bottom: 2rem;
}

.resume-entry {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.5rem 2rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.resume-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--white);
}
.resume-role {
  font-size: 0.9rem;
  color: var(--slate);
  margin: 0;
}
.resume-year {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--gold);
  white-space: nowrap;
  padding-top: 0.2rem;
}
.resume-prod {
  font-size: 0.8rem;
  color: var(--text-dim);
  grid-column: 1;
  margin: 0;
}

.resume-union-badge {
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
  padding: 1.25rem 2rem;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 4px;
}

.union-tag {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: var(--gold);
}

.union-separator {
  color: var(--slate);
}

.union-location {
  color: var(--slate);
  margin-left: 1rem;
}

.resume-top-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 3.25rem;
}

.resume-top-card {
  padding: 1.6rem;
  border-radius: 8px;
  background: rgba(30,50,82,0.3);
  border: 1px solid rgba(201,168,76,0.15);
}

.resume-top-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.resume-top-card p {
  margin-bottom: 0;
}

.resume-representation {
  margin-top: 4rem;
}

.resume-rep-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.resume-rep-text {
  margin: 0.5rem 0 0;
  color: var(--white);
  font-size: 0.95rem;
}

.resume-rep-text span {
  color: var(--slate);
  font-size: 0.85rem;
}

.resume-rep-text.muted {
  color: var(--slate);
  font-size: 0.9rem;
}

.stat-seeking {
  border-color: rgba(201,168,76,0.35);
}

.stat-label-gold {
  color: var(--gold);
}

.resume-bottom-cta {
  text-align: center;
  margin-top: 4rem;
}

.resume-bottom-cta p {
  margin-bottom: 1.5rem;
}

/* ---- VO/MEDIA PAGE ---- */
.vo-section {
  padding: 6rem 0;
}

.vo-section-tight {
  padding: 7.1rem 0 5.2rem;
}

.vo-page-intro {
  margin-bottom: 1.8rem;
}

.vo-page-intro h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.8vw, 3.4rem);
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 0.4rem;
}

.vo-page-intro p {
  margin-bottom: 0;
}

.vo-credits-lead {
  max-width: 72ch;
  margin-top: 0.55rem;
  color: var(--slate);
}

.media-library-group {
  margin-bottom: 4rem;
}

.media-library-group:last-of-type {
  margin-bottom: 0;
}

.media-library-group h2 {
  margin-bottom: 1.2rem;
}

.media-library-group .demos-grid {
  margin-bottom: 0;
}

.demos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 5rem;
}

.demo-card {
  background: rgba(30,50,82,0.4);
  border: 1px solid rgba(201,168,76,0.12);
  border-radius: 6px;
  padding: 2rem;
  transition: border-color var(--transition);
}
.demo-card:hover { border-color: rgba(201,168,76,0.35); }

.demo-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.demo-card p { font-size: 0.88rem; margin-bottom: 1.25rem; }

.demo-audio {
  width: 100%;
  display: block;
}

.demo-download {
  margin-top: 0.72rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 999px;
  padding: 0.4rem 0.75rem;
  transition: color var(--transition), border-color var(--transition), background var(--transition);
}

.demo-download:hover {
  color: var(--white);
  border-color: rgba(201,168,76,0.55);
  background: rgba(24,39,60,0.8);
}

.demo-video {
  width: 100%;
  display: block;
  border-radius: 6px;
  border: 1px solid rgba(201,168,76,0.18);
  background: #02060d;
}

.demo-player {
  background: rgba(13,27,42,0.8);
  border-radius: 4px;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-dim);
  border: 1px dashed rgba(201,168,76,0.15);
}

.demo-player-link {
  text-decoration: none;
  transition: border-color var(--transition), background var(--transition), transform var(--transition);
}

.demo-player-link:hover {
  border-color: rgba(201,168,76,0.45);
  background: rgba(21,37,59,0.92);
  transform: translateY(-1px);
}

.demo-player-icon {
  width: 36px; height: 36px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-size: 0.9rem;
  cursor: pointer;
  flex-shrink: 0;
  transition: transform var(--transition);
}
.demo-player-icon:hover { transform: scale(1.1); }

.vo-note {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--text-dim);
  letter-spacing: 0.05em;
}

.resume-snapshot-card a,
.resume-prod a {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color var(--transition), border-color var(--transition);
}

.resume-snapshot-card a:hover,
.resume-prod a:hover {
  color: var(--white);
  border-bottom-color: rgba(255,255,255,0.45);
}

.inline-link {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(201,168,76,0.35);
  transition: color var(--transition), border-color var(--transition);
}

.inline-link:hover {
  color: var(--white);
  border-bottom-color: rgba(255,255,255,0.45);
}

.inline-link strong {
  color: inherit;
}

.media-hub {
  margin-bottom: 4.5rem;
}

.on-camera-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(240px, 320px);
  gap: 1.4rem;
  align-items: center;
  padding: 1.45rem;
  margin-bottom: 1.8rem;
  border: 1px solid rgba(201,168,76,0.2);
  border-left: 4px solid var(--gold);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(30,50,82,0.5) 0%, rgba(13,27,42,0.72) 100%);
}

.on-camera-feature-copy h2 {
  margin-bottom: 0.7rem;
  font-size: clamp(1.55rem, 2.9vw, 2.3rem);
}

.on-camera-feature-copy p {
  margin-bottom: 1rem;
  max-width: 64ch;
}

.on-camera-feature-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.on-camera-inline-video {
  margin-top: 0.9rem;
  width: min(100%, 700px);
  border: 1px solid rgba(201,168,76,0.24);
  border-radius: 8px;
  overflow: hidden;
  background: #050d18;
  box-shadow: 0 16px 32px rgba(0,0,0,0.26);
}

.on-camera-inline-video video {
  display: block;
  width: 100%;
  height: auto;
  max-height: 420px;
  background: #000;
}

.on-camera-feature-poster {
  justify-self: end;
  align-self: end;
  width: min(100%, 320px);
  flex: 0 0 auto;
}

.media-row + .media-row {
  margin-top: 1.6rem;
}

.media-row-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 1rem;
}

.media-row-header .section-label {
  margin: 0 0 0.4rem;
}

.media-row-header h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3.8vw, 2.8rem);
  line-height: 1.06;
}

.media-row-header p {
  margin: 0.55rem auto 0.95rem;
  color: var(--text-dim);
  max-width: 30ch;
}

.bts-stills {
  margin-bottom: 2rem;
}

.bts-stills-head {
  margin-bottom: 1rem;
}

.bts-stills-head h2 {
  margin-bottom: 0.45rem;
}

.bts-stills-head p {
  margin-bottom: 0;
}

.bts-grid {
  gap: 0.9rem;
}

.media-row-label {
  margin: 0 0 0.75rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

.media-hub-copy {
  max-width: 780px;
  margin-bottom: 1.4rem;
}

.media-category-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 1.25rem;
}

.media-tab {
  border: 1px solid rgba(201,168,76,0.25);
  background: rgba(13,27,42,0.55);
  color: var(--text-dim);
  border-radius: 999px;
  padding: 0.5rem 0.95rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color var(--transition), color var(--transition), background var(--transition);
}

.media-tab:hover {
  color: var(--white);
  border-color: rgba(201,168,76,0.55);
}

.media-tab.active {
  color: var(--navy);
  background: var(--gold);
  border-color: var(--gold);
}

.media-carousel-shell {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.65rem;
  align-items: center;
}

.media-scroll-btn {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(201,168,76,0.3);
  background: rgba(13,27,42,0.7);
  color: var(--gold);
  font-size: 1.15rem;
  cursor: pointer;
  transition: transform var(--transition), border-color var(--transition), background var(--transition);
}

.media-scroll-btn:hover {
  transform: translateY(-1px);
  border-color: rgba(201,168,76,0.7);
  background: rgba(22,35,54,0.95);
}

.media-carousel {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: none;
  overscroll-behavior-x: contain;
  overscroll-behavior-inline: contain;
  -webkit-overflow-scrolling: touch;
  padding: 0.25rem 0.25rem 0.85rem;
}

.media-carousel::-webkit-scrollbar {
  height: 7px;
}

.media-carousel::-webkit-scrollbar-thumb {
  background: rgba(201,168,76,0.45);
  border-radius: 999px;
}

.media-carousel::-webkit-scrollbar-track {
  background: rgba(13,27,42,0.4);
  border-radius: 999px;
}

.media-poster {
  position: relative;
  flex: 0 0 clamp(170px, 21vw, 230px);
  aspect-ratio: 2 / 3;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(201,168,76,0.14);
  background: rgba(13,27,42,0.8);
  padding: 0;
  cursor: pointer;
  scroll-snap-align: none;
  text-align: left;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.media-poster:hover {
  transform: translateY(-3px);
  border-color: rgba(201,168,76,0.38);
  box-shadow: 0 16px 30px rgba(0,0,0,0.35);
}

.media-poster:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.media-poster img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 50% 20%;
}

.media-poster-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.85rem 0.75rem 0.8rem;
  background: linear-gradient(180deg, rgba(3,8,15,0) 0%, rgba(3,8,15,0.9) 60%, rgba(3,8,15,0.96) 100%);
  z-index: 4;
}

.media-poster-kicker {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.32rem;
}

.media-poster-title {
  display: block;
  font-family: var(--font-body);
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--white);
  line-height: 1.3;
}

.media-row .media-poster::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 43%, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.08) 28%, rgba(0,0,0,0) 62%);
  z-index: 2;
  pointer-events: none;
}

.media-row .media-poster::after {
  content: "▶";
  position: absolute;
  left: 50%;
  top: 43%;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255,255,255,0.44);
  background: rgba(8,20,35,0.34);
  color: rgba(255,255,255,0.72);
  font-size: 1.3rem;
  line-height: 1;
  text-indent: 2px;
  z-index: 3;
  opacity: 0.82;
  pointer-events: none;
  transition: transform var(--transition), background var(--transition), border-color var(--transition), color var(--transition);
}

.media-row .media-poster:hover::after {
  transform: translate(-50%, -50%) scale(1.06);
  background: rgba(8,20,35,0.46);
  border-color: rgba(201,168,76,0.62);
  color: rgba(201,168,76,0.9);
  opacity: 0.95;
}

.video-modal[hidden] {
  display: none;
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 220;
  display: grid;
  place-items: center;
  padding: 1.25rem;
}

.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3,8,15,0.84);
}

.video-modal-dialog {
  position: relative;
  width: min(960px, 94vw);
  background: #081423;
  border: 1px solid rgba(201,168,76,0.28);
  border-radius: 10px;
  padding: 1.2rem 1.2rem 1.05rem;
  box-shadow: 0 28px 70px rgba(0,0,0,0.45);
}

.video-modal-close {
  position: absolute;
  top: 0.7rem;
  right: 0.7rem;
  border: 1px solid rgba(201,168,76,0.28);
  background: rgba(13,27,42,0.8);
  color: #dce7f7;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 0.64rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 0.7rem;
  cursor: pointer;
}

.video-modal-title {
  margin-bottom: 0.85rem;
  padding-right: 5.5rem;
}

.video-modal-frame {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(201,168,76,0.22);
  background: rgba(13,27,42,0.85);
}

.video-modal-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-modal-native {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(201,168,76,0.22);
  background: #000;
}

.video-modal-native video {
  width: 100%;
  display: block;
  max-height: min(72vh, 620px);
  background: #000;
}

.video-modal-fallback {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-dim);
}

.video-modal-fallback a {
  color: var(--gold);
}

body.modal-open {
  overflow: hidden;
}

/* ---- PHOTOS PAGE ---- */
.photos-section {
  padding: 6rem 0;
}

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

.photo-grid-headshots {
  grid-template-columns: repeat(4, 1fr);
}

.photo-grid-widescreen {
  grid-template-columns: repeat(4, 1fr);
}

.photo-grid img {
  width: 100%;
  display: block;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  object-position: 50% 20%;
  border: 1px solid rgba(201,168,76,0.12);
  border-radius: 6px;
  background: rgba(30,50,82,0.25);
}

.photo-grid-widescreen img {
  aspect-ratio: 16 / 9;
  object-position: center;
}

.photo-placeholder {
  aspect-ratio: 3/4;
  background: rgba(30,50,82,0.4);
  border: 1px solid rgba(201,168,76,0.1);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-dim);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  gap: 0.5rem;
  transition: border-color var(--transition);
}
.photo-placeholder:hover { border-color: rgba(201,168,76,0.3); }
.photo-placeholder .ph-icon { font-size: 2rem; opacity: 0.4; }

/* ---- CONTACT PAGE ---- */
.contact-section {
  padding: 6rem 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}

.contact-info {
  display: grid;
  gap: 1rem;
  align-content: start;
}

.contact-info h3 {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.3vw, 2rem);
  color: var(--white);
  margin-bottom: 0.5rem;
}

.contact-info p {
  margin-bottom: 0.25rem;
  color: #a8b7cc;
}

.contact-block {
  margin-bottom: 0;
  padding: 1.05rem 1.1rem 1.1rem;
  border: 1px solid rgba(201,168,76,0.14);
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(20,34,52,0.72) 0%, rgba(13,27,42,0.72) 100%);
}

.contact-block-highlight {
  border-left: 4px solid var(--gold);
  background: linear-gradient(135deg, rgba(24,39,60,0.84) 0%, rgba(13,27,42,0.76) 100%);
}

.contact-block-highlight .contact-email-link {
  font-size: clamp(1.15rem, 2.2vw, 1.55rem);
  letter-spacing: 0.02em;
}

.contact-email-link {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 1rem;
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition);
}
.contact-email-link:hover { border-color: var(--gold); }

.contact-form .form-group {
  margin-bottom: 1.5rem;
}

.contact-form label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 0.5rem;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  background: rgba(30,50,82,0.4);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: var(--radius);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.9rem 1.2rem;
  transition: border-color var(--transition);
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus { border-color: var(--gold); }

.contact-form textarea { resize: vertical; min-height: 140px; }

.contact-form select option { background: var(--navy); }

.contact-seeking-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-seeking-list li {
  padding: 0.72rem 0.1rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  color: var(--white);
  display: flex;
  gap: 0.75rem;
  align-items: center;
  font-size: 0.98rem;
}

.contact-seeking-list li span {
  color: var(--gold);
  font-size: 1rem;
}

.contact-seeking-list li.muted {
  color: var(--slate);
  border-bottom: none;
  padding-top: 0.82rem;
  padding-bottom: 0.15rem;
  font-size: 0.95rem;
}

.contact-seeking-list li.muted span { color: var(--slate); }

.contact-social-links {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-top: 0.5rem;
}

.contact-social-link {
  color: var(--white);
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 0.9rem;
  display: flex;
  gap: 0.7rem;
  align-items: center;
  border: 1px solid rgba(201,168,76,0.16);
  border-radius: 7px;
  padding: 0.62rem 0.72rem;
  background: rgba(13,27,42,0.56);
  transition: border-color var(--transition), transform var(--transition);
}

.contact-social-link:hover {
  border-color: rgba(201,168,76,0.4);
  transform: translateY(-1px);
}

.contact-social-link.primary {
  color: var(--gold);
}

.contact-social-total {
  margin-bottom: 0.75rem;
  font-family: var(--font-mono);
  font-size: 0.76rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-form-card {
  padding: 2.5rem;
}

.contact-form-title {
  margin-bottom: 1.5rem;
}

.hidden-honeypot {
  display: none;
}

.contact-submit {
  width: 100%;
}

.contact-netlify-note {
  background: rgba(201,168,76,0.06);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 4px;
  padding: 1.25rem 1.5rem;
  margin-top: 1rem;
}

.contact-netlify-note p {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-dim);
}

.contact-netlify-note strong {
  color: var(--gold);
}

/* ---- HOME V2 ---- */
.hero-v2 {
  padding: 8.5rem 0 4.5rem;
  min-height: 100vh;
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 4.5rem;
  align-items: center;
}

.hero-v2 .hero-content {
  max-width: 680px;
}

.hero-lead {
  max-width: 620px;
  font-size: 1.08rem;
  line-height: 1.85;
  margin-bottom: 2.2rem;
  color: #a6b4c9;
}

.hero-portrait {
  position: relative;
  background: rgba(13, 27, 42, 0.7);
  border: 1px solid rgba(201, 168, 76, 0.35);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
}

.hero-portrait img {
  display: block;
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  object-position: 50% 20%;
}

.hero-portrait-meta {
  padding: 1rem 1.25rem;
  border-top: 1px solid rgba(201, 168, 76, 0.2);
  background: rgba(13, 27, 42, 0.92);
}

.hero-portrait-meta p {
  margin: 0;
  font-size: 0.85rem;
  color: #c4cfde;
}

.meta-label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.45rem;
}

.ticker-strip {
  border-top: 1px solid rgba(201, 168, 76, 0.12);
  border-bottom: 1px solid rgba(201, 168, 76, 0.12);
  background: rgba(22, 35, 54, 0.7);
  padding: 1rem 0;
}

.ticker-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.ticker-content span {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #98a9bf;
}

.ticker-content span::before {
  content: '•';
  color: var(--gold);
  margin-right: 0.6rem;
}

.credit-card-v2 {
  grid-template-columns: minmax(360px, 1fr) minmax(250px, 320px) auto;
  gap: 2rem;
}

.credit-network-stack {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
}

.credit-press-card {
  display: block;
  text-decoration: none;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(201,168,76,0.25);
  background: rgba(13,27,42,0.82);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.credit-press-card:hover {
  transform: translateY(-2px);
  border-color: rgba(201,168,76,0.55);
  box-shadow: 0 18px 36px rgba(0,0,0,0.3);
}

.credit-press-media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-bottom: 1px solid rgba(201,168,76,0.22);
  background: #0e1f36;
}

.credit-press-main {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.credit-press-secondary {
  position: absolute;
  right: 0.65rem;
  bottom: 0.65rem;
  width: 39%;
  border: 1px solid rgba(201,168,76,0.48);
  border-radius: 5px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.42);
}

.credit-press-meta {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 0.75rem 0.9rem 0.85rem;
}

.credit-press-kicker {
  font-family: var(--font-mono);
  font-size: 0.63rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

.credit-press-title {
  font-size: 0.84rem;
  color: #d8e3f2;
  line-height: 1.35;
}

.credit-links {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.armorsaurs-stills {
  padding: 5rem 0 1.5rem;
}

.stills-header {
  margin-bottom: 1.35rem;
}

.stills-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.9rem;
}

.stills-grid a {
  display: block;
}

.stills-lightbox-trigger {
  display: block;
  width: 100%;
  cursor: zoom-in;
}

.stills-lightbox-trigger:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 10px;
}

.stills-grid img {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  border: 1px solid rgba(201,168,76,0.22);
  object-fit: cover;
  object-position: center;
  display: block;
}

.still-lightbox[hidden] {
  display: none;
}

.still-lightbox {
  position: fixed;
  inset: 0;
  z-index: 230;
  display: grid;
  place-items: center;
  padding: 1.25rem;
}

.still-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3,8,15,0.84);
}

.still-lightbox-dialog {
  position: relative;
  width: min(1080px, 95vw);
  background: #081423;
  border: 1px solid rgba(201,168,76,0.28);
  border-radius: 10px;
  padding: 1.1rem 1.1rem 1.05rem;
  box-shadow: 0 28px 70px rgba(0,0,0,0.45);
}

.still-lightbox-close {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  border: 1px solid rgba(201,168,76,0.28);
  background: rgba(13,27,42,0.8);
  color: #dce7f7;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 0.64rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 0.7rem;
  cursor: pointer;
}

.still-lightbox-title {
  margin: 0 4.8rem 0.8rem 0;
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
}

.still-lightbox-media {
  border-radius: 8px;
  overflow: auto;
  border: 1px solid rgba(201,168,76,0.22);
  background: #000;
  max-height: min(74vh, 760px);
}

.still-lightbox-media img {
  width: 100%;
  display: block;
  max-height: min(74vh, 760px);
  object-fit: contain;
  background: #000;
  cursor: zoom-in;
}

.still-lightbox-media.is-zoomed img {
  width: auto;
  max-width: none;
  max-height: none;
  min-width: 100%;
  cursor: zoom-out;
}

.still-lightbox-actions {
  margin-top: 0.9rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.still-lightbox-more {
  margin-top: 0;
}

.casting-grid {
  padding: 6.5rem 0;
}

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

.casting-card {
  position: relative;
  overflow: hidden;
  padding: 2rem;
  background: rgba(30, 50, 82, 0.38);
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: 8px;
  min-height: 280px;
}

.casting-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(180deg, rgba(7,16,28,0.65) 0%, rgba(7,16,28,0.82) 58%, rgba(7,16,28,0.94) 100%),
    var(--card-art);
  background-size: cover;
  background-position: center 24%;
  opacity: 0.95;
  transform: scale(1.02);
}

.casting-card > * {
  position: relative;
  z-index: 1;
}

.casting-card-camera {
  --card-art: url('Headshot/web-optimized/andrew-russell-headshot-beard-04.webp');
}

.casting-card-voice {
  --card-art: url('Reel Thumbnails/Boothill.webp');
}

.casting-card-pro {
  --card-art: url('Headshot/web-optimized/andrew-russell-headshot-beard-01.webp');
}

.casting-card-icon {
  position: absolute;
  top: 0.95rem;
  right: 0.9rem;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.94rem;
  background: rgba(201,168,76,0.18);
  border: 1px solid rgba(201,168,76,0.36);
}

.casting-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  line-height: 1.25;
  margin: 0 0 0.8rem;
  color: var(--white);
}

.casting-card .section-label {
  margin-bottom: 0.65rem;
}

.casting-card p {
  margin-bottom: 0;
}

.headshot-preview {
  padding: 6.5rem 0;
  background: var(--navy-mid);
  border-top: 1px solid rgba(201, 168, 76, 0.12);
  border-bottom: 1px solid rgba(201, 168, 76, 0.12);
}

.preview-header {
  text-align: center;
  margin-bottom: 2.75rem;
}

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

.preview-grid img {
  width: 100%;
  height: auto;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  object-position: 50% 20%;
  border-radius: 8px;
  border: 1px solid rgba(201, 168, 76, 0.18);
}

.preview-actions {
  margin-top: 2rem;
  text-align: center;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .twitch-live-card {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  .twitch-live-thumb-wrap {
    max-width: 520px;
  }
  .hero-v2 { min-height: auto; }
  .hero-layout { grid-template-columns: 1fr; gap: 2rem; }
  .hero-portrait { max-width: 540px; width: 100%; margin: 0 auto; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-personal { grid-template-columns: 1fr; }
  .about-personal-copy { padding: 0.2rem 0.25rem 0.5rem; }
  .about-value-grid { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: repeat(4, 1fr); }
  .resume-snapshot-grid { grid-template-columns: repeat(2, 1fr); }
  .resume-main-grid { grid-template-columns: 1fr; }
  .resume-highlight-list { grid-template-columns: 1fr; }
  .resume-details-grid { grid-template-columns: 1fr; }
  .resume-training-grid { grid-template-columns: 1fr; }
  .resume-top-grid { grid-template-columns: 1fr; }
  .resume-rep-grid { grid-template-columns: 1fr; }
  .casting-grid-inner { grid-template-columns: 1fr; }
  .stills-grid { grid-template-columns: repeat(2, 1fr); }
  .preview-grid { grid-template-columns: repeat(2, 1fr); }
  .preview-grid img { height: auto; aspect-ratio: 2 / 3; }
  .skills-grid { grid-template-columns: repeat(2, 1fr); }
  .about-full-grid { grid-template-columns: 1fr; gap: 3rem; }
  .bio-sidebar { position: static; }
  .resume-grid { grid-template-columns: 1fr; gap: 3rem; }
  .credit-card-v2 {
    grid-template-columns: 1fr;
    gap: 1.3rem;
  }
  .credit-press-card {
    max-width: 420px;
    margin: 0 auto;
  }
  .on-camera-feature {
    grid-template-columns: 1fr;
    padding: 1.2rem;
  }
  .on-camera-feature-poster {
    justify-self: start;
    align-self: start;
    width: min(320px, 100%);
  }
  .media-carousel-shell {
    grid-template-columns: auto 1fr auto;
    gap: 0.45rem;
  }
  .media-scroll-btn {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    font-size: 1rem;
  }
  .media-poster { flex-basis: clamp(190px, 34vw, 250px); }
  .demos-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .photo-grid { grid-template-columns: repeat(2, 1fr); }
  .credit-card { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
  .credit-logo-area { flex-direction: row; justify-content: center; }
}

@media (max-width: 768px) {
  #nav {
    background: rgba(8, 19, 33, 0.96);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(201,168,76,0.16);
  }
  .nav-logo {
    position: relative;
    z-index: 160;
  }
  .twitch-live-banner {
    padding-top: 4.85rem;
  }
  .twitch-live-card {
    padding: 0.82rem 0.82rem 0.85rem;
  }
  .twitch-live-copy h3 {
    font-size: 1.1rem;
  }
  .twitch-live-subtext {
    font-size: 0.86rem;
  }
  .nav-links {
    display: none;
    position: fixed;
    inset: 0;
    padding: calc(env(safe-area-inset-top) + 5.15rem) 1.2rem 1.6rem;
    background: #081423;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 0.25rem;
    z-index: 210;
  }
  .nav-links.open { display: flex; }
  .nav-links li {
    width: min(92vw, 430px);
    list-style: none;
  }
  .nav-links a {
    display: block;
    width: 100%;
    font-size: 0.97rem;
    line-height: 1.2;
    text-align: center;
    color: var(--white);
    background: transparent;
    border: 0;
    border-radius: 0;
    border-bottom: 1px solid rgba(201,168,76,0.22);
    padding: 0.95rem 0.4rem;
  }
  .nav-links li:first-child a {
    border-top: 1px solid rgba(201,168,76,0.22);
  }
  .nav-links a:hover,
  .nav-links a.active {
    color: var(--gold-lt);
    border-bottom-color: rgba(201,168,76,0.6);
  }
  .nav-links a.nav-cta {
    margin-top: 0.55rem;
    border: 1px solid rgba(201,168,76,0.75);
    border-radius: 8px;
    background: rgba(201,168,76,0.12);
    color: var(--gold-lt);
  }
  .nav-links a.nav-live-link {
    justify-content: center;
    border: 1px solid rgba(255, 113, 143, 0.5);
    border-radius: 999px;
  }
  .nav-toggle { display: flex; z-index: 220; }

  .hero { padding: 7rem 1.5rem 4rem; }
  .hero-name { font-size: clamp(3.5rem, 15vw, 5rem); }
  .hero-scroll { display: none; }
  .hero-lead { font-size: 1rem; }
  .about-hero-minimal {
    padding-top: 6.9rem;
  }
  .vo-section-tight { padding-top: 6.6rem; }
  .ticker-content { justify-content: flex-start; }
  .credit-card-v2 { grid-template-columns: 1fr; }
  .credit-links { justify-content: center; }
  .media-category-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 0.25rem;
  }
  .media-tab {
    white-space: nowrap;
  }
  .media-row-header h2 {
    font-size: clamp(1.45rem, 8.3vw, 2rem);
  }
  .media-row-header p {
    margin-top: 0.45rem;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
  }
  .media-row .media-poster::after {
    width: 50px;
    height: 50px;
    font-size: 1.1rem;
  }
  .media-poster {
    flex: 0 0 min(70vw, 250px);
  }
  .video-modal {
    padding: 0.8rem;
  }
  .video-modal-dialog {
    width: 96vw;
    padding: 1rem 0.9rem 0.85rem;
  }
  .video-modal-title {
    font-size: 1.1rem;
  }
  .social-links-rich {
    grid-template-columns: 1fr;
  }
  .resume-snapshot-grid { grid-template-columns: 1fr; }
  .stills-grid { grid-template-columns: 1fr; }
  .preview-grid { grid-template-columns: 1fr; }
  .preview-grid img { height: auto; aspect-ratio: 2 / 3; }

  .about-stats { grid-template-columns: repeat(2, 1fr); }
  .skills-grid { grid-template-columns: 1fr; }
  .rep-grid { flex-direction: column; }
  .rep-divider { width: 80px; height: 1px; }

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