/* ============================================
   G-SU PAEK — Personal Website
   ============================================ */

:root {
  --black: #0a0a0a;
  --dark: #111111;
  --dark-2: #1a1a1a;
  --dark-3: #242424;
  --white: #ffffff;
  --off-white: #f0f4f4;
  --gray: #8a8a8a;
  --gray-light: #c0c0c0;
  --accent: #4ecdc4;
  --accent-dim: #2db8ae;
  --red: #c0392b;

  --font-display: 'Bebas Neue', sans-serif;
  --font-heading: 'Oswald', sans-serif;
  --font-body: 'Inter', sans-serif;

  --nav-height: 72px;
  --container-max: 1180px;
  --section-pad: 100px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; overscroll-behavior-x: none; }
body {
  background: var(--off-white);
  color: var(--black);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  overscroll-behavior-x: none;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Container ── */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.btn--primary {
  background: var(--accent);
  color: var(--black);
  border-color: var(--accent);
}
.btn--primary:hover {
  background: var(--accent-dim);
  border-color: var(--accent-dim);
  color: var(--black);
}
.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn--outline:hover {
  background: var(--white);
  color: var(--black);
}
.btn--ghost {
  background: transparent;
  color: var(--gray-light);
  border-color: var(--dark-3);
}
.btn--ghost:hover {
  border-color: var(--gray);
  color: var(--white);
}
.btn--sm { padding: 10px 22px; font-size: 13px; }
.btn--full { width: 100%; }

/* ── Section Shared ── */
.section { padding: var(--section-pad) 0; }
.section--dark {
  background: var(--dark);
  color: var(--white);
}
.section__label {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.section__label--light { color: var(--accent); }
.section__label--center { text-align: center; }
.section__title {
  font-family: var(--font-display);
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1;
  letter-spacing: 0.01em;
  color: var(--black);
  margin-bottom: 32px;
}
.section__title--light { color: var(--white); }
.section__header { margin-bottom: 60px; }
.section__header--center { text-align: center; }

/* ============================================
   NAV
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: transparent;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.nav.scrolled,
.nav.menu-open {
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}
/* Use ::before for backdrop-filter so it doesn't trap fixed-position children (Safari) */
.nav.scrolled::before,
.nav.menu-open::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: -1;
}
.nav__inner {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 40px;
  padding: 0 24px;
  max-width: var(--container-max);
  margin: 0 auto;
}
.nav__logo {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.1em;
  color: var(--white);
  flex-shrink: 0;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav__logo:hover { color: var(--accent); }
.nav__logo-icon {
  display: inline-block;
  width: 68px;
  height: 80px;
  flex-shrink: 0;
  background-color: currentColor;
  -webkit-mask: url('images/transparent-me.png') center / contain no-repeat;
  mask: url('images/transparent-me.png') center / contain no-repeat;
  transition: background-color 0.2s;
}
.nav__links {
  display: flex;
  gap: 32px;
  margin-left: auto;
}
.nav__link {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  transition: color 0.2s;
}
.nav__link:hover { color: var(--accent); }

/* Nav dropdown */
.nav__item--dropdown {
  position: relative;
}
.nav__link--has-dropdown {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.nav__link--has-dropdown svg {
  transition: transform 0.2s;
}
.nav__item--dropdown:hover .nav__link--has-dropdown svg {
  transform: rotate(180deg);
}
.nav__dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-4px);
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.1);
  min-width: 200px;
  list-style: none;
  padding: 6px 0;
  margin-top: 12px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.18s, transform 0.18s, visibility 0.18s;
  z-index: 200;
}
/* Invisible bridge so the mouse can travel from the link into the dropdown */
.nav__dropdown::before {
  content: '';
  position: absolute;
  bottom: 100%;
  left: 0;
  right: 0;
  height: 16px;
}
.nav__item--dropdown:hover .nav__dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav__dropdown-link {
  display: block;
  padding: 10px 18px;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  transition: color 0.15s, background 0.15s;
}
.nav__dropdown-link:hover {
  color: var(--accent);
  background: rgba(255,255,255,0.04);
}

.nav__social {
  display: flex;
  gap: 16px;
  align-items: center;
}
.nav__social-link {
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
  display: flex;
}
.nav__social-link:hover { color: var(--accent); }
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: transform 0.3s, opacity 0.3s;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-color: var(--black);
  background-image: url('images/chair-hs.jpg');
  background-size: cover;
  background-position: center 25%;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.52) 0%,
    rgba(0,0,0,0.3) 45%,
    rgba(0,0,0,0.72) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  animation: heroFadeIn 1.2s ease both;
}
@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero__eyebrow {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  opacity: 0;
  animation: heroFadeIn 1s ease 0.2s both;
}
.hero__name {
  display: block;
  line-height: 0.9;
  margin-bottom: 24px;
  opacity: 0;
  animation: heroFadeIn 1s ease 0.4s both;
}
.hero__name-first,
.hero__name-last {
  display: block;
  font-family: var(--font-display);
  letter-spacing: 0.04em;
  color: var(--white);
}
.hero__name-first {
  font-size: clamp(72px, 14vw, 160px);
  text-shadow: 0 2px 24px rgba(0,0,0,0.6);
}
.hero__name-last  {
  font-size: clamp(72px, 14vw, 160px);
  color: var(--accent);
  -webkit-text-stroke: 1px var(--accent);
  text-shadow: 0 2px 24px rgba(0,0,0,0.5);
}
.hero__tagline {
  font-family: var(--font-body);
  font-size: clamp(14px, 2vw, 18px);
  font-weight: 300;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.6);
  margin-bottom: 40px;
  text-transform: uppercase;
  opacity: 0;
  animation: heroFadeIn 1s ease 0.6s both;
}
.hero__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: heroFadeIn 1s ease 0.8s both;
}
.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,0.4);
  animation: bounce 2s ease infinite;
  transition: color 0.2s;
}
.hero__scroll:hover { color: var(--accent); }
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ============================================
   ABOUT  (3-column: text | headshot | shows)
   ============================================ */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 52px;
  align-items: start;
}
.about__image-wrap {
  position: relative;
}
.about__headshot {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: grayscale(12%);
  transition: filter 0.4s ease;
  box-shadow: 0 8px 40px rgba(0,0,0,0.18);
}
.about__image-wrap:hover .about__headshot { filter: grayscale(0%); }
.about__bio {
  font-size: 13px;
  line-height: 1.8;
  margin-bottom: 16px;
  color: #444;
}
.about__bio:last-of-type { margin-bottom: 28px; }

/* ── Shows sidebar ── */
.about__shows { }
.shows__sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 8px;
}
.show__card {
  border: 1px solid rgba(0,0,0,0.1);
  padding: 18px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.show__card:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}
.show__card--tbd { opacity: 0.55; }
.show__card--tbd:hover { opacity: 0.75; border-color: rgba(0,0,0,0.15); box-shadow: none; }
.show__card-date {
  text-align: center;
  flex-shrink: 0;
  width: 44px;
}
.show__card-date .show__month {
  display: block;
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--accent-dim);
  text-transform: uppercase;
}
.show__card-date .show__day {
  display: block;
  font-family: var(--font-display);
  font-size: 32px;
  line-height: 1;
  color: var(--black);
}
.show__card-body {
  flex: 1;
  min-width: 0;
}
.show__card-title {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 2px;
}
.show__card-sub {
  font-size: 12px;
  color: #666;
  margin-bottom: 6px;
  font-style: italic;
}
.show__card-meta {
  font-size: 11px;
  color: #888;
  line-height: 1.5;
}
.show__card-meta + .show__card-meta { margin-top: 1px; }
.show__card-actions {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-top: 12px;
  flex-wrap: wrap;
}
.show__card-actions .btn { margin-top: 0; }
.btn--cal {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 10px 12px;
  font-size: 11px;
}

/* ============================================
   REEL — full-screen section
   ============================================ */
.reel {
  position: relative;
  padding: 0;
  overflow: hidden;
  background: #000;
}

/* Landscape: full-screen cover — video fills viewport, slight crop is fine */
@media (orientation: landscape) {
  .reel { height: 100vh; }
  .reel__player-wrap {
    position: absolute;
    inset: 0;
    overflow: hidden;
  }
  .reel__player-wrap iframe,
  #reelPlayer {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: calc(100vh * 16 / 9);
    height: calc(100vw * 9 / 16);
  }
}

/* Portrait: contain — video fits fully without cropping */
@media (orientation: portrait) {
  .reel { width: 100%; }
  .reel__player-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
  }
  .reel__player-wrap iframe,
  #reelPlayer {
    position: absolute !important;
    inset: 0;
    width: 100% !important;
    height: 100% !important;
    min-width: unset;
    min-height: unset;
    transform: none !important;
    top: 0 !important;
    left: 0 !important;
  }
}
.reel__label-overlay {
  position: absolute;
  bottom: 48px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 2;
  pointer-events: none;
  padding: 24px 48px 0;
  width: 100%;
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, transparent 100%);
}
.reel__overlay-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 56px);
  letter-spacing: 0.06em;
  color: var(--white);
  line-height: 1;
}

/* ============================================
   IMPROV
   ============================================ */
.improv__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.improv__card {
  background: var(--dark);
  padding: 48px 32px;
  transition: background 0.3s, border-color 0.3s;
  display: flex;
  flex-direction: column;
  text-decoration: none;
}
.improv__card--linked {
  cursor: pointer;
  border: 1px solid transparent;
}
.improv__card--linked:hover {
  background: var(--dark-2);
  border-color: var(--accent);
}
.improv__card--linked:hover .improv__card-title { color: var(--accent); }
.improv__card:not(.improv__card--linked):hover { background: var(--dark-2); }
.improv__card-icon {
  color: var(--accent);
  margin-bottom: 24px;
}
.improv__card-logo {
  display: block;
  width: 180px;
  height: 110px;
  object-fit: contain;
  object-position: center;
  margin-bottom: 24px;
  background: #fff;
  padding: 12px 18px;
  border-radius: 4px;
  flex-shrink: 0;
}
.improv__card-ticket {
  display: inline-block;
  margin-top: 14px;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dark);
  background: var(--accent);
  padding: 8px 16px;
  border-radius: 3px;
  transition: background 0.2s, opacity 0.2s;
}
.improv__card-ticket:hover { background: var(--accent-dim); }
.improv__card-title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.improv__card-text {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}
.improv__card-link {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0.7;
  transition: opacity 0.2s;
}
.improv__card--linked:hover .improv__card-link { opacity: 1; }
.improv__card-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: auto;
}
.improv__card-actions--col {
  flex-direction: column;
  align-items: flex-start;
}

/* ── Thumbnail hover panel ── */
.improv__card-thumb {
  position: absolute;
  bottom: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  width: 260px;
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 12px 40px rgba(0,0,0,0.6);
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 50;
}
.improv__card-thumb img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}
.improv__card--linked {
  position: relative;
  overflow: visible !important;
}
.improv__card--linked:hover .improv__card-thumb {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ── Resume preview (no screenshot, styled card) ── */
.improv__card-thumb--resume { padding: 0; }
.resume-preview {
  padding: 16px;
  background: var(--dark-2);
  height: 160px;
  overflow: hidden;
}
.resume-preview__name {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0.06em;
  color: var(--white);
  margin-bottom: 8px;
}
.resume-preview__section {
  font-family: var(--font-heading);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 8px;
  margin-bottom: 3px;
}
.resume-preview__credit {
  font-size: 11px;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}

/* ── Source panels (Improv & Performance embeds) ── */
/* Grid defined in embed section below */
.isrc {
  background: var(--dark);
  display: flex;
  flex-direction: column;
}
.isrc__top {
  height: 4px;
  flex-shrink: 0;
}
.isrc--ig   .isrc__top { background: linear-gradient(90deg, #833ab4, #fd1d1d, #fcb045); }
.isrc--imdb .isrc__top { background: #f5c518; }
.isrc--pdf  .isrc__top { background: var(--accent); }
.isrc--yt   .isrc__top { background: #ff0000; }
.isrc__body {
  padding: 40px 28px 36px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.isrc__icon {
  margin-bottom: 20px;
}
.isrc--ig   .isrc__icon { color: #e1306c; }
.isrc--imdb .isrc__icon { color: #f5c518; }
.isrc--pdf  .isrc__icon { color: var(--accent); }
.isrc--yt   .isrc__icon { color: #ff0000; }
.isrc__platform {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  margin-bottom: 6px;
}
.isrc__title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}
.isrc__desc {
  font-size: 13px;
  line-height: 1.75;
  color: rgba(255,255,255,0.42);
  margin-bottom: 16px;
  flex: 1;
}
.isrc__handle {
  font-family: var(--font-heading);
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 20px;
  opacity: 0.85;
}
.isrc__pdf-frame {
  width: 100%;
  height: 190px;
  overflow: hidden;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 16px;
  flex-shrink: 0;
}
.isrc__pdf-frame iframe {
  width: 100%;
  height: 100%;
  border: none;
  pointer-events: none;
}

/* ── Improv troupe link cards ── */
.improv__links {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2px;
  margin-top: 48px;
}

/* Y'all We Asian — Instagram embed card */
.improv__card--ywa {
  padding: 48px 32px;
  display: flex;
  flex-direction: column;
  background: var(--dark);
}
.improv__card--ywa .improv__card-header {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 28px;
}
.improv__card--ywa .improv__card-header > div { flex: 1; }
.ywa__posts {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.2) transparent;
  padding-bottom: 4px;
}
.ywa__posts .instagram-media {
  flex-shrink: 0 !important;
  min-width: 260px !important;
  max-width: 260px !important;
  margin: 0 !important;
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
  background: var(--dark-2) !important;
}

/* ── Shows header + refresh ── */
.shows__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4px;
}
.shows__header .section__label { margin-bottom: 0; }
.shows__refresh {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.18);
  color: var(--gray);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: color 0.2s, border-color 0.2s;
}
.shows__refresh:hover { color: var(--accent); border-color: var(--accent); }
.shows__refresh.spinning svg { animation: spin-icon 0.7s linear infinite; }
@keyframes spin-icon { to { transform: rotate(360deg); } }

/* ── Shows loading / empty state ── */
.shows__loading,
.shows__empty {
  font-size: 13px;
  color: var(--gray);
  text-align: center;
  padding: 24px 0;
}

/* ── Improv portrait background ── */
.improv--portrait-bg {
  position: relative;
  background-image: url('images/portrait1.png');
  background-size: cover;
  background-position: center top;
}
.improv--portrait-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(5, 5, 5, 0.76);
  z-index: 0;
}
.improv--portrait-bg > .container {
  position: relative;
  z-index: 1;
}
.improv--portrait-bg .section__title {
  color: var(--white);
}

/* ── Improv embed cards ── */
.isrc__embed-wrap {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  margin-bottom: 16px;
  flex-shrink: 0;
  background: #000;
}
.isrc__embed-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}
.isrc__embed-wrap--ig {
  aspect-ratio: unset;
  min-height: 200px;
  max-height: 320px;
}
.isrc__ig-fallback {
  padding: 20px;
  background: var(--dark-2);
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.isrc__ig-handle {
  font-family: var(--font-heading);
  font-size: 14px;
  letter-spacing: 0.08em;
  color: var(--accent);
}

/* ── IMDb credits ── */
.isrc__imdb-credits {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
  flex-shrink: 0;
}
.isrc__credit-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 8px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.isrc__credit-title {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.isrc__credit-role {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.06em;
  flex-shrink: 0;
}

/* ── Source panels: 2-column layout ── */
.improv__sources {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}

/* ── Press / As Seen On ── */
.press-feat {
  background: var(--black);
}
.press-feat .section__label--center { color: var(--accent); }
.press-feat__heading {
  text-align: center;
  color: var(--white);
}
/* ── Film & TV credits grid ── */
.film-credits {
  margin-top: 64px;
}
.film-credits__label {
  margin-bottom: 28px;
}
.film-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 10px;
}
.film-card {
  aspect-ratio: 2 / 3;
  position: relative;
  overflow: hidden;
  display: block;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.07);
  transition: border-color 0.25s, transform 0.25s;
}
.film-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
}
.film-card__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.film-card__bg--1 { background-image: url('images/Movie%20Posters/Lucky%20Doug.png'); }
.film-card__bg--2 { background-image: url('images/Movie%20Posters/Night%20On%20Sixth.png'); }
.film-card__bg--3 { background-image: url('images/Movie%20Posters/Call%20Me%20Brother.jpg'); }
.film-card__bg--4 { background-image: url('images/Movie%20Posters/Segs.jpg'); }
.film-card__bg--5 { background-image: url('images/Movie%20Posters/Crunch%20Time.png'); }
.film-card__bg--6 { background-image: url('images/Movie%20Posters/7%20Chinese%20Brothers.jpg'); }
.film-card__bg--7 { background-image: url('images/Movie%20Posters/Somebody%20Up%20There%20Likes%20Me.png'); }
.film-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.3) 55%, transparent 100%);
}
.film-card__imdb-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  background: #f5c518;
  color: #000;
  font-family: var(--font-heading);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 2px 5px;
  border-radius: 2px;
  opacity: 0;
  transition: opacity 0.2s;
}
.film-card:hover .film-card__imdb-badge { opacity: 1; }
.film-card__body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px 8px;
}
.film-card__year {
  font-family: var(--font-heading);
  font-size: 10px;
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-bottom: 3px;
}
.film-card__title {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.2;
  margin-bottom: 3px;
}
.film-card__type {
  font-size: 9px;
  color: rgba(255,255,255,0.4);
  font-family: var(--font-heading);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ── As Seen On: equal 3-column grid ── */
.press-feat__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

/* Full-bleed photo cards */
.press-feat__card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 460px;
  overflow: hidden;
  background-color: var(--dark-2);
  background-size: cover;
  background-position: center top;
  text-decoration: none;
  color: var(--white);
  transition: transform 0.4s ease;
}
.press-feat__card:hover { transform: scale(1.012); }
.press-feat__card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.22) 0%,
    rgba(0,0,0,0.48) 45%,
    rgba(0,0,0,0.91) 100%
  );
  z-index: 0;
  transition: background 0.4s ease;
}
.press-feat__card:hover::before {
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.32) 0%,
    rgba(0,0,0,0.6) 45%,
    rgba(0,0,0,0.94) 100%
  );
}

/* Per-card background images */
.press-feat__card--resume      { background-image: url('images/kidg.jpg');          background-position: center 15%; }
.press-feat__card--cbs         { background-image: url('images/CBS HS2.jpg');       background-position: center top; }
.press-feat__card--boldjourney { background-image: url('images/Red Carpet HS.jpg'); background-position: center top; }

/* Publication label — floats at top */
.press-feat__masthead {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 1;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: linear-gradient(to bottom, rgba(0,0,0,0.5) 0%, transparent 100%);
}
.press-feat__pub-name {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.1em;
  color: var(--white);
}
.press-feat__date {
  font-family: var(--font-heading);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

/* Content at bottom — body pushed down with margin-top: auto; min-heights keep headlines aligned */
.press-feat__body {
  display: flex;
  flex-direction: column;
  margin-top: auto;
  position: relative;
  z-index: 1;
}
.press-feat__headline {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--white);
  line-height: 1.3;
  padding: 24px 22px 8px;
  min-height: 66px;
}
.press-feat__excerpt {
  font-size: 12px;
  line-height: 1.75;
  color: rgba(255,255,255,0.58);
  padding: 0 22px 14px;
  min-height: 63px;
}
.press-feat__link {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  text-decoration: none;
  display: block;
  padding: 0 22px 24px;
}

/* Light mode for source panels */
[data-theme="light"] .isrc {
  background: #f7f7f7;
  border: 1px solid #e4e4e4;
}
[data-theme="light"] .isrc__title { color: #111; }
[data-theme="light"] .isrc__desc  { color: #666; }
[data-theme="light"] .isrc__platform { color: rgba(0,0,0,0.3); }
[data-theme="light"] .isrc__pdf-frame {
  background: rgba(0,0,0,0.03);
  border-color: rgba(0,0,0,0.1);
}

/* ── Newsletter form inside show card ── */
.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 10px;
}
.newsletter-input {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 13px;
  padding: 9px 12px;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  width: 100%;
}
.newsletter-input:focus {
  border-color: var(--accent);
  background: rgba(255,255,255,0.12);
}
.newsletter-input::placeholder { color: rgba(255,255,255,0.3); }
.newsletter-form .btn { width: 100%; justify-content: center; }

/* ============================================
   SHOWS
   ============================================ */
.shows__list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.show__item {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: padding-left 0.2s;
}
.show__item:hover { padding-left: 12px; }
.show__item--tbd .show__date,
.show__item--tbd .show__title,
.show__item--tbd .show__venue {
  opacity: 0.4;
}
.show__date {
  text-align: center;
}
.show__month {
  display: block;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--accent);
  text-transform: uppercase;
}
.show__day {
  display: block;
  font-family: var(--font-display);
  font-size: 42px;
  line-height: 1;
  color: var(--white);
}
.show__title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}
.show__venue {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
}

/* ============================================
   PRESS
   ============================================ */
.press { padding: 48px 0; background: var(--dark-2); }
.press__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.press__logo-placeholder {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.2);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 10px 24px;
}

/* ============================================
   CONTACT
   ============================================ */
.contact--photo-bg {
  position: relative;
  background: transparent;
}
.contact--photo-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('images/23.jpg');
  background-size: cover;
  background-position: left 30%;
  z-index: 0;
}
.contact--photo-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.78);
  z-index: 1;
}
.contact--photo-bg .container {
  position: relative;
  z-index: 2;
}
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.contact__sub {
  font-size: 16px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin-bottom: 36px;
}
.contact__social-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact__social {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-size: 14px;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  transition: color 0.2s;
}
.contact__social:hover { color: var(--accent); }
.form__group { margin-bottom: 20px; }
.form__label {
  display: block;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 8px;
}
.form__input {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 15px;
  padding: 14px 16px;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  -webkit-appearance: none;
  appearance: none;
}
.form__input:focus {
  border-color: var(--accent);
  background: rgba(255,255,255,0.08);
}
.form__input::placeholder { color: rgba(255,255,255,0.2); }
.form__select { cursor: pointer; }
.form__select option { background: var(--dark); }
.form__textarea {
  min-height: 140px;
  resize: vertical;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--black);
  padding: 60px 0 32px;
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 28px;
}
.footer__brand-row {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer__logo-icon {
  display: inline-block;
  width: 52px;
  height: 62px;
  flex-shrink: 0;
  background-color: var(--white);
  -webkit-mask: url('images/transparent-me.png') center / contain no-repeat;
  mask: url('images/transparent-me.png') center / contain no-repeat;
}
.footer__name {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.1em;
  color: var(--white);
}
.footer__tagline {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray);
  margin-top: 3px;
}
.footer__nav {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.footer__nav a {
  font-family: var(--font-heading);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  transition: color 0.2s;
}
.footer__nav a:hover { color: var(--accent); }

.footer__nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.footer__nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}
.footer__nav-dropdown-trigger svg {
  transition: transform 0.2s;
}
.footer__nav-dropdown:hover .footer__nav-dropdown-trigger svg {
  transform: rotate(180deg);
}
.footer__nav-dropdown-menu {
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.1);
  list-style: none;
  padding: 6px 0;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.18s, transform 0.18s, visibility 0.18s;
  z-index: 200;
}
/* Invisible bridge below the menu to the trigger */
.footer__nav-dropdown-menu::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 14px;
}
.footer__nav-dropdown:hover .footer__nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.footer__nav-dropdown-menu a {
  display: block;
  padding: 10px 18px;
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  white-space: nowrap;
}
.footer__nav-dropdown-menu a:hover {
  color: var(--accent);
  background: rgba(255,255,255,0.04);
}

.footer__social {
  display: flex;
  gap: 20px;
}
.footer__social a {
  color: rgba(255,255,255,0.35);
  transition: color 0.2s;
  display: flex;
}
.footer__social a:hover { color: var(--accent); }
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer__bottom p {
  font-size: 12px;
  color: rgba(255,255,255,0.2);
}
/* ── Visitor counter pill ── */
.visit-count {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.32);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 4px 12px;
}
.visit-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #3fb950;
  flex-shrink: 0;
  box-shadow: 0 0 4px rgba(63,185,80,0.6);
  animation: pulse-dot 2.4s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 3px rgba(63,185,80,0.5); }
  50%       { box-shadow: 0 0 8px rgba(63,185,80,0.95); }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .about__grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 36px;
  }
}

@media (max-width: 768px) {
  :root { --section-pad: 72px; }

  .nav__links,
  .nav__social {
    display: none;
    position: fixed;
    inset: var(--nav-height) 0 0;
    background: #111;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 36px 32px;
    gap: 0;
    z-index: 999;
    overflow-y: auto;
  }
  .nav__links.open,
  .nav__social.open {
    display: flex;
  }
  .nav__links {
    flex-direction: column;
    gap: 0;
  }
  .nav__links > li {
    width: 100%;
  }
  .nav__links .nav__link {
    font-size: 22px;
    letter-spacing: 0.12em;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 0;
    width: 100%;
  }
  .nav__toggle { display: flex; }
  .nav__theme-toggle {
    background: rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 255, 255, 0.5);
  }
  [data-theme="light"] .nav__theme-toggle {
    background: rgba(255, 255, 255, 0.6);
    border-color: rgba(0, 0, 0, 0.3);
    color: rgba(0, 0, 0, 0.7);
  }

  /* Mobile dropdown — collapsed by default, expands on tap */
  .nav__dropdown {
    position: static;
    transform: none;
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
    background: transparent;
    border: none;
    padding: 0;
    min-width: unset;
    text-align: left;
    transition: opacity 0.2s, max-height 0.25s, padding 0.25s;
  }
  .nav__item--dropdown.open .nav__dropdown {
    opacity: 1;
    visibility: visible;
    max-height: 300px;
    padding: 4px 0 8px 16px;
    pointer-events: auto;
  }
  .nav__item--dropdown:hover .nav__dropdown { transform: none; }
  .nav__dropdown-link { font-size: 15px; padding: 8px 0; display: block; }
  .nav__link--has-dropdown svg { display: inline; transition: transform 0.2s; }
  .nav__item--dropdown.open .nav__link--has-dropdown svg { transform: rotate(180deg); }

  .hero__name-first,
  .hero__name-last { font-size: clamp(56px, 18vw, 100px); }

  /* About: stack vertically — headshot, text, shows */
  .about__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about__image-wrap { order: 1; max-width: 320px; }
  .about__text { order: 2; }
  .about__shows { order: 3; }

  .improv__sources { grid-template-columns: 1fr; }
  .improv__links   { grid-template-columns: 1fr; }
  .improv__card--ywa .improv__card-header { flex-direction: column; }
  .press-feat__grid { grid-template-columns: 1fr; }
  .film-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .press-feat__masthead { padding: 20px 24px; }
  .press-feat__pub-name { font-size: 26px; }

  .show__item {
    grid-template-columns: 80px 1fr;
    grid-template-rows: auto auto;
  }
  .show__action { grid-column: 2; }

  .contact__grid { grid-template-columns: 1fr; gap: 48px; }
  .contact--photo-bg::before { background-position: center 30%; }

  .footer__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  .footer__nav { gap: 16px; }
}

@media (max-width: 480px) {
  .hero__actions { flex-direction: column; align-items: center; }
  .btn { width: 100%; max-width: 280px; }
  .press__logos { gap: 24px; }
}

/* ============================================
   ACCESSIBILITY
   ============================================ */
.skip-nav {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 9999;
  background: var(--accent);
  color: var(--black);
  padding: 10px 20px;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 0 0 4px 4px;
  transition: top 0.15s ease;
}
.skip-nav:focus { top: 0; }
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 2px;
}
a:focus:not(:focus-visible),
button:focus:not(:focus-visible) { outline: none; }

/* ============================================
   SCROLL SNAP
   ============================================ */
.section, .reel {
  scroll-margin-top: var(--nav-height);
}

/* ── Scroll animation utility ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal--delay-1 { transition-delay: 0.1s; }
.reveal--delay-2 { transition-delay: 0.2s; }
.reveal--delay-3 { transition-delay: 0.3s; }
.reveal--delay-4 { transition-delay: 0.4s; }

/* ============================================
   THEME TOGGLE BUTTON
   ============================================ */
.nav__theme-toggle {
  background: none;
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.7);
  cursor: pointer;
  padding: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
  flex-shrink: 0;
}
.nav__theme-toggle:hover {
  color: var(--accent);
  border-color: var(--accent);
}
/* Dark mode: show moon, hide sun */
[data-theme="dark"] .icon-sun  { display: none; }
[data-theme="dark"] .icon-moon { display: block; }
/* Light mode: show sun, hide moon */
[data-theme="light"] .icon-sun  { display: block; }
[data-theme="light"] .icon-moon { display: none; }

/* ============================================
   LIGHT MODE OVERRIDES
   ============================================ */

/* Page & body */
[data-theme="light"] body {
  background: #ffffff;
  color: #111111;
}

/* ── Nav ──
   UNSCROLLED: floating over dark hero → keep white text
   SCROLLED: white bg → use dark text */
[data-theme="light"] .nav.scrolled,
[data-theme="light"] .nav.menu-open {
  box-shadow: 0 1px 0 rgba(0,0,0,0.08);
}
[data-theme="light"] .nav.scrolled::before,
[data-theme="light"] .nav.menu-open::before {
  background: rgba(255, 255, 255, 0.96);
}
[data-theme="light"] .nav.scrolled .nav__logo,
[data-theme="light"] .nav.menu-open .nav__logo { color: #111; }
[data-theme="light"] .nav.scrolled .nav__logo-icon,
[data-theme="light"] .nav.menu-open .nav__logo-icon { background-color: #111; }
[data-theme="light"] .nav.scrolled .nav__link { color: rgba(0,0,0,0.65); }
[data-theme="light"] .nav.scrolled .nav__link:hover { color: var(--accent-dim); }
[data-theme="light"] .nav.scrolled .nav__social-link { color: rgba(0,0,0,0.5); }
[data-theme="light"] .nav.scrolled .nav__social-link:hover { color: var(--accent-dim); }
[data-theme="light"] .nav.scrolled .nav__theme-toggle,
[data-theme="light"] .nav.menu-open .nav__theme-toggle {
  border-color: rgba(0,0,0,0.2);
  color: rgba(0,0,0,0.6);
}
[data-theme="light"] .nav.scrolled .nav__theme-toggle:hover,
[data-theme="light"] .nav.menu-open .nav__theme-toggle:hover {
  color: var(--accent-dim);
  border-color: var(--accent-dim);
}
[data-theme="light"] .nav.scrolled .nav__toggle span,
[data-theme="light"] .nav.menu-open .nav__toggle span { background: #111; }

/* Mobile nav overlay */
[data-theme="light"] .nav__links.open,
[data-theme="light"] .nav__social.open {
  background: #f5f5f5;
}
[data-theme="light"] .nav__links.open .nav__link,
[data-theme="light"] .nav__links.open .nav__dropdown-link { color: #111; }

/* About */
[data-theme="light"] .about__bio { color: #555; }
[data-theme="light"] .show__card {
  border-color: rgba(0,0,0,0.1);
  background: #fff;
}
[data-theme="light"] .show__card:hover { border-color: var(--accent-dim); }
[data-theme="light"] .show__card-date .show__day { color: #111; }
[data-theme="light"] .show__card-title { color: #111; }

/* Dark sections → light gray (except contact which has photo bg) */
[data-theme="light"] .section--dark:not(.contact--photo-bg) {
  background: #f0f0f0;
  color: #111;
}
[data-theme="light"] .section__title--light { color: #111; }
[data-theme="light"] .section__label--light  { color: var(--accent-dim); }

/* Reel */
[data-theme="light"] .reel__embed {
  background: #e0e0e0;
  border-color: rgba(0,0,0,0.1);
}

/* Improv cards */
[data-theme="light"] .improv__card {
  background: #fafafa;
  border-color: #e4e4e4;
}
[data-theme="light"] .improv__card--linked:hover {
  background: #f0fafa;
  border-color: var(--accent);
}
[data-theme="light"] .improv__card:not(.improv__card--linked):hover { background: #f2f2f2; }
[data-theme="light"] .improv__card-title { color: #111; }
[data-theme="light"] .improv__card-text  { color: #666; }
[data-theme="light"] .improv__card-icon  { color: var(--accent-dim); }

/* Buttons on gray dark sections */
[data-theme="light"] .section--dark:not(.contact--photo-bg) .btn--outline {
  color: #111;
  border-color: rgba(0,0,0,0.4);
}
[data-theme="light"] .section--dark:not(.contact--photo-bg) .btn--outline:hover {
  background: #111;
  color: #fff;
}
[data-theme="light"] .section--dark:not(.contact--photo-bg) .btn--ghost {
  color: #555;
  border-color: #bbb;
}
[data-theme="light"] .section--dark:not(.contact--photo-bg) .btn--ghost:hover {
  color: #111;
  border-color: #888;
}

/* Press strip */
[data-theme="light"] .press { background: #e8e8e8; }
[data-theme="light"] .press__logo-placeholder {
  color: rgba(0,0,0,0.3);
  border-color: rgba(0,0,0,0.1);
}
[data-theme="light"] .section__label--center { color: var(--accent-dim); }

/* ── Contact (photo bg — always dark overlay, always white text) ── */
/* prevent section--dark light override from overriding the photo bg */
[data-theme="light"] .contact--photo-bg { background: transparent; color: #fff; }
[data-theme="light"] .contact--photo-bg .section__title--light { color: #fff; }
[data-theme="light"] .contact--photo-bg .section__label--light  { color: var(--accent); }
[data-theme="light"] .contact--photo-bg .contact__sub   { color: rgba(255,255,255,0.6); }
[data-theme="light"] .contact--photo-bg .contact__social { color: rgba(255,255,255,0.55); }
[data-theme="light"] .contact--photo-bg .contact__social:hover { color: var(--accent); }
[data-theme="light"] .contact--photo-bg .form__label { color: rgba(255,255,255,0.45); }
[data-theme="light"] .contact--photo-bg .form__input {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.15);
  color: #fff;
}
[data-theme="light"] .contact--photo-bg .form__input:focus {
  background: rgba(255,255,255,0.12);
  border-color: var(--accent);
}
[data-theme="light"] .contact--photo-bg .form__input::placeholder { color: rgba(255,255,255,0.25); }
[data-theme="light"] .contact--photo-bg .form__select option { background: #1a1a1a; color: #fff; }

/* Newsletter form in light mode (show card is light bg) */
[data-theme="light"] .newsletter-input {
  background: rgba(0,0,0,0.05);
  border-color: rgba(0,0,0,0.15);
  color: #111;
}
[data-theme="light"] .newsletter-input:focus { border-color: var(--accent); }
[data-theme="light"] .newsletter-input::placeholder { color: rgba(0,0,0,0.3); }

/* Improv card thumbnail — keep dark regardless of theme */
[data-theme="light"] .improv__card-thumb { background: #1a1a1a; border-color: rgba(0,0,0,0.2); }
[data-theme="light"] .resume-preview { background: #1a1a1a; }

/* Footer stays dark in both modes */
[data-theme="light"] .footer { background: #111; }

/* Press cards always use dark photo treatment in both themes */
[data-theme="light"] .press-feat { background: var(--black); }
[data-theme="light"] .press-feat__card { background-color: var(--dark-2); }
[data-theme="light"] .press-feat__headline { color: var(--white); }
[data-theme="light"] .press-feat__excerpt { color: rgba(255,255,255,0.58); }

/* IMDb credits light mode */
[data-theme="light"] .isrc__credit-row { border-color: rgba(0,0,0,0.07); }
[data-theme="light"] .isrc__credit-title { color: #111; }
[data-theme="light"] .isrc__credit-role { color: rgba(0,0,0,0.4); }
[data-theme="light"] .isrc__ig-fallback { background: #f0f0f0; }

/* Improv section: portrait background always keeps dark card styles */
[data-theme="light"] .improv--portrait-bg .section__title--light { color: var(--white); }
[data-theme="light"] .improv--portrait-bg .section__label { color: var(--accent); }
[data-theme="light"] .improv--portrait-bg .improv__card {
  background: var(--dark);
  border-color: rgba(255,255,255,0.06);
}
[data-theme="light"] .improv--portrait-bg .improv__card-title { color: var(--white); }
[data-theme="light"] .improv--portrait-bg .improv__card-text  { color: rgba(255,255,255,0.5); }
[data-theme="light"] .improv--portrait-bg .improv__card-icon  { color: var(--accent); }
[data-theme="light"] .improv--portrait-bg .improv__card--linked:hover { background: var(--dark-2); border-color: var(--accent); }
[data-theme="light"] .improv--portrait-bg .isrc {
  background: var(--dark);
  border-color: rgba(255,255,255,0.06);
}
[data-theme="light"] .improv--portrait-bg .isrc__title { color: var(--white); }
[data-theme="light"] .improv--portrait-bg .isrc__desc { color: rgba(255,255,255,0.42); }
[data-theme="light"] .improv--portrait-bg .isrc__platform { color: rgba(255,255,255,0.28); }
[data-theme="light"] .improv--portrait-bg .isrc__credit-row { border-color: rgba(255,255,255,0.07); }
[data-theme="light"] .improv--portrait-bg .isrc__credit-title { color: var(--white); }
[data-theme="light"] .improv--portrait-bg .isrc__credit-role { color: rgba(255,255,255,0.4); }
[data-theme="light"] .improv--portrait-bg .isrc__pdf-frame {
  background: rgba(255,255,255,0.03);
  border-color: rgba(255,255,255,0.07);
}

/* Smooth theme transitions */
body, .nav, .improv__card, .press, .footer,
.form__input, .btn, .show__card {
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

/* ============================================
   REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .visit-dot { animation: none; }
}
