/* ============================================================
   Video Portfolio — Editorial / Codrops Hub
   ============================================================ */

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

:root {
    --hero-bg: #e8e3d8;
    --hero-text: #14120f;
    --hero-muted: #6b6458;
    --hero-dim: #a39a8c;
    --hero-border: rgba(20, 18, 15, 0.1);
    --hero-border-strong: rgba(20, 18, 15, 0.18);
    --hero-accent: #c84b2f;
    --hero-accent-soft: rgba(200, 75, 47, 0.1);
    --hero-accent-glow: rgba(200, 75, 47, 0.18);
    --hero-surface: #ddd8cc;

    --font-display: 'Syne', 'Noto Sans SC', sans-serif;
    --font-serif: 'Noto Serif SC', Georgia, serif;
    --font-mono: 'DM Mono', 'Courier New', monospace;
    --font-body: 'Noto Sans SC', -apple-system, sans-serif;
    --font-italic: 'Instrument Serif', Georgia, serif;

    --ease: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --header-h: 72px;
}

html {
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
    font-family: var(--font-body);
    background: var(--hero-bg);
    color: var(--hero-text);
    line-height: 1.6;
    overflow-x: hidden;
    cursor: none;
}

body.loading { overflow: hidden; }

a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: none; }

body::after {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9997;
    opacity: 0.028;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 200px 200px;
    mix-blend-mode: multiply;
}

/* ---------- Loader ---------- */
.js.loading::before,
.js.loading::after {
    content: '';
    position: fixed;
    z-index: 10001;
    pointer-events: none;
}

.js.loading::before { inset: 0; background: var(--hero-bg); }

.js.loading::after {
    top: 50%; left: 50%;
    width: 40px; height: 40px;
    margin: -20px 0 0 -20px;
    border: 1px solid var(--hero-border);
    border-top-color: var(--hero-accent);
    border-radius: 50%;
    animation: loaderSpin 0.9s linear infinite;
}

@keyframes loaderSpin { to { transform: rotate(360deg); } }

/* ---------- Cursor ---------- */
.cursor {
    position: fixed;
    top: 0; left: 0;
    pointer-events: none;
    z-index: 10002;
    opacity: 0;
    transition: opacity 0.4s;
}

body.cursor-ready .cursor { opacity: 1; }

.cursor__circle { fill: none; stroke: var(--hero-accent); stroke-width: 1; }
.cursor--inner .cursor__circle { fill: var(--hero-accent); stroke: none; }

body.cursor-hover .cursor--outer .cursor__circle { stroke-width: 1.5; r: 24; }

@media (hover: none), (max-width: 1024px) {
    body, button, .hub-card { cursor: auto; }
    .cursor { display: none; }
}

/* ---------- Overlay ---------- */
.overlay { position: fixed; inset: 0; z-index: 9999; pointer-events: none; }
.overlay__path { fill: var(--hero-bg); }

/* ---------- Header ---------- */
.header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 500;
    height: var(--header-h);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 clamp(20px, 4vw, 56px);
    opacity: 0;
    transform: translateY(-16px);
    transition: opacity 0.6s var(--ease), transform 0.6s var(--ease),
                background 0.5s, border-color 0.5s, color 0.5s;
    border-bottom: 1px solid transparent;
}

.header.visible { opacity: 1; transform: translateY(0); }

.header--light { color: var(--hero-text); }
.header--scrolled {
    background: rgba(232, 227, 216, 0.88);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom-color: var(--hero-border);
}

.header__brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header__mark {
    width: 8px; height: 8px;
    background: var(--hero-accent);
    border-radius: 1px;
}

.header__name {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    transition: opacity 0.3s;
}

.header__name:hover { opacity: 0.55; }

.header__nav { display: flex; gap: clamp(20px, 3vw, 40px); }

.header__link {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--hero-muted);
    position: relative;
    transition: color 0.3s;
}

.header__link::after {
    content: '';
    position: absolute;
    bottom: -5px; left: 0;
    width: 100%; height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.45s var(--ease);
}

.header__link:hover,
.header__link.is-active { color: var(--hero-text); }

.header__link:hover::after,
.header__link.is-active::after { transform: scaleX(1); transform-origin: left; }

.header__count {
    font-family: var(--font-mono);
    font-size: 0.6rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--hero-dim);
}

/* ============================================================
   HERO
   ============================================================ */

.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: calc(var(--header-h) + 56px) clamp(24px, 5vw, 80px) 100px;
    overflow: hidden;
    background: var(--hero-bg);
    color: var(--hero-text);
}

.hero__frame {
    position: absolute;
    inset: clamp(16px, 3vw, 32px);
    pointer-events: none;
    z-index: 1;
}

.hero__corner {
    position: absolute;
    width: 24px; height: 24px;
    border-color: var(--hero-border);
    border-style: solid;
}

.hero__corner--tl { top: 0; left: 0; border-width: 1px 0 0 1px; }
.hero__corner--tr { top: 0; right: 0; border-width: 1px 1px 0 0; }
.hero__corner--bl { bottom: 0; left: 0; border-width: 0 0 1px 1px; }
.hero__corner--br { bottom: 0; right: 0; border-width: 0 1px 1px 0; }

.hero__marquee {
    position: absolute;
    left: 0; right: 0;
    overflow: hidden;
    white-space: nowrap;
    pointer-events: none;
    z-index: 0;
    opacity: 0.07;
}

.hero__marquee--top { top: 18%; }
.hero__marquee--bottom { bottom: 14%; }

.hero__marquee-track {
    display: inline-flex;
    animation: marquee 36s linear infinite;
}

.hero__marquee-track--reverse { animation-direction: reverse; animation-duration: 28s; }

.hero__marquee-track span {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 6.5rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    padding-right: 60px;
    color: var(--hero-text);
}

@keyframes marquee { to { transform: translateX(-50%); } }

.hero__inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: clamp(48px, 7vw, 120px);
    align-items: end;
    max-width: 1180px;
    width: 100%;
    margin: 0 auto;
}

.hero__label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-mono);
    font-size: 0.62rem;
    font-weight: 400;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--hero-muted);
    margin-bottom: 28px;
}

.hero__label-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--hero-accent);
    animation: pulseDot 2.4s ease-in-out infinite;
}

@keyframes pulseDot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.7); }
}

.hero__name {
    font-weight: 400;
    line-height: 1.05;
    margin-bottom: 20px;
}

.hero__name-line {
    display: block;
    font-family: var(--font-italic);
    font-size: clamp(1rem, 2.5vw, 1.35rem);
    font-style: italic;
    color: var(--hero-muted);
    overflow: hidden;
    will-change: transform;
    margin-bottom: 4px;
}

.hero__name-line--display {
    font-family: 'Noto Sans SC', var(--font-display);
    font-size: clamp(4rem, 11vw, 8rem);
    font-style: normal;
    font-weight: 800;
    letter-spacing: 0.02em;
    line-height: 1.2;
    color: var(--hero-text);
    margin-bottom: 0;
    padding: 0.06em 0.04em 0.1em 0;
}

.hero__tagline {
    font-family: var(--font-mono);
    font-size: 0.68rem;
    letter-spacing: 0.06em;
    color: var(--hero-dim);
    max-width: 320px;
}

.hero__bio {
    display: flex;
    flex-direction: column;
    gap: 16px;
    font-size: 0.88rem;
    font-weight: 300;
    line-height: 2;
    color: var(--hero-muted);
    margin-bottom: 32px;
    max-width: 400px;
    padding-top: 8px;
    border-top: 1px solid var(--hero-border);
}

.hero__email {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 36px;
    padding: 14px 0;
    border-top: 1px solid var(--hero-border);
    border-bottom: 1px solid var(--hero-border);
    transition: gap 0.4s var(--ease);
}

.hero__email:hover { gap: 22px; }

.hero__email-label {
    font-family: var(--font-mono);
    font-size: 0.58rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--hero-dim);
    flex-shrink: 0;
}

.hero__email-value {
    font-size: 0.78rem;
    letter-spacing: 0.02em;
    color: var(--hero-text);
    transition: color 0.3s;
}

.hero__email:hover .hero__email-value { color: var(--hero-accent); }

.hero__email-arrow {
    margin-left: auto;
    color: var(--hero-accent);
    transition: transform 0.4s var(--ease);
}

.hero__email:hover .hero__email-arrow { transform: translateX(4px); }

.hero__skills {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.hero__skills span {
    font-family: var(--font-mono);
    font-size: 0.56rem;
    letter-spacing: 0.04em;
    padding: 8px 12px;
    border: 1px solid var(--hero-border);
    color: var(--hero-muted);
    transition: border-color 0.35s, color 0.35s, background 0.35s;
}

.hero__skills span:hover {
    border-color: rgba(20, 18, 15, 0.2);
    color: var(--hero-text);
    background: rgba(20, 18, 15, 0.03);
}

.reveal-item {
    opacity: 0;
    transform: translateY(24px);
}

.hero__scroll-btn {
    position: absolute;
    bottom: clamp(28px, 4vw, 48px);
    right: clamp(24px, 5vw, 80px);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    opacity: 0;
    transition: opacity 0.4s;
}

.hero__scroll-btn.is-ready { opacity: 1; }

.hero__scroll-line {
    display: block;
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, var(--hero-accent), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0%, 100% { transform: scaleY(1); opacity: 1; }
    50% { transform: scaleY(0.6); opacity: 0.4; }
}

.hero__scroll-text {
    font-family: var(--font-mono);
    font-size: 0.56rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--hero-dim);
    writing-mode: vertical-rl;
}

/* ============================================================
   CURTAIN
   ============================================================ */

.curtain {
    position: relative;
    height: 0;
    z-index: 10;
    pointer-events: none;
}

.curtain__panel {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: 100vh;
    height: 100dvh;
    background: var(--hero-bg);
    transform: translateY(-100%);
    z-index: 50;
    pointer-events: none;
}

/* ============================================================
   WORKS
   ============================================================ */

.works {
    position: relative;
    z-index: 20;
    background: var(--hero-bg);
    color: var(--hero-text);
    padding-top: clamp(48px, 8vw, 88px);
}

.works__head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 32px;
    padding: 0 clamp(20px, 5vw, 56px) clamp(40px, 6vw, 64px);
    max-width: 1280px;
    margin: 0 auto;
    border-bottom: 1px solid var(--hero-border);
}

.works__eyebrow {
    display: block;
    font-family: var(--font-mono);
    font-size: 0.6rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--hero-accent);
    margin-bottom: 16px;
}

.works__title {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 6vw, 4.2rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1;
    color: var(--hero-text);
}

.works__desc {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    letter-spacing: 0.06em;
    color: var(--hero-muted);
    max-width: 280px;
    text-align: right;
    line-height: 1.8;
}

/* ---------- Filmstrip ---------- */
.filmstrip {
    position: relative;
    overflow: hidden;
    margin: 0 0 clamp(32px, 5vw, 56px);
    padding: 18px 0;
    border-block: 1px solid var(--hero-border);
    mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}

.filmstrip__inner { overflow: hidden; }

.filmstrip__track {
    display: flex;
    gap: 14px;
    width: max-content;
    animation: filmstripScroll 36s linear infinite;
}

.filmstrip__track:hover { animation-play-state: paused; }

.filmstrip__item {
    flex-shrink: 0;
    width: 72px;
    aspect-ratio: 9 / 16;
    border-radius: 2px;
    overflow: hidden;
    border: 1px solid var(--hero-border);
    opacity: 0.55;
    filter: saturate(0.85);
    transition: opacity 0.4s, filter 0.4s;
}

.filmstrip__item:hover {
    opacity: 1;
    filter: saturate(1);
}

.filmstrip__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@keyframes filmstripScroll {
    to { transform: translateX(-50%); }
}

/* ---------- Filter Nav ---------- */
.filter-nav {
    position: sticky;
    top: var(--header-h);
    z-index: 400;
    display: flex;
    justify-content: center;
    gap: 0;
    padding: 0 clamp(16px, 4vw, 48px);
    background: rgba(232, 227, 216, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--hero-border);
}

.filter-nav__btn {
    position: relative;
    font-family: var(--font-mono);
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 20px clamp(16px, 2.5vw, 28px);
    color: var(--hero-muted);
    transition: color 0.35s;
    z-index: 1;
}

.filter-nav__btn:hover { color: var(--hero-text); }

.filter-nav__btn.is-active { color: var(--hero-accent); }

.filter-nav__indicator {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 0;
    background: var(--hero-accent);
    transition: left 0.45s var(--ease), width 0.45s var(--ease);
    pointer-events: none;
}

/* ---------- Category ---------- */
.showcase { padding-bottom: 12px; }

.category {
    padding: clamp(64px, 9vw, 110px) clamp(20px, 5vw, 56px);
    transition: opacity 0.5s, transform 0.5s var(--ease);
}

.category.is-hidden { display: none; }

.category__head {
    max-width: 1280px;
    margin: 0 auto clamp(48px, 6vw, 72px);
    text-align: center;
}

.category__head-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(16px, 3vw, 32px);
    margin-bottom: 12px;
}

.category__num {
    font-family: var(--font-mono);
    font-size: 0.62rem;
    letter-spacing: 0.1em;
    color: var(--hero-accent);
    flex-shrink: 0;
}

.category__rule {
    width: 80px;
    height: 1px;
    background: var(--hero-border);
    flex-shrink: 0;
}

.category__title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 600;
    letter-spacing: -0.01em;
    color: var(--hero-text);
    overflow: hidden;
}

.category__title-inner {
    display: inline-block;
    transform: translateY(110%);
}

.category__title-inner.is-visible {
    animation: titleIn 0.85s var(--ease) forwards;
}

@keyframes titleIn { to { transform: translateY(0); } }

.category__meta {
    font-family: var(--font-mono);
    font-size: 0.58rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--hero-dim);
}

/* ---------- Video Grid ---------- */
.category__grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: clamp(20px, 2.5vw, 28px);
    max-width: 1280px;
    margin: 0 auto;
}

/* ============================================================
   HUB CARD (Codrops-style)
   ============================================================ */

.hub-card {
    position: relative;
    width: clamp(200px, 22vw, 260px);
    flex: 0 0 auto;
    cursor: none;
    opacity: 0;
    transform: translateY(48px) scale(0.96);
    will-change: transform;
    perspective: 900px;
    transition: opacity 0.4s, transform 0.4s var(--ease-out);
}

.hub-card.is-visible {
    animation: cardIn 0.9s var(--ease) forwards;
}

@keyframes cardIn {
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.hub-card:hover { z-index: 2; }

.hub-card__media {
    position: relative;
    width: 100%;
    aspect-ratio: 9 / 16;
    border-radius: 2px;
    overflow: hidden;
    background: #1a1814;
    border: 1px solid var(--hero-border);
    box-shadow: 0 12px 40px rgba(20, 18, 15, 0.1);
    transform: rotate(var(--card-tilt, 0deg));
    transform-style: preserve-3d;
    transition: box-shadow 0.5s var(--ease-out), transform 0.5s var(--ease-out), border-color 0.4s;
}

.hub-card:hover .hub-card__media,
.hub-card.is-previewing .hub-card__media {
    box-shadow: 0 28px 70px rgba(20, 18, 15, 0.16);
    border-color: var(--hero-border-strong);
    transform: rotate(0deg);
}

.card__thumb-wrap {
    position: absolute;
    inset: 0;
    overflow: hidden;
    will-change: transform;
}

.card__preview {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0;
    z-index: 1;
    transition: opacity 0.4s var(--ease);
    background: #1a1814;
}

.hub-card.has-cover .card__preview {
    opacity: 1;
}

.hub-card.is-previewing .card__preview {
    opacity: 1;
}

.card__badge {
    position: absolute;
    top: 12px; right: 12px;
    z-index: 4;
    font-family: var(--font-mono);
    font-size: 0.5rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 5px 8px;
    background: rgba(232, 227, 216, 0.9);
    color: var(--hero-accent);
    border: 1px solid var(--hero-border);
    opacity: 0;
    transform: translateY(-6px);
    transition: opacity 0.35s, transform 0.35s var(--ease);
}

.hub-card:hover .card__badge,
.hub-card.is-previewing .card__badge {
    opacity: 1;
    transform: translateY(0);
}

.card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(20, 18, 15, 0.45) 100%);
    opacity: 0;
    transition: opacity 0.45s;
    z-index: 3;
    pointer-events: none;
}

.hub-card:hover .card__overlay,
.hub-card.is-previewing .card__overlay { opacity: 1; }

.card__play {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%) scale(0.65);
    width: 52px; height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--hero-accent);
    opacity: 0;
    z-index: 4;
    transition: all 0.45s var(--ease);
    box-shadow: 0 8px 28px var(--hero-accent-glow);
    pointer-events: none;
}

.hub-card:hover .card__play,
.hub-card.is-previewing .card__play {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.card__play::after {
    content: '';
    border-style: solid;
    border-width: 6px 0 6px 10px;
    border-color: transparent transparent transparent #fff;
    margin-left: 3px;
}

.card__loading {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1a1814;
    z-index: 6;
}

.card__loading.hidden { opacity: 0; pointer-events: none; transition: opacity 0.4s; }

.card__loading-line {
    width: 32px; height: 32px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-top-color: var(--hero-accent);
    border-radius: 50%;
    animation: loaderSpin 0.9s linear infinite;
}

/* ============================================================
   MODAL
   ============================================================ */

.modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s;
}

.modal.open { pointer-events: auto; opacity: 1; }

/* Keep system cursor visible over native video controls */
.modal.open .modal__video-wrap,
.modal.open .modal__video-wrap video,
.modal.open .modal__close {
    cursor: none;
}

.modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(232, 227, 216, 0.97);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
}

.modal__close {
    position: absolute;
    top: clamp(16px, 3vw, 32px);
    right: clamp(16px, 3vw, 32px);
    z-index: 3;
    width: 48px; height: 48px;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--hero-muted);
    border: 1px solid var(--hero-border);
    transition: color 0.3s, border-color 0.3s, background 0.3s;
}

.modal__close:hover {
    color: var(--hero-text);
    border-color: var(--hero-border-strong);
    background: var(--hero-accent-soft);
}

.modal__video-wrap {
    position: relative;
    z-index: 1;
    width: min(90vw, calc(85vh * 9 / 16));
    height: min(85vh, calc(90vw * 16 / 9));
    margin: 0 auto;
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 40px 120px rgba(0, 0, 0, 0.8);
    background: #000;
}

.modal__video-wrap video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    background: #000;
    -webkit-user-select: none;
    user-select: none;
}

/* ============================================================
   FOOTER
   ============================================================ */

.footer {
    padding: 64px clamp(20px, 5vw, 56px) 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--hero-border);
    max-width: 1280px;
    margin: 0 auto;
}

.footer__left {
    display: flex;
    align-items: center;
    gap: 14px;
}

.footer__mark {
    width: 6px; height: 6px;
    background: var(--hero-accent);
    border-radius: 1px;
}

.footer__copy,
.footer__email {
    font-family: var(--font-mono);
    font-size: 0.58rem;
    letter-spacing: 0.1em;
    color: var(--hero-dim);
}

.footer__copy { text-transform: uppercase; }

.footer__email {
    text-transform: none;
    transition: color 0.3s;
}
.footer__email:hover { color: var(--hero-accent); }

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 900px) {
    .works__head {
        flex-direction: column;
        align-items: flex-start;
    }

    .works__desc { text-align: left; max-width: none; }

    .category__grid .hub-card:nth-child(3n+2) { margin-top: 0; }

    .filmstrip { display: none; }
}

@media (max-width: 768px) {
    :root { --header-h: 60px; }

    .header__nav { display: none; }

    .hero__inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero__bio { max-width: none; }

    .hero__marquee { display: none; }

    .hero__frame { display: none; }

    .hero__scroll-btn {
        right: auto;
        left: 50%;
        transform: translateX(-50%);
    }

    .hero__scroll-text { writing-mode: horizontal-tb; }

    .filter-nav {
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        scrollbar-width: none;
    }

    .filter-nav::-webkit-scrollbar { display: none; }
    .filter-nav__btn { flex-shrink: 0; }

    .category__grid {
        gap: 12px;
    }

    .hub-card {
        width: 42vw;
        max-width: 200px;
        cursor: auto;
    }

    .hub-card:hover { box-shadow: none; }
    .card__play { opacity: 0.75; transform: translate(-50%, -50%) scale(1); }
    .card__badge { opacity: 1; transform: none; }

    .footer { flex-direction: column; gap: 16px; text-align: center; }
    .footer__left { justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    .hero__marquee-track { animation: none; }
    .filmstrip__track { animation: none; }
    .hero__label-dot { animation: none; }
    .hero__scroll-line { animation: none; }
    html { scroll-behavior: auto; }
}
