/* ==========================================================================
   ENVEL COUDRAY — CINEMATIC CRAFT PORTFOLIO
   Design Standards: Awwwards Site of the Day × Apple Human Interface Guidelines
   Color Architecture: Midnight Canvas (#09090f) × Warm Rose (#ff2a85) × Electric Azure (#3b82f6)
   ========================================================================== */

:root {
  /* Surface Layer (Content Layer - Never Pure #000) */
  --bg-deep: #08080d;
  --bg-surface: #0e0e16;
  --bg-card: #13131e;
  --bg-card-hover: #181826;

  /* Apple Liquid Glass Material Tokens (Functional Layer) */
  --glass-bg: rgba(18, 18, 28, 0.72);
  --glass-bg-hover: rgba(26, 26, 38, 0.85);
  --glass-border: rgba(255, 255, 255, 0.09);
  --glass-border-specular: rgba(255, 255, 255, 0.18);
  --glass-blur: blur(24px) saturate(180%);
  --glass-shadow: 0 12px 36px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.12);

  /* Warm Rose & Electric Azure Duotone Palette */
  --color-rose: #ff2a85;
  --color-rose-glow: rgba(255, 42, 133, 0.38);
  --color-rose-subtle: rgba(255, 42, 133, 0.12);
  
  --color-azure: #3b82f6;
  --color-azure-glow: rgba(59, 130, 246, 0.38);
  --color-azure-subtle: rgba(59, 130, 246, 0.12);
  
  --color-violet: #a855f7;
  
  /* Luminous Gradients */
  --grad-sunset: linear-gradient(135deg, #ff2a85 0%, #a855f7 50%, #3b82f6 100%);
  --grad-sunset-hover: linear-gradient(135deg, #ff439b 0%, #c084fc 50%, #60a5fa 100%);
  --grad-glass-border: linear-gradient(135deg, rgba(255, 42, 133, 0.45) 0%, rgba(59, 130, 246, 0.45) 100%);

  /* Text Hierarchy (Apple & Awwwards WCAG Compliant) */
  --text-primary: #f8f8fc;
  --text-secondary: #a3a3b5;
  --text-tertiary: #6b6b7e;
  --text-quaternary: #4a4a58;

  /* Typography Scale (Fluid clamp) */
  --font-display: 'Bricolage Grotesque', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* Motion Curves (Awwwards Power4 Out & Apple Fluid) */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.76, 0, 0.24, 1);
  --duration-fast: 200ms;
  --duration-medium: 400ms;
  --duration-slow: 700ms;

  --radius-sm: 6px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-pill: 9999px;
}

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

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

body {
  font-family: var(--font-body);
  background: var(--bg-deep);
  color: var(--text-primary);
  line-height: 1.55;
  overflow-x: hidden;
  position: relative;
  cursor: default;
}

/* ==========================================================================
   AWWWARDS AMBIENT MESH LIGHTING & NOISE
   ========================================================================== */
.ambient-glows {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  opacity: 0.45;
  animation: floatOrb 22s infinite alternate ease-in-out;
}

.glow-orb-rose {
  top: -10%;
  right: -5%;
  width: 650px;
  height: 650px;
  background: radial-gradient(circle, rgba(255, 42, 133, 0.35) 0%, transparent 70%);
}

.glow-orb-azure {
  top: 35%;
  left: -10%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.3) 0%, transparent 70%);
  animation-delay: -7s;
}

.glow-orb-violet {
  bottom: 5%;
  right: 15%;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.25) 0%, transparent 70%);
  animation-delay: -14s;
}

@keyframes floatOrb {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-40px, 60px) scale(1.08); }
  100% { transform: translate(30px, -40px) scale(0.95); }
}

/* Fine Film Grain Scrim */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  background-image: radial-gradient(rgba(255, 255, 255, 0.038) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
  z-index: 1;
  opacity: 0.6;
}

/* ==========================================================================
   CUSTOM AWWWARDS INTERACTIVE CURSOR
   ========================================================================== */
.custom-cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.2s ease, height 0.2s ease, background 0.2s ease, opacity 0.2s ease;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

.custom-cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.28);
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.3s var(--ease-out-expo), height 0.3s var(--ease-out-expo), border-color 0.3s ease, background 0.3s ease;
}

/* Hover States for Interactive Elements */
body.cursor-hover .custom-cursor-dot {
  background: var(--color-rose);
  width: 10px;
  height: 10px;
  box-shadow: 0 0 14px var(--color-rose);
}

body.cursor-hover .custom-cursor-ring {
  width: 60px;
  height: 60px;
  border-color: rgba(255, 42, 133, 0.6);
  background: rgba(255, 42, 133, 0.06);
}

@media (pointer: coarse) {
  .custom-cursor-dot, .custom-cursor-ring {
    display: none !important;
  }
}

/* Typography Utilities */
.text-gradient {
  background: var(--grad-sunset);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* ==========================================================================
   HEADER / LIQUID GLASS FLOATING NAV (Apple HIG Functional Layer)
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 1.25rem 2.5rem;
  transition: var(--duration-fast) ease;
}

.header-container {
  max-width: 1720px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

/* Liquid Glass Capsule Menu */
.glass-nav-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.6rem;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-pill);
  box-shadow: var(--glass-shadow);
  width: fit-content;
}

.nav-link {
  font-family: var(--font-mono);
  font-size: 0.76rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-secondary);
  padding: 0.45rem 1rem;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: all var(--duration-fast) ease;
  position: relative;
}

.nav-link span {
  font-size: 0.68rem;
  color: var(--text-tertiary);
  transition: color var(--duration-fast) ease;
}

.nav-link:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.nav-link:hover span {
  color: var(--color-rose);
}

.nav-link.active {
  color: #fff;
  background: var(--grad-sunset);
  box-shadow: 0 4px 16px var(--color-rose-glow);
  font-weight: 600;
}

.nav-link.active span {
  color: rgba(255, 255, 255, 0.85);
}

/* Center Monogram / Brand */
.brand-center {
  text-align: center;
}

.brand-link {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: #fff;
  line-height: 1;
  transition: var(--duration-fast) ease;
}

.brand-name:hover {
  background: var(--grad-sunset);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.brand-role {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin-top: 0.25rem;
}

/* Header Right - Status & Quick Links */
.header-right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1.25rem;
}

.liquid-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 1rem;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid rgba(255, 42, 133, 0.35);
  border-radius: var(--radius-pill);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--text-primary);
  box-shadow: 0 4px 20px var(--color-rose-subtle), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  transition: var(--duration-fast) ease;
}

.liquid-status-badge:hover {
  border-color: rgba(255, 42, 133, 0.7);
  box-shadow: 0 4px 25px var(--color-rose-glow);
}

.led-indicator {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-rose);
  box-shadow: 0 0 12px var(--color-rose);
  animation: ledPulse 2s infinite ease-in-out;
}

@keyframes ledPulse {
  0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 12px var(--color-rose); }
  50% { opacity: 0.4; transform: scale(0.85); box-shadow: 0 0 4px var(--color-azure); }
}

.social-pills-group {
  display: flex;
  gap: 0.4rem;
}

.glass-social-pill {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  padding: 0.45rem 0.8rem;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  transition: all var(--duration-fast) ease;
}

.glass-social-pill:hover {
  border-color: rgba(59, 130, 246, 0.5);
  background: rgba(59, 130, 246, 0.15);
  color: #fff;
  box-shadow: 0 0 16px var(--color-azure-subtle);
}

.mobile-nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.mobile-nav-toggle span {
  width: 24px;
  height: 2px;
  background: #fff;
  transition: var(--duration-fast) ease;
}

/* ==========================================================================
   STATEMENT & IMMERSIVE HERO (Awwwards Archetype)
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 8rem 2.5rem 4.5rem;
  overflow: hidden;
  z-index: 2;
}

.hero-media-backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.42) contrast(1.12) saturate(1.1);
  transform: scale(1.02);
  transition: transform 1.2s var(--ease-out-expo);
}

.hero-scrim-gradient {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 80% 25%, rgba(255, 42, 133, 0.22) 0%, transparent 60%),
    radial-gradient(ellipse at 15% 75%, rgba(59, 130, 246, 0.2) 0%, transparent 60%),
    linear-gradient(180deg, rgba(8, 8, 13, 0.3) 0%, rgba(8, 8, 13, 0.85) 75%, var(--bg-deep) 100%);
  pointer-events: none;
}

.hero-content-wrap {
  position: relative;
  z-index: 2;
  max-width: 1720px;
  width: 100%;
  margin: 0 auto;
}

.hero-meta-overline {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.hero-meta-overline::after {
  content: "";
  flex: 1;
  max-width: 160px;
  height: 1px;
  background: var(--grad-sunset);
}

.hero-massive-headline {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8.8vw, 8.8rem);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 2.25rem;
}

.hero-massive-headline .text-gradient-drop {
  background: var(--grad-sunset);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  filter: drop-shadow(0 0 35px rgba(255, 42, 133, 0.45));
}

.hero-footer-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-lead-text {
  max-width: 580px;
  font-size: 1.12rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

.hero-lead-text strong {
  color: #fff;
}

.hero-action-cluster {
  display: flex;
  align-items: center;
  gap: 1.15rem;
}

/* Primary Awwwards Gradient Button */
.btn-magnetic-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 2rem;
  background: var(--grad-sunset);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  box-shadow: 0 10px 30px var(--color-rose-glow), 0 2px 10px var(--color-azure-glow);
  transition: all var(--duration-medium) var(--ease-out-expo);
  position: relative;
  overflow: hidden;
}

.btn-magnetic-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.btn-magnetic-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 14px 40px rgba(255, 42, 133, 0.55), 0 4px 18px rgba(59, 130, 246, 0.4);
}

.btn-magnetic-primary:hover::before {
  transform: translateX(100%);
}

/* Secondary Liquid Glass Button */
.btn-glass-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 2rem;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 1px solid rgba(59, 130, 246, 0.4);
  border-radius: var(--radius-sm);
  box-shadow: var(--glass-shadow);
  transition: all var(--duration-medium) var(--ease-out-expo);
}

.btn-glass-secondary:hover {
  background: rgba(59, 130, 246, 0.18);
  border-color: rgba(59, 130, 246, 0.8);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px var(--color-azure-subtle);
}

/* ==========================================================================
   SECTION COMMON
   ========================================================================== */
.section {
  padding: 7.5rem 2.5rem;
  max-width: 1720px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.section-head-bar {
  margin-bottom: 3.5rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-bottom: 1px solid var(--glass-border);
  padding-bottom: 1.75rem;
}

.section-tag-mono {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--color-rose);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.section-heading-display {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.2vw, 4rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  line-height: 1;
}

.section-head-desc {
  color: var(--text-secondary);
  font-size: 1rem;
  max-width: 440px;
  text-align: right;
  line-height: 1.6;
}

/* ==========================================================================
   FEATURED FILM / CINEMATOGRAPHY SHOWCASE (Stink Films style)
   ========================================================================== */
.film-spotlight-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #000;
  border: 1px solid rgba(255, 42, 133, 0.3);
  margin-bottom: 4rem;
  box-shadow: 0 25px 65px rgba(0, 0, 0, 0.8), 0 0 35px rgba(255, 42, 133, 0.15);
}

.film-cinematic-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 21 / 9;
  min-height: 500px;
}

.film-cinematic-stage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.55) contrast(1.1);
  transition: transform 1.2s var(--ease-out-expo);
}

.film-spotlight-frame:hover .film-cinematic-stage img {
  transform: scale(1.02);
}

.film-caption-overlay {
  position: absolute;
  inset: 0;
  padding: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: 
    radial-gradient(ellipse at 85% 15%, rgba(59, 130, 246, 0.25) 0%, transparent 60%),
    linear-gradient(0deg, rgba(8, 8, 13, 0.98) 0%, rgba(8, 8, 13, 0.4) 60%, transparent 100%);
}

.film-spec-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  padding: 0.4rem 1rem;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid rgba(255, 42, 133, 0.45);
  border-radius: var(--radius-pill);
  color: #fff;
  margin-bottom: 1.25rem;
  width: fit-content;
  box-shadow: 0 4px 20px var(--color-rose-subtle);
}

.film-title-display {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5.2vw, 4.8rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.035em;
  line-height: 1;
  margin-bottom: 1.2rem;
}

.film-synopsis {
  max-width: 640px;
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 2.25rem;
}

.film-cta-cluster {
  display: flex;
  gap: 1.25rem;
  align-items: center;
}

/* ==========================================================================
   WORKS GALLERY & LIQUID FILTER TABS (Apple HIG & Maxime Kathari)
   ========================================================================== */
.liquid-filter-shelf {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 3rem;
  padding: 0.4rem;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-pill);
  width: fit-content;
  box-shadow: var(--glass-shadow);
}

.filter-tab-pill {
  font-family: var(--font-mono);
  font-size: 0.76rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.55rem 1.25rem;
  border-radius: var(--radius-pill);
  color: var(--text-secondary);
  transition: all var(--duration-fast) ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.filter-tab-pill .filter-counter {
  font-size: 0.66rem;
  color: var(--text-tertiary);
  transition: color var(--duration-fast) ease;
}

.filter-tab-pill:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
}

.filter-tab-pill.active {
  background: var(--grad-sunset);
  color: #fff;
  font-weight: 600;
  box-shadow: 0 4px 20px var(--color-rose-glow);
}

.filter-tab-pill.active .filter-counter {
  color: rgba(255, 255, 255, 0.85);
}

/* Variable Rhythm Bento Grid */
.works-bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 2rem;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.project-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  cursor: pointer;
  transition: all var(--duration-medium) var(--ease-out-expo);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.project-card:hover {
  border-color: rgba(255, 42, 133, 0.5);
  transform: translateY(-6px);
  box-shadow: 
    0 20px 45px rgba(0, 0, 0, 0.7),
    0 0 30px rgba(255, 42, 133, 0.18),
    0 0 50px rgba(59, 130, 246, 0.12);
}

/* Bento Column Spans */
.col-span-12 { grid-column: span 12; }
.col-span-8  { grid-column: span 8; }
.col-span-7  { grid-column: span 7; }
.col-span-6  { grid-column: span 6; }
.col-span-5  { grid-column: span 5; }
.col-span-4  { grid-column: span 4; }

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

.aspect-video    { aspect-ratio: 16 / 9; }
.aspect-portrait { aspect-ratio: 4 / 5; }
.aspect-square   { aspect-ratio: 1 / 1; }
.aspect-cinema   { aspect-ratio: 21 / 9; }

.project-media-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out-expo), filter 0.5s ease;
}

.project-card:hover .project-media-img {
  transform: scale(1.05);
}

/* Liquid Play Indicator */
.liquid-play-glyph {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border-specular);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  z-index: 3;
  box-shadow: var(--glass-shadow);
  transition: all var(--duration-fast) ease;
}

.project-card:hover .liquid-play-glyph {
  transform: scale(1.15);
  background: var(--grad-sunset);
  border-color: transparent;
  box-shadow: 0 0 25px var(--color-rose-glow);
}

.card-info-drawer {
  padding: 1.4rem 1.6rem 1.6rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  background: var(--bg-card);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.card-title-stack h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.015em;
  margin-bottom: 0.35rem;
  color: #fff;
}

.card-category-label {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: color var(--duration-fast) ease;
}

.project-card:hover .card-category-label {
  color: var(--color-rose);
}

.card-meta-aside {
  text-align: right;
}

.card-release-year {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  color: var(--text-tertiary);
}

.card-arrow-trigger {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--color-azure);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: 0.4rem;
  opacity: 0;
  transform: translateX(-5px);
  transition: all var(--duration-fast) ease;
}

.project-card:hover .card-arrow-trigger {
  opacity: 1;
  transform: translateX(0);
}

/* ==========================================================================
   PRODUCTION WORKFLOW (Pipeline Cards with Liquid Borders)
   ========================================================================== */
.pipeline-section {
  background: var(--bg-surface);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  padding: 7rem 2.5rem;
  position: relative;
  z-index: 2;
}

.pipeline-inner-shell {
  max-width: 1720px;
  margin: 0 auto;
}

.pipeline-grid-stages {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.6rem;
  position: relative;
}

.pipeline-stage-card {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 2.4rem 1.8rem;
  position: relative;
  overflow: hidden;
  transition: all var(--duration-medium) var(--ease-out-expo);
}

.pipeline-stage-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--grad-sunset);
  opacity: 0;
  transition: opacity var(--duration-fast) ease;
}

.pipeline-stage-card:hover {
  border-color: rgba(59, 130, 246, 0.45);
  transform: translateY(-5px);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.5), 0 0 24px rgba(59, 130, 246, 0.16);
}

.pipeline-stage-card:hover::before {
  opacity: 1;
}

.stage-index-mono {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: var(--color-rose);
  margin-bottom: 1.4rem;
  display: block;
  font-weight: 600;
}

.stage-title-display {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.015em;
  margin-bottom: 0.85rem;
  color: #fff;
}

.stage-body-summary {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ==========================================================================
   ABOUT / EDITORIAL BIO (Cam Hicks & Apple Design Craft)
   ========================================================================== */
.about-duo-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 5.5rem;
  align-items: center;
}

.about-portrait-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(59, 130, 246, 0.35);
  aspect-ratio: 4 / 5;
  background: #000;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7), 0 0 30px rgba(59, 130, 246, 0.15);
}

.about-portrait-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.05) saturate(1.08);
  transition: transform 1.2s var(--ease-out-expo);
}

.about-portrait-frame:hover .about-portrait-img {
  transform: scale(1.03);
}

.about-floating-pill-badge {
  position: absolute;
  bottom: 1.75rem;
  left: 1.75rem;
  padding: 0.6rem 1.2rem;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid rgba(255, 42, 133, 0.4);
  border-radius: var(--radius-pill);
  font-family: var(--font-mono);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  color: #fff;
  box-shadow: 0 4px 20px var(--color-rose-subtle);
}

.about-narrative-block h2 {
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 4vw, 3.75rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.035em;
  line-height: 1.05;
  margin-bottom: 2rem;
}

.about-paragraph {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 2rem;
}

.about-paragraph strong {
  color: #fff;
}

.skills-capsule-shelf {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 3.5rem;
}

.skill-capsule-tag {
  font-family: var(--font-mono);
  font-size: 0.76rem;
  padding: 0.48rem 1rem;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-pill);
  color: var(--text-secondary);
  transition: all var(--duration-fast) ease;
}

.skill-capsule-tag:hover {
  background: rgba(255, 42, 133, 0.12);
  border-color: rgba(255, 42, 133, 0.45);
  color: #fff;
  box-shadow: 0 0 16px var(--color-rose-subtle);
}

.about-metrics-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  padding-top: 2.25rem;
  border-top: 1px solid var(--glass-border);
}

.metric-card .metric-value {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0.45rem;
  background: var(--grad-sunset);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.metric-card .metric-legend {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ==========================================================================
   CONTACT CARD & HAPTIC FORM (Liquid Glass Sheet)
   ========================================================================== */
.contact-glass-island {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 5.5rem;
  background: var(--bg-card);
  border: 1px solid rgba(255, 42, 133, 0.3);
  border-radius: var(--radius-lg);
  padding: 5rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.8), 0 0 40px rgba(255, 42, 133, 0.12);
}

.contact-glass-island::before {
  content: "";
  position: absolute;
  top: -180px;
  right: -180px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.22) 0%, transparent 70%);
  pointer-events: none;
}

.contact-meta-col h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 3.8vw, 3.4rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 1.75rem;
}

.contact-lead-blurb {
  color: var(--text-secondary);
  font-size: 1.1rem;
  line-height: 1.65;
  margin-bottom: 2.75rem;
}

.contact-direct-dock {
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
  margin-bottom: 2.5rem;
}

.contact-dock-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.15rem 1.4rem;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  transition: all var(--duration-fast) ease;
}

.contact-dock-row:hover {
  background: rgba(255, 42, 133, 0.1);
  border-color: rgba(255, 42, 133, 0.45);
  box-shadow: 0 4px 20px var(--color-rose-subtle);
}

.dock-key-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: block;
}

.dock-val-text {
  font-family: var(--font-body);
  font-size: 1rem;
  color: #fff;
  font-weight: 500;
}

.dock-copy-trigger {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  padding: 0.4rem 0.8rem;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  transition: all var(--duration-fast) ease;
}

.dock-copy-trigger:hover {
  background: var(--grad-sunset);
  color: #fff;
  box-shadow: 0 0 15px var(--color-rose-glow);
}

/* Form Styles */
.form-field-group {
  margin-bottom: 1.6rem;
}

.form-split-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
}

.form-label-mono {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-secondary);
  margin-bottom: 0.55rem;
}

.form-input-surface {
  width: 100%;
  padding: 1.05rem 1.25rem;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  color: #fff;
  font-family: inherit;
  font-size: 0.98rem;
  transition: all var(--duration-fast) ease;
}

.form-input-surface:focus {
  outline: none;
  border-color: var(--color-rose);
  background: rgba(255, 42, 133, 0.05);
  box-shadow: 0 0 0 3px rgba(255, 42, 133, 0.18), 0 0 20px var(--color-rose-subtle);
}

textarea.form-input-surface {
  min-height: 150px;
  resize: vertical;
}

/* ==========================================================================
   FOOTER (Awwwards Minimalist)
   ========================================================================== */
.site-footer {
  border-top: 1px solid var(--glass-border);
  padding: 3.5rem 2.5rem;
  background: var(--bg-deep);
  position: relative;
  z-index: 2;
}

.footer-inner-shelf {
  max-width: 1720px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-legal-copy {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--text-tertiary);
}

.footer-navigation-links {
  display: flex;
  gap: 1.75rem;
}

.footer-nav-anchor {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: color var(--duration-fast) ease;
}

.footer-nav-anchor:hover {
  color: var(--color-rose);
}

/* ==========================================================================
   LIQUID GLASS MODAL LIGHTBOX (Apple HIG Sheets / Modals)
   ========================================================================== */
.modal-overlay-sheet {
  position: fixed;
  inset: 0;
  background: rgba(8, 8, 13, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
  padding: 2rem;
}

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

.modal-dialog-shell {
  position: relative;
  max-width: 1320px;
  width: 100%;
  max-height: 92vh;
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
  border: 1px solid rgba(255, 42, 133, 0.4);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.85), 0 0 45px rgba(255, 42, 133, 0.22);
}

.modal-dismiss-btn {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border-specular);
  color: #fff;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all var(--duration-fast) ease;
}

.modal-dismiss-btn:hover {
  background: var(--grad-sunset);
  color: #fff;
  transform: rotate(90deg);
  border-color: transparent;
}

.modal-media-viewport {
  width: 100%;
  height: 70vh;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

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

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

.modal-caption-footer {
  padding: 1.35rem 2.25rem;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-top: 1px solid var(--glass-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-title-display {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
}

.modal-meta-label {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--text-secondary);
}

.modal-direction-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border-specular);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  z-index: 5;
  transition: all var(--duration-fast) ease;
}

.modal-direction-btn:hover {
  background: var(--grad-sunset);
  color: #fff;
  border-color: transparent;
}

.modal-btn-prev { left: 1.25rem; }
.modal-btn-next { right: 1.25rem; }

/* Haptic Toast Notice */
.haptic-toast-bubble {
  position: fixed;
  bottom: 2.25rem;
  right: 2.25rem;
  padding: 1rem 1.6rem;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  font-weight: 600;
  border-radius: var(--radius-pill);
  border: 1px solid var(--color-rose);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.7), 0 0 25px var(--color-rose-glow);
  z-index: 2000;
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  transition: all 0.35s var(--ease-out-expo);
  pointer-events: none;
}

.haptic-toast-bubble.show {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* ==========================================================================
   A11Y: PREFERS-REDUCED-MOTION (Awwwards & Apple HIG Mandatory)
   ========================================================================== */
@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;
  }
  .glow-orb { animation: none !important; }
}

/* ==========================================================================
   RESPONSIVE DESIGN (Adaptive Apple Breakpoints)
   ========================================================================== */
@media (max-width: 1200px) {
  .pipeline-grid-stages {
    grid-template-columns: repeat(3, 1fr);
  }
  .contact-glass-island, .about-duo-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
    padding: 3.5rem 2.25rem;
  }
}

@media (max-width: 900px) {
  .site-header {
    padding: 1rem 1.5rem;
  }
  .nav-links, .header-right .liquid-status-badge {
    display: none;
  }
  .header-container {
    grid-template-columns: 1fr auto;
  }
  .brand-center {
    text-align: left;
  }
  .mobile-nav-toggle {
    display: flex;
  }
  .hero-section {
    padding: 7.5rem 1.5rem 3rem;
  }
  .hero-footer-row {
    flex-direction: column;
    align-items: flex-start;
  }
  .section {
    padding: 5rem 1.5rem;
  }
  .works-bento-grid {
    grid-template-columns: 1fr;
  }
  .col-span-12, .col-span-8, .col-span-7, .col-span-6, .col-span-5, .col-span-4 {
    grid-column: span 1;
  }
  .pipeline-grid-stages {
    grid-template-columns: 1fr;
  }
  .film-cinematic-stage {
    aspect-ratio: 16 / 9;
  }
  .film-caption-overlay {
    padding: 1.75rem;
  }
  .form-split-row {
    grid-template-columns: 1fr;
  }
}
