/* ============================================
   LUPKER CREATIVE SERVICES
   Neo-Minimalist Portfolio - Bold Edition
   ============================================ */

/* CSS Variables */
:root {
    --accent: #800000;
    --accent-dark: #600000;
    --black: #000000;
    --white: #FFFFFF;
    --gray-100: #F5F5F5;
    --gray-200: #E5E5E5;
    --gray-300: #D4D4D4;
    --gray-600: #525252;
    --gray-900: #171717;
    
    --font-primary: 'Space Grotesk', sans-serif;
    --font-display: 'Nunito', 'Space Grotesk', sans-serif;
    
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 6rem;
    --space-2xl: 10rem;
    
    --transition-fast: 0.15s ease-out;
    --transition-medium: 0.25s ease-out;
    --transition-slow: 0.4s ease-out;
    
    --header-height: 84px;
}

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

html {
    font-size: 18px;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-primary);
    background-color: var(--white);
    color: var(--black);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Interactive elements */
a, button, [data-magnetic] {
    cursor: pointer;
}

/* Selection */
::selection {
    background-color: var(--accent);
    color: var(--white);
}

/* ============================================
   IMAGES - Black & White with Color on Hover
   ============================================ */
img {
    filter: grayscale(100%);
    transition: filter 1.2s ease;
}

img:hover,
a:hover img,
.bento-item:hover img,
.news-item:hover img,
.film-project:hover img,
.portfolio-item:hover img {
    filter: grayscale(0%);
}

/* Exclude logo, icons, and lightbox/modal images from grayscale */
.logo img,
.header img,
.footer-logo img,
.lightbox img,
.lightbox-image,
.modal img,
.overlay img,
[data-lightbox] img.is-open,
svg {
    filter: none !important;
}

/* ============================================
   CUSTOM CURSOR - Disabled (using default cursor)
   ============================================ */
.cursor {
    display: none;
}

.cursor-dot {
    display: none;
}

.cursor-circle {
    display: none;
}

/* ============================================
   HEADER - Transparent with Smart Color Detection
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 var(--space-md);
    z-index: 1000;
    background-color: transparent;
    border-bottom: 1px solid transparent;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.header.is-scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom-color: var(--gray-200);
}

/* Header on dark background - when scrolled, keep dark style */
.header.is-scrolled.header-dark {
    background-color: rgba(0, 0, 0, 0.9);
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

/* Logo */
.logo {
    text-decoration: none;
    color: var(--black);
    transition: color 0.3s ease;
}

.logo-img {
    display: block;
    height: auto;
    max-height: 36px;
    width: auto;
    object-fit: contain;
    transition: opacity 0.3s ease;
}

@media (min-width: 768px) {
    .logo-img {
        max-height: 48px;
    }
}

@media (min-width: 1024px) {
    .logo-img {
        max-height: 60px;
    }
}

@media (min-width: 1200px) {
    .logo-img {
        max-height: 72px;
    }
}

.logo:hover .logo-img {
    opacity: 0.85;
}

/* Header Dark Mode - Logo white */
.header.header-dark .logo {
    color: var(--white);
}

.logo-text {
    font-family: 'Nunito', sans-serif;
    font-size: 2.1rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    transition: color 0.3s ease;
}

/* Light header logo animation */
.header:not(.header-dark) .logo-text {
    animation: logoShine 6s ease-in-out infinite;
    animation-delay: 2s;
}

/* Dark header logo animation */
.header.header-dark .logo-text {
    color: var(--white);
    animation: logoShineDark 6s ease-in-out infinite;
    animation-delay: 2s;
}

@keyframes logoShine {
    0%, 100% {
        color: var(--black);
    }
    15% {
        color: var(--gray-600);
    }
    30% {
        color: var(--accent);
    }
    45% {
        color: var(--gray-600);
    }
    60% {
        color: var(--black);
    }
}

@keyframes logoShineDark {
    0%, 100% {
        color: var(--white);
    }
    15% {
        color: var(--gray-300);
    }
    30% {
        color: var(--accent);
    }
    45% {
        color: var(--gray-300);
    }
    60% {
        color: var(--white);
    }
}

.logo:hover .logo-text {
    color: var(--accent) !important;
    animation-play-state: paused;
}

/* Navigation Toggle */
.nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 10px;
    background: none;
    border: none;
    position: relative;
    z-index: 1001;
}

.nav-line {
    display: block;
    height: 3px;
    background-color: var(--black);
    transition: transform var(--transition-medium), width var(--transition-fast), background-color 0.3s ease;
}

/* Dark header - white menu lines */
.header.header-dark .nav-line {
    background-color: var(--white);
}

.nav-line:first-child {
    width: 34px;
}

.nav-line:last-child {
    width: 22px;
}

.nav-toggle:hover .nav-line:last-child {
    width: 34px;
}

.nav-toggle.is-active .nav-line:first-child {
    transform: translateY(6px) rotate(45deg);
}

.nav-toggle.is-active .nav-line:last-child {
    width: 34px;
    transform: translateY(-6px) rotate(-45deg);
}

/* ============================================
   NAVIGATION MENU (Full Screen)
   ============================================ */
.nav-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--white);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-medium), visibility var(--transition-medium);
}

.nav-menu.is-open {
    opacity: 1;
    visibility: visible;
}

.nav-menu-inner {
    text-align: center;
}

.nav-links {
    list-style: none;
}

.nav-links li {
    overflow: hidden;
}

.nav-link {
    display: inline-block;
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 5vw, 3.5rem);
    font-weight: 600;
    color: var(--black);
    text-decoration: none;
    line-height: 1.3;
    padding: var(--space-xs) 0;
    position: relative;
    transition: color var(--transition-fast);
}

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

.nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 4px;
    background-color: var(--accent);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform var(--transition-medium);
}

.nav-link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* ============================================
   HERO SECTION - Dynamic
   ============================================ */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: var(--header-height) var(--space-md) var(--space-xl);
    overflow: hidden;
}

/* Hero Background Shapes */
.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 1;
}

/* Hero Images (above H1) */
.hero-images {
    position: relative;
    width: 100%;
    height: clamp(150px, 30vh, 350px);
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    margin-bottom: -0.5rem;
}

.hero-image {
    position: absolute;
    height: 100%;
    width: auto;
    object-fit: contain;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    filter: grayscale(100%);
}

.hero-image.active {
    opacity: 0.3;
    animation: heroImageFloat 6s ease-in-out infinite;
}

@keyframes heroImageFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.hero-shape {
    position: absolute;
    opacity: 0.03;
}

.hero-shape-1 {
    top: 10%;
    left: 5%;
    width: 300px;
    height: 300px;
    border: 3px solid var(--black);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

.hero-shape-2 {
    top: 60%;
    right: 10%;
    width: 200px;
    height: 200px;
    border: 3px solid var(--accent);
    transform: rotate(45deg);
    animation: float 25s ease-in-out infinite reverse;
}

.hero-shape-3 {
    bottom: 20%;
    left: 15%;
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, var(--accent) 0%, transparent 50%);
    animation: float 18s ease-in-out infinite;
}

.hero-shape-4 {
    top: 30%;
    right: 20%;
    width: 100px;
    height: 3px;
    background: var(--black);
    animation: float 22s ease-in-out infinite;
}

.hero-shape-5 {
    top: 50%;
    left: 10%;
    width: 3px;
    height: 100px;
    background: var(--accent);
    animation: float 15s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

.hero-content {
    text-align: center;
    z-index: 3;
    max-width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    justify-content: center;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(4rem, 18vw, 14rem);
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 0.85;
    color: var(--black);
    margin-bottom: var(--space-sm);
    cursor: default;
    transition: transform 0.3s ease;
    word-break: keep-all;
    overflow-wrap: break-word;
    white-space: normal;
}

/* Hero Letter Animation */
.hero-title-animated .hero-letter {
    display: inline-block;
    opacity: 0;
    transform: translateY(100px) rotateX(-90deg);
    will-change: transform, opacity;
    animation: 
        heroLetterIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards,
        letterFloat 3s ease-in-out infinite,
        letterShine 5s ease-in-out infinite;
    animation-delay: 
        calc(var(--delay) * 0.1s + 0.2s),
        calc(var(--delay) * 0.15s + 1.5s),
        calc(var(--index) * 0.2s + 1.5s);
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    .hero-title-animated .hero-letter,
    .hero-nav,
    .scroll-indicator,
    .title-letter,
    .logo-text {
        animation: none !important;
        transition: none !important;
    }
    
    .hero-title-animated .hero-letter {
        opacity: 1;
        transform: none;
    }
}

@keyframes heroLetterIn {
    0% {
        opacity: 0;
        transform: translateY(100px) rotateX(-90deg) scale(0.5);
    }
    60% {
        opacity: 1;
        transform: translateY(-10px) rotateX(10deg) scale(1.1);
    }
    100% {
        opacity: 1;
        transform: translateY(0) rotateX(0deg) scale(1);
    }
}

@keyframes letterFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

/* Shine/Glans effect - subtle color cycling through letters with red gradient */
@keyframes letterShine {
    0%, 100% {
        color: var(--black);
    }
    15% {
        color: #500000;
    }
    25% {
        color: #700000;
    }
    35% {
        color: #900000;
    }
    45% {
        color: #aa0000;
    }
    55% {
        color: #900000;
    }
    65% {
        color: #700000;
    }
    75% {
        color: #500000;
    }
    85% {
        color: var(--black);
    }
}

/* Typewriter Cursor */
.typewriter-cursor {
    display: inline-block;
    color: var(--accent);
    font-weight: 700;
    animation: cursorBlink 0.6s step-end infinite;
    margin-left: 2px;
    transition: opacity 0.5s ease;
    font-size: 1em;
    vertical-align: baseline;
}

@keyframes cursorBlink {
    0%, 50% { opacity: 1; }
    50.1%, 100% { opacity: 0; }
}

/* Subtle floating animation for content blocks */
@keyframes subtleFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-3px);
    }
}

@keyframes subtleFloatAlt {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-2px);
    }
}

/* Very gentle float - for containers, images, headers */
@keyframes gentleFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-4px);
    }
}

@keyframes gentleFloatAlt {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-3px);
    }
}

@keyframes subtleFloatSlow {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-4px);
    }
}

/* Page title */
.page-title {
    cursor: default;
}

/* Page title letter shine effect */
.title-letter {
    display: inline-block;
}

.page-title.shine-active .title-letter {
    animation: letterShine 6s ease-in-out infinite;
    animation-delay: calc(var(--index) * 0.25s + 0.5s);
}

/* Typing Effect Subtitle */
h1.hero-typing,
.hero-typing {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.3em;
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 700;
    margin: 0;
    animation: heroFadeIn 0.8s ease-out 0.2s both;
}

.hero-typing-static {
    color: var(--black);
}

.hero-typing-dynamic {
    color: var(--accent);
    min-width: 180px;
    text-align: left;
    position: relative;
}

.hero-typing-dynamic::after {
    content: '';
    display: inline-block;
    width: 3px;
    height: 1.2em;
    background-color: var(--accent);
    margin-left: 2px;
    vertical-align: middle;
    animation: blink 1s infinite;
}

.hero-typing-cursor {
    display: none;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.hero-tagline {
    font-size: clamp(0.9rem, 1.8vw, 1.1rem);
    color: var(--black);
    font-weight: 700;
    margin-top: var(--space-sm);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    animation: heroFadeIn 0.8s ease-out 0.4s both;
}

/* Home intro (boven bento, geen hero) */
.home-intro {
    text-align: center;
    padding: var(--space-xl) var(--space-md) var(--space-lg);
    position: relative;
}

.home-intro .hero-typing {
    animation: none;
}

.home-tagline {
    width: 100%;
    font-size: clamp(0.9rem, 1.8vw, 1.1rem);
    color: var(--black);
    font-weight: 700;
    margin-top: var(--space-sm);
    text-align: center;
}


/* Hero Navigation Arrows */
.hero-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--gray-200);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: none;
    transition: all var(--transition-fast);
    z-index: 10;
    animation: heroFadeIn 0.8s ease-out 0.5s both;
}

.hero-nav:hover {
    background: var(--accent);
    border-color: var(--accent);
}

.hero-nav:hover svg {
    stroke: var(--white);
}

.hero-nav svg {
    width: 24px;
    height: 24px;
    stroke: var(--black);
    transition: stroke var(--transition-fast);
}

.hero-nav-prev {
    left: var(--space-md);
    animation: floatLeft 2s ease-in-out infinite;
}

.hero-nav-next {
    right: var(--space-md);
    animation: floatRight 2s ease-in-out infinite;
}

@keyframes floatLeft {
    0%, 100% { transform: translateY(-50%) translateX(0); }
    50% { transform: translateY(-50%) translateX(-5px); }
}

@keyframes floatRight {
    0%, 100% { transform: translateY(-50%) translateX(0); }
    50% { transform: translateY(-50%) translateX(5px); }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: var(--space-lg);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    text-decoration: none;
    color: var(--gray-600);
    animation: heroFadeIn 0.8s ease-out 0.6s both, floatDown 2s ease-in-out infinite 1s;
    transition: color var(--transition-fast);
    z-index: 10;
}

.scroll-indicator:hover {
    color: var(--accent);
}

.scroll-indicator-text {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.scroll-indicator-arrow {
    width: 24px;
    height: 24px;
}

@keyframes floatDown {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(5px); }
}

@media (max-width: 768px) {
    .hero-nav {
        width: 40px;
        height: 40px;
    }
    
    .hero-nav svg {
        width: 20px;
        height: 20px;
    }
    
    .hero-nav-prev {
        left: var(--space-sm);
    }
    
    .hero-nav-next {
        right: var(--space-sm);
    }
}

/* ============================================
   MAIN CONTENT
   ============================================ */
.main {
    position: relative;
    z-index: 1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

/* ============================================
   BENTO GRID
   ============================================ */
.portfolio-section {
    padding: var(--space-lg) var(--space-md);
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: var(--space-md);
    max-width: 1400px;
    margin: 0 auto;
}

.bento-item {
    position: relative;
    background-color: var(--gray-100);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: gentleFloat 7s ease-in-out infinite;
}

.bento-item:nth-child(2n) {
    animation: gentleFloatAlt 8s ease-in-out infinite;
}

.bento-item:nth-child(3n) {
    animation: gentleFloat 9s ease-in-out infinite;
    animation-delay: 1s;
}

.bento-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

/* Sequential color highlight animation */
.bento-item.color-highlight .bento-image,
.news-item.color-highlight .news-image img,
.portfolio-item.color-highlight .portfolio-image img,
.concept-case.color-highlight .concept-case-image img,
.film-project.color-highlight img {
    filter: grayscale(0%) !important;
}

/* Bento Sizes */
.bento-large {
    grid-column: span 8;
    min-height: 450px;
}

.bento-medium {
    grid-column: span 4;
    min-height: 280px;
}

.bento-small {
    grid-column: span 4;
    min-height: 220px;
}

.bento-wide {
    grid-column: span 8;
    min-height: 220px;
}

/* Bento Link */
.bento-link {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    width: 100%;
    height: 100%;
    padding: var(--space-lg);
    text-decoration: none;
    color: var(--black);
    position: relative;
}

/* Bento Media */
.bento-media {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Bento effect canvas (alleen op home, één actief per keer) */
.bento-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.bento-effect canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.bento-item.effect-active .bento-effect canvas {
    opacity: 1;
}

.bento-image {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    max-width: 90%;
    max-height: 90%;
    margin: auto;
    opacity: 0.4;
    filter: grayscale(100%);
    transition: transform 0.5s ease, filter 1.2s ease, opacity 0.3s ease;
}

.bento-item:hover .bento-image {
    transform: scale(1.05);
    filter: grayscale(0%);
    opacity: 0.55;
}

.bento-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.4) 40%, transparent 70%);
}

/* Bento Content */
.bento-content {
    position: relative;
    z-index: 1;
}

.bento-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--white);
    background-color: #800000;
    padding: var(--space-xs) var(--space-sm);
    border-radius: 4px;
    margin-bottom: var(--space-sm);
}

.bento-title {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 1.1;
    margin-bottom: var(--space-xs);
}

.bento-large .bento-content,
.bento-item[data-dark="true"] .bento-content {
    color: var(--black);
}

.bento-desc {
    font-size: 1rem;
    color: var(--gray-600);
    line-height: 1.5;
}

.bento-large .bento-desc,
.bento-item[data-dark="true"] .bento-desc {
    color: var(--gray-700);
}

/* AI Bento */
.bento-ai {
    background: linear-gradient(135deg, var(--gray-900) 0%, var(--black) 100%);
}

.bento-ai .bento-content {
    color: var(--black);
}

.bento-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(255, 0, 0, 0.12) 0%, transparent 50%);
    transform: translate(-50%, -50%);
}

/* Vibe Coding Block - Hulp nodig */
.bento-vibe {
    background: linear-gradient(135deg, var(--gray-900) 0%, var(--black) 100%);
}

.bento-vibe .bento-content {
    color: var(--black);
}

.bento-vibe .bento-desc {
    color: var(--gray-700);
}

/* ============================================
   TICKER
   ============================================ */
.ticker-section {
    padding: var(--space-md) 0;
    overflow: hidden;
    background-color: var(--accent);
}

.ticker {
    display: flex;
    width: 100%;
}

.ticker-track {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    animation: ticker 30s linear infinite;
    white-space: nowrap;
}

.ticker-item {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3.5vw, 2.5rem);
    font-weight: 600;
    color: var(--black);
    letter-spacing: -0.01em;
    text-decoration: none;
    transition: color var(--transition-fast);
}

.ticker-item:hover {
    color: var(--white);
}

.ticker-dot {
    font-size: 1.5rem;
    color: var(--black);
}

@keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
    padding: var(--space-xl) 0;
    background-color: var(--gray-100);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: var(--space-xl);
    align-items: center;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: var(--space-md);
    animation: gentleFloat 6s ease-in-out infinite;
}

.highlight {
    color: var(--accent);
}

.about-desc {
    font-size: 1.1rem;
    color: var(--gray-600);
    line-height: 1.7;
}

.about-stats {
    display: flex;
    gap: var(--space-lg);
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--gray-600);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-top: var(--space-xs);
}

/* ============================================
   REVEAL ANIMATIONS
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity var(--transition-slow), transform var(--transition-slow);
}

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

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background-color: var(--black);
    color: var(--white);
    padding: var(--space-xl) var(--space-md) var(--space-md);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: var(--space-lg);
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    font-family: var(--font-primary);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    color: var(--black);
    background-color: var(--white);
    padding: var(--space-sm) var(--space-md);
    border-radius: 100px;
    border: none;
    transition: background-color var(--transition-fast), color var(--transition-fast);
}

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

.btn-large {
    font-size: 1rem;
    padding: var(--space-md) var(--space-lg);
}

.btn-arrow {
    width: 18px;
    height: 18px;
    transition: transform var(--transition-fast);
}

.btn:hover .btn-arrow {
    transform: translateX(3px);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer-links a {
    color: var(--gray-300);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    align-items: flex-end;
}

.footer-contact > a {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    transition: color var(--transition-fast);
}

.footer-contact > a:hover {
    color: var(--accent);
}

.footer-social {
    display: flex;
    gap: var(--space-sm);
}

.social-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: color var(--transition-fast);
}

.social-icon:hover {
    color: var(--accent);
}

.social-icon svg {
    width: 18px;
    height: 18px;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: var(--space-md);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--gray-600);
    letter-spacing: 0.1em;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1200px) {
    .bento-large {
        grid-column: span 12;
    }
    
    .bento-medium {
        grid-column: span 6;
    }
    
    .bento-small {
        grid-column: span 6;
    }
    
    .bento-wide {
        grid-column: span 12;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 16px;
    }
    
    :root {
        --space-md: 1.25rem;
        --space-lg: 3rem;
        --space-xl: 4rem;
    }
    
    .hero {
        height: 100vh;
        height: 100dvh;
    }
    
    .hero-images {
        height: auto;
        width: 70vw;
        max-width: 70%;
        margin-left: auto;
        margin-right: auto;
        min-height: 100px;
    }
    
    .hero-image {
        position: absolute;
        width: 100%;
        height: auto;
        max-width: 100%;
    }
    
    .hero-image.active {
        opacity: 0.3;
    }
    
    .hero-typing {
        flex-direction: column;
        gap: 0.1em;
    }
    
    .hero-typing-dynamic {
        min-width: auto;
        text-align: center;
    }
    
    .bento-medium,
    .bento-small {
        grid-column: span 12;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .about-stats {
        justify-content: flex-start;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--space-md);
    }
    
    .footer-cta {
        justify-content: center;
    }
    
    .footer-contact {
        align-items: center;
    }
    
    /* Show default cursor on mobile */
    body {
        cursor: auto;
    }
    
    .cursor {
        display: none;
    }
    
    a, button, [data-magnetic] {
        cursor: pointer;
    }
    
    .scroll-indicator {
        bottom: var(--space-md);
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: clamp(2.5rem, 18vw, 4.5rem);
    }
    
    .section-title {
        font-size: clamp(1.75rem, 8vw, 2.5rem);
    }
    
    .nav-link {
        font-size: clamp(1.5rem, 10vw, 2rem);
    }
    
    .bento-title {
        font-size: clamp(1.25rem, 5vw, 1.75rem);
    }
    
    .bento-link {
        padding: var(--space-md);
    }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.no-scroll {
    overflow: hidden;
}

/* Services Grid */
.services-section {
    padding: var(--space-xl) 0;
    background-color: var(--gray-100);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-md);
}

.service-card {
    padding: var(--space-lg);
    background-color: var(--white);
    border-radius: 16px;
    transition: transform var(--transition-fast);
}

.service-card:hover {
    transform: translateY(-3px);
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: var(--space-sm);
}

.service-card p {
    font-size: 1rem;
    color: var(--gray-600);
    line-height: 1.6;
}

/* Disable grayscale effects on mobile */
@media (max-width: 768px) {
    img {
        filter: none;
    }
    
    .hero-image {
        filter: none;
    }
    
    .bento-image {
        filter: none;
    }
    
    .news-image img,
    .portfolio-image img,
    .concept-case-image img,
    .film-project img {
        filter: none !important;
    }
    
    .bento-item:hover .bento-image,
    .news-item:hover .news-image img,
    .portfolio-item:hover .portfolio-image img {
        filter: none;
        transform: none;
    }
}
