/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
    --bg: #080808;
    --bg2: #0f0f0f;
    --surface: #141414;
    --border: rgba(255,255,255,0.07);
    --text: #e8e4dc;
    --muted: #6b6860;
    --accent: #c8f060;
    --accent2: #60d4f0;
    --accent3: #f060a8;
    --white: #ffffff;
    --font-display: 'Bebas Neue', sans-serif;
    --font-heading: 'Syne', sans-serif;
    --font-body: 'Manrope', sans-serif;
}
html { scroll-behavior: smooth; }
body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-body);
    overflow-x: hidden;
    cursor: none;
}

/* ===== CUSTOM CURSOR ===== */
#cursor {
    position: fixed; z-index: 9999; pointer-events: none;
    width: 12px; height: 12px;
    background: var(--accent);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width .25s, height .25s, background .25s, opacity .25s;
}
#cursor-ring {
    position: fixed; z-index: 9998; pointer-events: none;
    width: 36px; height: 36px;
    border: 1.5px solid rgba(200,240,96,0.45);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width .4s cubic-bezier(.17,.67,.35,1.2),
                height .4s cubic-bezier(.17,.67,.35,1.2),
                opacity .3s;
}
body:hover #cursor { opacity: 1; }
.cursor-hover #cursor { width: 48px; height: 48px; background: rgba(200,240,96,0.15); }
.cursor-hover #cursor-ring { width: 0; height: 0; opacity: 0; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 2px; }

/* ===== NOISE OVERLAY ===== */
body::before {
    content: '';
    position: fixed; inset: 0; z-index: 9990; pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    opacity: 0.35;
}

/* ===== CANVAS PARTICLES ===== */
#particle-canvas {
    position: fixed; inset: 0; z-index: 0; pointer-events: none;
    opacity: 0.35;
}

/* ===== NAV ===== */
nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    padding: 20px 40px;
    display: flex; align-items: center; justify-content: space-between;
    background: linear-gradient(to bottom, rgba(8,8,8,0.9) 0%, transparent 100%);
    backdrop-filter: blur(4px);
}
.nav-logo {
    font-family: var(--font-display);
    font-size: 1.6rem;
    letter-spacing: 0.08em;
    color: var(--white);
    text-decoration: none;
}
.nav-logo span { color: var(--accent); }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a {
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
    text-decoration: none;
    transition: color .2s;
}
.nav-links a:hover { color: var(--accent); }
.nav-cta {
    background: var(--accent);
    color: var(--bg);
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 10px 22px;
    border-radius: 2px;
    text-decoration: none;
    transition: background .2s, transform .2s;
}
.nav-cta:hover { background: var(--white); transform: translateY(-1px); }

/* ===== HERO ===== */
#hero {
    position: relative; z-index: 1;
    min-height: 100vh;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    text-align: center;
    padding: 120px 40px 80px;
    overflow: hidden;
}
.hero-grid-bg {
    position: absolute; inset: 0; z-index: 0; pointer-events: none;
    background-image:
    linear-gradient(rgba(200,240,96,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,240,96,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}
.hero-studio-tag {
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 28px;
    opacity: 0;
    animation: fadeUp .7s .2s forwards;
}
.hero-logo-wrap {
    position: relative;
    display: inline-block;
    margin-bottom: 32px;
    opacity: 0;
    animation: fadeUp .7s .4s forwards;
}
.hero-logo-wrap::before {
    content: '';
    position: absolute; inset: -30px;
    background: radial-gradient(ellipse, rgba(200,240,96,0.12) 0%, transparent 65%);
    border-radius: 50%;
    animation: glowPulse 3s ease-in-out infinite;
}
.hero-monogram {
    font-family: var(--font-display);
    font-size: clamp(80px, 16vw, 160px);
    line-height: 1;
    letter-spacing: -0.02em;
    color: var(--white);
    position: relative; z-index: 1;
    transition: transform .15s;
}
.hero-monogram span { color: var(--accent); }
.hero-name {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeUp .7s .55s forwards;
}
.hero-tagline {
    font-family: var(--font-body);
    font-size: clamp(0.95rem, 2vw, 1.2rem);
    font-weight: 300;
    color: rgba(232,228,220,0.65);
    max-width: 520px;
    line-height: 1.75;
    margin: 0 auto 40px;
    opacity: 0;
    animation: fadeUp .7s .7s forwards;
}
.hero-tagline strong { color: var(--text); font-weight: 500; }
.hero-btns {
    display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp .7s .85s forwards;
}
.btn-primary {
    background: var(--accent);
    color: var(--bg);
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 14px 32px;
    border-radius: 2px;
    text-decoration: none;
    display: inline-flex; align-items: center; gap: 8px;
    transition: background .2s, transform .2s, box-shadow .2s;
}
.btn-primary:hover {
    background: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(200,240,96,0.25);
}
.btn-outline {
    border: 1px solid var(--border);
    color: var(--text);
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 14px 32px;
    border-radius: 2px;
    text-decoration: none;
    transition: border-color .2s, color .2s, transform .2s;
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }
.hero-scroll-hint {
    position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    opacity: 0; animation: fadeUp .7s 1.2s forwards;
}
.hero-scroll-hint span {
    font-family: var(--font-heading); font-size: 0.65rem;
    letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted);
}
.scroll-line {
    width: 1px; height: 40px;
    background: linear-gradient(to bottom, var(--accent), transparent);
    animation: scrollLine 1.5s ease-in-out infinite;
}

/* ===== FLOATING CATEGORY MENU ===== */
#floating-menu {
    position: relative; z-index: 10;
    display: flex; justify-content: center;
    padding: 0 40px 80px;
}
.pills-wrap {
    display: flex; flex-wrap: wrap; gap: 10px; justify-content: center;
    max-width: 700px;
}
.pill {
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
    border: 1px solid var(--border);
    padding: 10px 22px;
    border-radius: 100px;
    text-decoration: none;
    transition: color .2s, border-color .2s, background .2s, transform .2s;
    cursor: none;
}
.pill:hover, .pill.active {
    color: var(--bg);
    background: var(--accent);
    border-color: var(--accent);
    transform: translateY(-2px);
}

/* ===== SECTION HEADER ===== */
.section-header {
    padding: 0 60px;
    margin-bottom: 48px;
    display: flex; align-items: flex-end; justify-content: space-between;
}
.section-label {
    font-family: var(--font-heading);
    font-size: 0.7rem; font-weight: 600;
    letter-spacing: 0.25em; text-transform: uppercase;
    color: var(--accent); margin-bottom: 8px;
}
.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1;
    letter-spacing: 0.02em;
    color: var(--white);
}
.section-count {
    font-family: var(--font-display);
    font-size: 6rem; line-height: 1;
    color: rgba(255,255,255,0.04);
}
.view-all {
    font-family: var(--font-heading); font-size: 0.75rem; font-weight: 600;
    letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--muted); text-decoration: none;
    display: flex; align-items: center; gap: 8px;
    transition: color .2s, gap .2s;
}
.view-all:hover { color: var(--accent); gap: 12px; }

/* ===== FEATURED WORK GRID ===== */
#works { position: relative; z-index: 1; padding: 80px 0; }
.work-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto;
    gap: 16px;
    padding: 0 60px;
}
.work-card {
    position: relative; overflow: hidden;
    border-radius: 4px;
    background: var(--surface);
    border: 1px solid var(--border);
    cursor: none;
    transition: transform .4s cubic-bezier(.17,.67,.35,1.1), box-shadow .4s;
}
.work-card:hover { transform: translateY(-4px); box-shadow: 0 20px 60px rgba(0,0,0,0.5); }
.work-card-a { grid-column: 1 / 8; grid-row: 1; min-height: 400px; }
.work-card-b { grid-column: 8 / 13; grid-row: 1; min-height: 400px; }
.work-card-c { grid-column: 1 / 5; grid-row: 2; min-height: 300px; }
.work-card-d { grid-column: 5 / 9; grid-row: 2; min-height: 300px; }
.work-card-e { grid-column: 9 / 13; grid-row: 2; min-height: 300px; }

.work-card-inner {
    position: absolute; inset: 0;
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 28px;
}
.work-card-bg {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    transition: transform .6s cubic-bezier(.17,.67,.35,1.05), opacity .4s;
}
.work-card:hover .work-card-bg { transform: scale(1.04); }
.work-card-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(8,8,8,0.9) 0%, rgba(8,8,8,0.2) 60%, transparent 100%);
    transition: opacity .4s;
}
.work-card:hover .work-card-overlay { opacity: 0.7; }
.work-tag {
    display: inline-block;
    font-family: var(--font-heading); font-size: 0.65rem; font-weight: 600;
    letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--accent);
    background: rgba(200,240,96,0.12);
    border: 1px solid rgba(200,240,96,0.2);
    padding: 4px 10px; border-radius: 100px;
    margin-bottom: 10px;
}
.work-title {
    font-family: var(--font-heading);
    font-size: 1.3rem; font-weight: 700;
    color: var(--white);
    margin-bottom: 6px;
}
.work-sub {
    font-size: 0.8rem; color: rgba(232,228,220,0.55);
    font-weight: 400;
}
.work-arrow {
    position: absolute; top: 24px; right: 24px;
    width: 36px; height: 36px;
    background: rgba(200,240,96,0.0);
    border: 1px solid rgba(200,240,96,0.2);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--accent); font-size: 1rem;
    opacity: 0; transform: scale(0.7);
    transition: opacity .3s, transform .3s, background .3s;
}
.work-card:hover .work-arrow { opacity: 1; transform: scale(1); background: rgba(200,240,96,0.15); }

/* POSTER card bg patterns */
.bg-poster {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 30%, #0f3460 60%, #533483 100%);
}
.bg-branding {
    background: linear-gradient(135deg, #1a0a0a 0%, #2d1515 40%, #4a1515 70%, #1a0a0a 100%);
}
.bg-carousel {
    background: linear-gradient(135deg, #0a1a0a 0%, #0d2b1a 40%, #0a3d2b 70%, #051a10 100%);
}
.bg-ig {
    background: linear-gradient(135deg, #1a1a0a 0%, #2b2510 40%, #3d3015 70%, #1a1a0a 100%);
}
.bg-logo {
    background: linear-gradient(135deg, #0a0a1a 0%, #12103a 40%, #1e1a55 70%, #0a0a1a 100%);
}

/* Decorative poster mockups inside cards */
.poster-mockup {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
}
.poster-rect {
    border-radius: 4px;
    transition: transform .5s cubic-bezier(.17,.67,.35,1.1);
}
.work-card:hover .poster-rect { transform: rotate(-1deg) scale(1.05); }

/* ===== STATS BAR ===== */
#stats {
    position: relative; z-index: 1;
    padding: 60px;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    display: flex; align-items: center; justify-content: space-around;
    flex-wrap: wrap; gap: 40px;
}
.stat-item { text-align: center; }
.stat-num {
    font-family: var(--font-display);
    font-size: 3.5rem; line-height: 1;
    color: var(--white);
}
.stat-num span { color: var(--accent); }
.stat-label {
    font-family: var(--font-heading); font-size: 0.7rem; font-weight: 600;
    letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--muted); margin-top: 6px;
}
.stat-divider {
    width: 1px; height: 60px;
    background: var(--border);
}

/* ===== SELECTED POSTERS ===== */
#posters { position: relative; z-index: 1; padding: 80px 0; }
.poster-track-wrap {
    overflow: hidden;
    padding: 20px 0;
}
.poster-track {
    display: flex; gap: 20px;
    padding: 0 60px;
    overflow-x: auto;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
}
.poster-track::-webkit-scrollbar { display: none; }
.poster-item {
    flex-shrink: 0;
    width: 260px; height: 340px;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
    scroll-snap-align: start;
    cursor: none;
    transition: transform .4s cubic-bezier(.17,.67,.35,1.1);
}
.poster-item:hover { transform: translateY(-8px) rotate(-0.5deg); }
.poster-item-bg {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
}
.poster-item-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(8,8,8,0.85) 0%, transparent 50%);
    opacity: 0;
    transition: opacity .3s;
    display: flex; align-items: flex-end; padding: 20px;
}
.poster-item:hover .poster-item-overlay { opacity: 1; }
.poster-item-title {
    font-family: var(--font-heading); font-size: 0.85rem; font-weight: 700;
    color: var(--white);
}

/* Poster colour fillers (placeholder style) */
.p1 { background-image: url('./assets/img/budaya-toleransi.png'); }
.p2 { background-image: url('./assets/img/bahaya-kecanduan-game.png'); }
.p3 { background-image: url('./assets/img/berani-bermimpi.png'); }
.p4 { background-image: url('./assets/img/lindungi-laut.png'); }
.p5 { background-image: url('./assets/img/reboisasi.png'); }
.p6 { background-image: url('./assets/img/jelajah-alam.png'); }

/* ===== CAROUSEL SHOWCASE ===== */
#carousel-section { position: relative; z-index: 1; padding: 80px 0; }
.carousel-showcase {
    padding: 0 60px;
    display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center;
}
.carousel-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    max-width: 90%;
}
.carousel-desc {
    font-size: 0.9rem; color: var(--muted); line-height: 1.8; margin: 16px 0 28px;
}
.carousel-preview {
    display: flex; gap: 12px; overflow-x: auto; scrollbar-width: none;
    scroll-behavior: smooth; scroll-snap-type: x mandatory;
}
.carousel-preview::-webkit-scrollbar { display: none; }
.carousel-slide {
    flex-shrink: 0;
    width: 200px; height: 360px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    scroll-snap-align: start;
    border: 1px solid var(--border);
    transition: transform .3s;
}
.carousel-slide:first-child { transform: scale(1.05); z-index: 2; }
.cs1 { background: linear-gradient(160deg, #0a0a20 0%, #1a1a40 50%, #2a1a50 100%); }
.cs2 { background: linear-gradient(160deg, #100a00 0%, #2a1a00 50%, #4a2a00 100%); }
.cs3 { background: linear-gradient(160deg, #000a10 0%, #001a2a 50%, #002a3a 100%); }
.cs4 { background: linear-gradient(160deg, #0a1000 0%, #1a2a00 50%, #2a3a00 100%); }
.slide-inner {
    position: absolute; inset: 0; padding: 20px;
    display: flex; flex-direction: column; justify-content: flex-end;
}
.slide-num {
    position: absolute; top: 16px; right: 16px;
    font-family: var(--font-display); font-size: 2.5rem;
    color: rgba(255,255,255,0.06);
}
.slide-tag {
    font-family: var(--font-heading); font-size: 0.62rem; font-weight: 600;
    letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--accent2); margin-bottom: 6px;
}
.slide-title {
    font-family: var(--font-heading); font-size: 0.9rem; font-weight: 700;
    color: var(--white); line-height: 1.3;
}

/* ===== ABOUT ===== */
#about { position: relative; z-index: 1; padding: 80px 0; }
.about-grid {
    padding: 0 60px;
    display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start;
}
.about-visual {
    position: relative;
}
.about-avatar-wrap {
    width: 100%; aspect-ratio: 4/5;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
    background: var(--surface);
    border: 1px solid var(--border);
}
.about-avatar-wrap::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(200,240,96,0.05) 0%, transparent 60%);
}
.about-avatar-placeholder {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display); font-size: 6rem; color: rgba(255,255,255,0.06);
}
.about-badge {
    position: absolute; bottom: -16px; right: -16px;
    background: var(--accent);
    color: var(--bg);
    font-family: var(--font-display);
    font-size: 0.8rem; letter-spacing: 0.12em;
    padding: 10px 18px;
    border-radius: 2px;
}
.about-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.about-intro {
    font-family: var(--font-heading);
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    font-weight: 700; line-height: 1.3;
    color: var(--white); margin: 16px 0 24px;
}
.about-intro span { color: var(--accent); }
.about-desc {
    font-size: 0.88rem; color: rgba(232,228,220,0.6);
    line-height: 1.9; margin-bottom: 16px;
}
.about-hobbies {
    margin: 24px 0;
    padding: 20px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 4px;
}
.hobbies-label {
    font-family: var(--font-heading); font-size: 0.65rem; font-weight: 600;
    letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted);
    margin-bottom: 12px;
}
.hobbies-list {
    display: flex; flex-wrap: wrap; gap: 8px;
}
.hobby-tag {
    font-family: var(--font-heading); font-size: 0.72rem; font-weight: 500;
    letter-spacing: 0.06em;
    color: var(--text);
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border);
    padding: 5px 12px; border-radius: 100px;
}
.hobby-tag:hover { border-color: var(--accent); color: var(--accent); }
.tools-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px;
    margin-top: 24px;
}
.tool-item {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 12px 16px;
    display: flex; align-items: center; gap: 10px;
    transition: border-color .2s;
}
.tool-item:hover { border-color: var(--accent); }
.tool-icon { font-size: 1.2rem; }
.tool-name {
    font-family: var(--font-heading); font-size: 0.72rem; font-weight: 600;
    color: var(--text);
}
.availability {
    display: inline-flex; align-items: center; gap: 8px;
    margin-top: 28px;
    font-family: var(--font-heading); font-size: 0.72rem; font-weight: 600;
    letter-spacing: 0.08em; text-transform: uppercase;
    color: var(--accent);
}
.avail-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--accent);
    animation: dotBlink 2s ease-in-out infinite;
}

/* ===== IG VISUAL ===== */
#ig-section { position: relative; z-index: 1; padding: 80px 0; }
.ig-grid {
    padding: 0 60px;
    display: grid; grid-template-columns: repeat(6, 1fr); gap: 8px;
}
.ig-cell {
    aspect-ratio: 1;
    border-radius: 2px;
    overflow: hidden;
    cursor: none;
    position: relative;
    transition: transform .3s, box-shadow .3s;
}
.ig-cell:hover { transform: scale(1.04); z-index: 2; box-shadow: 0 8px 30px rgba(0,0,0,0.5); }
.ig-cell-inner {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
}
.ig-cell-icon {
    font-size: 1.5rem; opacity: 0;
    transition: opacity .3s;
}
.ig-cell:hover .ig-cell-icon { opacity: 1; }
.ig1 { background: linear-gradient(135deg, #1a0030, #4a0080); }
.ig2 { background: linear-gradient(135deg, #001a30, #004a80); }
.ig3 { background: linear-gradient(135deg, #1a1a00, #4a4a00); }
.ig4 { background: linear-gradient(135deg, #1a0010, #4a0030); }
.ig5 { background: linear-gradient(135deg, #001a10, #004a20); }
.ig6 { background: linear-gradient(135deg, #0a0a1a, #1a1a4a); }
.ig7 { background: linear-gradient(135deg, #1a0a00, #4a2000); }
.ig8 { background: linear-gradient(135deg, #0a1a00, #204a00); }
.ig9 { background: linear-gradient(135deg, #1a001a, #4a004a); }
.ig10 { background: linear-gradient(135deg, #00101a, #00304a); }
.ig11 { background: linear-gradient(135deg, #0a0a0a, #252525); }
.ig12 { background: linear-gradient(135deg, #150015, #350035); }

/* ===== CONTACT ===== */
#contact { position: relative; z-index: 1; padding: 80px 60px 120px; }
.contact-box {
    max-width: 900px; margin: 0 auto;
    text-align: center;
}
.contact-headline {
    font-family: var(--font-display);
    font-size: clamp(3rem, 7vw, 7rem);
    line-height: 0.95;
    letter-spacing: 0.01em;
    color: var(--white);
    margin: 16px 0 24px;
}
.contact-headline span { color: var(--accent); }
.contact-sub {
    font-size: 0.9rem; color: var(--muted); line-height: 1.8; max-width: 500px; margin: 0 auto 48px;
}
.contact-links {
    display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 40px;
}
.contact-link {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: var(--font-heading); font-size: 0.75rem; font-weight: 600;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--muted);
    border: 1px solid var(--border);
    padding: 10px 20px; border-radius: 100px;
    text-decoration: none;
    transition: color .2s, border-color .2s, background .2s;
}
.contact-link:hover { color: var(--bg); background: var(--accent); border-color: var(--accent); }
.contact-email {
    display: block;
    font-family: var(--font-heading); font-size: clamp(0.8rem, 1.5vw, 1.1rem); font-weight: 500;
    color: var(--accent);
    text-decoration: none;
    letter-spacing: 0.05em;
}
.contact-email:hover { text-decoration: underline; }

/* ===== FOOTER ===== */
footer {
    position: relative; z-index: 1;
    border-top: 1px solid var(--border);
    padding: 24px 60px;
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 12px;
}
.footer-copy {
    font-family: var(--font-heading); font-size: 0.72rem;
    letter-spacing: 0.08em; color: var(--muted);
}
.footer-right {
    font-family: var(--font-heading); font-size: 0.72rem;
    letter-spacing: 0.08em; color: var(--muted);
}
.footer-right span { color: var(--accent); }

/* ===== PROJECT MODAL ===== */
#modal-overlay {
    position: fixed; inset: 0; z-index: 1000;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(12px);
    opacity: 0; pointer-events: none;
    transition: opacity .3s;
    display: flex; align-items: center; justify-content: center;
    padding: 40px;
}
#modal-overlay.active { opacity: 1; pointer-events: all; }
.modal-box {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 8px;
    max-width: 800px; width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    transform: translateY(24px) scale(0.98);
    transition: transform .4s cubic-bezier(.17,.67,.35,1.1);
    scrollbar-width: thin;
}
#modal-overlay.active .modal-box { transform: translateY(0) scale(1); }
.modal-header {
    padding: 32px 36px 0;
    display: flex; align-items: flex-start; justify-content: space-between;
}
.modal-close {
    width: 36px; height: 36px;
    background: none; border: 1px solid var(--border);
    border-radius: 50%; color: var(--muted);
    font-size: 1rem; cursor: none;
    display: flex; align-items: center; justify-content: center;
    transition: border-color .2s, color .2s;
    flex-shrink: 0;
}
.modal-close:hover { border-color: var(--accent); color: var(--accent); }
.modal-body { padding: 24px 36px 36px; }
.modal-vis {
    width: 100%; aspect-ratio: 16/9;
    border-radius: 4px; overflow: hidden;
    margin-bottom: 24px;
}
.modal-meta {
    display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 16px;
}
.modal-badge {
    font-family: var(--font-heading); font-size: 0.65rem; font-weight: 600;
    letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--accent); background: rgba(200,240,96,0.1);
    border: 1px solid rgba(200,240,96,0.2); padding: 4px 12px; border-radius: 100px;
}
.modal-title {
    font-family: var(--font-heading); font-size: 2rem; font-weight: 800;
    color: var(--white); margin-bottom: 12px;
}
.modal-desc {
    font-size: 0.88rem; color: rgba(232,228,220,0.6); line-height: 1.9; margin-bottom: 20px;
}
.modal-section-title {
    font-family: var(--font-heading); font-size: 0.7rem; font-weight: 600;
    letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--muted); margin-bottom: 10px;
}
.modal-process {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 20px;
}
.modal-step {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border); border-radius: 4px;
    padding: 14px 16px;
}
.modal-step-n {
    font-family: var(--font-display); font-size: 1.8rem;
    color: rgba(255,255,255,0.08); margin-bottom: 4px;
}
.modal-step-t {
    font-family: var(--font-heading); font-size: 0.78rem; font-weight: 600;
    color: var(--text);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes glowPulse {
    0%, 100% { opacity: 0.7; transform: scale(1); }
    50%       { opacity: 1;   transform: scale(1.08); }
}
@keyframes scrollLine {
    0%   { opacity: 1; transform: scaleY(1); transform-origin: top; }
    50%  { opacity: 0.4; }
    100% { opacity: 1; transform: scaleY(1); }
}
@keyframes dotBlink {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.3; }
}
@keyframes marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ===== MARQUEE DIVIDER ===== */
.marquee-wrap {
    overflow: hidden;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 14px 0;
    background: var(--surface);
}
.marquee-track {
    display: flex;
    animation: marquee 18s linear infinite;
    white-space: nowrap;
}
.marquee-item {
    font-family: var(--font-display);
    font-size: 1rem; letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
    padding: 0 32px;
}
.marquee-item span { color: var(--accent); }

/* ===== REVEAL ANIMATIONS ===== */
.reveal {
    opacity: 0; transform: translateY(28px);
    transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    nav { padding: 16px 24px; }
    .nav-links, .nav-cta { display: none; }
    .section-header, .work-grid, .ig-grid, .about-grid, .carousel-showcase { padding: 0 24px; }
    .poster-track { padding: 0 24px; }
    #stats, #contact { padding: 40px 24px; }
    footer { padding: 20px 24px; }
    .work-grid {
    grid-template-columns: 1fr;
    }
    .work-card-a, .work-card-b, .work-card-c, .work-card-d, .work-card-e {
    grid-column: 1 / -1; grid-row: auto; min-height: 260px;
    }
    .carousel-showcase { grid-template-columns: 1fr; }
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .ig-grid { grid-template-columns: repeat(3, 1fr); }
    .modal-process { grid-template-columns: 1fr; }
}