/* ==========================================================================
   Phenomena Films - Stylesheet
   ========================================================================== */

/* --- Custom Variables & Reset --- */
:root {
  --color-dawnlight: #fff1ee;
  --color-emberglow: #ff9d00;
  --color-sunstone: #ec842f;
  --color-sienna: #c85502;
  --color-umber: #843919;
  --color-obsidian: #2a1a0b;

  --color-accent: var(--color-emberglow);
  --color-black: var(--color-obsidian);
  --color-white: var(--color-dawnlight);
  --color-bg-light: var(--color-dawnlight);
  --color-text-dark: var(--color-obsidian);
  --color-text-muted: var(--color-umber);
  --color-border: rgba(132, 57, 25, 0.15);

  --font-heading: 'BenchNine', sans-serif;
  --font-body: 'Archivo', sans-serif;

  --transition-fast: 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-normal: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);

  --site-max-width: 1400px;
  --site-padding: 6vw;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 100%;
  width: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-white);
  color: var(--color-text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  max-width: 100%;
  width: 100%;
  font-variation-settings: "wdth" 85;
  /* Semi-condensed appearance matching target */
}

img, video {
  max-width: 100%;
}

/* --- Typography Helpers --- */
h1,
h2,
h3,
h4,
.font-heading {
  font-family: var(--font-heading);
  text-transform: uppercase;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.1;
}

p {
  font-size: 1rem;
  font-weight: 300;
  color: var(--color-text-muted);
}

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

/* --- Container --- */
.section-container {
  max-width: var(--site-max-width);
  margin: 0 auto;
  padding: 8rem var(--site-padding);
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 0.8rem 2.2rem;
  font-family: var(--font-heading);
  text-transform: uppercase;
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: var(--transition-normal);
  border: 1px solid transparent;
  background: none;
}

.btn-hero {
  background-color: var(--color-accent);
  color: var(--color-black);
  border-color: var(--color-accent);
  margin-top: 1.5rem;
}

.btn-hero:hover {
  background-color: var(--color-black);
  color: var(--color-accent);
  border-color: var(--color-black);
  transform: translateY(-2px);
}

.btn-outline {
  border-color: var(--color-black);
  color: var(--color-black);
}

.btn-outline:hover {
  background-color: var(--color-black);
  color: var(--color-white);
}

.btn-submit {
  background-color: var(--color-black);
  color: var(--color-white);
  width: 100%;
  padding: 1rem;
  margin-top: 1rem;
}

.btn-submit:hover {
  background-color: var(--color-accent);
  color: var(--color-black);
}

/* --- Header & Navigation --- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: background-color var(--transition-normal), border-bottom var(--transition-normal);
  background-color: #000000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.site-header.scrolled {
  background-color: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.site-header .site-logo,
.site-header.scrolled .site-logo {
  color: var(--color-white);
}

.site-header .nav-link,
.site-header.scrolled .nav-link {
  color: var(--color-white);
}

.site-header .mobile-menu-toggle span,
.site-header.scrolled .mobile-menu-toggle span {
  background-color: var(--color-white);
}

.header-container {
  max-width: var(--site-max-width);
  margin: 0 auto;
  padding: 1.5rem var(--site-padding);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-logo {
  font-family: var(--font-body);
  font-size: 2.2rem;
  font-weight: 600;
  text-transform: lowercase;
  color: var(--color-white);
  letter-spacing: -0.03em;
  font-variation-settings: "wdth" 80;
}

.desktop-nav {
  display: flex;
  gap: 2.5rem;
}

.nav-link {
  font-family: var(--font-heading);
  text-transform: uppercase;
  font-size: 1.3rem;
  color: var(--color-white);
  letter-spacing: 0.05em;
  position: relative;
}

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

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

/* Mobile Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 25px;
  height: 16px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

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

/* Mobile Nav Open Animation */
.mobile-menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

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

.mobile-menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background-color: var(--color-white);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: right var(--transition-normal);
}

.mobile-nav-drawer.active {
  right: 0;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.mobile-nav-link {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  text-transform: uppercase;
  color: var(--color-text-dark);
  letter-spacing: 0.05em;
}

/* --- Section 0: Hero Fullscreen Motion Video --- */
.hero-section {
  position: relative;
  height: 100vh;
  height: 100dvh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--color-white);
  overflow: hidden;
  background-color: #000000;
}

.hero-video-section {
  padding: 0;
  margin: 0;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
}

.hero-bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-reveal-bg {
  position: absolute;
  top: -5%;
  left: -5%;
  width: 110%;
  height: 110%;
  background-image: url('../images/hero_reveal_bg.jpg');
  background-size: cover;
  background-position: center;
  z-index: 1;
  transform: scale(1.08) translate3d(0, 0, 0);
  transition: transform 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-canvas {
  position: absolute;
  top: -5%;
  left: -5%;
  width: 110%;
  height: 110%;
  z-index: 2;
  pointer-events: none;
  transform: scale(1.08) translate3d(0, 0, 0);
  transition: transform 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.35);
  /* Subtle dark overlay for readability */
  z-index: 3;
}

.viewfinder-frame {
  position: absolute;
  top: 5.5rem;
  left: 3rem;
  right: 3rem;
  bottom: 5.5rem;
  border-radius: 30px;
  pointer-events: none;
  z-index: 8;
  outline: 2000px solid #000000;
}

.viewfinder-hud {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 5;
  box-sizing: border-box;
  transition: transform 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hud-corner {
  position: absolute;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-transform: uppercase;
}

.hud-corner.top-left {
  top: 7rem;
  left: 6rem;
}

.hud-corner.top-right {
  top: 7rem;
  right: 6rem;
}

.hud-corner.bottom-left {
  bottom: 7rem;
  left: 6rem;
}

.hud-corner.bottom-right {
  bottom: 7rem;
  right: 6rem;
}

.rec-dot {
  width: 12px;
  height: 12px;
  background-color: #c62828;
  border-radius: 50%;
  animation: hudBlink 1s infinite steps(1, start);
}

@keyframes hudBlink {

  0%,
  100% {
    opacity: 0;
  }

  50% {
    opacity: 1;
  }
}

.battery-icon {
  width: 32px;
  height: 18px;
  border: 1.5px solid rgba(255, 255, 255, 0.7);
  padding: 1px;
  position: relative;
  display: inline-block;
  vertical-align: middle;
}

.battery-icon span {
  display: block;
  height: 100%;
  width: 80%;
  background-color: rgba(255, 255, 255, 0.8);
}

.battery-icon::after {
  content: '';
  position: absolute;
  right: -4px;
  top: 4px;
  width: 2px;
  height: 6px;
  background-color: rgba(255, 255, 255, 0.7);
}

.hud-focus-bracket {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 180px;
  height: 180px;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.hud-focus-bracket::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 2px solid rgba(255, 255, 255, 0.35);
  clip-path: polygon(0 0, 35px 0, 35px 2px, 2px 2px, 2px 35px, 0 35px,
      0 100%, 35px 100%, 35px 178px, 2px 178px, 2px 145px, 0 145px,
      100% 0, 145px 0, 145px 2px, 178px 2px, 178px 35px, 100% 35px,
      100% 100%, 145px 100%, 145px 178px, 178px 178px, 178px 145px, 100% 145px);
}

@media (max-width: 768px) {

  .viewfinder-hud,
  .viewfinder-frame {
    display: none;
  }
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 800px;
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-title {
  font-size: clamp(2.5rem, 7.5vw, 7.5rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
  perspective: 1000px;
  /* Enables 3D perspective space for flipping letters */
  overflow: visible;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 100%;
}

.hero-title .word {
  display: inline-block;
  white-space: nowrap;
}

.hero-title .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(50px) rotateX(-80deg) scale(0.9);
  transform-origin: bottom center;
  filter: blur(12px);
  animation: cinematicLetterReveal 1.2s cubic-bezier(0.19, 1, 0.22, 1) forwards, multicolorGlow 8s linear infinite;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), color 0.4s, filter 0.4s, text-shadow 0.4s;
}

/* Playful, engaging hover reaction for individual characters */
.hero-title .char:hover {
  transform: translateY(-12px) scale(1.15) rotateX(10deg);
  color: var(--color-accent) !important;
  filter: drop-shadow(0 0 15px rgba(255, 157, 0, 0.8));
  text-shadow:
    0 0 4px var(--color-white),
    0 0 12px var(--color-accent),
    0 0 25px var(--color-accent),
    0 0 50px var(--color-sienna) !important;
}

@keyframes cinematicLetterReveal {
  to {
    opacity: 1;
    transform: translateY(0) rotateX(0) scale(1);
    filter: blur(0);
  }
}

@keyframes multicolorGlow {

  0%,
  100% {
    text-shadow:
      0 0 3px rgba(255, 157, 0, 0.6),
      0 0 8px rgba(255, 157, 0, 0.4),
      0 0 15px rgba(236, 132, 47, 0.2);
  }

  20% {
    text-shadow:
      0 0 3px rgba(255, 0, 127, 0.6),
      0 0 8px rgba(255, 0, 127, 0.4),
      0 0 15px rgba(255, 0, 127, 0.2);
  }

  40% {
    text-shadow:
      0 0 3px rgba(157, 0, 255, 0.6),
      0 0 8px rgba(157, 0, 255, 0.4),
      0 0 15px rgba(157, 0, 255, 0.2);
  }

  60% {
    text-shadow:
      0 0 3px rgba(0, 240, 255, 0.6),
      0 0 8px rgba(0, 240, 255, 0.4),
      0 0 15px rgba(0, 240, 255, 0.2);
  }

  80% {
    text-shadow:
      0 0 3px rgba(0, 255, 157, 0.6),
      0 0 8px rgba(0, 255, 157, 0.4),
      0 0 15px rgba(0, 255, 157, 0.2);
  }
}

.hero-tagline {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-top: -0.5rem;
  margin-bottom: 2rem;
  animation: fadeInUp 1s ease-out 0.1s;
  animation-fill-mode: both;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  max-width: 600px;
  animation: fadeInUp 1s ease-out 0.2s;
  animation-fill-mode: both;
}

/* --- Section 1: Meet Arushi (Split-Screen Design) --- */
.meet-arushi {
  background-color: #000000;
  border-bottom: 1px solid var(--color-black);
  width: 100%;
}

.bio-grid-container {
  display: grid;
  grid-template-columns: 35.8% 110px 1fr;
  height: 100vh;
  height: 100dvh;
  min-height: 750px;
  max-height: none;
  overflow: hidden;
}

.vertical-text {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: var(--font-body);
  font-size: 3.2rem;
  font-weight: 500;
  color: #d57c45;
  text-transform: none;
  letter-spacing: 0.1em;
  white-space: nowrap;
}

.bio-content-col {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 4vw 5vw;
  background-color: #000000;
  overflow: hidden;
}

.bio-text-wrapper {
  max-width: 1400px;
  z-index: 5;
  text-align: center;
}

.bio-heading {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 4.5vw, 4.5rem) !important;
  margin-bottom: 2.2rem;
  text-transform: uppercase;
  color: #ff5533 !important;
  line-height: 1.1;
  letter-spacing: 0.05em;
  font-weight: 700;
}

.bio-desc-text p {
  font-family: var(--font-body);
  font-size: clamp(1.05rem, 1.8vw, 1.8rem) !important;
  text-transform: none;
  letter-spacing: normal;
  line-height: 1.5;
  color: #ffffff !important;
  margin-bottom: 1.8rem;
  font-weight: 400 !important;
}

.bio-portrait-col {
  position: relative;
  height: 100%;
  overflow: hidden;
  border-right: none;
}

/* Projector flickering overlay (Vintage Film look) */
.projector-flicker-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 3;
  opacity: 0.08;
  overflow: hidden;
  transition: opacity 0.5s ease;
}

.bio-portrait-col:hover .projector-flicker-overlay {
  opacity: 0.16;
}

.projector-flicker-overlay::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(90deg,
      transparent,
      transparent 120px,
      rgba(255, 255, 255, 0.15) 120px,
      rgba(255, 255, 255, 0.15) 121px,
      transparent 121px);
  animation: filmLines 0.4s infinite steps(6);
}

.projector-flicker-overlay::after {
  content: '';
  position: absolute;
  width: 200%;
  height: 200%;
  top: -50%;
  left: -50%;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.4) 1.5px, transparent 1.5px),
    radial-gradient(circle, rgba(0, 0, 0, 0.5) 1.5px, transparent 1.5px);
  background-size: 150px 150px, 200px 200px;
  animation: filmDust 0.25s infinite steps(4);
}

@keyframes filmLines {
  0% {
    transform: translate3d(-10%, 0, 0);
  }

  50% {
    transform: translate3d(8%, 0, 0);
  }

  100% {
    transform: translate3d(18%, 0, 0);
  }
}

@keyframes filmDust {
  0% {
    transform: translate3d(0, 0, 0);
  }

  25% {
    transform: translate3d(-4%, 3%, 0);
  }

  50% {
    transform: translate3d(4%, -3%, 0);
  }

  75% {
    transform: translate3d(-2%, -2%, 0);
  }

  100% {
    transform: translate3d(2%, 2%, 0);
  }
}

/* Camera Focus Reticle on Portrait */
.camera-focus-reticle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 70px;
  height: 70px;
  transform: translate3d(-50%, -50%, 0) scale(1.3);
  pointer-events: none;
  z-index: 4;
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.5s ease;
}

.camera-focus-reticle::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1.5px solid var(--color-accent);
  clip-path: polygon(0 0, 15px 0, 15px 1.5px, 1.5px 1.5px, 1.5px 15px, 0 15px,
      0 100%, 15px 100%, 15px 68.5px, 1.5px 68.5px, 1.5px 55px, 0 55px,
      100% 0, 55px 0, 55px 1.5px, 68.5px 1.5px, 68.5px 15px, 100% 15px,
      100% 100%, 55px 100%, 55px 68.5px, 68.5px 68.5px, 68.5px 55px, 100% 55px);
}

.bio-portrait-col:hover .camera-focus-reticle {
  opacity: 1;
  transform: translate3d(-50%, -50%, 0) scale(1.0);
}

.bio-portrait-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  filter: grayscale(100%);
  transition: transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.bio-portrait-col:hover .bio-portrait-img {
  transform: scale(1.06);
}

.bio-divider-col {
  background-color: #843919;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: none;
  overflow: hidden;
  position: relative;
}

.vertical-text-wrapper {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  align-items: center;
  animation: vertical-marquee-anim 20s linear infinite;
}

.vertical-text {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: var(--font-body);
  font-size: 1.8rem;
  font-weight: 500;
  color: #d57c45;
  text-transform: none;
  letter-spacing: 0.1em;
  white-space: nowrap;
}

@keyframes vertical-marquee-anim {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-50%);
  }
}

/* Rotating Film Reel Watermark */
.reel-watermark {
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 320px;
  height: 320px;
  opacity: 0.025;
  pointer-events: none;
  z-index: 1;
  animation: rotateReel 60s linear infinite;
  color: var(--color-black);
}

@keyframes rotateReel {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}





/* --- Section 1.5: Philosophy (Intersecting Ribbons & Quadrants) --- */
.philosophy-section {
  background-color: #000000 !important;
  color: var(--color-white);
  height: calc(100vh - 90px);
  height: calc(100dvh - 90px);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--color-black);
}

.philosophy-x-container {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

/* Ribbons */
.philosophy-ribbon {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 180%;
  height: 85px;
  background-color: #843919;
  display: flex;
  align-items: center;
  overflow: hidden;
  z-index: 2;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.ribbon-tl-br {
  transform: translate(-50%, -50%) rotate(21deg);
}

.ribbon-bl-tr {
  transform: translate(-50%, -50%) rotate(-21deg);
  z-index: 3;
  /* this ribbon is on top */
}

/* Marquee Track */
.ribbon-track {
  display: flex;
  width: max-content;
  white-space: nowrap;
}

.ribbon-track span {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  color: #d57c45;
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0.05em;
  display: inline-block;
}

/* Marquee Animations */
.marquee-left {
  animation: philosophy-scroll-left 35s linear infinite;
}

.marquee-right {
  animation: philosophy-scroll-right 35s linear infinite;
}

@keyframes philosophy-scroll-left {
  0% {
    transform: translate3d(0, 0, 0);
  }

  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

@keyframes philosophy-scroll-right {
  0% {
    transform: translate3d(-50%, 0, 0);
  }

  100% {
    transform: translate3d(0, 0, 0);
  }
}

/* Quadrants Wrapper */
.philosophy-quadrants-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  pointer-events: none;
}

.quadrant {
  position: absolute;
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quad-reveal {
  opacity: 0;
  transform: translateY(30px) scale(0.95);
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  max-width: 100%;
}

.quad-reveal.revealed {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Staggered delays for entrance reveal */
.quad-top .quad-reveal {
  transition-delay: 0.1s;
}

.quad-left .quad-reveal {
  transition-delay: 0.3s;
}

.quad-right .quad-reveal {
  transition-delay: 0.5s;
}

.quad-bottom .quad-reveal {
  transition-delay: 0.7s;
}

/* Slow breathing floating oscillation animation */
@keyframes philosophy-float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

.quad-reveal.revealed {
  animation: philosophy-float 6s ease-in-out infinite;
}

.quad-top .quad-reveal.revealed {
  animation-delay: 0s;
}

.quad-left .quad-reveal.revealed {
  animation-delay: 1.5s;
}

.quad-right .quad-reveal.revealed {
  animation-delay: 3s;
}

.quad-bottom .quad-reveal.revealed {
  animation-delay: 4.5s;
}

/* Text styling */
.quad-title {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-accent);
  margin: 0;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9);
  transition: color var(--transition-fast), transform var(--transition-fast);
}

.quad-reveal:hover .quad-title {
  color: var(--color-white);
  transform: scale(1.05);
}

.quad-text {
  font-family: var(--font-body);
  font-size: clamp(1.2rem, 2.2vw, 2.2rem);
  line-height: 1.45;
  color: var(--color-white);
  font-weight: 500;
  text-align: center;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.9);
  margin: 0;
}

.quad-text .highlight-word {
  color: #ff5533;
  font-weight: 700;
}

.quad-top {
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 750px;
}

.quad-bottom {
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 750px;
}

.quad-left {
  left: 5%;
  top: 50%;
  transform: translateY(-50%);
  width: 35%;
  max-width: 420px;
}

.quad-right {
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  width: 35%;
  max-width: 420px;
}

.philosophy-underline {
  text-decoration: underline;
  text-underline-offset: 6px;
  text-decoration-thickness: 2px;
}

/* --- Section 1.6: Culture & Discourse (DSM-inspired Layout) --- */
.provocation-section {
  background-color: var(--color-bg-light);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  position: relative;
  padding: 8rem 0;
  overflow: hidden;
}

.provocation-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 6rem;
  align-items: stretch;
}

/* Left Column */
.provocation-info-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 2.5rem;
  max-width: 440px;
  padding-bottom: 1.5rem;
}

.provocation-subtitle {
  font-family: var(--font-body);
  font-size: 1.45rem;
  line-height: 1.6;
  color: var(--color-text-dark);
  font-weight: 500;
  margin: 0;
}

.provocation-btn {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-white);
  background-color: var(--color-text-dark);
  padding: 0.85rem 2.2rem;
  border-radius: 4px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  border: 1px solid var(--color-text-dark);
  transition: background-color var(--transition-fast), color var(--transition-fast), transform var(--transition-fast);
}

.provocation-btn:hover {
  background-color: var(--color-accent);
  color: #170d04;
  border-color: var(--color-accent);
  transform: translateY(-2px);
}

.btn-arrow-icon {
  transition: transform var(--transition-fast);
}

.provocation-btn:hover .btn-arrow-icon {
  transform: translateY(3px);
}

/* Right Column (Giant Typography) */
.provocation-text-col {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.dsm-line {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
}

.dsm-word {
  font-family: var(--font-body);
  font-size: 5.8rem;
  font-weight: 900;
  text-transform: lowercase;
  letter-spacing: -0.04em;
  color: var(--color-text-dark);
  line-height: 0.95;
  transition: color 0.3s var(--transition-fast), transform 0.3s var(--transition-fast);
  cursor: default;
}

.dsm-word:hover {
  color: var(--color-accent) !important;
  transform: scale(1.06) translateY(-2px) !important;
}

/* Vector Shapes and Noise Filter */
.dsm-graphic {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Custom noise overlay to graphics */
.dsm-circle-orange,
.dsm-capsule rect,
.dsm-halfcircle-purple path,
.dsm-halfcircle-green path,
.dsm-triangles polygon {
  filter: url(#dsm-noise);
}

.dsm-circle-arrow {
  width: 130px;
  height: 50px;
}

.dsm-circle-arrow svg {
  width: 100%;
  height: 100%;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.dsm-circle-arrow:hover svg {
  transform: scale(1.1) translateX(6px);
}

.dsm-circle-orange {
  width: 75px;
  height: 75px;
  background-color: var(--color-sienna);
  border-radius: 50%;
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.dsm-circle-orange:hover {
  transform: scale(1.15) translateY(-3px);
}

.dsm-arrow-upright {
  width: 55px;
  height: 55px;
}

.dsm-arrow-upright svg {
  width: 100%;
  height: 100%;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.dsm-arrow-upright:hover svg {
  transform: scale(1.15) translate(4px, -4px);
}

.dsm-circle-blue {
  width: 45px;
  height: 45px;
  background-color: var(--color-umber);
  border-radius: 50%;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.dsm-circle-blue:hover {
  transform: scale(1.15) translateY(-3px);
}

.dsm-cross {
  width: 20px;
  height: 20px;
}

.dsm-cross svg {
  width: 100%;
  height: 100%;
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.dsm-cross:hover svg {
  transform: scale(1.25) rotate(90deg);
}

.dsm-circle-green {
  width: 45px;
  height: 45px;
  background-color: #2e7d32;
  border-radius: 50%;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.dsm-circle-green:hover {
  transform: scale(1.15) translateY(-3px);
}

.dsm-capsule {
  width: 150px;
  height: 65px;
}

.dsm-capsule svg {
  width: 100%;
  height: 100%;
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.dsm-capsule:hover svg {
  transform: scale(1.08) rotate(4deg);
}

.dsm-halfcircle-purple,
.dsm-halfcircle-green {
  width: 30px;
  height: 60px;
}

.dsm-halfcircle-purple svg,
.dsm-halfcircle-green svg {
  width: 100%;
  height: 100%;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.dsm-halfcircle-purple:hover svg {
  transform: scale(1.15) translateX(-4px);
}

.dsm-halfcircle-green:hover svg {
  transform: scale(1.15) translateX(4px);
}

.dsm-triangles {
  width: 110px;
  height: 55px;
}

.dsm-triangles svg {
  width: 100%;
  height: 100%;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.dsm-triangles:hover svg {
  transform: scale(1.1) rotate(-5deg);
}

.dsm-star {
  width: 35px;
  height: 35px;
}

.dsm-star svg {
  width: 100%;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.dsm-star:hover svg {
  transform: scale(1.25) rotate(180deg);
}

/* Responsive Overrides for Provocation Section */
@media (max-width: 991px) {
  .provocation-layout {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .provocation-info-col {
    order: 2;
    /* Info col below giant text */
    max-width: 100%;
    align-self: flex-start;
  }

  .dsm-word {
    font-size: 4.8rem;
  }

  .dsm-circle-orange {
    width: 60px;
    height: 60px;
  }

  .dsm-circle-arrow {
    width: 100px;
    height: 40px;
  }

  .dsm-arrow-upright {
    width: 45px;
    height: 45px;
  }

  .dsm-capsule {
    width: 120px;
    height: 50px;
  }

  .dsm-triangles {
    width: 90px;
    height: 45px;
  }
}

@media (max-width: 768px) {
  .provocation-section {
    padding: 5rem 0;
  }

  .dsm-word {
    font-size: 3.5rem;
  }

  .dsm-line {
    gap: 0.75rem 1rem;
  }

  .dsm-circle-orange {
    width: 45px;
    height: 45px;
  }

  .dsm-circle-arrow {
    width: 80px;
    height: 30px;
  }

  .dsm-arrow-upright {
    width: 35px;
    height: 35px;
  }

  .dsm-circle-blue,
  .dsm-circle-green {
    width: 30px;
    height: 30px;
  }

  .dsm-cross {
    width: 15px;
    height: 15px;
  }

  .dsm-capsule {
    width: 90px;
    height: 40px;
  }

  .dsm-halfcircle-purple,
  .dsm-halfcircle-green {
    width: 20px;
    height: 40px;
  }

  .dsm-triangles {
    width: 70px;
    height: 35px;
  }

  .dsm-star {
    width: 25px;
    height: 25px;
  }

  .provocation-subtitle {
    font-size: 1.25rem;
  }
}


/* --- Fullscreen Video Section (Hands & Eye Blink Animations) --- */
.fullscreen-video-section,
.hands-anim-section {
  position: relative;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
  background-color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fullscreen-bg-video,
.hands-anim-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* --- Section 2: Wild Wild Wives Framed Design --- */
.wild-wives-framed-wrapper {
  position: relative;
  background-color: #000000 !important;
  padding: 0;
  overflow: hidden;
}

.orange-frame-banner {
  height: 85px !important;
  background-color: #843919 !important;
  border: none !important;
}

.orange-frame-banner .marquee-track span {
  font-family: var(--font-body);
  font-size: 2.8rem;
  color: #d57c45 !important;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: lowercase;
  padding: 0 2.2rem;
}

.featured-film-section.orange-frame-section {
  background-color: #000000 !important;
  border: none !important;
  position: relative;
  padding: 5rem 95px;
  height: auto;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.orange-frame-vertical {
  width: 85px !important;
  background-color: #843919 !important;
  border: none !important;
}

.orange-frame-vertical .vertical-marquee-track span {
  font-family: var(--font-body);
  font-size: 2.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: lowercase;
  color: #d57c45 !important;
  padding: 2.2rem 0;
}

.film-inner-card {
  background-color: #000000;
  width: 100%;
  max-width: 1650px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 3.5rem;
  z-index: 5;
  position: relative;
}

.film-title-glow {
  font-family: var(--font-body);
  font-size: clamp(3.0rem, 8vw, 8.5rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #ffffff;
  line-height: 1.0;
  margin: 0 0 0.5rem 0;
  animation: chromaticTitleShift 3.5s ease-in-out infinite alternate;
}

@keyframes chromaticTitleShift {
  0% {
    text-shadow:
      -3px -3px 0px #ff2a00,
      3px 3px 0px #0066ff,
      0 0 20px #b026ff,
      0 0 40px #ff3300;
  }

  33% {
    text-shadow:
      3px -4px 0px #ff0055,
      -3px 4px 0px #00e5ff,
      0 0 30px #e040fb,
      0 0 50px #ff6d00;
  }

  66% {
    text-shadow:
      -4px 3px 0px #ff1744,
      4px -3px 0px #2979ff,
      0 0 25px #d500f9,
      0 0 45px #ffab00;
  }

  100% {
    text-shadow:
      -3px -3px 0px #ff2a00,
      3px 3px 0px #0066ff,
      0 0 20px #b026ff,
      0 0 40px #ff3300;
  }
}

.film-text-block {
  font-family: var(--font-body);
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  max-width: 1400px;
  width: 100%;
}

.film-text-block p {
  margin: 0;
  font-size: clamp(1.15rem, 2.2vw, 2.4rem) !important;
  line-height: 1.5 !important;
  color: #ffffff !important;
  font-weight: 400 !important;
  text-shadow: none !important;
  letter-spacing: 0.01em;
}

.film-verse-glow {
  font-family: var(--font-body);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin: 1.8rem 0;
  max-width: 1400px;
  width: 100%;
}

.film-verse-glow p {
  margin: 0;
  font-size: clamp(1.15rem, 2.2vw, 2.4rem) !important;
  font-weight: 600 !important;
  line-height: 1.5 !important;
  color: #ffffff !important;
  animation: chromaticTitleShift 3.5s ease-in-out infinite alternate !important;
}





/* --- Section 4 & 6: Marquee Banners --- */
.marquee-banner {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  height: 85px;
  display: flex;
  align-items: center;
  background-color: #843919 !important;
  border-top: 1px solid var(--color-black);
  border-bottom: 1px solid var(--color-black);
}

.bg-accent {
  background-color: var(--color-accent);
}

.bg-black {
  background-color: var(--color-black);
}

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

.marquee-content-wrapper {
  display: inline-block;
}

.marquee-track {
  display: flex;
  animation: marquee-anim 25s linear infinite;
  width: max-content;
}

.marquee-track span {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  color: #d57c45;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: none;
  padding: 0 2rem;
  display: inline-block;
}

@keyframes marquee-anim {
  0% {
    transform: translate3d(0, 0, 0);
  }

  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

/* --- Vertical Marquee Banners (Frame Look) --- */
.vertical-marquee-banner {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 85px;
  background-color: #843919;
  overflow: hidden;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.vertical-marquee-banner.left-banner {
  left: 0;
  border-right: 1px solid var(--color-black);
}

.vertical-marquee-banner.right-banner {
  right: 0;
  border-left: 1px solid var(--color-black);
}

.vertical-marquee-track {
  display: flex;
  flex-direction: row;
  height: max-content;
  white-space: nowrap;
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

.vertical-marquee-track.marquee-up {
  animation: marquee-vertical-up 20s linear infinite;
}

.vertical-marquee-track.marquee-down {
  animation: marquee-vertical-down 20s linear infinite;
}

.vertical-marquee-track span {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: none;
  color: #d57c45;
  padding: 2.5rem 0;
  display: block;
  text-align: center;
}

@keyframes marquee-vertical-up {
  0% {
    transform: translate3d(0, 0, 0);
  }

  100% {
    transform: translate3d(0, -50%, 0);
  }
}

@keyframes marquee-vertical-down {
  0% {
    transform: translate3d(0, -50%, 0);
  }

  100% {
    transform: translate3d(0, 0, 0);
  }
}



/* --- Section 8: Get In Touch (Form) --- */
.contact-section {
  background-color: #000000 !important;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--color-white);
  padding: 2rem 0 3rem 0;
}

.contact-section .section-container {
  padding: 3rem var(--site-padding);
}

.heading-large {
  font-family: var(--font-body);
  font-size: clamp(3.2rem, 5.5vw, 4.8rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.0;
  background: linear-gradient(90deg, #ff3636 0%, #ff5236 40%, #ff7536 75%, #ff9838 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3.5rem;
  align-items: flex-start;
}

.contact-subtitle {
  font-size: 1.25rem;
  margin-top: 1.5rem;
  max-width: 480px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-family: var(--font-body);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
}

.form-group input,
.form-group textarea {
  padding: 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: #111111;
  color: #ffffff;
  border-radius: 4px;
  outline: none;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 2px rgba(255, 157, 0, 0.25);
  background: #181818;
}

.btn-submit {
  background-color: var(--color-accent);
  color: var(--color-black);
  padding: 1rem 2.2rem;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  letter-spacing: 0.05em;
  font-weight: 700;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  align-self: flex-start;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 157, 0, 0.25);
}

.btn-submit:hover {
  background-color: #ffb433;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 157, 0, 0.4);
}

.form-feedback {
  margin-top: 1rem;
  font-size: 1rem;
  font-weight: 500;
}

.form-feedback.success {
  color: #4caf50;
}

.form-feedback.error {
  color: #f44336;
}

/* --- Section 9: Footer & Instagram Row --- */
.site-footer {
  width: 100%;
  background-color: #000000 !important;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
  padding: 6rem var(--site-padding) 3rem;
  color: var(--color-accent);
}

.footer-container {
  max-width: var(--site-max-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 5rem;
}

.footer-brand .footer-logo {
  font-family: var(--font-body);
  font-size: 3rem;
  font-weight: 600;
  text-transform: lowercase;
  letter-spacing: -0.03em;
  font-variation-settings: "wdth" 80;
}

.footer-hours {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hours-title {
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  font-weight: 700;
}

.hours-details {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.8;
  color: inherit;
}

.footer-bottom {
  max-width: var(--site-max-width);
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 2rem;
  text-align: center;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

/* --- Animations --- */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --- Responsive Media Queries --- */

/* Tablet Landscape & Medium Displays (769px to 1024px) */
@media (max-width: 1024px) {
  .section-container {
    padding: 6rem var(--site-padding);
  }

  .heading-large {
    font-size: 3.6rem;
  }

  /* Meet Arushi Tablet Scaling */
  .bio-grid-container {
    grid-template-columns: 32% 80px 1fr;
    height: auto;
    min-height: 100dvh;
  }

  .vertical-text {
    font-size: 2.2rem;
  }

  .bio-content-col {
    padding: 3vw 4vw;
  }

  /* Philosophy Tablet Layout */
  .philosophy-section {
    height: auto;
    min-height: 100dvh;
    padding: 4rem 0;
  }

  .philosophy-ribbon {
    height: 65px;
  }

  .ribbon-track span {
    font-size: 2.2rem;
  }

  .quad-top {
    top: 5%;
  }

  .quad-bottom {
    bottom: 5%;
  }

  .quad-left {
    left: 2%;
    width: 40%;
  }

  .quad-right {
    right: 2%;
    width: 40%;
  }

  /* Wild Wild Wives Tablet Frame */
  .featured-film-section.orange-frame-section {
    padding: 4rem 65px;
  }

  .orange-frame-vertical {
    width: 65px !important;
  }

  .orange-frame-vertical .vertical-marquee-track span {
    font-size: 2.0rem;
    padding: 1.5rem 0;
  }

  .orange-frame-banner {
    height: 65px !important;
  }

  .orange-frame-banner .marquee-track span {
    font-size: 2.0rem;
  }

  .film-inner-card {
    gap: 2.5rem;
    padding: 2.5rem 1rem;
  }

  /* Footer Tablet Layout */
  .footer-container {
    gap: 3rem;
  }
}

/* Tablet Portrait & Mobile Devices (<= 768px) */
@media (max-width: 768px) {
  /* Navigation */
  .desktop-nav {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .header-container {
    padding: 1rem var(--site-padding);
  }

  .site-logo {
    font-size: 1.8rem;
  }

  .section-container {
    padding: 4rem var(--site-padding);
  }

  /* Hero Section */
  .hero-title {
    font-size: clamp(2.0rem, 9.5vw, 4.2rem);
  }

  .hero-tagline {
    font-size: 1.5rem;
    margin-top: 0;
    margin-bottom: 1.2rem;
  }

  .hero-subtitle {
    font-size: 1.05rem;
  }

  .viewfinder-hud,
  .viewfinder-frame {
    display: none;
  }

  /* Meet Arushi Split Layout (Mobile Stacked) */
  .bio-grid-container {
    grid-template-columns: 1fr;
    height: auto;
    min-height: auto;
    max-height: none;
  }

  .bio-portrait-col {
    height: 380px;
    border-right: none;
    border-bottom: 1px solid var(--color-black);
  }

  .bio-divider-col {
    height: 50px;
    width: 100%;
    border-right: none;
    border-bottom: 1px solid var(--color-black);
    padding: 0 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .vertical-text-wrapper {
    flex-direction: row;
    width: 100%;
    height: auto;
    gap: 2rem;
    justify-content: center;
    animation: none;
  }

  .vertical-text {
    writing-mode: horizontal-tb;
    transform: none;
    font-size: 1.0rem;
    letter-spacing: 0.1em;
  }

  .vertical-text-wrapper .vertical-text:nth-child(n+3) {
    display: none;
  }

  .bio-content-col {
    padding: 3rem 1.5rem;
  }

  .bio-heading {
    font-size: 2.2rem !important;
    margin-bottom: 1.5rem;
  }

  .bio-desc-text p {
    font-size: 1.15rem !important;
    margin-bottom: 1.4rem;
  }

  /* Philosophy Section Mobile Layout */
  .philosophy-section {
    padding: 5rem 0;
    height: auto;
    min-height: auto;
  }

  .philosophy-x-container {
    min-height: auto;
  }

  .philosophy-ribbon {
    width: 240%;
    height: 55px;
  }

  .ribbon-track span {
    font-size: 1.8rem;
  }

  .philosophy-quadrants-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3.5rem;
    width: 100%;
    height: auto;
    padding: 2rem var(--site-padding);
    pointer-events: auto;
    z-index: 5;
  }

  .quadrant {
    position: static;
    transform: none;
    width: 100% !important;
    max-width: 550px !important;
  }

  .quad-text {
    font-size: 1.35rem;
    line-height: 1.4;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 1), 0 0 8px rgba(0, 0, 0, 0.9);
  }

  /* Wild Wild Wives Mobile Framing */
  .vertical-marquee-banner {
    display: none;
  }

  .featured-film-section.orange-frame-section {
    padding: 3rem 1rem;
    height: auto;
    min-height: auto;
    display: block;
  }

  .orange-frame-banner {
    height: 60px !important;
  }

  .orange-frame-banner .marquee-track span {
    font-size: 1.8rem;
    padding: 0 1.2rem;
  }

  .film-inner-card {
    padding: 2rem 1rem;
    gap: 2rem;
  }

  .film-title-glow {
    font-size: 3.2rem;
  }

  .film-text-block p,
  .film-verse-glow p {
    font-size: 1.2rem !important;
  }

  /* War Section Mobile Layout */
  .war-section {
    height: auto;
    min-height: auto;
    display: flex;
    flex-direction: column;
  }

  .war-banner-image-container {
    height: 260px;
  }

  .war-content-container {
    height: auto;
    padding: 3rem 1.5rem;
  }

  .war-title {
    font-size: 2.0rem;
    line-height: 1.3;
  }

  .war-subtitle {
    font-size: 1.35rem;
    line-height: 1.4;
  }

  .war-allies {
    font-size: 1.6rem;
  }

  /* Contact Section Mobile Layout */
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .contact-subtitle {
    font-size: 1.1rem;
  }

  /* Footer Mobile Layout */
  .footer-container {
    flex-direction: column;
    gap: 3rem;
  }

  .footer-brand .footer-logo {
    font-size: 2.5rem;
  }
}

/* Mobile Small Devices (<= 480px) */
@media (max-width: 480px) {
  .site-logo {
    font-size: 1.5rem;
  }

  .hero-title {
    font-size: clamp(1.8rem, 11vw, 3.2rem);
  }

  .heading-large {
    font-size: 2.4rem;
  }

  .hero-tagline {
    font-size: 1.2rem;
    letter-spacing: 0.1em;
  }

  .bio-portrait-col {
    height: 300px;
  }

  .bio-content-col {
    padding: 2rem 1rem;
  }

  .bio-heading {
    font-size: 1.8rem !important;
    margin-bottom: 1.2rem;
  }

  .bio-desc-text p {
    font-size: 1.05rem !important;
    margin-bottom: 1.2rem;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .btn-submit {
    width: 100%;
    padding: 0.9rem;
    font-size: 1.1rem;
  }

  .marquee-track span {
    font-size: 1.6rem;
    padding: 0 1rem;
  }

  .film-title-glow {
    font-size: 2.5rem;
  }

  .film-text-block p,
  .film-verse-glow p {
    font-size: 1.05rem !important;
  }

  .war-banner-image-container {
    height: 200px;
  }

  .war-title {
    font-size: 1.75rem;
  }

  .war-subtitle {
    font-size: 1.15rem;
  }

  .war-allies {
    font-size: 1.4rem;
  }

  .footer-content {
    padding: 4rem var(--site-padding) 2rem;
  }

  .footer-brand .footer-logo {
    font-size: 2.0rem;
  }
}

/* --- Section 7: War Against Conformity --- */
.war-section {
  background-color: #000000 !important;
  position: relative;
  overflow: hidden;
  height: 100vh;
  height: 100dvh;
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid var(--color-border);
}

.war-banner-image-container {
  height: 50%;
  width: 100%;
  overflow: hidden;
  position: relative;
}

.war-banner-image-container::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, #000000 0%, rgba(0, 0, 0, 0) 100%);
  pointer-events: none;
  z-index: 2;
}

.war-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  transform: rotate(180deg);
  /* Rotate image upside down */
}

.war-content-container {
  height: 50%;
  width: 100%;
  background-color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  z-index: 5;
  padding: 2rem;
}

.war-copy-block {
  max-width: 1000px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.war-copy-block.revealed {
  opacity: 1;
  transform: translateY(-40px);
  /* Move text slightly up */
}

.war-title {
  font-family: var(--font-body);
  font-size: clamp(1.8rem, 3.8vw, 3.6rem);
  font-weight: 700;
  text-transform: none;
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin: 0;
}

.war-title-red {
  color: #ff3333;
}

.war-title-orange {
  color: #ff7733;
}

.war-subtitle {
  font-family: var(--font-body);
  font-size: clamp(1.2rem, 2.4vw, 2.2rem);
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  max-width: 900px;
  line-height: 1.3;
}

.war-cta-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 1.5rem;
}

.war-allies {
  font-family: var(--font-body);
  font-size: clamp(1.3rem, 2.8vw, 2.4rem);
  color: #ffd060;
  text-transform: none;
  letter-spacing: -0.01em;
  font-weight: 700;
  margin: 0;
  text-decoration: underline;
  text-underline-offset: 6px;
  text-decoration-thickness: 2px;
}

/* Responsive Overrides for War Section */
@media (max-width: 768px) {
  .war-section {
    height: auto;
    min-height: auto;
    display: flex;
    flex-direction: column;
  }

  .war-banner-image-container {
    height: 300px;
  }

  .war-content-container {
    height: auto;
    padding: 3rem 1.5rem;
  }

  .war-title {
    font-size: 2.0rem;
    line-height: 1.3;
  }

  .war-subtitle {
    font-size: 1.4rem;
    line-height: 1.4;
  }

  .war-allies {
    font-size: 1.8rem;
  }
}


/* --- Custom Pointer Cursor --- */
@media (pointer: fine) {

  /* Hide standard cursor only on devices with pointer capability (desktop) */
  body,
  html,
  a,
  button,
  .btn,
  [role="button"],
  [role="tab"],
  input,
  textarea,
  select {
    cursor: none !important;
  }

  .custom-cursor-dot {
    position: fixed;
    top: 0;
    left: 0;
    width: 6px;
    height: 6px;
    background-color: var(--color-white);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
    mix-blend-mode: difference;
    opacity: 0;
    /* invisible initially until mouse movement starts */
    transition: opacity 0.2s, width 0.2s, height 0.2s, background-color 0.2s;
  }

  .custom-cursor-ring {
    position: fixed;
    top: 0;
    left: 0;
    width: 32px;
    height: 32px;
    border: 1.5px solid var(--color-white);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    mix-blend-mode: difference;
    opacity: 0;
    transition: opacity 0.2s, width 0.3s, height 0.3s, background-color 0.3s, border-color 0.3s;
  }

  /* Hover Expansion */
  .custom-cursor-ring.hovered {
    width: 55px;
    height: 55px;
    background-color: var(--color-white);
    border-color: transparent;
  }

  .custom-cursor-dot.hovered {
    width: 0;
    height: 0;
    opacity: 0;
  }

  /* Click Tactile Feedback */
  .custom-cursor-ring.clicked {
    width: 25px;
    height: 25px;
    background-color: var(--color-accent);
    border-color: transparent;
    mix-blend-mode: normal;
    /* solid yellow burst */
  }
}

/* Fallback for Touch Screen Devices */
.touch-device .custom-cursor-dot,
.touch-device .custom-cursor-ring {
  display: none !important;
}

.touch-device * {
  cursor: auto !important;
}