/* ==========================================================================
   CSS RESET & VARIABLES
   ========================================================================== */
:root {
    --color-black: #000000;
    --color-red: #ff1e1e;
    --color-white: #ffffff;
    --color-dark-gray: #111111;

    --font-heading: 'ITC Avant Garde Gothic Condensed', 'ITC Avant Garde Gothic Std', 'Bebas Neue', sans-serif;
    --font-body: 'HK Grotesk', 'Open Sans', 'Inter', sans-serif;

    --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: 0.3s ease;

    --header-height: 80px;
}

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

html {
    overflow-x: hidden;
    scroll-behavior: smooth;
    width: 100%;
    max-width: 100%;
    min-height: 100%;
}

body {
    background-color: var(--color-black);
    color: var(--color-white);
    font-family: var(--font-body);
    font-weight: 400;
    /* Easier to read than heavy weights for body */
    line-height: 1.7;
    /* Increased for better legibility */
    overflow-x: hidden;
    overflow-y: auto;
    width: 100%;
    max-width: 100%;
    min-height: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    text-transform: uppercase;
    line-height: 0.9;
    margin-bottom: 0.5em;
    font-weight: normal;
}

.font-itc-avant {
    font-family: 'ITC Avant Garde Gothic Condensed', 'ITC Avant Garde Gothic Std', 'Bebas Neue', sans-serif;
}

.font-hk-grotesk {
    font-family: 'HK Grotesk', 'Open Sans', 'Inter', sans-serif;
}

.font-open-sans {
    font-family: 'Open Sans', 'HK Grotesk', 'Inter', sans-serif;
}

.font-super-big {
    text-transform: uppercase;
    line-height: 0.85;
    letter-spacing: -0.02em;
}

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

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

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

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

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

.text-right {
    text-align: right;
}

.text-center {
    text-align: center;
}

h1.title-main {
    font-size: clamp(4rem, 16vw, 13rem);
    /* Slightly more conservative max size */
    letter-spacing: -0.04em;
    margin: 0;
    text-shadow: -8px 8px 0px rgba(0, 0, 0, 0.25), 0 10px 40px rgba(0, 0, 0, 0.6);
    font-weight: 800;
}

h2.title-sub {
    font-size: clamp(1.2rem, 4.5vw, 3rem);
    letter-spacing: 0.1em;
    margin-top: 1.5rem;
    line-height: 1.3;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    font-weight: 600;
}

.section-title {
    font-size: clamp(3rem, 8vw, 7rem);
    margin-bottom: 2rem;
}

.giant-title {
    font-size: clamp(4rem, 10vw, 8rem);
    margin: 0;
    line-height: 0.85;
}

.massive-title {
    font-size: clamp(5rem, 12vw, 10rem);
    margin-bottom: 0.2em;
}

p {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    margin-bottom: 1.5rem;
}

/* ==========================================================================
   LAYOUT & COMPONENTS
   ========================================================================== */
.container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 5vw;
}

.relative-container {
    position: relative;
}

section {
    padding: 10vw 0;
    position: relative;
    overflow: hidden;
}

.placeholder-bg {
    background-color: var(--color-dark-gray);
    position: relative;
    overflow: hidden;
}

.placeholder-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 48%, rgba(255, 255, 255, 0.05) 50%, transparent 52%);
    background-size: 20px 20px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    text-decoration: none;
    text-transform: uppercase;
    transition: var(--transition-fast);
    cursor: pointer;
    border: none;
}

.btn-red {
    background-color: var(--color-red);
    color: var(--color-white);
    box-shadow: 10px 10px 0px rgba(0, 0, 0, 0.2);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-red:hover,
.btn-red:focus {
    background-color: #d11515;
    transform: translate(-4px, -4px);
    box-shadow: 14px 14px 0px rgba(0, 0, 0, 0.3);
}

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

.btn-black:hover,
.btn-black:focus {
    background-color: #222;
    transform: translateY(-2px);
}

.btn-large {
    font-size: 2rem;
    padding: 1.5rem 4rem;
    margin-top: 2rem;
}

/* Header & Progress */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    background-color: var(--color-red);
    width: 0%;
    z-index: 9999;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 60px;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;

    transition: transform var(--transition-fast), background-color var(--transition-fast), padding var(--transition-fast);
    padding: 20px 0;
}

.site-header.scrolled {
    background-color: rgba(0, 0, 0, 0.95);
    padding: 10px 0;
}

.site-header.hidden {
    transform: translateY(-100%);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    padding: 0 5vw;
}

.logo {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    letter-spacing: 0.05em;
    font-weight: 800;
    text-shadow: -4px 4px 0px rgba(0, 0, 0, 0.5);
}

.header-nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: color 0.2s ease;
}

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

/* Language Selector */
.lang-selector {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-family: var(--font-heading);
    font-size: 1rem;
    letter-spacing: 0.1em;
}

.lang-btn {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    font-family: var(--font-heading);
    font-size: 1rem;
    letter-spacing: 0.1em;
    cursor: pointer;
    padding: 0.2rem 0.3rem;
    text-transform: uppercase;
    transition: color 0.2s ease;
}

.lang-btn:hover {
    color: var(--color-white);
}

.lang-btn.active {
    color: var(--color-red);
    font-weight: bold;
}

.lang-sep {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.9rem;
}

/* ==========================================================================
   SECTIONS
   ========================================================================== */

/* 1. Hero */
.hero {
    height: 100vh;
    height: 100dvh;
    min-height: 700px;
    padding: 0;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-bg-collage {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    z-index: -3;
}

.bg-item {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.bg-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4) grayscale(20%);
}

.hero-foreground-collage {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

.hero-photo {
    position: absolute;
    height: auto;
    max-width: 30%;
    filter: drop-shadow(20px 20px 30px rgba(0, 0, 0, 0.8));
}

.photo-1 {
    border: 6px solid var(--color-white);
    background: var(--color-white);
}

@media (max-width: 1024px) {
    .photo-1 {
        width: 250px;
    }

    .photo-2 {
        width: 200px;
    }
}

@media (max-width: 768px) {
    .hero-foreground-collage {
        opacity: 1;
    }

    .photo-1 {
        width: 150px;
        top: 50px;
    }

    .photo-2 {
        width: 120px;
        bottom: 220px;
    }
}

.photo-1 {
    top: 15%;
    right: 5%;
    width: 320px;
}

.photo-2 {
    bottom: 20%;
    left: 2%;
    width: 280px;
}



.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.3) 0%,
            rgba(0, 0, 0, 0.7) 50%,
            rgba(0, 0, 0, 0.9) 100%);
    z-index: -2;
}

/* Decorative Background Accents */
.hero-bg-accents {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -2;
    overflow: hidden;
    opacity: 0.15;
}

.bg-text-massive {
    position: absolute;
    top: 10%;
    left: -5%;
    font-family: var(--font-heading);
    font-size: 25vw;
    color: transparent;
    -webkit-text-stroke: 1px var(--color-white);
    transform: rotate(-10deg);
    white-space: nowrap;
    line-height: 1;
}

.bg-text-secondary {
    position: absolute;
    bottom: 20%;
    right: -10%;
    font-family: var(--font-heading);
    font-size: 15vw;
    color: transparent;
    -webkit-text-stroke: 1px var(--color-red);
    transform: rotate(5deg);
    white-space: nowrap;
    line-height: 1;
}

.bg-red-bar {
    position: absolute;
    top: 40%;
    left: -20%;
    width: 150%;
    height: 100px;
    background: var(--color-red);
    transform: rotate(-20deg);
    opacity: 0.2;
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    padding-top: var(--header-height);
}

.hero-bottom {
    position: absolute;
    bottom: 5vw;
    left: 5vw;
    width: calc(100% - 10vw);
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}



.hero-right {
    display: flex;
    align-items: flex-end;
    gap: 3rem;
}

.hero-credits {
    text-transform: uppercase;
    font-family: var(--font-heading);
    opacity: 0.8;
}

.hero-credits p {
    font-size: 0.75rem;
    line-height: 1.4;
    margin-bottom: 0.2rem;
    letter-spacing: 0.15em;
    font-weight: 300;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-credits p:first-child {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-red);
    letter-spacing: 0.2em;
    margin-bottom: 0.5rem;
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    font-family: var(--font-heading);
    letter-spacing: 0.2em;
    font-size: 0.8rem;
    opacity: 0.7;
    animation: scrollFloat 2s ease-in-out infinite;
}

.scroll-indicator .line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--color-white), transparent);
    position: relative;
}

@keyframes scrollFloat {

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

    50% {
        transform: translateY(10px);
    }
}

.scroll-indicator .line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background-color: var(--color-red);
    animation: scrollDown 2s infinite ease-in-out;
}

.hero-collaboration {
    text-align: right;
}

.herocol-title {
    font-family: var(--font-heading);
    font-size: 1rem;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
}

.hero-collab-logo {
    max-height: 60px;
    width: auto;
    /* Helps blend into dark UI */
    transition: filter var(--transition-fast);
}

.hero-collab-logo:hover {
    filter: none;
}

@keyframes scrollDown {
    0% {
        transform: translateY(-100%);
    }

    100% {
        transform: translateY(200%);
    }
}

/* 2. About */
.about {
    padding: 10vw 0;
    margin-top: 0;
    background-color: var(--color-black);
    position: relative;
}

.parallax-container {
    overflow: visible;
    /* Allow layers to pop out */
}

.about-collage {
    position: relative;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-image-layer {
    width: 60%;
    margin-left: auto;
    z-index: 1;
}

.about-image-parallax {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(30px 30px 50px rgba(0, 0, 0, 0.9));
}

.about-title-layer {
    position: absolute;
    top: 20%;
    left: 0;
    width: 70%;
    z-index: 2;
    pointer-events: none;
}

.about-title {
    font-size: clamp(3.5rem, 9vw, 9rem);
    margin-bottom: 0;
    line-height: 0.85;
    font-weight: 800;
    text-shadow: -8px 8px 0px rgba(255, 255, 255, 0.12);
}

.about-title .sub-title {
    display: inline-block;
    margin-top: 1rem;
    font-size: clamp(1rem, 3vw, 2.5rem);
    letter-spacing: 0.2em;
    background: var(--color-red);
    padding: calc(0.5rem + 5px) 1rem 0.5rem;
    transform: translateX(-1rem);
    line-height: 1;
    text-shadow: none;
}

.about-content-wrapper {
    padding: 10vw 0;
    margin-top: -5vw;
    position: relative;
    z-index: 3;
    box-shadow: 0 -20px 50px rgba(0, 0, 0, 0.5);
}

.about-text p {
    font-size: clamp(1.1rem, 1.5vw, 1.4rem);
    line-height: 1.8;
}

.two-col-text {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5vw;
    margin-bottom: 6vw;
}

.quote-block {
    text-align: center;
    padding: 0 10vw;
}

.quote-block blockquote {
    font-family: var(--font-heading);
    font-size: clamp(1.4rem, 3.5vw, 2.8rem);
    /* Reduced from clamp(1.8rem, 5vw, 4rem) */
    line-height: 1.2;
    letter-spacing: 0.02em;
    margin: 0;
}


.quote-author {
    display: block;
    font-family: var(--font-heading);
    font-size: clamp(1.2rem, 2.5vw, 2.5rem);
    margin-top: 2rem;
    letter-spacing: 0.1em;
    opacity: 0.8;
}

/* Base parallax transition */
.parallax-layer {
    will-change: transform;
    transition: transform 0.15s cubic-bezier(0.2, 0.4, 0.3, 1);
}

/* 3. Program Section Overhaul */
.program {
    background-color: var(--color-black);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.program-collage {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 100px;
    gap: 20px;
    margin-top: 60px;
}

.program-item {
    position: relative;
    z-index: 2;
}

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

.item-1 {
    grid-column: 1 / 6;
    grid-row: 1 / 5;
}

.item-2 {
    grid-column: 7 / 12;
    grid-row: 2 / 6;
    z-index: 3;
}

.item-3 {
    grid-column: 2 / 7;
    grid-row: 6 / 10;
}

.item-4 {
    grid-column: 8 / 13;
    grid-row: 7 / 11;
}

.program-content-box {
    grid-column: 5 / 10;
    grid-row: 4 / 8;
    z-index: 4;
    padding: 3rem;
    display: flex;
    align-items: center;
    box-shadow: 30px 30px 60px rgba(0, 0, 0, 0.5);
}

.program-content-box p {
    font-size: clamp(1.1rem, 1.4vw, 1.3rem);
    line-height: 1.7;
    margin: 0;
    font-weight: 400;
}


/* 4. Graphic Novel Section Overhaul */
.graphic-novel {
    background-color: var(--color-black);
    padding: 160px 0 120px;
    position: relative;
    overflow: hidden;
}

.graphic-novel-collage {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 60px;
    margin-bottom: -150px;
    /* More aggressive overlap */
    position: relative;
    z-index: 2;
}





.gn-image-wrapper {
    position: relative;
    transform: rotate(-3deg) translateX(-20px);
    max-width: 520px;
    /* Balanced size for desktop */
}






.gn-image {
    width: 100%;
    height: auto;
    box-shadow: 40px 40px 80px rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.gn-subtitle {
    position: absolute;
    bottom: -25px;
    left: -20px;
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2.8rem);
    line-height: 1;
    background: var(--color-black);
    /* Switched to black for better contrast and less visual "weight" */
    padding: 1rem 1.5rem;
    transform: rotate(2deg);
    box-shadow: 15px 15px 40px rgba(0, 0, 0, 0.8);
    border-left: 4px solid var(--color-red);
    z-index: 10;
}


.gn-title-wrapper {
    text-align: right;
}

.gn-massive-title {
    font-size: clamp(3rem, 10vw, 9rem);
    /* Reduced from 5rem/14vw/15rem */
    line-height: 0.85;
    letter-spacing: -0.05em;
    text-shadow: 15px 15px 0px rgba(255, 255, 255, 0.05);
    transform: skewY(-1deg);
}


.gn-content-wrapper {
    padding: 20rem 0 12rem;
    position: relative;
    z-index: 1;
    clip-path: polygon(0 15%, 100% 0, 100% 85%, 0 100%);
    margin-top: -50px;
}

.gn-text p {
    font-size: clamp(1.2rem, 1.6vw, 1.5rem);
    line-height: 1.8;
    font-weight: 400;
    max-width: 800px;
    margin: 0 auto 3rem;
}


.team {
    padding: 160px 0 400px;
    background-color: var(--color-black);
    position: relative;
    overflow: hidden;
}


.team-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.team-image-wrapper {
    flex: 1.2;
    /* Favor the image side */
    max-width: 650px;
    /* Increased from 450px to make image larger */
    position: relative;
    transform: rotate(2deg);
}

.team-image {
    width: 100%;
    height: auto;
    box-shadow: 40px 40px 80px rgba(0, 0, 0, 0.7);
}

.team-title-wrapper {
    flex: 0.8;
    /* Reduced title footprint */
}

.team-massive-title {
    font-size: clamp(4rem, 12vw, 11rem);
    /* Reduced from 18rem */
    line-height: 0.85;
    letter-spacing: -0.05em;
    text-shadow: 15px 15px 0px rgba(255, 255, 255, 0.05);
}

.team-members-collage {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 80px;
}

.team-person {
    margin-bottom: 60px;
}

.team-person:nth-child(odd):not(:first-child) {
    margin-top: 100px;
    /* Offset for dynamic look */
}

.team-members-collage .team-person:first-child {
    grid-column: 1 / -1;
}

.team-person-content {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
}

.team-person-info {
    flex: 1;
}

.team-person-photo {
    width: 280px;
    flex-shrink: 0;
    object-fit: cover;
}

@media (max-width: 768px) {
    .team-person-content {
        flex-direction: column;
    }

    .team-person-photo {
        display: none;
    }
}

/* Shared Background Accents */
.section-bg-accents {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.1;
}

.bg-text-outline {
    position: absolute;
    font-family: var(--font-heading);
    font-size: 20vw;
    color: transparent;
    -webkit-text-stroke: 1px var(--color-white);
    white-space: nowrap;
    opacity: 0.5;
}

.bg-red-bar-skew {
    position: absolute;
    width: 120%;
    height: 80px;
    background: var(--color-red);
    transform: rotate(-15deg);
    left: -10%;
    opacity: 0.2;
}


.person-name {
    font-size: clamp(2rem, 3.5vw, 4rem);
    letter-spacing: 0.05em;
    margin-bottom: 0;
    line-height: 1;
}

.person-role {
    font-family: var(--font-heading);
    font-size: clamp(1.2rem, 2vw, 2rem);
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.person-bio {
    padding: 2rem;
}

.person-bio p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.person-bio p:last-child {
    margin-bottom: 0;
}

/* 6. Final CTA */
.final-cta {
    padding: 10rem 5vw 8rem;
    background-color: var(--color-red);
    background-image: radial-gradient(circle at 70% 30%, rgba(0, 0, 0, 0.1) 0%, transparent 60%);
    position: relative;
    overflow: hidden;
}

/* Ripped Paper Edge Transition */
.final-cta::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    height: 40px;
    background: var(--color-black);
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%,
            95% 40%, 90% 90%, 85% 30%, 80% 85%, 75% 45%, 70% 95%, 65% 35%, 60% 80%, 55% 20%, 50% 90%, 45% 40%, 40% 85%, 35% 30%, 30% 95%, 25% 45%, 20% 80%, 15% 35%, 10% 90%, 5% 20%, 0% 100%);
    z-index: 5;
}

.cta-content-wrapper {
    position: relative;
    z-index: 10;
}

.final-cta .container {
    max-width: 800px;
    margin: 0 auto;
}

.final-cta .massive-title {
    font-size: clamp(3rem, 10vw, 8rem);
    line-height: 0.85;
    margin-bottom: 2rem;
    transform: rotate(-1.5deg) skewX(-2deg);
    text-shadow: -6px 6px 0px rgba(0, 0, 0, 0.15);
    color: var(--color-black);
}

.cta-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.6rem);
    font-weight: 500;
    letter-spacing: 0.1em;
    margin-bottom: 3.5rem;
    opacity: 0.95;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    color: var(--color-black);
}

/* Tactile Button Hover */
.final-cta .btn-black {
    box-shadow: 10px 10px 0px rgba(0, 0, 0, 0.2);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.final-cta .btn-black:hover {
    transform: translate(-4px, -4px);
    box-shadow: 14px 14px 0px rgba(0, 0, 0, 0.3);
}


/* 7. Footer */
.site-footer {
    padding: 2rem 5vw;
    background-color: var(--color-red);
    border-top: none;
    margin-top: -1px;
}

.footer-copy {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    color: var(--color-black);
    letter-spacing: 0.05em;
    margin: 0;
    display: flex;
    align-items: center;
}

.footer-top-link {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    color: var(--color-black);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-top-link:hover {
    color: var(--color-white);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.footer-newsletter {
    display: flex;
    align-items: center;
}

.footer-newsletter-body {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-newsletter-label {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    color: var(--color-black);
    margin: 0;
    white-space: nowrap;
}

.footer-newsletter-form {
    display: flex;
    gap: 0;
}

.footer-newsletter-input {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    padding: 0.5rem 0.75rem;
    border: 2px solid var(--color-black);
    border-right: none;
    border-radius: 0;
    background: transparent;
    color: var(--color-black);
    outline: none;
    width: 200px;
    letter-spacing: 0.03em;
}

.footer-newsletter-input::placeholder {
    color: rgba(0, 0, 0, 0.5);
    letter-spacing: 0.05em;
}

.footer-newsletter-input:focus {
    border-color: var(--color-black);
    background: rgba(0, 0, 0, 0.05);
}

.footer-newsletter-btn {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.5rem 1rem;
    border: 2px solid var(--color-black);
    background: var(--color-black);
    color: var(--color-red);
    cursor: pointer;
    transition: background var(--transition-fast), color var(--transition-fast);
    white-space: nowrap;
}

.footer-newsletter-btn:hover {
    background: transparent;
    color: var(--color-black);
}

.footer-newsletter-success .footer-newsletter-label {
    margin: 0;
}

.footer-info p {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
}

.collaboration {
    text-align: right;
}

.collab-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.5);
}

.collab-logo {
    max-height: 80px;
    width: auto;
    filter: grayscale(100%) brightness(200%);
    /* Helps blend into dark UI */
    transition: filter var(--transition-fast);
}

.collab-logo:hover {
    filter: none;
}

/* ==========================================================================
   ANIMATIONS & RESPONSIVE
   ========================================================================== */
.observe-fade {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.observe-fade.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@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;
    }

    .observe-fade {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

@media (max-width: 1024px) {
    .program-content {
        grid-column: 2 / 12;
        transform: translateY(-3rem) translateX(0);
    }
}

@media (max-width: 992px) {

    .two-col-text,
    .split-layout {
        grid-template-columns: 1fr;
    }

    /* Graphic Novel */
    .graphic-novel-top {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .gn-massive-title {
        text-align: left;
    }

    .program-title {
        font-size: clamp(4rem, 10vw, 8rem);
    }

    .program-grid {
        display: flex;
        flex-direction: column;
    }

    .program-image {
        min-height: 300px;
    }

    .program-content {
        padding: 3rem 2vw;
    }

    .img-4 {
        margin-left: 0;
    }

    .content-band {
        transform: none;
        width: 100%;
    }

    /* About Section Collage Mobile */
    .about-collage {
        min-height: auto;
        padding-bottom: 5rem;
    }

    .about-image-layer {
        width: 100%;
        margin-left: 0;
    }

    .about-title-layer {
        position: relative;
        top: 0;
        width: 100%;
        margin-top: -2rem;
        padding: 0 5vw;
    }

    .about-title .sub-title {
        transform: none;
        margin-left: 0;
    }

    .about-content-wrapper {
        margin-top: 0;
    }

}

@media (max-width: 768px) {

    /* Header Mobile Adjustments */
    .site-header {
        padding: 8px 0 !important;
    }

    .header-content {
        gap: 8px;
        justify-content: space-between;
        padding: 0 15px;
        /* Ensure content doesn't hit screen edges */
    }

    .logo {
        font-size: clamp(0.9rem, 3.5vw, 1.2rem);
        max-width: 45%;
        line-height: 1.1;
    }

    .header-nav {
        display: none;
    }

    .header-content .btn {
        padding: 0.4rem 0.6rem;
        font-size: 0.8rem;
        white-space: nowrap;
        min-width: 120px;
        text-align: center;
    }


    /* Hero Mobile Adjustments */
    .hero {
        height: 100vh;
        height: 100dvh;
        /* Re-lock to 100vh to ensure it looks consistent */
        min-height: 600px;
        padding-top: 80px;
        padding-bottom: 40px;
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        /* Spread elements evenly */
    }

    .hero-content {
        position: relative;
        z-index: 10;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        /* Push title to top and credits to bottom */
        padding-top: 22vh;
        /* Safe space under the header */
        padding-bottom: 5vh;
        /* Safe space at the bottom */
    }

    .hero-title {
        transform: none;
        text-align: left;
        margin-left: auto;
        margin-right: auto;
        width: fit-content;
        position: relative;
        left: 20px;
    }





    h1.title-main {
        font-size: clamp(3.5rem, 14vw, 6rem);
        /* Slightly larger on mobile */
        line-height: 0.85;
        margin-bottom: 0.5rem;
    }

    h2.title-sub {
        font-size: clamp(1.1rem, 4vw, 1.6rem);
        margin-top: 1rem;
        line-height: 1.3;
        opacity: 0.9;
    }

    /* Foreground Photos on Mobile */
    .hero-foreground-collage {
        opacity: 1;
    }

    .photo-1 {
        width: 160px;
        /* Larger photos to fill space */
        top: 10%;
        right: -10%;
    }

    .photo-2 {
        width: 140px;
        bottom: 45%;
        left: -8%;
    }

    /* Hero Bottom Elements */
    .hero-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
        width: 100%;
        position: relative;
        /* Back into flex flow */
        bottom: auto;
        left: auto;
        z-index: 11;
        border-top: none;
        padding-top: 0;
    }


    .hero-credits {
        width: 100%;
        background: rgba(0, 0, 0, 0.4);
        padding: 1.2rem;
        border-radius: 4px;
        backdrop-filter: blur(8px);
    }

    .hero-credits p {
        font-size: 0.95rem;
        /* Slightly larger text */
        margin-bottom: 0.6rem;
        line-height: 1.4;
    }

    .hero-right {
        width: 100%;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        /* Better alignment */
    }

    .hero-collaboration {
        text-align: left;
    }

    .collab-logo {
        max-height: 55px;
        /* Slightly larger logo */
    }

    /* Fill Blanks with Accents on Mobile */
    .hero-bg-accents {
        opacity: 0.3;
        /* More visible on mobile */
    }

    .bg-text-massive {
        font-size: 40vw;
        top: 20%;
    }

    .bg-text-secondary {
        font-size: 30vw;
        bottom: 10%;
    }

    .scroll-indicator {
        display: none;
        /* Hide scroll indicator on mobile to save space */
    }

    /* Team & Footer Mobile */
    .team-top {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .team-massive-title {
        text-align: left;
    }

    .team-members-collage {
        grid-template-columns: 1fr;
        gap: 3.5rem;
        margin-top: 4rem;
    }

    .team-person {
        margin-bottom: 0;
        padding-bottom: 0.5rem;
    }

    .team-person:nth-child(odd):not(:first-child) {
        margin-top: 0;
    }

    .team-person+.team-person {
        margin-top: 2.5rem;
    }

    .team-members-collage .team-person.parallax-layer {
        transform: none !important;
    }

    .team-members-collage .person-role {
        margin-bottom: 1.25rem;
    }

    .team-members-collage .person-bio {
        margin-top: 0.75rem;
    }

    .footer-content {
        align-items: flex-start;
    }

    .footer-newsletter-input {
        width: 100%;
        min-width: 0;
    }

    .footer-newsletter {
        width: 100%;
    }

    .footer-newsletter-body {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .footer-newsletter-form {
        width: 100%;
    }

    .collaboration {
        text-align: left;
        margin-top: 2rem;
    }

    /* Program Mobile Collage */
    .program-collage {
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }

    .program-content-box {
        padding: 2rem;
        margin-top: -2rem;
    }

    /* Graphic Novel Mobile Collage */
    .graphic-novel {
        padding: 80px 0 60px;
    }

    .graphic-novel-collage {
        display: flex;
        flex-direction: column;
        gap: 4rem;
        margin-bottom: 0;
    }

    .gn-image-wrapper {
        transform: rotate(-2deg) translateX(0);
        width: 90%;
        margin: 0 auto;
    }

    .gn-subtitle {
        bottom: -15px;
        left: -10px;
        font-size: 1.8rem;
        padding: 0.8rem 1.2rem;
    }


    .gn-massive-title {
        text-align: left;
        font-size: clamp(4rem, 12vw, 8rem);
        transform: none;
    }

    .gn-content-wrapper {
        padding: 6rem 0;
        clip-path: none;
        margin-top: 4rem;
    }

    /* Shared Section Accents Mobile */
    .section-bg-accents {
        opacity: 0.25;
    }

    .bg-text-outline {
        font-size: 35vw;
    }

    /* Final CTA Mobile */
    .final-cta {
        padding: 5rem 5vw;
    }

    .final-cta .btn-large {
        padding: 0.8rem 1.6rem;
        font-size: 1rem;
    }
}
