/* ==========================================================================
   THEEDITINGCANVAS — COMPONENTS STYLESHEET
   Matching Exact Reference Blueprint 100%
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. NAVIGATION HEADER
   -------------------------------------------------------------------------- */
.tc-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  background: rgba(5, 5, 8, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  transition: all var(--transition-fast);
}

.tc-header.scrolled {
  background: rgba(5, 5, 8, 0.94);
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
}

.tc-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

/* Brand */
.tc-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.tc-brand-logo-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-purple-bright);
}

.tc-brand-logo-icon svg {
  width: 26px;
  height: 26px;
}

.tc-brand-text {
  display: flex;
  flex-direction: column;
}

.tc-brand-name {
  font-family: 'Alex Brush', cursive, sans-serif;
  font-size: 1.85rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: #ffffff;
  line-height: 1;
}

.tc-brand-subtitle {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #c89b6d;
  margin-top: -2px;
}

/* Nav Menu */
.tc-nav-menu {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.tc-nav-link {
  font-family: var(--font-heading);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #94a3b8;
  position: relative;
  padding: 0.35rem 0;
  transition: color var(--transition-fast);
}

.tc-nav-link:hover,
.tc-nav-link.active {
  color: #ffffff;
}

.tc-nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 2px;
  background: #c89b6d;
  border-radius: 2px;
}

/* Header Actions */
.tc-header-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.tc-btn-header-cta {
  font-size: 0.74rem;
  padding: 0.55rem 1.35rem;
  border-radius: var(--radius-pill);
  background: transparent;
  border: 1px solid rgba(200, 155, 109, 0.45);
  color: #ffffff;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: all var(--transition-normal);
}

.tc-btn-header-cta:hover {
  background: rgba(200, 155, 109, 0.12);
  border-color: #c89b6d;
  color: #ffffff;
  box-shadow: 0 0 15px rgba(200, 155, 109, 0.25);
}

.tc-theme-toggle {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #94a3b8;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.tc-theme-toggle:hover {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.2);
}

.tc-hamburger {
  display: none;
  background: transparent;
  border: none;
  color: #ffffff;
  cursor: pointer;
  padding: 0.25rem;
}

/* --------------------------------------------------------------------------
   2. HERO SECTION
   -------------------------------------------------------------------------- */
.tc-hero-section {
  position: relative;
  padding-top: calc(var(--header-height) + 2rem);
  padding-bottom: 2.5rem;
  overflow: hidden;
}

/* --------------------------------------------------------------------------
   2. HERO SECTION — Full Cinematic Workspace Canvas
   -------------------------------------------------------------------------- */
.tc-hero-section {
  position: relative;
  min-height: clamp(660px, 86vh, 900px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: #050508;
  padding-top: calc(var(--header-height) + 1.5rem);
  padding-bottom: 2.5rem;
}

/* Full Hero Canvas Background Image */
.tc-hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.tc-hero-canvas-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right bottom;
  display: block;
}

/* Gradients blending image seamlessly into dark page */
.tc-hero-fade-left {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    #050508 0%,
    #050508 22%,
    rgba(5, 5, 8, 0.95) 34%,
    rgba(5, 5, 8, 0.65) 48%,
    rgba(5, 5, 8, 0.15) 62%,
    transparent 78%
  );
  z-index: 2;
  pointer-events: none;
}

.tc-hero-fade-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 70px;
  background: linear-gradient(to top, #050508 0%, rgba(5, 5, 8, 0.6) 50%, transparent 100%);
  z-index: 2;
  pointer-events: none;
}

.tc-hero-fade-top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 90px;
  background: linear-gradient(to bottom, rgba(5, 5, 8, 0.85) 0%, transparent 100%);
  z-index: 2;
  pointer-events: none;
}

/* Hero Content Container */
.tc-hero-container {
  position: relative;
  z-index: 3;
}

.tc-hero-layout {
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 3.5vw, 3.5rem);
}

/* Floating Left Social Strip */
.tc-hero-side-socials {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  padding-right: 0.5rem;
}

.tc-side-line {
  width: 1px;
  height: 65px;
  background: linear-gradient(to bottom, transparent, #c89b6d 40%, #c89b6d);
  margin-bottom: 0.25rem;
}

.tc-side-social-link {
  color: #94a3b8;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  text-decoration: none;
}

.tc-side-social-link:hover {
  color: #ffffff;
  transform: translateY(-2px);
}

/* Hero Content Block */
.tc-hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  max-width: 580px;
}

.tc-hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #c89b6d;
}

.tc-hero-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.8rem, 5.2vw, 4.2rem);
  font-weight: 400;
  line-height: 1.14;
  letter-spacing: -0.01em;
  text-transform: none;
  color: #ffffff;
  margin: 0;
}

.tc-hero-title em {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  color: #deb887;
  background: linear-gradient(135deg, #f5d09b 0%, #c89b6d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.tc-hero-desc {
  max-width: 480px;
  font-size: 0.96rem;
  color: #94a3b8;
  line-height: 1.6;
  margin: 0;
}

.tc-hero-ctas {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  flex-wrap: wrap;
  margin-top: 0.35rem;
}

.tc-hero-ctas .tc-btn-primary {
  background: #deb887;
  color: #08080a;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  border-radius: 8px;
  padding: 0.85rem 1.65rem;
  box-shadow: 0 8px 24px -6px rgba(222, 184, 135, 0.4);
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.tc-hero-ctas .tc-btn-primary:hover {
  background: #e5c396;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px -6px rgba(222, 184, 135, 0.55);
}

.tc-hero-ctas .tc-btn-outline {
  background: rgba(18, 19, 24, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  border-radius: 8px;
  padding: 0.85rem 1.65rem;
  backdrop-filter: blur(8px);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.tc-hero-ctas .tc-btn-outline:hover {
  border-color: #deb887;
  color: #ffffff;
  background: rgba(28, 29, 36, 0.85);
  transform: translateY(-2px);
}

.tc-hero-ctas .tc-btn-outline svg {
  color: #deb887;
}

.tc-hero-divider {
  width: 75px;
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
  margin-top: 0.35rem;
  margin-bottom: -0.2rem;
}

.tc-hero-status {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-top: 0.2rem;
}

.tc-status-dot-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 10px #22c55e;
  margin-top: 5px;
  flex-shrink: 0;
  animation: tc-pulse-dot 2s infinite ease-in-out;
}

@keyframes tc-pulse-dot {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.35);
    opacity: 0.7;
  }
}

.tc-status-text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.tc-status-title {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffffff;
}

.tc-status-sub {
  font-size: 0.8rem;
  color: #94a3b8;
}

/* --------------------------------------------------------------------------
   2A. STATS COUNTER CAPSULE
   -------------------------------------------------------------------------- */
.tc-stats-section {
  padding-top: 1.75rem;
  padding-bottom: 2.25rem;
  position: relative;
  z-index: 5;
}

.tc-stats-capsule {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  background: rgba(14, 15, 22, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-pill);
  padding: 1.15rem 2.25rem;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.5);
  transition: all var(--transition-fast);
}

.tc-stats-capsule:hover {
  border-color: rgba(222, 184, 135, 0.35);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.6), 0 0 25px rgba(222, 184, 135, 0.15);
}

.tc-stat-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  position: relative;
  padding: 0.35rem 0.85rem;
}

.tc-stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background: rgba(255, 255, 255, 0.08);
}

.tc-stat-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #deb887;
  flex-shrink: 0;
  transition: transform var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast);
}

.tc-stat-item:hover .tc-stat-icon {
  transform: scale(1.12);
  color: #ffffff;
  border-color: #deb887;
  box-shadow: 0 0 16px rgba(222, 184, 135, 0.4);
}

.tc-stat-icon svg {
  width: 19px;
  height: 19px;
}

.tc-stat-info {
  display: flex;
  flex-direction: column;
}

.tc-stat-num {
  font-family: var(--font-heading);
  font-size: 1.55rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: #ffffff;
}

.tc-stat-label {
  font-size: 0.74rem;
  font-weight: 600;
  color: #94a3b8;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

/* --------------------------------------------------------------------------
   2B. ABOUT ME SECTION & DIRECTOR CLAPPERBOARD
   -------------------------------------------------------------------------- */
.tc-about-section {
  padding-top: 1.5rem;
  padding-bottom: 3.5rem;
  position: relative;
  z-index: 5;
}

.tc-about-grid {
  display: grid;
  grid-template-columns: 310px 1fr 310px;
  gap: clamp(1.25rem, 2.8vw, 2.75rem);
  align-items: center;
}

/* Left: Portrait Photo Card */
.tc-about-photo-wrap {
  display: flex;
  justify-content: center;
}

.tc-about-photo-card {
  position: relative;
  width: 100%;
  max-width: 310px;
  aspect-ratio: 1 / 1;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.65), 0 0 25px rgba(123, 44, 191, 0.12);
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.tc-about-photo-card:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.75), 0 0 35px rgba(222, 184, 135, 0.25);
  border-color: rgba(222, 184, 135, 0.35);
}

.tc-about-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Center: Content */
.tc-about-content {
  display: flex;
  flex-direction: column;
}

.tc-eyebrow-text {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #deb887;
}

.tc-about-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.75rem, 2.5vw, 2.3rem);
  font-weight: 500;
  line-height: 1.25;
  color: #ffffff;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.tc-gradient-serif {
  font-style: italic;
  font-family: 'Playfair Display', Georgia, serif;
  background: linear-gradient(135deg, #f5d09b 0%, #c89b6d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.tc-about-bio {
  font-size: 0.92rem;
  line-height: 1.65;
  color: #94a3b8;
  margin-bottom: 1.35rem;
}

.tc-about-checklist {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 1.75rem;
}

.tc-about-check-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.84rem;
  font-weight: 600;
  color: #e2e8f0;
}

.tc-check-badge {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(200, 155, 109, 0.15);
  border: 1px solid rgba(200, 155, 109, 0.4);
  color: #deb887;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.tc-about-actions {
  display: flex;
  align-items: center;
}

.tc-btn-clapper-trigger {
  padding: 0.75rem 1.6rem;
  font-size: 0.82rem;
  border-color: rgba(222, 184, 135, 0.4);
  color: #ffffff;
  background: rgba(18, 20, 28, 0.8);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.4);
  cursor: pointer;
}

.tc-btn-clapper-trigger:hover {
  background: rgba(222, 184, 135, 0.15);
  border-color: #deb887;
  color: #deb887;
  box-shadow: 0 6px 25px rgba(222, 184, 135, 0.3);
  transform: translateY(-2px);
}

/* Right: Animated Director Clapperboard (Slate) */
.tc-about-clapper-wrap {
  display: flex;
  justify-content: center;
  perspective: 1000px;
}

.tc-clapperboard {
  width: 100%;
  max-width: 310px;
  background: #0d0e14;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.75), 0 0 25px rgba(0, 0, 0, 0.5);
  cursor: pointer;
  position: relative;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast);
  transform: rotate(2deg);
  outline: none;
}

.tc-clapperboard:hover {
  transform: rotate(0deg) translateY(-4px) scale(1.02);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.85), 0 0 30px rgba(222, 184, 135, 0.3);
  border-color: rgba(222, 184, 135, 0.45);
}

.tc-stick-stripes {
  height: 24px;
  width: 100%;
  background: repeating-linear-gradient(
    -45deg,
    #11131a,
    #11131a 16px,
    #f8fafc 16px,
    #f8fafc 32px
  );
}

.tc-clapper-top {
  position: relative;
  transform-origin: left bottom;
  transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 3;
}

.tc-clapper-hinge {
  position: absolute;
  left: 6px;
  bottom: -4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #94a3b8;
  border: 2px solid #0d0e14;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.8);
  z-index: 4;
}

.tc-clapper-base-stick {
  border-bottom: 2px solid #000000;
  z-index: 2;
  position: relative;
}

/* Clapper Strike Animation on Click */
.tc-clapperboard.clapping .tc-clapper-top {
  animation: tc-clapper-strike 0.55s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes tc-clapper-strike {
  0% { transform: rotate(0deg); }
  35% { transform: rotate(-36deg); }
  68% { transform: rotate(0deg); }
  82% { transform: rotate(-7deg); }
  100% { transform: rotate(0deg); }
}

.tc-clapper-body {
  padding: 1.15rem;
  background: #111218;
  position: relative;
}

.tc-clapper-rec-indicator {
  position: absolute;
  top: 10px;
  right: 12px;
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #ef4444;
}

.tc-rec-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ef4444;
  box-shadow: 0 0 8px #ef4444;
  animation: tc-rec-pulse 1.2s infinite;
}

@keyframes tc-rec-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.25; transform: scale(0.85); }
}

.tc-clapper-row {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  padding: 0.32rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.tc-clapper-label {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #64748b;
  text-transform: uppercase;
  min-width: 60px;
}

.tc-clapper-val {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  color: #f1f5f9;
  letter-spacing: 0.04em;
}

.tc-clapper-grid-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.tc-clapper-box {
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.02);
  border: 1px dashed rgba(255, 255, 255, 0.14);
  border-radius: 6px;
  padding: 0.35rem 0.5rem;
}

.tc-val-chalk {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: 1.15rem;
  font-weight: 600;
  color: #deb887;
  letter-spacing: 0.02em;
}

.tc-clapper-footer {
  margin-top: 0.65rem;
  text-align: center;
}

.tc-clapper-tap-hint {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: #deb887;
  text-transform: uppercase;
  opacity: 0.85;
  transition: opacity var(--transition-fast);
}

.tc-clapperboard:hover .tc-clapper-tap-hint {
  opacity: 1;
}

/* --------------------------------------------------------------------------
   2C. DIRECTOR'S DOSSIER MODAL
   -------------------------------------------------------------------------- */
.tc-dossier-modal {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(4, 5, 8, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 1.5rem;
}

.tc-dossier-modal.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.tc-dossier-content {
  position: relative;
  width: 100%;
  max-width: 680px;
  background: #0f1016;
  border-radius: var(--radius-lg, 18px);
  padding: 2.25rem 2rem;
  border: 1px solid rgba(222, 184, 135, 0.35);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.9), 0 0 50px rgba(222, 184, 135, 0.18);
  transform: scale(0.95);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  color: #f1f5f9;
}

.tc-dossier-modal.open .tc-dossier-content {
  transform: scale(1);
}

.tc-dossier-close {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.tc-dossier-close:hover {
  background: #deb887;
  color: #0b0f19;
  transform: scale(1.1);
}

.tc-dossier-slate-mini {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: #deb887;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.tc-dossier-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.75rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 1.15rem;
}

.tc-dossier-body p {
  font-size: 0.92rem;
  line-height: 1.7;
  color: #cbd5e1;
  margin-bottom: 1.25rem;
}

.tc-dossier-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
  margin-bottom: 1.35rem;
}

.tc-pillar-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 0.85rem;
}

.tc-pillar-card h4 {
  font-size: 0.8rem;
  color: #deb887;
  margin-bottom: 0.35rem;
}

.tc-pillar-card p {
  font-size: 0.74rem;
  line-height: 1.45;
  color: #94a3b8;
  margin: 0;
}

.tc-dossier-stats-strip {
  display: flex;
  justify-content: space-around;
  padding: 0.75rem 1rem;
  background: rgba(200, 155, 109, 0.08);
  border: 1px dashed rgba(200, 155, 109, 0.3);
  border-radius: 8px;
  font-size: 0.8rem;
  color: #f1f5f9;
  margin-bottom: 1.5rem;
}

.tc-dossier-footer {
  display: flex;
  justify-content: flex-end;
}

/* --------------------------------------------------------------------------
   2D. VIDEO CARD CAMERA VIEWFINDER & SHUTTER OVERLAYS
   -------------------------------------------------------------------------- */
.tc-video-card {
  position: relative;
}

.tc-card-viewfinder {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 6;
  border-radius: inherit;
  overflow: hidden;
}

.tc-vf-corner {
  position: absolute;
  width: 14px;
  height: 14px;
  border-color: #deb887;
  border-style: solid;
  opacity: 0;
  transform: scale(1.4);
  transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

.tc-vf-tl {
  top: 8px;
  left: 8px;
  border-width: 2px 0 0 2px;
}

.tc-vf-tr {
  top: 8px;
  right: 8px;
  border-width: 2px 2px 0 0;
}

.tc-vf-bl {
  bottom: 8px;
  left: 8px;
  border-width: 0 0 2px 2px;
}

.tc-vf-br {
  bottom: 8px;
  right: 8px;
  border-width: 0 2px 2px 0;
}

.tc-vf-crosshair {
  position: absolute;
  top: 36%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.6);
  color: #deb887;
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  filter: drop-shadow(0 0 8px rgba(222, 184, 135, 0.6));
}

.tc-video-card:hover .tc-vf-corner {
  opacity: 1;
  transform: scale(1);
}

.tc-video-card:hover .tc-vf-crosshair {
  opacity: 0.85;
  transform: translate(-50%, -50%) scale(1);
}

/* Card Shutter Snap Flash on Click */
.tc-card-viewfinder.snapping::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #ffffff;
  z-index: 10;
  animation: tc-card-shutter-snap 0.35s ease forwards;
}

@keyframes tc-card-shutter-snap {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 0.95;
    background: #ffffff;
  }
  60% {
    opacity: 0.9;
    background: #000000;
  }
  100% {
    opacity: 0;
  }
}

/* --------------------------------------------------------------------------
   3. WHAT I EDIT (6 CARDS ROW)
   -------------------------------------------------------------------------- */
.tc-what-i-edit-container {
  background: rgba(12, 13, 18, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  backdrop-filter: blur(12px);
  margin-top: 0.5rem;
  margin-bottom: 2rem;
}

.tc-formats-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}

.tc-format-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0.5rem 0.35rem;
  transition: transform var(--transition-fast);
}

.tc-format-card:hover {
  transform: translateY(-4px);
}

.tc-format-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.85rem;
  color: var(--accent-purple-bright);
}

.tc-format-icon svg {
  width: 32px;
  height: 32px;
  filter: drop-shadow(0 0 10px rgba(199, 125, 255, 0.4));
}

.tc-format-title {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #ffffff;
  margin-bottom: 0.35rem;
}

.tc-format-desc {
  font-size: 0.72rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* --------------------------------------------------------------------------
   4. FEATURED WORK CAROUSEL
   -------------------------------------------------------------------------- */
.tc-featured-work-section {
  position: relative;
  padding-top: 1.5rem;
  padding-bottom: 3rem;
}

.tc-work-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.tc-view-all-link {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #cbd5e1;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.tc-view-all-link:hover {
  color: var(--accent-purple-bright);
}

.tc-carousel-nav-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.tc-carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(18, 20, 28, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all var(--transition-fast);
}

.tc-carousel-arrow.prev {
  left: -18px;
}

.tc-carousel-arrow.next {
  right: -18px;
}

.tc-carousel-arrow:hover {
  background: var(--accent-purple);
  border-color: var(--accent-purple);
}

.tc-work-track-wrapper {
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  width: 100%;
}

.tc-work-track-wrapper::-webkit-scrollbar {
  display: none;
}

.tc-work-track {
  display: flex;
  gap: 1.25rem;
  width: max-content;
  padding: 0.25rem 0;
}

.tc-video-card {
  width: 240px;
  background: rgba(14, 15, 20, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  transition: all var(--transition-smooth);
}

.tc-video-card:hover {
  border-color: var(--accent-purple);
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.tc-video-thumb-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  background: #090a0f;
  overflow: hidden;
}

.tc-video-thumb-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-fast);
}

.tc-video-card:hover .tc-video-thumb-wrap img {
  transform: scale(1.05);
}

.tc-badge-platform {
  position: absolute;
  top: 8px;
  left: 8px;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  color: #ffffff;
}

.tc-badge-platform.reel {
  background: #8e2de2;
}

.tc-badge-platform.youtube {
  background: #e50914;
}

.tc-badge-platform.shorts {
  background: #7928ca;
}

.tc-duration-badge {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(0, 0, 0, 0.8);
  font-size: 0.68rem;
  font-weight: 600;
  color: #ffffff;
  padding: 0.15rem 0.4rem;
  border-radius: 3px;
}

.tc-video-info {
  padding: 0.85rem 1rem 1rem;
}

.tc-video-title {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.2rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.tc-video-category {
  font-size: 0.72rem;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   5. BEFORE & AFTER + PROCESS ROW
   -------------------------------------------------------------------------- */
.tc-split-row {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(1.5rem, 3.5vw, 3rem);
  margin-bottom: 3rem;
  align-items: flex-start;
}

/* Before / After Slider with Hardware-Accelerated Clip-Path */
.tc-ba-viewer {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  cursor: ew-resize;
  user-select: none;
  touch-action: none;
  --split-pos: 50%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.tc-ba-layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.tc-ba-layer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

.tc-ba-after {
  z-index: 1;
}

.tc-ba-before {
  z-index: 2;
  clip-path: inset(0 calc(100% - var(--split-pos)) 0 0);
  -webkit-clip-path: inset(0 calc(100% - var(--split-pos)) 0 0);
}

.tc-ba-tag {
  position: absolute;
  top: 12px;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(4px);
  color: #ffffff;
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  pointer-events: none;
  z-index: 5;
}

.tc-ba-tag.left { left: 12px; }
.tc-ba-tag.right { right: 12px; }

.tc-ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--split-pos);
  width: 2px;
  background: #ffffff;
  z-index: 10;
  transform: translateX(-50%);
  pointer-events: none;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.7);
}

.tc-ba-handle-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(18, 20, 30, 0.95);
  border: 2px solid #ffffff;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.8), 0 0 12px rgba(157, 78, 221, 0.5);
  font-weight: 900;
  font-size: 0.85rem;
}

/* Process Timeline (6 steps connected with horizontal line) */
.tc-process-timeline-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.tc-process-timeline {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.5rem;
  position: relative;
  margin-top: 1rem;
}

.tc-process-timeline::before {
  content: '';
  position: absolute;
  top: 24px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: rgba(157, 78, 221, 0.4);
  z-index: 1;
}

.tc-process-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
}

.tc-process-icon-box {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: rgba(14, 15, 20, 0.95);
  border: 1px solid rgba(157, 78, 221, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
  color: var(--accent-purple-bright);
  box-shadow: 0 0 15px rgba(157, 78, 221, 0.2);
}

.tc-process-icon-box svg {
  width: 22px;
  height: 22px;
}

.tc-process-node-name {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 0.25rem;
}

.tc-process-node-desc {
  font-size: 0.65rem;
  color: var(--text-muted);
  line-height: 1.35;
}

/* --------------------------------------------------------------------------
   6. TOOLS I USE & SERVICES ROW
   -------------------------------------------------------------------------- */
.tc-tools-services-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(1.5rem, 3.5vw, 3rem);
  margin-bottom: 3.5rem;
  align-items: flex-start;
}

/* Tools Cards */
.tc-tools-quad {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  margin-top: 1rem;
}

.tc-tool-square {
  background: rgba(14, 15, 20, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 1rem 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform var(--transition-fast);
}

.tc-tool-square:hover {
  transform: translateY(-3px);
  border-color: rgba(157, 78, 221, 0.5);
}

.tc-tool-square svg,
.tc-tool-square img {
  width: 44px;
  height: 44px;
  margin-bottom: 0.65rem;
}

.tc-tool-square span {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-secondary);
}

/* Services Box + CTA */
.tc-services-wrapper {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.5rem;
  background: rgba(14, 15, 20, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}

.tc-services-checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

.tc-service-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: #cbd5e1;
}

.tc-service-check-icon {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  background: rgba(157, 78, 221, 0.2);
  border: 1px solid var(--accent-purple);
  color: var(--accent-purple-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.tc-service-check-icon svg {
  width: 12px;
  height: 12px;
}

/* Services CTA Card */
.tc-cta-mini-card {
  background: rgba(22, 24, 34, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
}

.tc-cta-mini-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.25;
  margin-bottom: 1rem;
}

/* --------------------------------------------------------------------------
   7. FOOTER
   -------------------------------------------------------------------------- */
.tc-footer {
  background: #030406;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 3.5rem 0 1.5rem;
  position: relative;
  z-index: 2;
}

.tc-footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.3fr 0.7fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.tc-footer-col h4 {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 1rem;
}

.tc-footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.tc-footer-link {
  font-size: 0.82rem;
  color: var(--text-secondary);
}

.tc-footer-link:hover {
  color: #ffffff;
}

.tc-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.76rem;
  color: var(--text-muted);
}

.tc-back-to-top {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.tc-back-to-top:hover {
  background: var(--accent-purple);
  border-color: var(--accent-purple);
}

/* --------------------------------------------------------------------------
   8. RESPONSIVE BREAKPOINTS
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .tc-formats-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .tc-split-row,
  .tc-tools-services-grid {
    grid-template-columns: 1fr;
  }
  .tc-footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 860px) {
  .tc-hero-section {
    min-height: auto;
    padding-top: calc(var(--header-height) + 1.25rem);
    padding-bottom: 2rem;
    display: block;
  }
  .tc-hero-layout {
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 1.5rem;
  }
  .tc-hero-side-socials {
    flex-direction: row;
    align-items: center;
    gap: 1.25rem;
    padding-right: 0;
  }
  .tc-side-line {
    width: 35px;
    height: 1px;
    margin-bottom: 0;
    margin-right: 0.25rem;
    background: #c89b6d;
  }
  .tc-hero-canvas {
    position: relative;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    margin-top: 1.75rem;
    border-radius: 16px;
    overflow: hidden;
  }
  .tc-hero-canvas-img {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
  .tc-hero-fade-left,
  .tc-hero-fade-top {
    display: none;
  }
  .tc-hero-fade-bottom {
    height: 50px;
  }
}

@media (max-width: 768px) {
  .tc-nav-menu,
  .tc-btn-header-cta {
    display: none;
  }
  .tc-hamburger {
    display: block;
  }
  .tc-formats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .tc-process-timeline {
    grid-template-columns: repeat(3, 1fr);
  }
  .tc-process-timeline::before {
    display: none;
  }
  .tc-services-wrapper {
    grid-template-columns: 1fr;
  }
  .tc-footer-top {
    grid-template-columns: 1fr;
  }
}

/* Mobile Navigation Drawer */
.tc-mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.tc-mobile-overlay.open {
  opacity: 1;
  visibility: visible;
}

.tc-mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 280px;
  max-width: 80vw;
  background: var(--bg-card);
  border-left: 1px solid var(--border-color);
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.6);
  z-index: 999;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  padding: 1.75rem 1.5rem;
}

.tc-mobile-drawer.open {
  transform: translateX(0);
}

.tc-mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-color);
}

.tc-mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.tc-mobile-nav .tc-nav-link {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-primary);
  transition: color var(--transition-fast);
}

.tc-mobile-nav .tc-nav-link:hover,
.tc-mobile-nav .tc-nav-link.active {
  color: #deb887;
}

@media (max-width: 1024px) {
  .tc-about-grid {
    grid-template-columns: 1fr;
    gap: 2.25rem;
  }
  .tc-about-photo-card,
  .tc-clapperboard {
    max-width: 360px;
  }
}

@media (max-width: 768px) {
  .tc-stats-capsule {
    grid-template-columns: repeat(2, 1fr);
    border-radius: var(--radius-lg);
    padding: 1.25rem 1rem;
    gap: 1rem;
  }
  .tc-stat-item:not(:last-child)::after {
    display: none;
  }
  .tc-dossier-pillars {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   VIDEO LIGHTBOX MODAL
   ========================================================================== */
.tc-lightbox-modal {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(4, 5, 8, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 1.5rem;
}

.tc-lightbox-modal.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.tc-lightbox-content {
  position: relative;
  width: 100%;
  max-width: 900px;
  background: #000000;
  border-radius: var(--radius-lg, 16px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 25px 60px -10px rgba(0, 0, 0, 0.9), 0 0 50px rgba(123, 44, 191, 0.3);
  transform: scale(0.95);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.tc-lightbox-modal.open .tc-lightbox-content {
  transform: scale(1);
}

.tc-lightbox-content.is-short {
  max-width: 400px;
}

.tc-lightbox-close {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(18, 20, 28, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 20;
  transition: all var(--transition-fast, 0.2s ease);
}

.tc-lightbox-close:hover {
  background: var(--accent-purple, #7b2cbf);
  border-color: var(--accent-purple, #7b2cbf);
  transform: scale(1.1);
}

.tc-lightbox-video-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000000;
}

.tc-lightbox-content.is-short .tc-lightbox-video-wrap {
  aspect-ratio: 9 / 16;
  max-height: 80vh;
}

.tc-lightbox-video-wrap iframe,
.tc-lightbox-video-wrap video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

