/* ==========================================================================
   SURAJ MISHRA PORTFOLIO — MASTER CINEMATIC EDITORIAL DESIGN SYSTEM
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Google Fonts Import
   -------------------------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700&family=Montserrat:wght@700;800;900&family=Roboto:wght@400;500&display=swap');

/* --------------------------------------------------------------------------
   2. Design System Tokens & Custom Properties
   -------------------------------------------------------------------------- */
:root {
  /* Color Palette (Strict Editorial Dark) */
  --bg-dark: #080909;
  --bg-card: #0b0b0b;
  --bg-surface: #0e0f10;
  --bg-lightbox: rgba(3, 4, 4, 0.96);
  
  --text-main: #f3efe6;
  --text-cream: #f4f0e8;
  --text-muted: #a7a7a7;
  --text-dim: #69727d;
  
  --accent-gold: #d6a84b;
  --accent-gold-alt: #c8a96b;
  --accent-gold-glow: rgba(214, 168, 75, 0.22);
  
  --border-subtle: #181a1c;
  --border-light: rgba(255, 255, 255, 0.08);
  --border-medium: rgba(255, 255, 255, 0.16);
  --border-gold: rgba(214, 168, 75, 0.45);
  
  /* Typography */
  --font-heading: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-accent: 'Roboto', sans-serif;
  
  /* Geometry & Layout */
  --container-max-width: 1320px;
  --header-height: 84px;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  
  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-normal: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

/* --------------------------------------------------------------------------
   3. Base Reset & Typography Defaults
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-dark);
  color: var(--text-main);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  line-height: 1.6;
  background-color: var(--bg-dark);
  color: var(--text-main);
  position: relative;
}

/* Disable native cursor ONLY when desktop fine pointer custom cursor is active */
@media (hover: hover) and (pointer: fine) {
  body.has-custom-cursor,
  body.has-custom-cursor a,
  body.has-custom-cursor button,
  body.has-custom-cursor [role="button"] {
    cursor: none !important;
  }
}

/* Hide custom cursor elements on touch/coarse devices */
@media (hover: none) and (pointer: coarse) {
  .custom-cursor,
  .cursor-follower,
  .cursor-badge {
    display: none !important;
  }
}

img, video {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

ul, ol {
  list-style: none;
}

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

/* Section Header Tags & Typography */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 16px;
}

.section-tag .tag-num {
  color: var(--accent-gold);
  font-weight: 900;
}

.section-tag .tag-sep {
  color: rgba(230, 194, 128, 0.5);
  margin: 0 4px;
  font-weight: 700;
}

.section-tag .tag-title {
  color: var(--accent-gold);
  font-weight: 800;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-main);
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.section-subtitle {
  font-family: var(--font-body);
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 720px;
  line-height: 1.7;
  margin-bottom: 44px;
}

/* Background Watermark Chapter Numbers */
.bg-chapter-num {
  position: absolute;
  top: -20px;
  right: 4vw;
  font-family: var(--font-heading);
  font-size: clamp(6rem, 12vw, 12rem);
  font-weight: 900;
  color: rgba(255, 255, 255, 0.025);
  user-select: none;
  pointer-events: none;
  z-index: 0;
  line-height: 1;
}

/* --------------------------------------------------------------------------
   4. Preloader (0–1.2s Minimal Entrance)
   -------------------------------------------------------------------------- */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: var(--bg-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.preloader.fade-out {
  opacity: 0;
  visibility: hidden;
}

.preloader-brand {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: 0.3em;
  color: var(--text-main);
  margin-bottom: 24px;
}

.preloader-bar-wrap {
  width: 180px;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}

.preloader-bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: var(--accent-gold);
  transition: width 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.preloader-counter {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.2em;
  margin-top: 12px;
}

/* --------------------------------------------------------------------------
   5. Custom Cursor (Desktop Only) — HIGHEST Z-INDEX (9999999)
   -------------------------------------------------------------------------- */
#customCursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 14px;
  height: 14px;
  background: var(--accent-gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999999;
  transform: translate(-50%, -50%);
  transition: width 0.25s ease, height 0.25s ease, background 0.25s ease;
  display: none;
}

@media (hover: hover) and (pointer: fine) {
  #customCursor {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

#customCursor.is-hovered {
  width: 90px;
  height: 90px;
  background: rgba(214, 168, 75, 0.95);
  color: var(--bg-dark);
}

.cursor-badge {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 0.2s ease;
  white-space: nowrap;
}

#customCursor.is-hovered .cursor-badge {
  opacity: 1;
}

/* --------------------------------------------------------------------------
   6. Header & Navigation
   -------------------------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  background: rgba(8, 9, 9, 0.8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  transition: all var(--transition-normal);
}

.site-header.scrolled {
  height: 70px;
  background: rgba(8, 9, 9, 0.95);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

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

.brand-logo {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 900;
  letter-spacing: 0.25em;
  color: var(--text-main);
}

.brand-tagline {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.05em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  text-transform: uppercase;
  position: relative;
  padding: 6px 0;
  transition: color var(--transition-fast);
}

.nav-link:hover, .nav-link.active {
  color: var(--accent-gold);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-gold);
  transition: width var(--transition-fast);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

/* Mobile Navigation Toggle */
.mobile-nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  z-index: 1002;
}

.mobile-nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--text-main);
  transition: transform var(--transition-normal), opacity var(--transition-normal);
}

.mobile-nav-toggle.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.mobile-nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.mobile-nav-toggle.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 380px;
  height: 100vh;
  background: var(--bg-surface);
  z-index: 1001;
  padding: 110px 36px 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-left: 1px solid var(--border-medium);
  visibility: hidden;
  pointer-events: none;
  transition: right var(--transition-normal), visibility var(--transition-normal);
}

.mobile-drawer.open {
  right: 0;
  visibility: visible;
  pointer-events: auto;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.mobile-nav-links .nav-link {
  font-size: 1.3rem;
}

/* --------------------------------------------------------------------------
   7. Hero Section (#home) — Cinematic Editorial Film-Set Atmosphere
   -------------------------------------------------------------------------- */
.hero-section {
  min-height: 100vh;
  padding-top: calc(var(--header-height) + 40px);
  padding-bottom: 80px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background-color: var(--bg-dark);
}

.hero-mobile-bg-wrap {
  display: none;
}

/* Base Atmospheric Background Layer */
.hero-bg-layer {
  position: absolute;
  inset: -5%;
  width: 110%;
  height: 110%;
  background-image: url('../images/hero-bg.jpg');
  background-size: cover;
  background-position: right 25% center;
  background-repeat: no-repeat;
  filter: blur(28px) brightness(0.35) contrast(1.1);
  opacity: 0.22;
  pointer-events: none;
  z-index: 0;
}

.hero-vignette-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 75% 50%, rgba(8, 9, 9, 0.4) 0%, rgba(8, 9, 9, 0.88) 60%, var(--bg-dark) 100%),
              linear-gradient(90deg, var(--bg-dark) 0%, rgba(8, 9, 9, 0.95) 45%, rgba(8, 9, 9, 0.5) 85%, rgba(8, 9, 9, 0.85) 100%);
  pointer-events: none;
  z-index: 1;
}

/* Desktop Full Cinematic Environment Background Asset (High Visibility & Crisp Resolution) */
@media (min-width: 768px) {
  .hero-bg-layer {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/desktop-hero.png');
    background-size: cover;
    background-position: right 5% center;
    background-repeat: no-repeat;
    filter: contrast(1.05) brightness(1.0);
    opacity: 1;
    pointer-events: none;
    z-index: 1;
    animation: none;
  }

  .hero-vignette-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #080909 0%, #080909 30%, rgba(8, 9, 9, 0.85) 45%, rgba(8, 9, 9, 0.5) 60%, rgba(8, 9, 9, 0.15) 75%, transparent 90%),
                linear-gradient(180deg, #080909 0%, transparent 15%, transparent 85%, #080909 100%);
    pointer-events: none;
    z-index: 2;
  }

  .hero-grid {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    position: relative;
    z-index: 5;
  }

  .hero-content {
    max-width: 650px;
    z-index: 5;
  }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 52px;
  align-items: center;
  width: 100%;
  position: relative;
  z-index: 2;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  z-index: 3;
}

/* --- Hero Metadata Header Row --- */
.hero-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 620px;
  margin-bottom: 26px;
  gap: 20px;
}

.hero-meta-row .hero-meta-pills {
  margin-bottom: 0;
  flex-shrink: 0;
}

.hero-meta-row .hero-credential-wrap {
  margin-bottom: 0;
  width: auto;
  flex-shrink: 0;
}

.hero-meta-pills {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 6px 18px;
  border-radius: var(--radius-full);
  background: rgba(214, 168, 75, 0.08);
  border: 1px solid var(--border-gold);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.25em;
  color: var(--accent-gold);
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.3rem, 5.0vw, 4.2rem);
  font-weight: 900;
  line-height: 1.12;
  color: var(--text-main);
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: clamp(1.05rem, 1.7vw, 1.25rem);
  color: var(--text-muted);
  margin-bottom: 38px;
  max-width: 580px;
  font-weight: 400;
  line-height: 1.6;
}

/* --- Hero IndiaFutureAI Credential Badge --- */
.hero-credential-wrap {
  display: flex;
  align-items: center;
  margin-bottom: 0;
  width: 100%;
}

.hero-credential-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 5px 16px 5px 6px;
  border-radius: var(--radius-full);
  background: rgba(9, 10, 12, 0.70);
  border: 1px solid rgba(214, 168, 75, 0.17);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  text-decoration: none;
  cursor: pointer;
  box-sizing: border-box;
  transition: border-color var(--transition-normal), background-color var(--transition-normal), box-shadow var(--transition-normal), transform var(--transition-fast);
  max-width: 100%;
  width: fit-content;
}

.hero-credential-badge:hover {
  background: rgba(214, 168, 75, 0.04);
  border-color: rgba(214, 168, 75, 0.35);
  box-shadow: 0 4px 18px rgba(214, 168, 75, 0.09), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transform: translateY(-1px);
}

.hero-credential-icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 7px;
  overflow: hidden;
  flex-shrink: 0;
  background: #ffffff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.35);
}

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

/* Two-Line Typography Layout */
.hero-credential-text-group {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 3px;
  text-align: left;
}

.hero-credential-title {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0;
  color: var(--text-cream);
  line-height: 1.2;
  white-space: nowrap;
}

.hero-credential-subtitle {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: rgba(243, 239, 230, 0.65);
  line-height: 1.2;
  white-space: nowrap;
}

.hero-credential-entity {
  color: var(--accent-gold);
  font-weight: 600;
  letter-spacing: 0.01em;
}

.hero-credential-arrow {
  color: var(--text-dim);
  transition: transform var(--transition-fast), color var(--transition-fast);
  flex-shrink: 0;
  display: inline-flex;
  align-self: center;
}

.hero-credential-badge:hover .hero-credential-arrow {
  color: var(--accent-gold);
  transform: translate(2px, -2px);
}

  /* Refined Solid Gold CTA Button for Desktop */
  .hero-content .cta-button {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 18px 42px;
    background: var(--accent-gold);
    color: var(--bg-dark);
    border: 1px solid var(--accent-gold);
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 900;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    transition: all var(--transition-normal);
    box-shadow: 0 0 35px rgba(214, 168, 75, 0.4), 0 10px 30px rgba(0, 0, 0, 0.5);
    position: relative;
    cursor: pointer;
  }

  .hero-content .cta-button:hover {
    background: #e5b756;
    color: var(--bg-dark);
    border-color: #e5b756;
    box-shadow: 0 0 50px rgba(214, 168, 75, 0.65), 0 15px 35px rgba(0, 0, 0, 0.6);
    transform: translateY(-3px);
  }
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 40px;
  background: transparent;
  color: var(--text-main);
  border: 1px solid var(--accent-gold);
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  transition: all var(--transition-normal);
  box-shadow: 0 0 25px rgba(214, 168, 75, 0.12);
  position: relative;
}

.cta-button:hover {
  background: var(--accent-gold);
  color: var(--bg-dark);
  box-shadow: 0 0 35px rgba(214, 168, 75, 0.45);
  transform: translateY(-3px);
}

/* Editorial Scroll Cue */
.hero-scroll-cue {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-top: 50px;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  color: var(--text-dim);
  text-transform: uppercase;
  user-select: none;
  width: 100%;
  text-align: center;
}

.scroll-cue-arrow {
  color: var(--accent-gold);
  animation: scrollCueBounce 2s cubic-bezier(0.45, 0, 0.55, 1) infinite;
}

@keyframes scrollCueBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* --------------------------------------------------------------------------
   8. Work Section & Components (#work)
   -------------------------------------------------------------------------- */
.work-section {
  padding: 120px 0;
  border-top: 1px solid var(--border-subtle);
  position: relative;
}

.work-block {
  margin-bottom: 140px;
  position: relative;
}

.work-block:last-child {
  margin-bottom: 0;
}

/* --- 8.1 Showreel Screening Room Component (#surajShowreel) --- */
#surajShowreel {
  width: 100%;
  margin-top: 36px;
}

.screening-room {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  overflow: hidden;
  padding: 28px;
}

.screening-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-light);
}

.screening-badge {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  color: var(--accent-gold);
}

.screening-counter {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.2em;
}

.screening-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(0,0,0,0.7);
  cursor: pointer;
}

.screening-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.4s ease, transform 0.6s ease;
}

.screening-frame:hover .screening-thumb {
  transform: scale(1.03);
}

.screening-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(214, 168, 75, 0.95);
  color: var(--bg-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: transform 0.3s ease, background 0.3s ease, opacity 0.3s ease, box-shadow 0.3s ease;
  pointer-events: none;
}

.screening-play-btn svg {
  width: 32px;
  height: 32px;
  margin-left: 4px;
}

.screening-frame:hover .screening-play-btn {
  transform: translate(-50%, -50%) scale(1.15);
  background: var(--text-main);
  box-shadow: 0 0 40px rgba(255, 255, 255, 0.6);
}

.screening-iframe-holder {
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
}

.screening-iframe-holder iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.screening-frame.is-playing .screening-iframe-holder {
  z-index: 20;
  pointer-events: auto;
}

.screening-frame.is-playing .screening-thumb,
.screening-frame.is-playing .screening-play-btn {
  opacity: 0;
}

/* Section 01 Stage Wrap & Subtle Desktop Prev/Next Navigation Chevrons */
.screening-stage-wrap {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 768px) {
  .screening-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border-radius: 0;
    border: none;
    background: transparent;
    color: rgba(255, 255, 255, 0.65);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 30;
    transition: color 0.25s ease, transform 0.25s ease;
    box-shadow: none;
  }

  .screening-prev-btn {
    left: -42px;
  }

  .screening-next-btn {
    right: -42px;
  }

  .screening-nav-btn:hover {
    background: transparent;
    color: var(--accent-gold);
    box-shadow: none;
    transform: translateY(-50%) scale(1.18);
  }

  .screening-mobile-nav-row {
    display: none !important;
  }
}

@media (min-width: 768px) and (max-width: 1100px) {
  .screening-prev-btn { left: 12px; }
  .screening-next-btn { right: 12px; }
}

/* Base Mobile Stage Chevrons (Hidden on Desktop & Tablet) */
.screening-mobile-chevrons {
  display: none;
}

/* Mobile Section 01: Completely Hide Desktop Navigation Arrows (< 768px) */
@media (max-width: 767px) {
  .screening-nav-btn,
  .screening-mobile-nav-row {
    display: none !important;
  }

  .screening-mobile-chevrons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 12px;
    margin-bottom: 4px;
    width: 100%;
  }

  .screening-mobile-chevron-btn {
    width: 32px;
    height: 32px;
    border-radius: 0;
    border: none;
    background: transparent;
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s ease, opacity 0.2s ease;
    box-shadow: none;
  }

  .screening-mobile-chevron-btn:active {
    transform: scale(1.18);
  }

  .screening-meta {
    margin-top: 12px;
  }
}

.screening-meta {
  margin-top: 24px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.screening-title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 8px;
}

.screening-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
}

/* Base Filmstrip Mobile Exploration Indicator (Hidden on Desktop) */
.filmstrip-mobile-cue {
  display: none;
}

/* Filmstrip Queue Bar */
.filmstrip-queue {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding: 20px 0 8px;
  margin-top: 24px;
  border-top: 1px solid var(--border-light);
  scrollbar-width: thin;
  scrollbar-color: var(--accent-gold) transparent;
}

/* Mobile Section 01: Horizontal Swipe Carousel & Cue (< 768px) */
@media (max-width: 767px) {
  .filmstrip-queue {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    padding: 16px 0 8px;
    margin-top: 20px;
    border-top: 1px solid var(--border-light);
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .filmstrip-queue::-webkit-scrollbar {
    display: none;
  }

  .filmstrip-item {
    flex: 0 0 145px;
    scroll-snap-align: start;
  }

  .filmstrip-mobile-cue {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    margin-top: 14px;
    margin-bottom: 8px;
    color: var(--accent-gold);
  }

  .filmstrip-cue-arrow {
    width: 14px;
    height: 14px;
    stroke: var(--accent-gold);
  }

  .filmstrip-cue-text {
    font-family: var(--font-heading);
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.22em;
    color: var(--text-muted);
    text-transform: uppercase;
  }
}

.filmstrip-item {
  flex: 0 0 160px;
  cursor: pointer;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--border-light);
  opacity: 0.5;
  transition: all 0.3s ease;
}

.filmstrip-item.active, .filmstrip-item:hover {
  opacity: 1;
  border-color: var(--accent-gold);
  transform: translateY(-4px);
}

.filmstrip-item img {
  width: 100%;
  height: 90px;
  object-fit: cover;
}

.filmstrip-item-title {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 8px;
  color: var(--text-main);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* --- 8.2 Vertical Cinema Component (#surajVerticalStories) --- */
#surajVerticalStories.svs-wrap {
  position: relative;
  width: 100%;
  padding: 30px 0;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: center;
}

.svs-mobile-cue {
  display: none;
}

@media (max-width: 1024px) {
  #surajVerticalStories.svs-wrap {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.svs-cinema-stage {
  position: relative;
  width: 100%;
  height: 580px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
  touch-action: pan-y;
  cursor: grab;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
}

.svs-cinema-stage.is-dragging {
  cursor: grabbing;
}

.svs-card {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 290px;
  height: 515px;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #000;
  border: 1px solid var(--border-subtle);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.85);
  will-change: transform, opacity, filter;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.45s ease, filter 0.45s ease, border-color 0.45s ease;
}

.svs-card.is-active {
  z-index: 10;
  opacity: 1;
  filter: none;
  border-color: var(--border-medium);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.95), 0 0 35px rgba(214, 168, 75, 0.15);
}

.svs-card.is-prev,
.svs-card.is-next {
  z-index: 1;
  opacity: 0.45;
  filter: blur(6px) brightness(0.6);
  pointer-events: auto;
}

.svs-media {
  position: relative;
  width: 100%;
  height: 100%;
}

.svs-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease;
}

.svs-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(214, 168, 75, 0.95);
  color: var(--bg-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  transition: transform 0.25s ease, background 0.25s ease, opacity 0.25s ease;
  pointer-events: none;
}

.svs-play svg {
  width: 26px;
  height: 26px;
  margin-left: 3px;
}

.svs-click-overlay {
  position: absolute;
  inset: 0;
  z-index: 25;
  cursor: pointer;
}

.svs-card.is-playing .svs-thumb {
  opacity: 0;
  pointer-events: none;
}

.svs-card.is-playing .svs-play {
  opacity: 0;
  pointer-events: none;
}

.svs-card.is-active:hover .svs-play {
  transform: translate(-50%, -50%) scale(1.12);
  background: var(--text-main);
}

.svs-iframe-holder {
  position: absolute;
  inset: 0;
  z-index: 10;
}

.svs-card.is-playing .svs-iframe-holder {
  z-index: 20;
}

.svs-iframe-holder iframe {
  width: 100%;
  height: 100%;
}

/* Editorial Metadata Column */
.svs-editorial-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.svs-progress-wrap {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 28px;
}

.svs-progress-track {
  width: 3px;
  height: 120px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  position: relative;
  overflow: hidden;
}

.svs-progress-fill {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 20%;
  background: var(--accent-gold);
  transition: height 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.svs-counter-box {
  display: flex;
  flex-direction: column;
}

.svs-counter-num {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--accent-gold);
  letter-spacing: 0.1em;
}

.svs-counter-tag {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.25em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.svs-meta-box {
  margin-bottom: 32px;
}

.svs-meta-category {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.25em;
  color: var(--accent-gold);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.svs-meta-title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 900;
  line-height: 1.25;
  color: var(--text-main);
  transition: opacity 0.3s ease;
}

.svs-nav-row {
  display: flex;
  align-items: center;
  gap: 16px;
}

.svs-nav-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--border-medium);
  background: var(--bg-card);
  color: var(--text-main);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.svs-nav-btn:hover {
  background: var(--accent-gold);
  color: var(--bg-dark);
  border-color: var(--accent-gold);
}

/* --- 8.3 Section 03 — Visual Journal Component (#journalBlock) --- */
.journal-intro-box {
  margin-bottom: 24px;
}

.journal-player {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  padding: 24px;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.journal-player-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-light);
  margin-bottom: 20px;
}

.journal-player-badge {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  color: var(--accent-gold);
}

.journal-player-counter {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--text-muted);
  letter-spacing: 0.2em;
}

/* Main Cinematic Stage (Max height ~62vh) */
.journal-stage {
  position: relative;
  width: 100%;
  height: 58vh;
  max-height: 520px;
  min-height: 320px;
  background: #040505;
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-subtle);
  box-shadow: inset 0 0 40px rgba(0,0,0,0.8);
  user-select: none;
}

/* Ambient Blurred Backdrop */
.journal-stage-backdrop {
  position: absolute;
  inset: -10%;
  width: 120%;
  height: 120%;
  object-fit: cover;
  filter: blur(35px) brightness(0.4);
  opacity: 0.35;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

/* Foreground Sharp Active Image (Zero Crop) */
.journal-stage-active-img {
  position: relative;
  z-index: 5;
  max-width: 92%;
  max-height: 92%;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius-sm);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.9);
  cursor: pointer;
  transition: opacity 0.35s cubic-bezier(0.22, 1, 0.36, 1), transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.journal-stage-active-img.fade-transition {
  opacity: 0;
  transform: scale(0.97);
}

/* Player Navigation Arrow Overlay Buttons */
.journal-player-nav {
  display: none !important;
}

/* Section 03 Visual Journal Desktop Navigation Controls Bar */
.journal-controls-bar {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  margin-top: 20px;
  margin-bottom: 20px;
  width: 100%;
}

.journal-player-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border-medium);
  background: var(--bg-card);
  color: var(--text-main);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.journal-player-btn:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
  background: rgba(214, 168, 75, 0.1);
}

.journal-controls-counter {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: var(--text-muted);
  user-select: none;
}

.journal-controls-counter .jc-num-active {
  color: var(--accent-gold);
}

/* Compact 15-Thumbnail Queue Bar */
.journal-filmstrip-queue {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 16px 0 4px;
  margin-top: 20px;
  border-top: 1px solid var(--border-light);
  scrollbar-width: thin;
  scrollbar-color: var(--accent-gold) transparent;
}

.journal-filmstrip-item {
  flex: 0 0 110px;
  height: 72px;
  position: relative;
  cursor: pointer;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--border-light);
  opacity: 0.45;
  transition: all 0.3s ease;
}

.journal-filmstrip-item.active,
.journal-filmstrip-item:hover {
  opacity: 1;
  border-color: var(--accent-gold);
  transform: scale(1.04);
}

.journal-filmstrip-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.journal-filmstrip-item-tag {
  position: absolute;
  bottom: 4px;
  left: 6px;
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 800;
  color: #fff;
  background: rgba(0, 0, 0, 0.8);
  padding: 2px 6px;
  border-radius: 3px;
  letter-spacing: 0.1em;
}

/* Still / Journal Lightbox Modal & Zoom State */
.still-lightbox {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: var(--bg-lightbox);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.still-lightbox.active {
  opacity: 1;
  visibility: visible;
}

body.still-lightbox-open, body.is-lightbox-open {
  overflow: hidden;
}

.still-lightbox-content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 82vw;
  height: 88vh;
  overflow: hidden;
}

.still-lightbox-image,
.exhibition-active-img {
  max-width: 100%;
  max-height: 78vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 25px 80px rgba(0,0,0,0.8);
  cursor: pointer;
  will-change: transform;
  transform-origin: center center;
  user-select: none;
  -webkit-user-drag: none;
}

.still-lightbox-close {
  position: absolute;
  top: 25px;
  right: 32px;
  width: 48px;
  height: 48px;
  border: 1px solid var(--border-medium);
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  color: #fff;
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all 0.25s ease;
}

.still-lightbox-close:hover {
  background: rgba(255,255,255,0.18);
  transform: rotate(90deg);
}

.still-lightbox-prev, .still-lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border: 1px solid var(--border-medium);
  border-radius: 50%;
  background: rgba(8,9,9,0.85);
  color: #fff;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all 0.25s ease;
}

.still-lightbox-prev { left: 35px; }
.still-lightbox-next { right: 35px; }

.still-lightbox-prev:hover, .still-lightbox-next:hover {
  background: rgba(255,255,255,0.18);
  border-color: var(--accent-gold);
}

.still-lightbox-count {
  margin-top: 16px;
  color: rgba(255,255,255,0.65);
  font-family: var(--font-heading);
  font-size: 13px;
  letter-spacing: 0.2em;
  font-weight: 700;
}

/* --- 8.4 Curated Collections Digital Exhibition Component (#collectionsBlock) --- */
.collections-intro-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
  gap: 24px;
}

.collections-stat-pill {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  color: var(--accent-gold);
  background: rgba(214, 168, 75, 0.08);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-full);
  padding: 10px 22px;
  white-space: nowrap;
  max-width: 100%;
  box-sizing: border-box;
}

/* Exhibition Wall Stage */
.exhibition-wall-stage {
  position: relative;
  width: 100%;
  min-height: 480px;
  overflow: hidden;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  padding: 44px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.exhibition-wall-track {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  width: 100%;
  max-width: 1240px;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.exhibition-card {
  flex: 0 0 210px;
  height: 380px;
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  cursor: pointer;
  opacity: 0.55;
  filter: brightness(0.65) grayscale(0.2);
  transform: scale(0.92);
  transition: flex 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.45s ease, filter 0.45s ease, border-color 0.45s ease, box-shadow 0.45s ease;
}

.exhibition-card.is-active {
  flex: 0 0 310px;
  height: 420px;
  opacity: 1;
  filter: none;
  transform: scale(1);
  border-color: var(--border-gold);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.9), 0 0 35px rgba(214, 168, 75, 0.18);
  z-index: 10;
}

.exhibition-card-media {
  position: relative;
  width: 100%;
  height: 72%;
  overflow: hidden;
  background: #000;
}

.exhibition-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), filter 0.5s ease;
}

.exhibition-card:hover .exhibition-card-media img {
  transform: scale(1.08);
  filter: brightness(1.1);
}

.exhibition-card-info {
  padding: 16px 20px;
  background: var(--bg-surface);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 28%;
  border-top: 1px solid var(--border-light);
}

.exhibition-card-num {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  color: var(--accent-gold);
  text-transform: uppercase;
}

.exhibition-card-title {
  font-family: var(--font-heading);
  font-size: 0.98rem;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.25;
  margin-top: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.exhibition-card-count {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--text-muted);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 4px;
}

/* Exhibition Fullscreen Viewer Modal */
.exhibition-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(4, 5, 5, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px 36px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.exhibition-modal.active {
  opacity: 1;
  visibility: visible;
}

body.exhibition-modal-open {
  overflow: hidden;
}

.exhibition-modal-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 50px;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 12px;
}

.exhibition-modal-meta {
  display: flex;
  align-items: center;
  gap: 14px;
}

.exhibition-modal-num {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 900;
  letter-spacing: 0.25em;
  color: var(--accent-gold);
}

.exhibition-modal-sep {
  color: var(--text-dim);
}

.exhibition-modal-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-main);
}

.exhibition-modal-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.exhibition-overview-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--text-main);
  letter-spacing: 0.15em;
  transition: all 0.25s ease;
}

.exhibition-overview-btn:hover {
  background: var(--accent-gold);
  color: var(--bg-dark);
  border-color: var(--accent-gold);
}

.exhibition-close-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border-medium);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-main);
  font-size: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}

.exhibition-close-btn:hover {
  background: var(--text-main);
  color: var(--bg-dark);
  transform: rotate(90deg);
}

.exhibition-viewport {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 16px 0;
  overflow: hidden;
}

.exhibition-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid var(--border-medium);
  background: var(--bg-card);
  color: var(--text-main);
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all 0.25s ease;
}

.exhibition-prev { left: 24px; }
.exhibition-next { right: 24px; }

.exhibition-nav-btn:hover {
  background: var(--accent-gold);
  color: var(--bg-dark);
  border-color: var(--accent-gold);
}

.exhibition-frame {
  position: relative;
  max-width: 82vw;
  max-height: 72vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.exhibition-active-img.fade-transition {
  opacity: 0;
  transform: scale(0.97);
}

.exhibition-modal-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 100%;
}

.exhibition-progress-bar {
  width: 240px;
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  overflow: hidden;
  position: relative;
}

.exhibition-progress-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 20%;
  background: var(--accent-gold);
  transition: width 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.exhibition-counter {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--text-muted);
  letter-spacing: 0.2em;
}

/* Contact Sheet Overview Drawer */
.exhibition-contact-sheet {
  position: absolute;
  inset: 0;
  z-index: 100;
  background: rgba(8, 9, 9, 0.98);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  padding: 40px;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.exhibition-contact-sheet.open {
  opacity: 1;
  visibility: visible;
}

.exhibition-contact-sheet-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-light);
}

.exhibition-contact-sheet-header h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  color: var(--accent-gold);
}

.exhibition-close-sheet {
  font-size: 28px;
  color: var(--text-main);
}

.exhibition-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 16px;
  overflow-y: auto;
  padding-top: 10px;
  flex: 1;
}

.exhibition-grid-item {
  aspect-ratio: 1 / 1;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border-light);
  cursor: pointer;
  transition: all 0.25s ease;
}

.exhibition-grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.exhibition-grid-item:hover, .exhibition-grid-item.active {
  border-color: var(--accent-gold);
  transform: scale(1.05);
}

/* --------------------------------------------------------------------------
   9. About & Capabilities Section (#about)
   -------------------------------------------------------------------------- */
.manifesto-section {
  padding: 70px 0 80px;
  border-top: 1px solid var(--border-subtle);
  position: relative;
  background: var(--bg-dark);
  overflow: hidden;
}

.manifesto-bg-num {
  position: absolute;
  top: -20px;
  right: -20px;
  font-family: var(--font-heading);
  font-size: clamp(8rem, 18vw, 18rem);
  font-weight: 900;
  color: rgba(255, 255, 255, 0.012);
  line-height: 0.8;
  pointer-events: none;
  user-select: none;
  z-index: 1;
  letter-spacing: -0.06em;
}

.manifesto-header {
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
}

/* Manifesto Hero Headline — Refined Proportion */
.manifesto-hero {
  margin-bottom: 44px;
  position: relative;
  z-index: 2;
  max-width: 960px;
}

.manifesto-statement {
  font-family: var(--font-heading);
  font-size: clamp(1.85rem, 3.4vw, 3.25rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--text-main);
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.manifesto-line {
  display: block;
  overflow: hidden;
}

.manifesto-word {
  display: inline-block;
  color: var(--text-main);
  transition: color 0.4s ease;
}

.manifesto-accent {
  display: inline-block;
  color: var(--accent-gold);
  position: relative;
  font-weight: 900;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #E6C280 0%, #D6A84B 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Editorial Capabilities Index — Refined Vertical Rhythm */
.manifesto-capabilities {
  margin-bottom: 70px;
  position: relative;
  z-index: 2;
}

.manifesto-cap-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-light);
  margin-bottom: 4px;
}

.manifesto-cap-tag {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.25em;
  color: var(--accent-gold);
  text-transform: uppercase;
}

.manifesto-cap-count {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--text-muted);
}

.manifesto-cap-list {
  display: flex;
  flex-direction: column;
}

.manifesto-cap-row {
  position: relative;
  padding: 20px 8px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 36px;
  align-items: center;
  cursor: pointer;
  outline: none;
  transition: background 0.35s ease, transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.manifesto-cap-row:focus-visible {
  outline: 2px solid var(--accent-gold);
  border-radius: 4px;
}

.cap-row-main-wrap {
  display: flex;
  align-items: center;
  gap: 24px;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.cap-row-num {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-muted);
  letter-spacing: -0.02em;
  min-width: 36px;
  transition: color 0.35s ease, transform 0.35s ease;
}

.cap-row-title-block {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.cap-row-name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--text-main);
  letter-spacing: 0.05em;
  margin: 0;
  transition: color 0.35s ease;
}

.cap-row-sub {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--accent-gold);
  letter-spacing: 0.08em;
  opacity: 0.85;
}

.cap-row-desc {
  font-size: 0.98rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
  transition: color 0.35s ease, opacity 0.35s ease;
}

.cap-row-divider {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--border-subtle);
  transition: background 0.35s ease, height 0.35s ease;
}

/* Capability Row Hover & Focus Effects */
.manifesto-cap-row:hover .cap-row-main-wrap,
.manifesto-cap-row:focus-visible .cap-row-main-wrap {
  transform: translateX(8px);
}

.manifesto-cap-row:hover .cap-row-num,
.manifesto-cap-row:focus-visible .cap-row-num {
  color: var(--accent-gold);
}

.manifesto-cap-row:hover .cap-row-name,
.manifesto-cap-row:focus-visible .cap-row-name {
  color: #fff;
}

.manifesto-cap-row:hover .cap-row-desc,
.manifesto-cap-row:focus-visible .cap-row-desc {
  color: var(--text-main);
}

.manifesto-cap-row:hover .cap-row-divider,
.manifesto-cap-row:focus-visible .cap-row-divider {
  background: var(--accent-gold);
  height: 2px;
}

/* Integrated Editorial Biography Block — Two-Column Spread */
.manifesto-bio-block {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
  padding-top: 50px;
  border-top: 1px solid var(--border-subtle);
}

/* Left Editorial Column */
.manifesto-bio-col-left {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 580px;
}

.manifesto-bio-tag {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.25em;
  color: var(--accent-gold);
  text-transform: uppercase;
}

.manifesto-bio-headline {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 900;
  line-height: 1.18;
  color: var(--text-main);
  letter-spacing: -0.02em;
  margin: 0;
}

.manifesto-bio-paragraph {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 8px 0 0;
  max-width: 540px;
}

/* Editorial Circular Portrait — Right Column */
.manifesto-portrait-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 360px;
  cursor: pointer;
}

.portrait-glow-backdrop {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -52%);
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(214, 168, 75, 0.08) 0%, transparent 65%);
  filter: blur(30px);
  pointer-events: none;
  z-index: 1;
}

.portrait-ring-gold {
  position: absolute;
  top: -1px;
  left: 10px;
  right: 10px;
  bottom: auto;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  border: 1px solid rgba(214, 168, 75, 0.4);
  pointer-events: none;
  z-index: 3;
  transition: border-color 0.6s ease, box-shadow 0.6s ease;
}

.portrait-frame {
  position: relative;
  z-index: 4;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--bg-card);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.55);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.portrait-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 50%;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.portrait-label-block {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2px;
  position: relative;
  z-index: 5;
}

.portrait-name {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  color: var(--accent-gold);
}

.portrait-sub {
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--text-muted);
}

/* Restrained Hover Interaction */
.manifesto-portrait-wrap:hover .portrait-frame {
  transform: scale(1.02);
}

.manifesto-portrait-wrap:hover .portrait-ring-gold {
  border-color: rgba(214, 168, 75, 0.75);
  box-shadow: 0 0 20px rgba(214, 168, 75, 0.2);
}

.manifesto-cta-area {
  display: flex;
  align-items: center;
}

.manifesto-cta-btn {
  padding: 14px 32px;
  font-size: 0.85rem;
}

.manifesto-cta-btn svg {
  transition: transform 0.3s ease;
}

.manifesto-cta-btn:hover svg {
  transform: translateX(6px);
}

/* Reveal Transitions */
.manifesto-statement,
.manifesto-cap-row,
.manifesto-portrait-wrap,
.manifesto-bio-block {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.manifesto-statement.is-revealed,
.manifesto-cap-row.is-revealed,
.manifesto-portrait-wrap.is-revealed,
.manifesto-bio-block.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

.manifesto-cap-row:nth-child(2) { transition-delay: 0.08s; }
.manifesto-cap-row:nth-child(3) { transition-delay: 0.16s; }

@media (prefers-reduced-motion: reduce) {
  .manifesto-statement,
  .manifesto-cap-row,
  .manifesto-portrait-wrap,
  .manifesto-bio-block {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 1024px) {
  .manifesto-cap-row {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 20px 4px;
  }
}

@media (max-width: 767px) {
  .manifesto-section {
    padding: 60px 0 50px;
  }
  .manifesto-hero {
    margin-bottom: 36px;
  }
  .manifesto-statement {
    font-size: clamp(1.6rem, 7.2vw, 2.4rem);
    line-height: 1.18;
  }
  .manifesto-capabilities {
    margin-bottom: 44px;
  }
  .cap-row-name {
    font-size: 1.3rem;
  }
  .manifesto-bio-headline {
    font-size: 1.5rem;
  }
}

/* --------------------------------------------------------------------------
   10. Contact Section (#contact) — The Finale
   -------------------------------------------------------------------------- */
.contact-section {
  padding: 140px 0 100px;
  border-top: 1px solid var(--border-subtle);
  text-align: center;
  position: relative;
  background: radial-gradient(circle at 50% 50%, rgba(214, 168, 75, 0.07) 0%, transparent 70%);
}

.contact-box {
  max-width: 800px;
  margin: 0 auto;
}

.contact-title {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 900;
  color: var(--text-main);
  margin-bottom: 24px;
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.contact-desc {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 44px;
}

.email-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 22px 48px;
  background: var(--accent-gold);
  color: var(--bg-dark);
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: 0.25em;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  transition: all var(--transition-normal);
  box-shadow: 0 0 35px rgba(214, 168, 75, 0.35);
  margin-bottom: 28px;
}

.email-cta-btn:hover {
  background: var(--text-main);
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 0 50px rgba(255, 255, 255, 0.6);
}

.contact-email-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  margin-top: 4px;
  margin-bottom: 20px;
}

.contact-email-text {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-cream);
  letter-spacing: 0.03em;
  user-select: all;
}

.copy-email-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  background: transparent;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  border-radius: 50%;
  transition: color 0.25s ease, background-color 0.25s ease, transform 0.2s ease;
}

.copy-email-btn:hover,
.copy-email-btn:focus-visible {
  color: var(--accent-gold);
  background: rgba(214, 168, 75, 0.1);
  outline: none;
}

.copy-email-btn .icon-copy {
  display: block;
}

.copy-email-btn .icon-check {
  display: none;
}

.copy-email-btn.is-copied {
  color: var(--accent-gold);
  background: rgba(214, 168, 75, 0.15);
}

.copy-email-btn.is-copied .icon-copy {
  display: none;
}

.copy-email-btn.is-copied .icon-check {
  display: block;
  color: var(--accent-gold);
}

/* Tooltip */
.copy-email-tooltip {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-4px);
  padding: 4px 10px;
  background: #121417;
  border: 1px solid var(--border-medium);
  color: var(--text-main);
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  box-shadow: 0 6px 16px rgba(0,0,0,0.6);
  z-index: 10;
}

.copy-email-btn:hover .copy-email-tooltip,
.copy-email-btn:focus-visible .copy-email-tooltip,
.copy-email-btn.is-copied .copy-email-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(-8px);
}

.contact-note {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 48px;
}

.social-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
}

.social-link {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: var(--accent-gold);
  text-transform: uppercase;
  transition: color var(--transition-fast);
}

.social-link:hover {
  color: var(--text-main);
}

/* --------------------------------------------------------------------------
   11. Footer
   -------------------------------------------------------------------------- */
.site-footer {
  padding: 44px 0;
  border-top: 1px solid var(--border-subtle);
  background: #050606;
}

.footer-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.footer-copy {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.footer-tagline {
  font-size: 0.88rem;
  color: var(--text-muted);
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: 0.1em;
}

/* --------------------------------------------------------------------------
   12. Reduced Motion & Responsive Media Queries
   -------------------------------------------------------------------------- */
@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;
  }
  .hero-bg-layer {
    animation: none !important;
  }
}

@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .journal-stage {
    height: 50vh;
    max-height: 440px;
  }

  .exhibition-wall-track {
    overflow-x: auto;
    justify-content: flex-start;
    padding: 20px 10px;
    scrollbar-width: thin;
    scrollbar-color: var(--accent-gold) transparent;
  }

  .exhibition-card {
    flex: 0 0 260px !important;
    height: 400px !important;
    opacity: 1 !important;
    filter: none !important;
    transform: none !important;
  }
}

/* Tablet portrait layout — graceful transition */
@media (max-width: 1024px) and (min-width: 768px) {
  .manifesto-bio-block {
    gap: 40px;
  }

  .manifesto-portrait-wrap {
    width: 300px;
  }

  .portrait-frame {
    width: 280px;
    height: 280px;
  }

  .portrait-ring-gold {
    width: 280px;
    height: 280px;
  }

  .portrait-glow-backdrop {
    width: 300px;
    height: 300px;
  }

  .manifesto-bio-col-left {
    max-width: 420px;
  }
}

@media (max-width: 767px) {
  .desktop-nav {
    display: none;
  }
  
  .mobile-nav-toggle {
    display: flex;
  }
  
  /* Mobile Full-Bleed Cinematic Background Redesign */
  .hero-mobile-bg-wrap {
    display: block;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
  }

  .hero-mobile-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 65% center;
    transform: scale(1.01);
    animation: heroCinematicPan 20s ease-in-out infinite alternate;
  }

  @keyframes heroCinematicPan {
    0% { transform: scale(1.01); }
    100% { transform: scale(1.04); }
  }

  .hero-mobile-bg-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
      180deg,
      rgba(4, 5, 6, 0.78) 0%,
      rgba(4, 5, 6, 0.48) 32%,
      rgba(4, 5, 6, 0.65) 68%,
      rgba(4, 5, 6, 0.96) 100%
    );
    z-index: 2;
  }

  .hero-section {
    min-height: 100svh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: calc(var(--header-height) + 16px);
    padding-bottom: 36px;
    background: #040506;
  }

  .hero-section .container {
    position: relative;
    z-index: 5;
    width: 100%;
  }

  .hero-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0;
  }

  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    transform: translateY(-22px);
  }

  .hero-meta-row {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    width: 100%;
  }

  .hero-meta-row .hero-meta-pills {
    margin-bottom: 0;
  }

  .hero-meta-row .hero-credential-wrap {
    margin-top: 0;
    margin-bottom: 0;
    justify-content: center;
  }

  .hero-meta-pills {
    margin-bottom: 0;
  }

  .hero-title {
    font-size: clamp(1.8rem, 6.4vw, 2.5rem);
    line-height: 1.2;
    margin-bottom: 14px;
    text-align: center;
    max-width: 360px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.9);
  }

  .hero-subtitle {
    font-size: 0.98rem;
    line-height: 1.6;
    margin-bottom: 22px;
    text-align: center;
    max-width: 340px;
    color: rgba(243, 239, 230, 0.85);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
  }

  .hero-credential-badge {
    min-height: 42px;
    padding: 4px 14px 4px 6px;
    gap: 9px;
  }

  .hero-credential-icon-box {
    width: 26px;
    height: 26px;
    border-radius: 6px;
  }

  .hero-credential-text-group {
    gap: 2px;
  }

  .hero-credential-title {
    font-size: 0.74rem;
  }

  .hero-credential-subtitle {
    font-size: 0.65rem;
  }

  .hero-credential-arrow {
    width: 10px;
    height: 10px;
  }

  .hero-subtitle-bar {
    display: none;
  }

  .hero-scroll-cue {
    display: none;
  }

  /* Hide separate hero visual card on mobile */
  .hero-visual {
    display: none !important;
  }

  /* Mobile Refined Compact CTA Button Positioned Further Down Below Camera Lens & Body */
  .hero-content .cta-button {
    width: 62%;
    max-width: 250px;
    min-width: 200px;
    height: 44px;
    min-height: 44px;
    max-height: 44px;
    padding: 0 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-sizing: border-box;
    background: rgba(10, 11, 13, 0.75);
    border: 1px solid var(--accent-gold);
    color: var(--text-main);
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 0 25px rgba(214, 168, 75, 0.25);
    transition: all var(--transition-normal);
    margin-left: auto;
    margin-right: auto;
    margin-top: 135px;
    transform: none;
  }

  .hero-content .cta-button:hover,
  .hero-content .cta-button:active {
    background: var(--accent-gold);
    color: var(--bg-dark);
    box-shadow: 0 0 45px rgba(214, 168, 75, 0.55);
    transform: translateY(-2px);
  }

  /* Change 02 — Centered Section Introductions */
  .work-block {
    text-align: center;
    margin-bottom: 80px;
  }

  /* Mobile Editorial Portrait + Bio Stacked Layout */
  .manifesto-bio-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
  }

  .manifesto-bio-col-left {
    order: 2;
    align-items: center;
    text-align: center;
    max-width: 100%;
  }

  .manifesto-portrait-wrap {
    order: 1;
    width: 220px;
    margin: 0 auto;
  }

  .portrait-frame {
    width: 200px;
    height: 200px;
  }

  .portrait-ring-gold {
    width: 200px;
    height: 200px;
    left: 10px;
    right: 10px;
  }

  .portrait-glow-backdrop {
    width: 220px;
    height: 220px;
  }

  .work-block > .section-tag,
  .manifesto-header > .section-tag,
  .collections-intro-row > div > .section-tag {
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
  }

  .section-title {
    max-width: 350px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .section-subtitle {
    max-width: 340px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .journal-intro-box {
    text-align: center;
  }

  .work-section, .about-section, .contact-section {
    padding: 60px 0;
  }

  .collections-intro-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
  }

  .collections-stat-pill {
    white-space: normal;
    font-size: 0.72rem;
    padding: 8px 14px;
    letter-spacing: 0.12em;
  }

  /* Change 03 — Section 02 Vertical Cinema Mobile Refinement (< 768px) */
  .svs-progress-wrap {
    display: none !important;
  }

  .svs-editorial-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    margin-top: 14px;
  }

  .svs-meta-box {
    margin-bottom: 14px;
    text-align: center;
  }

  .svs-nav-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 4px;
    margin-bottom: 16px;
    width: 100%;
  }

  .svs-nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid var(--border-medium);
    background: var(--bg-card);
    color: var(--text-main);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
  }

  .svs-mobile-cue {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 4px;
    margin-bottom: 16px;
    width: 100%;
  }

  .svs-mobile-progress-line {
    position: relative;
    width: 140px;
    height: 1px;
    background: rgba(255, 255, 255, 0.15);
    margin-bottom: 10px;
  }

  .svs-mobile-progress-dot {
    position: absolute;
    top: -3px;
    left: 0%;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent-gold);
    box-shadow: 0 0 8px rgba(214, 168, 75, 0.8);
    transform: translateX(-50%);
    transition: left 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .svs-mobile-cue-text {
    font-family: var(--font-heading);
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.22em;
    color: var(--text-muted);
    text-transform: uppercase;
  }

  /* Change 04 — Section 03 Journal Underneath Controls Bar */
  .journal-player-nav {
    display: none !important;
  }

  .journal-controls-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 18px;
    margin-bottom: 24px;
    width: 100%;
  }

  .journal-player-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid var(--border-medium);
    background: var(--bg-card);
    color: var(--text-main);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .journal-player-btn:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
  }

  .journal-controls-counter {
    font-family: var(--font-heading);
    font-size: 0.92rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    color: var(--text-muted);
  }

  .journal-controls-counter .jc-num-active {
    color: var(--accent-gold);
    font-weight: 900;
  }

  .social-links {
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
  }

  .filmstrip-container,
  .journal-filmstrip-wrapper {
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x;
  }

  .journal-player {
    padding: 16px;
  }

  .journal-stage {
    height: 45vh;
    max-height: 380px;
    min-height: 280px;
  }

  .screening-room {
    padding: 16px;
  }
  
  .screening-meta {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .still-lightbox {
    padding: 70px 14px 90px;
  }

  .still-lightbox-prev, .still-lightbox-next {
    top: auto;
    bottom: 24px;
    transform: none;
    width: 48px;
    height: 48px;
  }

  .still-lightbox-prev { left: 22px; }
  .still-lightbox-next { right: 22px; }

  .still-lightbox-count {
    position: fixed;
    left: 50%;
    bottom: 38px;
    transform: translateX(-50%);
  }

  .still-lightbox-close {
    top: 18px;
    right: 18px;
  }

  .exhibition-modal {
    padding: 20px 16px;
  }

  .exhibition-prev, .exhibition-next {
    top: auto;
    bottom: 16px;
    transform: none;
    width: 44px;
    height: 44px;
  }

  .exhibition-prev { left: 16px; }
  .exhibition-next { right: 16px; }

  .exhibition-contact-sheet {
    padding: 20px 16px;
  }

  .footer-container {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .exhibition-card {
    flex: 0 0 220px !important;
    height: 350px !important;
  }

  .hero-meta-row {
    gap: 10px;
    margin-bottom: 16px;
  }

  .hero-credential-badge {
    min-height: 38px;
    padding: 3px 12px 3px 5px;
    gap: 8px;
  }

  .hero-credential-icon-box {
    width: 24px;
    height: 24px;
    border-radius: 5px;
  }

  .hero-credential-text-group {
    gap: 2px;
  }

  .hero-credential-title {
    font-size: clamp(0.66rem, 2.6vw, 0.72rem);
  }

  .hero-credential-subtitle {
    font-size: clamp(0.58rem, 2.2vw, 0.64rem);
  }
}

/* ==========================================================================
   CINEMATIC CONTACT MODAL STYLES
   ========================================================================== */
.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.contact-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 5, 6, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 1;
}

.contact-modal-card {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 520px;
  max-height: 90vh;
  overflow-y: auto;
  background: rgba(12, 13, 16, 0.96);
  border: 1px solid rgba(214, 168, 75, 0.25);
  border-radius: 16px;
  padding: 36px 32px 32px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.85), 0 0 40px rgba(214, 168, 75, 0.12);
  transform: translateY(24px) scale(0.97);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  color: var(--text-main);
  scrollbar-width: thin;
  scrollbar-color: var(--accent-gold) transparent;
}

.contact-modal.is-open .contact-modal-card {
  transform: translateY(0) scale(1);
}

.contact-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-muted);
  font-size: 1.4rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.contact-modal-close:hover {
  background: rgba(214, 168, 75, 0.15);
  border-color: var(--accent-gold);
  color: var(--accent-gold);
  transform: scale(1.05);
}

.contact-modal-header {
  margin-bottom: 24px;
}

.contact-modal-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--accent-gold);
  margin-bottom: 8px;
}

.contact-modal-title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-main);
  margin: 0 0 6px 0;
  line-height: 1.1;
}

.contact-modal-subtitle {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}

/* Form Fields */
.contact-modal-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hp-field {
  display: none !important;
}

.contact-field-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact-label {
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--text-muted);
}

.req-star {
  color: var(--accent-gold);
}

.contact-input,
.contact-select,
.contact-textarea {
  width: 100%;
  box-sizing: border-box;
  background: rgba(6, 7, 9, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 0.92rem;
  transition: all var(--transition-fast);
  outline: none;
}

.contact-input:focus,
.contact-select:focus,
.contact-textarea:focus {
  border-color: var(--accent-gold);
  background: rgba(10, 11, 14, 0.9);
  box-shadow: 0 0 15px rgba(214, 168, 75, 0.18);
}

.contact-input.is-invalid,
.contact-select.is-invalid,
.contact-textarea.is-invalid {
  border-color: #e55353 !important;
  box-shadow: 0 0 12px rgba(229, 83, 83, 0.25) !important;
}

.contact-field-error {
  display: none;
  font-size: 0.75rem;
  color: #e55353;
  margin-top: 2px;
}

.contact-field-error.is-visible {
  display: block;
}

/* Custom Select Dropdown Styling */
.contact-select-wrap {
  position: relative;
  width: 100%;
}

.contact-select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 36px;
  cursor: pointer;
}

.contact-select option {
  background: #0d0e11;
  color: var(--text-main);
}

.contact-select-arrow {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  pointer-events: none;
  transition: color var(--transition-fast);
}

.contact-select:focus + .contact-select-arrow {
  color: var(--accent-gold);
}

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

/* Global Form Error */
.contact-global-error {
  display: none;
  background: rgba(229, 83, 83, 0.12);
  border: 1px solid rgba(229, 83, 83, 0.3);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 0.82rem;
  color: #f87171;
  line-height: 1.4;
}

.contact-global-error.is-visible {
  display: block;
}

.contact-error-link {
  color: var(--accent-gold);
  text-decoration: underline;
}

/* Submit Button */
.contact-submit-btn {
  margin-top: 6px;
  width: 100%;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--accent-gold);
  color: var(--bg-dark);
  border: none;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition-fast);
  box-shadow: 0 0 25px rgba(214, 168, 75, 0.3);
}

.contact-submit-btn:hover {
  background: #e6b450;
  transform: translateY(-1px);
  box-shadow: 0 0 35px rgba(214, 168, 75, 0.5);
}

.contact-submit-btn:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none !important;
}

/* Success View */
.contact-modal-success {
  text-align: center;
  padding: 30px 10px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.success-icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(214, 168, 75, 0.12);
  border: 1px solid rgba(214, 168, 75, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.success-title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: var(--text-main);
  margin: 0 0 8px 0;
}

.success-subtitle {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin: 0 0 28px 0;
}

.contact-success-close-btn {
  min-width: 140px;
  height: 44px;
  padding: 0 24px;
  background: transparent;
  border: 1px solid var(--accent-gold);
  color: var(--accent-gold);
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.contact-success-close-btn:hover {
  background: var(--accent-gold);
  color: var(--bg-dark);
}

@media (max-width: 767px) {
  .contact-modal-card {
    padding: 28px 20px 24px;
    max-width: 100%;
    margin: 10px;
  }
}

/* ==========================================================================
   PORTFOLIO DESTINATIONS — ITIHAS VARTA & SURAJ MISHRA LAB
   ========================================================================== */
.destinations-block {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

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

.dest-card {
  position: relative;
  border-radius: 16px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  outline: none;
}

/* Itihas Varta: Editorial, Intellectual, Platform in progress */
.dest-card-varta {
  background: rgba(10, 11, 14, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.5);
}

.dest-card-varta:hover,
.dest-card-varta:focus-visible {
  border-color: rgba(214, 168, 75, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 25px rgba(214, 168, 75, 0.08);
}

/* Suraj Mishra Lab: Doorway, Portal, Active Experimental Practice */
.dest-card-lab {
  background: rgba(13, 14, 18, 0.85);
  border: 1px solid rgba(214, 168, 75, 0.28);
  box-shadow: 0 0 30px rgba(214, 168, 75, 0.05);
}

.dest-card-lab:hover,
.dest-card-lab:focus-visible {
  border-color: var(--accent-gold);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7), 0 0 35px rgba(214, 168, 75, 0.18);
}

.dest-card-content {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.dest-meta-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.dest-status-badge {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
}

.status-dev {
  background: rgba(214, 168, 75, 0.1);
  border: 1px solid rgba(214, 168, 75, 0.35);
  color: var(--accent-gold);
}

.status-live {
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.4);
  color: #4ade80;
}

.dest-category-tag {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.dest-title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--text-main);
  margin: 0 0 10px 0;
  line-height: 1.15;
}

.dest-desc {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0 0 24px 0;
  flex-grow: 1;
}

.dest-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--text-main);
  text-decoration: none;
  transition: all var(--transition-fast);
  width: fit-content;
}

.dest-cta-btn svg {
  transition: transform var(--transition-fast);
}

.dest-card:hover .dest-cta-btn,
.dest-card:focus-visible .dest-cta-btn {
  color: var(--accent-gold);
}

.dest-card:hover .dest-cta-btn svg,
.dest-card:focus-visible .dest-cta-btn svg {
  transform: translateX(4px);
  stroke: var(--accent-gold);
}

@media (max-width: 860px) {
  .destinations-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .dest-card {
    padding: 28px 22px;
  }
}
