@font-face {
    font-family: 'SuperParodyDEMO';
    src: url('Super Parody DEMO.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Array';
    src: url('Array-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'AvantGardeLT';
    src: url('ITC Avant Garde Gothic LT Demi.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* COLOR SYSTEM (NON-NEGOTIABLE) */
:root {
  --black:        #0A0A0A;
  --white:        #FFFFFF;
  --green:        #AAFF00;
  --green-dim:    #88CC00;
  --grey:         #888888;
  --grey-dark:    #1A1A1A;
  --divider:      #2A2A2A;
  
  --font-hero:    'AvantGardeLT', sans-serif;
  --font-body:    'Space Grotesk', sans-serif;
  --font-landing: 'Array', sans-serif;
}

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

html {
    background-color: var(--black);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    /* scroll-behavior removed — Lenis handles smoothing to avoid double-scroll conflict */
}

body {
    overflow-x: hidden;
    width: 100%;
    padding-bottom: 5rem; /* space for floating dock */
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

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

/* UTILITIES */
.accent-text { color: var(--green); }
.white-text { color: var(--white); }
.grey-text { color: var(--grey); }

/* UI DECORATION SYSTEM */
.barcode-pattern {
    position: absolute;
    top: 0; left: 0; width: 0; height: 0;
    pointer-events: none;
    opacity: 0;
}

.barcode-strip {
    height: 10px;
    width: 120px;
    background-image: repeating-linear-gradient(
        to right,
        rgba(255,255,255,0.3),
        rgba(255,255,255,0.3) 1px,
        transparent 1px,
        transparent 3px,
        rgba(255,255,255,0.3) 3px,
        rgba(255,255,255,0.3) 5px,
        transparent 5px,
        transparent 6px
    );
}

.barcode-strip.full-width {
    width: 100%;
}

.top-bar-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    border-top: 1px solid var(--divider);
    border-bottom: 1px solid var(--divider);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--green);
    width: 100%;
    position: relative;
    z-index: 10;
}

.top-bar-meta span { flex: 1; }
.top-bar-meta .label { text-align: left; }
.top-bar-meta .date { text-align: center; }
.top-bar-meta .category { text-align: right; }

.bottom-bar-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-top: 1px solid var(--divider);
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 10;
}

.corner-markers {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    pointer-events: none;
    z-index: 10;
}

.marker {
    position: absolute;
    width: 16px;
    height: 16px;
    color: var(--grey);
}
.marker.top-left { top: 1rem; left: 1rem; }
.marker.top-right { top: 1rem; right: 1rem; }
.marker.bottom-left { bottom: 1rem; left: 1rem; }
.marker.bottom-right { bottom: 1rem; right: 1rem; }

/* PRELOADER */
.preloader {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100vh;
    background-color: var(--black);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: opacity 0.8s ease;
}

.preloader .top-bar {
    display: flex;
    justify-content: space-between;
    padding: 1.5rem 2rem;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--grey);
}

.preloader .bottom-bar {
    padding: 1.5rem 2rem;
}

.preloader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
}

.preloader-logo {
    height: 80px;
    margin-bottom: 2rem;
}

.counter-wrapper {
    font-family: var(--font-hero);
    color: var(--white);
    display: flex;
    align-items: baseline;
}

.counter {
    font-size: clamp(5rem, 10vw, 8rem);
    line-height: 1;
}

.percent {
    font-size: clamp(2rem, 4vw, 4rem);
    color: var(--green);
}

.enter-btn {
    display: none; /* shown via JS */
    margin-top: 2rem;
    background: transparent;
    font-family: var(--font-body);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--white);
    border: 1px solid var(--green);
    padding: 1.25rem 3.5rem;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: color 0.3s ease, opacity 0.5s ease;
    z-index: 1;
    opacity: 0;
    animation: fadeIn 0.6s 0.2s forwards;
}

.enter-btn::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-color: var(--green);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
    z-index: -1;
}

.enter-btn:hover {
    color: var(--black);
    opacity: 1;
}

.enter-btn:hover::before {
    transform: scaleX(1);
}

@keyframes fadeIn {
    to { opacity: 1; }
}

/* NAVIGATION */
.main-nav {
    position: fixed;
    top: 0; left: 0; width: 100%;
    z-index: 1000;
    padding: 1.5rem 2rem;
    transition: background-color 0.4s ease;
}

.main-nav.scrolled {
    background-color: var(--black);
    border-bottom: 1px solid var(--divider);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.nav-logo img {
    height: 40px;
}

.fallback-logo {
    font-family: var(--font-hero);
    font-size: 2rem;
    color: var(--white);
}

.nav-links {
    display: flex;
    gap: 3rem;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-link {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--green);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px; left: 0;
    width: 100%; height: 1px;
    background-color: var(--green);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

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

.cta-button {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--white);
    border: 1px solid var(--green);
    padding: 0.75rem 1.5rem;
    position: relative;
    overflow: hidden;
    transition: color 0.3s ease;
    z-index: 1;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-color: var(--green);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
    z-index: -1;
}

.cta-button:hover {
    color: var(--black);
}

.cta-button:hover::before {
    transform: scaleX(1);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 20px;
    position: relative;
    z-index: 1001;
}

.hamburger, .hamburger::before, .hamburger::after {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--white);
    position: absolute;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.hamburger { top: 50%; transform: translateY(-50%); }
.hamburger::before { content: ''; top: -8px; }
.hamburger::after { content: ''; bottom: -8px; }

.menu-toggle.active .hamburger { background-color: transparent; }
.menu-toggle.active .hamburger::before { transform: translateY(8px) rotate(45deg); }
.menu-toggle.active .hamburger::after { transform: translateY(-8px) rotate(-45deg); }

.mobile-menu {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100vh;
    background-color: var(--black);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.mobile-menu.active {
    opacity: 1;
    pointer-events: auto;
}

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

.mobile-link {
    font-family: var(--font-hero);
    font-size: 4rem;
    color: var(--white);
}

.mobile-link.highlight {
    color: var(--green);
}

/* HERO SECTION */
.hero {
    position: relative;
    height: 90vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.hero .top-bar-meta {
    margin-top: 5rem; /* Space for nav */
}

.hero-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 0;
}

.hero-video {
    width: 100%; height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-color: rgba(0, 0, 0, 0.60);
    opacity: 0 !important;
    filter: none !important;
    transform: none !important;
    transition: opacity 1.8s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.hero-overlay.is-visible {
    opacity: 1 !important;
}

.hero-content {
    position: absolute;
    bottom: 15vh;
    left: 2rem;
    z-index: 5;
}

.hero-content--center {
    bottom: auto;
    left: 0;
    right: 0;
    top: 80%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    padding: 0 2rem;
}

.hero-title {
    font-family: var(--font-landing);
    font-size: 10vw;
    line-height: 1;
    margin-bottom: 1rem;
    white-space: nowrap;
}

.line-mask {
    overflow: hidden;
}

.hero-title .line {
    display: block;
    /* transform removed — blur-in on parent handles the reveal */
}

.hero-title .bleeds {
    width: 120vw;
    margin-left: -10vw;
}

.animate-element {
    opacity: 0;
    filter: blur(10px);
    transform: translateY(20px);
    transition:
        opacity   1.8s cubic-bezier(0.16, 1, 0.3, 1),
        filter    1.8s cubic-bezier(0.16, 1, 0.3, 1),
        transform 1.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: filter, opacity, transform;
}

.animate-element.is-visible {
    opacity: 1;
    filter: blur(0px);
    transform: translateY(0);
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: clamp(1rem, 1.5vw, 1.5rem);
    color: var(--white);
    font-style: italic;
    font-weight: 300;
}

.hero-right-pills {
    position: absolute;
    right: 3rem;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    z-index: 5;
}

.pill {
    font-family: var(--font-body);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--divider);
    text-align: right;
}

.pill.accent {
    color: var(--green);
}

.version-label {
    position: absolute;
    right: 1rem;
    bottom: 20vh;
    font-family: var(--font-body);
    font-size: 0.6rem;
    color: var(--grey);
    transform: rotate(90deg);
    transform-origin: right bottom;
    z-index: 5;
    letter-spacing: 0.1em;
}

.hero-email {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.markers-right {
    font-size: 0.65rem;
    color: var(--grey);
    letter-spacing: 0.5em;
}

.scroll-indicator {
    position: absolute;
    bottom: 5rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.65rem;
    color: var(--grey);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    z-index: 5;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); }
    40% { transform: translateY(-10px) translateX(-50%); }
    60% { transform: translateY(-5px) translateX(-50%); }
}

/* TYPE CARDS (Section 04 & 08) */
.type-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    padding: 5rem 2rem 4rem 2rem;
}

.massive-type {
    font-family: var(--font-hero);
    font-size: clamp(4rem, 10vw, 12rem);
    line-height: 0.9;
    text-align: center;
    width: 100%;
}

.bottom-right-label {
    position: absolute;
    bottom: 4rem;
    right: 2rem;
    font-size: 0.85rem;
    font-family: var(--font-body);
}

.bottom-left-link {
    position: absolute;
    bottom: 4rem;
    left: 2rem;
    font-size: 0.85rem;
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.bottom-left-link a:hover {
    color: var(--green);
}

/* SPLIT SECTIONS (Projects) */
.split-section {
    position: relative;
    padding-top: 0;
}

.section-number-bg {
    position: absolute;
    top: 5rem;
    left: 2rem;
    font-family: var(--font-hero);
    font-size: 20vw;
    color: var(--green);
    opacity: 0.15;
    line-height: 0.8;
    z-index: 0;
    pointer-events: none;
}

.video-grid, .film-grid, .design-grid {
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

.grid-card {
    position: relative;
    width: 100%;
    min-height: 60vh;
    border-bottom: 1px solid var(--divider);
    overflow: hidden;
    display: block;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.grid-card.full-width {
    height: 80vh;
}

.video-wrapper {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0; left: 0;
}

.lazy-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: filter 0.4s ease;
}

.grid-card:hover .lazy-video {
    filter: brightness(1.15);
}

.grid-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border: 1px solid transparent;
    transition: border-color 0.3s ease;
    pointer-events: none;
    z-index: 10;
}

.grid-card:hover::after {
    border-color: var(--green);
}

.card-overlay-bottom {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    z-index: 5;
    pointer-events: none;
}

.card-title {
    font-family: var(--font-hero);
    font-size: clamp(2rem, 5vw, 4rem);
    line-height: 1;
}

.card-category {
    font-family: var(--font-body);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    display: block;
    margin-top: 0.5rem;
}

.top-left-label {
    position: absolute;
    top: 2rem;
    left: 2rem;
    font-family: var(--font-body);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--white);
    z-index: 5;
}

.grid-row {
    display: flex;
    width: 100%;
}

.split-60-40 .left-60 { width: 60%; border-right: 1px solid var(--divider); }
.split-60-40 .right-40 { width: 40%; }
.split-40-60 .left-40 { width: 40%; border-right: 1px solid var(--divider); }
.split-40-60 .right-60 { width: 60%; }

.with-text .card-overlay-full {
    position: absolute;
    bottom: 3rem;
    left: 3rem;
    z-index: 5;
}

.massive-card-title {
    font-family: var(--font-hero);
    font-size: clamp(3rem, 8vw, 8rem);
    line-height: 0.9;
}

/* FILM SECTION */
.film-card {
    position: relative;
    width: 100%;
    height: 80vh;
    border-bottom: 1px solid var(--divider);
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: block;
}

.film-card:hover .lazy-video {
    filter: brightness(1.1) scale(1.02);
}


.film-card-inner {
    display: flex;
    width: 100%;
    height: 100%;
}

.film-left {
    width: 65%;
    background-color: #111111;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.noise-texture {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: url('data:image/svg+xml,%3Csvg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noiseFilter"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.65" numOctaves="3" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23noiseFilter)" opacity="0.05"/%3E%3C/svg%3E');
    pointer-events: none;
}

.film-placeholder-text {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    color: var(--grey);
    font-size: 1.5rem;
    z-index: 2;
}

.film-right {
    width: 35%;
    background-color: var(--black);
    border-left: 1px solid var(--green);
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 2rem;
}

.vertical-title {
    font-family: var(--font-hero);
    font-size: clamp(2.5rem, 5vw, 6.5rem);
    line-height: 0.85;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
    word-break: break-word;
}

/* ── VERTICAL REELS SECTION ── */
.verticals-section {
    background-color: var(--black);
    padding: 4rem 0 6rem 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--divider);
}

.verticals-header {
    padding: 2rem 4rem 3rem 4rem;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.verticals-title {
    font-family: var(--font-hero);
    font-size: clamp(3.5rem, 7vw, 8rem);
    line-height: 0.9;
}

.verticals-sub {
    font-family: var(--font-body);
    font-size: 0.75rem;
    letter-spacing: 0.18em;
    color: var(--grey);
    text-transform: uppercase;
    max-width: 220px;
    text-align: right;
}

/* Horizontal scrolling track */
.verticals-track-wrap {
    overflow-x: auto;
    overflow-y: visible;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 0 4rem 2rem 4rem;
}

.verticals-track-wrap::-webkit-scrollbar {
    display: none;
}

.verticals-track {
    display: flex;
    gap: 1.5rem;
    width: max-content;
    padding-bottom: 1rem;
}

/* Each vertical card — 9:16 portrait ratio */
.vertical-card {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    flex-shrink: 0;
    width: 240px;
}

.vertical-num {
    font-family: var(--font-hero);
    font-size: clamp(3rem, 6vw, 5rem);
    color: rgba(255,255,255,0.07);
    line-height: 1;
    letter-spacing: -0.02em;
    transition: color 0.3s ease;
}

.vertical-card:hover .vertical-num {
    color: var(--accent);
}

/* 9:16 frame */
.vertical-frame {
    position: relative;
    width: 240px;
    height: 426px; /* 240 * 16/9 = 426.67 */
    border-radius: 4px;
    overflow: hidden;
    background: #0d0d0d;
    border: 1px solid var(--divider);
    transition: border-color 0.3s ease, transform 0.4s ease;
}

.vertical-card:hover .vertical-frame {
    border-color: var(--accent);
    transform: translateY(-6px);
}

.vertical-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.vertical-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 50%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.vertical-card:hover .vertical-overlay {
    opacity: 1;
}

.vertical-label {
    font-family: var(--font-hero);
    font-size: 1rem;
    color: var(--white);
    display: block;
}

.vertical-tag {
    font-family: var(--font-body);
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    color: var(--accent);
    text-transform: uppercase;
    display: block;
    margin-top: 0.25rem;
}

/* Placeholder cards */
.vertical-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: repeating-linear-gradient(
        45deg,
        #0d0d0d,
        #0d0d0d 10px,
        #111 10px,
        #111 20px
    );
}

.placeholder-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    opacity: 0.4;
    transition: opacity 0.3s ease;
}

.vertical-card:hover .placeholder-inner {
    opacity: 0.7;
}

.placeholder-icon {
    font-size: 2.5rem;
    color: var(--white);
    font-weight: 300;
    line-height: 1;
}

.placeholder-text {
    font-family: var(--font-body);
    font-size: 0.6rem;
    letter-spacing: 0.25em;
    color: var(--grey);
    text-transform: uppercase;
}

/* ABOUT SECTION */
.about-section {
    background-color: #111111;
    padding: 6rem 2rem 2rem 2rem;
    position: relative;
}

.about-content {
    display: flex;
    gap: 4rem;
    margin-top: 4rem;
    margin-bottom: 4rem;
}

.about-left {
    width: 40%;
}

.about-logo {
    height: 60px;
    margin-bottom: 2rem;
}

.about-fallback-logo {
    font-size: 3rem;
    margin-bottom: 2rem;
}

.about-role {
    font-family: var(--font-hero);
    font-size: clamp(3rem, 5vw, 5rem);
    line-height: 0.9;
}

.about-role-sub {
    font-family: var(--font-hero);
    font-size: clamp(2rem, 4vw, 4rem);
    line-height: 0.9;
    margin-bottom: 1rem;
}

.about-tagline {
    font-size: 0.85rem;
    color: var(--grey);
    margin-bottom: 3rem;
}

.profile-photo-wrapper {
    width: 200px;
    height: 200px;
    border: 1px solid var(--green);
    padding: 5px;
}

.profile-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter 0.4s ease;
}

.profile-photo:hover {
    filter: grayscale(0%);
}

.about-right {
    width: 60%;
}

.about-copy {
    max-width: 600px;
}

.about-copy p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: #DDDDDD;
}

.services-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem 0;
    border-top: 1px solid var(--divider);
    border-bottom: 1px solid var(--divider);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--grey);
}

.service-item {
    transition: color 0.3s ease;
    cursor: default;
}

.service-item:hover {
    color: var(--green);
}

/* CONTACT SECTION */
.contact-section {
    padding: 2rem 2rem 0 2rem;
    background-color: var(--black);
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.massive-contact-title {
    font-family: var(--font-hero);
    font-size: clamp(4rem, 10vw, 12rem);
    line-height: 0.9;
    margin-top: 0;
    margin-bottom: 3rem;
}

.contact-form-container {
    max-width: 600px;
    margin-bottom: 4rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--divider);
    padding: 1rem 0;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 1rem;
    border-radius: 0;
    appearance: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-bottom-color: var(--green);
    box-shadow: 0 10px 10px -10px rgba(170, 255, 0, 0.2);
}

.submit-btn {
    background: transparent;
    border: 1px solid var(--green);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    padding: 1rem 3rem;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: color 0.3s ease;
    margin-top: 1rem;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-color: var(--green);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
    z-index: -1;
}

.submit-btn:hover { color: var(--black); }
.submit-btn:hover::before { transform: scaleX(1); }

/* PREMIUM SEND BUTTON */
.send-btn {
    width: 100%;
    padding: 1.75rem 2rem;
    margin-top: 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-hero);
    font-size: clamp(1.25rem, 3vw, 2rem);
    letter-spacing: 0.05em;
    border: 1px solid rgba(170, 255, 0, 0.3);
    background: transparent;
    color: var(--white);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: color 0.5s ease, border-color 0.5s ease;
}

.send-btn::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: var(--green);
    transition: left 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 0;
}

.send-btn:hover {
    color: var(--black);
    border-color: var(--green);
}

.send-btn:hover::before {
    left: 0;
}

.send-btn-text,
.send-btn-arrow {
    position: relative;
    z-index: 1;
}

.send-btn-arrow {
    font-size: 1.5rem;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.contact-email-wrapper {
    margin-bottom: 4rem;
}

.massive-email {
    font-family: var(--font-hero);
    font-size: clamp(2rem, 6vw, 6rem);
    color: var(--white);
    transition: color 0.3s ease;
}

.massive-email:hover {
    color: var(--green);
}

.footer-barcode {
    margin-top: auto;
}

/* FOOTER SYSTEM */
.footer-wrap {
    background-color: var(--black);
    padding: 6rem 2rem 4rem 2rem;
    border-top: 1px solid var(--divider);
    position: relative;
    z-index: 10;
}

.footer-top-meta {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    padding-bottom: 6rem;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--grey);
}

.footer-top-meta .center { text-align: center; }
.footer-top-meta .right { text-align: right; }

.go-top-circle {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
    transition: color 0.3s ease;
}

.go-top-circle:hover { color: var(--green); }

.footer-main {
    display: flex;
    flex-direction: column;
}

.footer-branding {
    display: flex;
    align-items: flex-end;
    gap: 2.5rem;
    margin-bottom: 8rem;
}

.footer-big-logo {
    height: 50px;
    filter: brightness(1.2);
}

.footer-brand-info {
    display: flex;
    flex-direction: column;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
}

.footer-brand-info .label { color: var(--grey); margin-bottom: 0.25rem; }
.footer-brand-info .tagline { font-weight: 700; color: var(--white); text-transform: uppercase; }

.footer-wave-container {
    width: 100%;
    height: 120px;
    margin-bottom: 6rem;
    position: relative;
    overflow: hidden;
}

.footer-wave {
    width: 100%;
    height: 100%;
}

.wave-path {
    fill: none;
    stroke: var(--green);
    stroke-width: 0.5;
    opacity: 0.4;
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: waveFlow 15s linear infinite;
}

.wave-path.w2 { animation-duration: 12s; opacity: 0.2; }
.wave-path.w3 { animation-duration: 18s; opacity: 0.1; }

@keyframes waveFlow {
    to { stroke-dashoffset: -1000; }
}

.footer-bottom-grid {
    display: grid;
    grid-template-columns: 1fr 2fr 1.5fr;
    align-items: flex-end;
    gap: 4rem;
}

.small-info {
    font-size: 0.6rem;
    line-height: 2;
    color: var(--grey);
    max-width: 280px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-cta {
    font-family: var(--font-hero);
    font-size: clamp(3rem, 7vw, 7.5rem);
    line-height: 0.85;
    color: #E0E0E0;
    letter-spacing: -0.02em;
}

.contact-box {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.contact-label {
    font-size: 0.6rem;
    color: var(--grey);
    margin-bottom: 1.5rem;
    letter-spacing: 0.3em;
}

.footer-email {
    font-size: clamp(1.5rem, 3.5vw, 3rem);
    color: var(--white);
    border-bottom: 1px solid rgba(255,255,255,0.2);
    padding-bottom: 0.75rem;
    margin-bottom: 2.5rem;
    transition: all 0.4s ease;
    display: inline-block;
}

.footer-email:hover {
    color: var(--green);
    border-color: var(--green);
    padding-right: 1rem;
}

.footer-socials {
    display: flex;
    gap: 1.25rem;
}

.social-btn {
    width: 50px;
    height: 50px;
    border: 1px solid var(--divider);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    color: var(--white);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    background: rgba(255,255,255,0.03);
}

.social-btn:hover {
    border-color: var(--green);
    color: var(--green);
    transform: translateY(-8px);
    background: rgba(170, 255, 0, 0.05);
}

@media (max-width: 1024px) {
    .footer-bottom-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .small-info, .footer-cta, .contact-box {
        max-width: 100%;
        align-items: center;
        text-align: center;
    }
    
    .footer-branding {
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-bottom: 4rem;
    }
}

/* ANIMATION CLASSES */
.observe-fade {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* When blur-in is combined with observe-fade, blur-in takes priority */
.observe-fade.blur-in {
    opacity: 0;
    filter: blur(10px);
    transform: translateY(20px);
    transition:
        opacity   1.8s cubic-bezier(0.16, 1, 0.3, 1),
        filter    1.8s cubic-bezier(0.16, 1, 0.3, 1),
        transform 1.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.observe-scale {
    transform: scale(0.8);
    opacity: 0;
    transition: transform 0.8s ease, opacity 0.8s ease;
}

.observe-scale.is-visible {
    transform: scale(1);
    opacity: 0.15;
}

/* ── BLUR-IN TEXT ENTRANCE ──────────────────────────────
   Main texts: blur(10px) → blur(0) over 1.5s on scroll-in
──────────────────────────────────────────────────────── */
.blur-in {
    opacity: 0;
    filter: blur(10px);
    transform: translateY(20px);
    transition:
        opacity   1.8s cubic-bezier(0.16, 1, 0.3, 1),
        filter    1.8s cubic-bezier(0.16, 1, 0.3, 1),
        transform 1.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: filter, opacity, transform;
}

.blur-in.is-visible {
    opacity: 1;
    filter: blur(0px);
    transform: translateY(0);
}

/* Stagger delays for sequential reveals */
.blur-in[data-delay="1"] { transition-delay: 200ms; }
.blur-in[data-delay="2"] { transition-delay: 400ms; }
.blur-in[data-delay="3"] { transition-delay: 600ms; }
.blur-in[data-delay="4"] { transition-delay: 800ms; }

/* Honour reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    .blur-in {
        filter: none;
        transform: none;
        transition: opacity 800ms ease;
    }
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .grid-row {
        flex-direction: column;
    }
    
    .split-60-40 .left-60, .split-60-40 .right-40,
    .split-40-60 .left-40, .split-40-60 .right-60 {
        width: 100%;
        border-right: none;
    }
    
    .film-card-inner {
        flex-direction: column;
    }
    
    .film-left, .film-right {
        width: 100%;
    }
    
    .film-left {
        height: 60%;
    }
    
    .film-right {
        height: 40%;
        border-left: none;
        border-top: 1px solid var(--green);
        justify-content: center;
        padding: 0;
    }
    
    .vertical-title {
        flex-direction: row;
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .nav-links, .cta-button {
        display: none;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .hero-title .bleeds {
        width: 100%;
    }
    
    .hero-right-pills {
        display: none; /* Hide pills on small mobile or reposition */
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .about-left, .about-right {
        width: 100%;
    }
    
    .design-row {
        flex-direction: column;
        height: auto;
    }
    
    .design-card {
        height: 50vh;
        border-right: none;
    }
}

@media (min-width: 1440px) {
    .hero, .type-card, .split-section, .about-section, .contact-section {
        max-width: 1920px;
        margin: 0 auto;
    }
}

/* PROJECT DETAIL PAGE */
.project-detail-page {
    padding-top: 100px;
    /* Ensure no element blocks scroll on project pages */
    overflow-x: hidden;
}

/* Guarantee info + credits sections are scrollable */
.project-info-section,
.project-credits-wrap,
.project-description {
    position: relative;
    z-index: 1;
    pointer-events: auto;
}

.project-hero {
    padding: 0 2rem 4rem 2rem;
}

.project-header {
    margin-bottom: 4rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.project-category {
    font-size: 0.75rem;
    color: var(--green);
    text-transform: uppercase;
    letter-spacing: 0.3em;
    margin-bottom: 1rem;
    display: block;
}

.project-title {
    font-family: var(--font-hero);
    font-size: clamp(3rem, 10vw, 12rem);
    line-height: 0.85;
    text-transform: uppercase;
}

.project-meta-top {
    text-align: right;
    font-size: 0.75rem;
    color: var(--grey);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.video-player-section {
    width: 100%;
    background-color: #000;
    position: relative;
    z-index: 1;
    margin-bottom: 6rem;
    border-top: 1px solid var(--divider);
    border-bottom: 1px solid var(--divider);
}

.video-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    max-height: 90vh;
    background: #000;
    overflow: hidden;
}

.main-video {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.video-controls {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-container:hover .video-controls {
    opacity: 1;
}

.control-group {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.player-btn {
    background: rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--white);
    padding: 0.75rem 1.25rem;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.player-btn:hover {
    border-color: var(--green);
    color: var(--green);
}

.progress-bar-container {
    flex: 1;
    height: 2px;
    background: rgba(255,255,255,0.1);
    margin: 0 2rem;
    position: relative;
    cursor: pointer;
}

.progress-filled {
    position: absolute;
    top: 0; left: 0; height: 100%;
    background: var(--green);
    width: 0%;
}

.project-info-section {
    padding: 0 2rem 6rem 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
}

/* NEXT PROJECT NAV */
.next-project-nav {
    padding: 8rem 2rem;
    border-top: 1px solid var(--divider);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 2rem;
    background-color: var(--black);
    transition: background-color 0.5s ease;
}

.next-project-nav:hover {
    background-color: #111; /* subtle highlight */
}

.next-project-label {
    font-size: 0.85rem;
    color: var(--green);
    text-transform: uppercase;
    letter-spacing: 0.4em;
    font-weight: 600;
}

.next-project-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    text-decoration: none;
    color: var(--white);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    width: 100%;
}

.next-project-link:hover {
    color: var(--green);
}

.next-project-title {
    font-family: var(--font-hero);
    font-size: clamp(3rem, 8vw, 10rem);
    line-height: 1;
    text-transform: uppercase;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.next-project-link:hover .next-project-title {
    transform: scale(1.02);
}

.next-arrow {
    width: clamp(40px, 8vw, 80px);
    height: clamp(40px, 8vw, 80px);
    border: 1px solid currentColor;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(1rem, 2vw, 2rem);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.next-project-link:hover .next-arrow {
    background: var(--green);
    border-color: var(--green);
    color: var(--black);
    transform: rotate(-45deg);
}

.project-description {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #CCCCCC;
}

.project-description p {
    margin-bottom: 2rem;
}

.project-credits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    border-top: 1px solid var(--divider);
    padding-top: 2rem;
}

.credit-item {
    display: flex;
    flex-direction: column;
}

.credit-label {
    font-size: 0.65rem;
    color: var(--grey);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 0.5rem;
}

.credit-name {
    font-size: 0.9rem;
    color: var(--white);
}

@media (max-width: 768px) {
    .project-info-section {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .project-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
    }
}

/* ─────────────────────────────────────────────
   COMPREHENSIVE MOBILE RESPONSIVE SYSTEM
   All rules are mobile-only — desktop unchanged
───────────────────────────────────────────── */

/* ── GLOBAL ── */
@media (max-width: 768px) {
    html { font-size: 15px; }

    /* ── NAVIGATION ── */
    .main-nav { padding: 1rem 1.25rem; }
    .nav-links, .cta-button { display: none; }
    .menu-toggle { display: block; }
    .nav-logo img { height: 32px; }

    /* ── HERO ── */
    .hero { height: 100svh; }

    .hero-content--center {
        padding: 0 1rem;
        top: 50%;
    }

    .hero-title {
        font-size: clamp(2.5rem, 14vw, 8rem) !important;
        white-space: normal !important;
        text-align: center;
        line-height: 0.9;
    }

    .hero-subtitle {
        font-size: 0.85rem;
        text-align: center;
    }

    .hero-right-pills { display: none; }
    .version-label { display: none; }

    .bottom-bar-meta {
        padding: 0 1rem;
        font-size: 0.6rem;
    }

    /* ── TOP-BAR META ── */
    .top-bar-meta {
        padding: 0.75rem 1rem;
        font-size: 0.55rem;
        gap: 0;
    }
    .top-bar-meta .category { display: none; }

    /* ── TYPE CARD / WORK SECTION ── */
    .type-card { padding: 3rem 1.25rem; }
    .massive-type {
        font-size: clamp(2.5rem, 10vw, 5rem);
        line-height: 1.1;
    }

    /* ── AI VIDEO GRID — NO CROPPING ── */
    .video-grid { padding: 0; }

    /* Stack split rows */
    .grid-row { flex-direction: column; }

    .split-60-40 .left-60,
    .split-60-40 .right-40,
    .split-40-60 .left-40,
    .split-40-60 .right-60 {
        width: 100%;
        border-right: none;
    }

    /* Use aspect-ratio so full video is visible, no cropping */
    .grid-card,
    .grid-card.full-width,
    .split-60-40 .left-60,
    .split-60-40 .right-40,
    .split-40-60 .left-40,
    .split-40-60 .right-60 {
        height: auto !important;
        min-height: unset !important;
        aspect-ratio: 16 / 9;
        overflow: hidden;
    }

    /* Make video wrapper fill the aspect-ratio box */
    .grid-card .video-wrapper {
        position: absolute;
        top: 0; left: 0;
        width: 100%; height: 100%;
    }

    /* Show full video, no crop */
    .grid-card .lazy-video {
        width: 100%;
        height: 100%;
        object-fit: contain;
        background: #000;
    }

    .card-title { font-size: 1.1rem; }
    .massive-card-title { font-size: clamp(1.75rem, 8vw, 3rem); }

    /* ── FILM CARDS — NO CROPPING ── */
    .film-card {
        height: auto !important;
        min-height: unset !important;
    }

    .film-card-inner { flex-direction: column; }

    .film-left {
        width: 100%;
        height: auto;
        aspect-ratio: 16 / 9;
        position: relative;
    }

    /* Film video fills its aspect-ratio box fully */
    .film-left video.lazy-video {
        position: absolute;
        top: 0; left: 0;
        width: 100%;
        height: 100%;
        object-fit: contain !important;
        background: #000;
    }

    .film-right {
        width: 100%;
        height: auto;
        border-left: none;
        border-top: 1px solid var(--green);
        padding: 1.5rem 1rem;
        justify-content: center;
    }

    .vertical-title {
        flex-direction: row;
        font-size: clamp(1.5rem, 8vw, 3rem);
        gap: 0.75rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    /* ── VERTICALS ── */
    .verticals-header {
        flex-direction: column !important;
        align-items: flex-start !important;
        padding: 3rem 1.25rem 2rem 1.25rem !important;
        gap: 1.5rem !important;
    }

    .verticals-title {
        font-size: clamp(3rem, 12vw, 5rem) !important;
        text-align: left !important;
    }

    .verticals-sub {
        text-align: left !important;
        max-width: 100% !important;
        font-size: 0.8rem !important;
    }

    .verticals-track-wrap {
        padding: 0 1.25rem 3rem 1.25rem !important;
    }

    /* ── ABOUT SECTION ── */
    .about-section { padding: 5rem 1.25rem 2rem; }
    .about-content { flex-direction: column; gap: 2rem; margin-top: 2rem; }
    .about-left, .about-right { width: 100%; }
    .about-role { font-size: clamp(2rem, 10vw, 4rem); }
    .profile-photo-wrapper { width: 140px; height: 140px; }
    .services-row { gap: 1rem; font-size: 0.6rem; }

    /* ── CONTACT SECTION ── */
    .contact-section { padding: 1.5rem 1.25rem 0; }
    .massive-contact-title { font-size: clamp(2rem, 10vw, 5rem); margin-top: 2rem; }
    .contact-form-container { max-width: 100%; }
    .massive-email { font-size: clamp(1.25rem, 6vw, 3rem); word-break: break-all; }

    /* ── FOOTER ── */
    .footer-wrap { padding: 3rem 1.25rem 3rem; }

    .footer-top-meta {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
        padding-bottom: 3rem;
    }
    .footer-top-meta .right { display: none; }

    .footer-branding {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        margin-bottom: 3rem;
    }
    .footer-big-logo { height: 36px; }

    .footer-wave-container { height: 70px; margin-bottom: 3rem; }

    .footer-bottom-grid { grid-template-columns: 1fr; gap: 2.5rem; }

    .footer-cta { font-size: clamp(2rem, 10vw, 5rem); }

    .contact-box { align-items: flex-start; }
    .footer-email { font-size: clamp(1rem, 5vw, 2rem); }

    .footer-socials { gap: 0.75rem; }
    .social-btn { width: 42px; height: 42px; font-size: 0.6rem; }

    /* ── NEXT PROJECT NAV ── */
    .next-project-nav {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
        padding: 3rem 1.25rem 5rem;
    }
    .next-project-title { font-size: clamp(1.75rem, 10vw, 4rem); }
    .next-arrow { width: 56px; height: 56px; }

    /* ── PROJECT DETAIL PAGES ── */
    .project-detail-page { padding-top: 80px; }
    .project-hero { padding: 0 1.25rem 2rem; }
    .project-info-section {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 0 1.25rem 4rem;
    }
    .project-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }
    .project-title { font-size: clamp(2rem, 10vw, 5rem); }

    /* Project page video — no cropping on mobile */
    .video-container {
        aspect-ratio: 16 / 9;
        max-height: none;
    }
    .main-video { object-fit: contain; background: #000; }

    .video-controls { opacity: 1; }
}

/* ── SMALL PHONES (≤480px) ── */
@media (max-width: 480px) {
    .hero-title {
        font-size: clamp(2rem, 16vw, 5rem) !important;
    }

    .top-bar-meta .date { display: none; }

    .footer-top-meta { grid-template-columns: 1fr; text-align: center; }
    .go-top-circle { justify-content: center; }

    .project-credits { grid-template-columns: 1fr; }

    .send-btn { font-size: 1rem; padding: 1.25rem 1rem; }

    .video-controls {
        bottom: 0.5rem;
        left: 0.5rem;
        right: 0.5rem;
    }
    .player-btn { padding: 0.5rem 0.75rem; font-size: 0.6rem; }
}



/* ═══════════════════════════════════════════
   FLOATING DOCK
   Always fixed at bottom center, above footer
═══════════════════════════════════════════ */
.site-dock {
    position: fixed;
    bottom: 1.75rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.5rem 0.6rem;
    background: rgba(10, 10, 10, 0.82);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    box-shadow:
        0 8px 40px rgba(0,0,0,0.6),
        0 1px 0 rgba(255,255,255,0.06) inset;
    animation: dockReveal 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
    animation-delay: 0.4s;
}

@keyframes dockReveal {
    from { opacity: 0; transform: translateX(-50%) translateY(20px); }
    to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* Logo pill */
.dock-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    flex-shrink: 0;
    margin-right: 0.25rem;
}

.dock-logo img {
    height: 22px;
    width: auto;
    display: block;
}

.dock-logo:hover {
    background: rgba(170,255,0,0.12);
    border-color: var(--green);
    transform: scale(1.08);
}

/* Divider between logo and buttons */
.dock-divider {
    width: 1px;
    height: 24px;
    background: rgba(255,255,255,0.1);
    margin: 0 0.35rem;
    flex-shrink: 0;
}

/* Nav buttons */
.dock-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.55rem 1.1rem;
    border-radius: 999px;
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    border: 1px solid transparent;
    background: transparent;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    white-space: nowrap;
    cursor: pointer;
}

.dock-btn:hover {
    color: var(--white);
    background: rgba(255,255,255,0.07);
    border-color: rgba(255,255,255,0.12);
}

.dock-btn.active {
    color: var(--black);
    background: var(--green);
    border-color: var(--green);
}

.dock-btn.contact-btn {
    background: var(--green);
    color: var(--black);
    border-color: var(--green);
    margin-left: 0.25rem;
}

.dock-btn.contact-btn:hover {
    background: var(--white);
    color: var(--black);
    border-color: var(--white);
}

.dock-btn.active:hover {
    background: #BFFF33;
    border-color: #BFFF33;
}

/* Mobile dock */
@media (max-width: 480px) {
    .site-dock {
        bottom: 1rem;
        padding: 0.4rem 0.5rem;
        gap: 0.1rem;
    }

    .dock-logo {
        width: 38px;
        height: 38px;
    }

    .dock-logo img { height: 18px; }

    .dock-btn {
        padding: 0.45rem 0.7rem;
        font-size: 0.6rem;
        letter-spacing: 0.08em;
    }

    .dock-divider { margin: 0 0.2rem; }
}

/* ── TEXT PULSE BLUR ON STATE SWITCH ── */
@keyframes textBlurPulse {
    0% { filter: blur(0px); }
    50% { filter: blur(5px); }
    100% { filter: blur(0px); }
}

.text-blur-pulse {
    animation: textBlurPulse 400ms cubic-bezier(0.16, 1, 0.3, 1) forwards !important;
}
