/* ========================================
   CSS Variables & Base Styles
======================================== */
:root {
    --bg-primary: #0a0a0a;
    --bg-secondary: #111111;
    --text-primary: #ffffff;
    --text-secondary: #888888;
    --text-muted: #555555;
    --accent: #e8e8e8;
    --border: #222222;
    
    --font-display: 'Syne', sans-serif;
    --font-body: 'Outfit', sans-serif;
    
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

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

html {
    scroll-behavior: smooth;
}

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

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

button {
    cursor: none;
}

/* ========================================
   Custom Cursor
======================================== */
.cursor {
    width: 16px;
    height: 16px;
    background: var(--text-primary);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: difference;
    transform: translate(-50%, -50%);
    transition: transform 0.15s var(--ease-out), width 0.2s, height 0.2s;
}

.cursor.hover {
    width: 48px;
    height: 48px;
}

/* ========================================
   Navigation
======================================== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 4rem;
    z-index: 100;
    mix-blend-mode: difference;
}

.logo {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.1em;
}

.nav-links {
    display: flex;
    gap: 3rem;
}

.nav-links a {
    font-size: 0.875rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 4px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--text-primary);
    transition: width 0.3s var(--ease-out);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    position: fixed;
    top: 1.5rem;
    right: 2rem;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    padding: 10px;
    z-index: 10000;
}

.hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: transform 0.3s var(--ease-out), opacity 0.3s;
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
    display: none;
    isolation: isolate;
}

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

.mobile-nav-links a {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s var(--ease-out), transform 0.4s var(--ease-out), color 0.2s;
}

.mobile-nav.active .mobile-nav-links a {
    opacity: 1;
    transform: translateY(0);
}

.mobile-nav.active .mobile-nav-links a:nth-child(1) { transition-delay: 0.1s; }
.mobile-nav.active .mobile-nav-links a:nth-child(2) { transition-delay: 0.15s; }
.mobile-nav.active .mobile-nav-links a:nth-child(3) { transition-delay: 0.2s; }
.mobile-nav.active .mobile-nav-links a:nth-child(4) { transition-delay: 0.25s; }

.mobile-nav-links a:hover {
    color: var(--text-secondary);
}

/* ========================================
   Hero Section
======================================== */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

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

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

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(10, 10, 10, 0.3) 0%,
        rgba(10, 10, 10, 0.5) 50%,
        rgba(10, 10, 10, 1) 100%
    );
}

.hero-content {
    padding: 0 4rem;
    max-width: 1000px;
    animation: fadeUp 1s var(--ease-out) 0.3s both;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    padding: 0.75rem 1.5rem;
    border: 1px solid var(--border);
    border-radius: 100px;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 7rem);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin-bottom: 2rem;
}

.hero-title .highlight {
    color: transparent;
    -webkit-text-stroke: 1px var(--text-primary);
    font-style: italic;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    font-weight: 300;
}

.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 4rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: fadeUp 1s var(--ease-out) 0.8s both;
}

.scroll-indicator span {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-secondary);
}

.scroll-line {
    width: 60px;
    height: 1px;
    background: var(--text-muted);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 30px;
    height: 100%;
    background: var(--text-primary);
    animation: scrollLine 2s var(--ease-in-out) infinite;
}

@keyframes scrollLine {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(200%);
    }
}

/* ========================================
   Section Common Styles
======================================== */
.section-number {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    letter-spacing: -0.02em;
}

/* ========================================
   Featured Reel Section
======================================== */
.reel {
    padding: 8rem 4rem;
}

.reel-header {
    margin-bottom: 3rem;
}

.reel-video-wrapper {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 4px;
    background: var(--bg-secondary);
}

.reel-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out);
}

.reel-video-wrapper:hover .reel-video {
    transform: scale(1.02);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: var(--text-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: transform 0.3s var(--ease-out), background 0.3s;
}

.play-button svg {
    width: 24px;
    height: 24px;
    color: var(--bg-primary);
    margin-left: 4px;
}

.play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.reel-caption {
    margin-top: 1.5rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
    text-align: center;
}

/* ========================================
   Work Grid Section
======================================== */
.work {
    padding: 8rem 4rem;
    background: var(--bg-secondary);
}

.work-header {
    margin-bottom: 4rem;
}

.work-intro {
    margin-top: 1.5rem;
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 600px;
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.work-item {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    background: var(--bg-primary);
}

.work-item.large {
    grid-column: span 2;
}

.work-item.wide {
    grid-column: span 2;
}

.work-video-container {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.work-item.large .work-video-container {
    aspect-ratio: 21 / 9;
}

.work-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease-out), opacity 0.3s;
    opacity: 0.7;
}

.work-item:hover video {
    transform: scale(1.05);
    opacity: 1;
}

/* Work Thumbnail */
.work-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    transition: opacity 0.4s var(--ease-out);
}

.work-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease-out);
}

.work-item:hover .work-thumbnail img {
    transform: scale(1.05);
}

.work-thumbnail.hidden {
    opacity: 0;
    pointer-events: none;
}

.work-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    padding-top: 4rem;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.6) 50%, transparent 100%);
    transition: padding 0.4s var(--ease-out);
    z-index: 3;
}

.work-item:hover .work-info {
    padding-top: 5rem;
}

.work-category {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s var(--ease-out), transform 0.3s var(--ease-out);
}

.work-item:hover .work-category {
    opacity: 1;
    transform: translateY(0);
}

.work-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    opacity: 1;
    transform: translateY(0);
    transition: transform 0.3s var(--ease-out);
}

.work-year {
    font-size: 0.875rem;
    color: var(--text-muted);
    opacity: 0;
    transform: translateY(10px);
    max-height: 0;
    overflow: hidden;
    transition: opacity 0.3s var(--ease-out) 0.05s, transform 0.3s var(--ease-out) 0.05s, max-height 0.3s var(--ease-out);
}

.work-item:hover .work-year {
    opacity: 1;
    transform: translateY(0);
    max-height: 2rem;
}

.work-link {
    display: block;
}

.view-case {
    position: absolute;
    top: 2rem;
    right: 2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.4s var(--ease-out), transform 0.4s var(--ease-out), background 0.3s;
}

.view-case svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s var(--ease-out);
}

.work-item:hover .view-case {
    opacity: 1;
    transform: translateY(0);
}

.work-item:hover .view-case:hover {
    background: rgba(255, 255, 255, 0.2);
}

.work-item:hover .view-case:hover svg {
    transform: translateX(4px);
}

/* Work Loading & Empty States */
.work-loading,
.work-error {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem 2rem;
    color: var(--text-secondary);
    font-size: 1rem;
}

.work-empty {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--text-secondary);
}

.work-empty p {
    font-size: 1.125rem;
}

/* ========================================
   About Section
======================================== */
.about {
    padding: 8rem 4rem;
}

.about-header {
    margin-bottom: 4rem;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.about-text {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.about-lead {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 500;
    line-height: 1.3;
}

.about-descriptions {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-description {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 0;
    max-width: none;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 3rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.stat {
    text-align: center;
    padding: 1.5rem;
    position: relative;
}

.stat:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60%;
    background: var(--border);
}

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

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.services {
    padding-top: 4rem;
}

.services-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.services-list {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
    list-style: none;
}

.services-list li {
    font-size: 0.95rem;
    color: var(--text-secondary);
    padding: 1.25rem 1rem;
    border: 1px solid var(--border);
    border-radius: 4px;
    text-align: center;
    transition: color 0.3s, background 0.3s, border-color 0.3s;
}

.services-list li:hover {
    color: var(--text-primary);
    background: var(--bg-secondary);
    border-color: var(--text-muted);
}

/* ========================================
   Journal Preview Section
======================================== */
.journal-preview {
    padding: 8rem 4rem;
}

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

.journal-header-text {
    flex: 1;
}

.journal-intro {
    margin-top: 1.5rem;
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 500px;
}

.journal-view-all {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-secondary);
    padding: 0.875rem 1.5rem;
    border: 1px solid var(--border);
    border-radius: 100px;
    transition: all 0.3s var(--ease-out);
    white-space: nowrap;
}

.journal-view-all svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s var(--ease-out);
}

.journal-view-all:hover {
    color: var(--text-primary);
    border-color: var(--text-secondary);
}

.journal-view-all:hover svg {
    transform: translateX(4px);
}

.journal-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* Journal Card */
.journal-card {
    position: relative;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s var(--ease-out);
}

.journal-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 20px 40px -20px rgba(0, 0, 0, 0.4);
}

.journal-card-image {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.journal-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out);
}

.journal-card:hover .journal-card-image img {
    transform: scale(1.05);
}

.journal-card-image .no-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.journal-card-image .no-image svg {
    width: 40px;
    height: 40px;
    color: var(--text-muted);
    opacity: 0.3;
}

.journal-card-content {
    padding: 1.5rem;
}

.journal-card-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.875rem;
}

.journal-card-meta span {
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.journal-card-meta .category {
    padding: 0.25rem 0.625rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 100px;
    color: var(--text-secondary);
}

.journal-card-title {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 0.75rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.journal-card-title a {
    transition: opacity 0.2s;
}

.journal-card-title a:hover {
    opacity: 0.7;
}

.journal-card-excerpt {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.journal-empty {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--text-secondary);
}

.journal-empty p {
    font-size: 1.125rem;
}

/* ========================================
   Contact Section
======================================== */
.contact {
    padding: 10rem 4rem;
    background: var(--bg-secondary);
    text-align: center;
}

.contact-content {
    max-width: 800px;
    margin: 0 auto;
}

.contact .section-number {
    margin-bottom: 2rem;
}

.contact-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 3rem;
}

.contact-email {
    display: inline-block;
    font-family: var(--font-display);
    font-size: clamp(1.25rem, 3vw, 2rem);
    font-weight: 500;
    padding: 1rem 2rem;
    border: 1px solid var(--text-primary);
    border-radius: 100px;
    transition: background 0.3s, color 0.3s;
}

.contact-email:hover {
    background: var(--text-primary);
    color: var(--bg-primary);
}

.social-links {
    margin-top: 4rem;
    display: flex;
    justify-content: center;
    gap: 3rem;
}

.social-link {
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-secondary);
    transition: color 0.3s;
}

.social-link:hover {
    color: var(--text-primary);
}

/* ========================================
   Footer
======================================== */
.footer {
    display: flex;
    justify-content: space-between;
    padding: 2rem 4rem;
    font-size: 0.75rem;
    color: var(--text-muted);
    border-top: 1px solid var(--border);
}

/* Comprehensive Footer */
.footer-main {
    background: var(--bg-primary);
    border-top: 1px solid var(--border);
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 4rem;
    padding: 5rem 4rem 4rem;
}

.footer-brand {
    max-width: 320px;
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    display: inline-block;
    margin-bottom: 1.25rem;
    transition: opacity 0.3s;
}

.footer-logo:hover {
    opacity: 0.7;
}

.footer-tagline {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.footer-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 50%;
    color: var(--text-secondary);
    transition: all 0.3s var(--ease-out);
}

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

.footer-social-link:hover {
    background: var(--text-primary);
    color: var(--bg-primary);
    border-color: var(--text-primary);
    transform: translateY(-3px);
}

.footer-links-group {
    display: flex;
    flex-direction: column;
}

.footer-heading {
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-primary);
    margin-bottom: 1.75rem;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.footer-links a,
.footer-links span {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    transition: color 0.2s;
}

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

.footer-contact li {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
}

.footer-contact-label {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted) !important;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 4rem;
    border-top: 1px solid var(--border);
}

.footer-copyright {
    font-size: 0.8125rem;
    color: var(--text-muted);
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    font-size: 0.8125rem;
    color: var(--text-muted);
    transition: color 0.2s;
}

.footer-legal a:hover {
    color: var(--text-secondary);
}

/* ========================================
   Responsive Design
======================================== */

/* Tablet & small laptop */
@media (max-width: 1024px) {
    .nav {
        padding: 1.5rem 2rem;
    }
    
    .hero-content,
    .reel,
    .work,
    .about,
    .contact,
    .footer,
    .journal-preview {
        padding-left: 2rem;
        padding-right: 2rem;
    }
    
    .scroll-indicator {
        left: 2rem;
    }
    
    .about-text {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .services-list {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .journal-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        padding: 4rem 2rem 3rem;
    }
    
    .footer-brand {
        grid-column: span 2;
        max-width: 100%;
    }
    
    .footer-bottom {
        padding: 1.5rem 2rem;
    }
}

/* Tablet portrait and mobile */
@media (max-width: 768px) {
    /* Mobile menu visibility */
    .nav-links {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100vh;
        height: 100dvh;
        background: rgba(0, 0, 0, 0.85);
        backdrop-filter: blur(24px) saturate(180%);
        -webkit-backdrop-filter: blur(24px) saturate(180%);
        z-index: 9999;
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity 0.4s var(--ease-out), visibility 0.4s, backdrop-filter 0.4s;
    }
    
    .mobile-nav.active {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }
    
    /* Disable custom cursor on touch devices */
    .cursor {
        display: none;
    }
    
    body {
        cursor: auto;
    }
    
    a, button {
        cursor: pointer;
    }
    
    /* Hero adjustments */
    .hero-content {
        padding: 0 1.5rem;
    }
    
    .hero-tag {
        font-size: 0.65rem;
        padding: 0.625rem 1.25rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-title {
        margin-bottom: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .scroll-indicator {
        left: 1.5rem;
        bottom: 2rem;
    }
    
    /* Work grid */
    .work {
        padding: 5rem 1.5rem;
    }
    
    .work-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .work-item.large,
    .work-item.wide {
        grid-column: span 1;
    }
    
    .work-item.large .work-video-container {
        aspect-ratio: 16 / 9;
    }
    
    /* Show all work info on mobile (no hover) */
    .work-category,
    .work-year {
        opacity: 1;
        transform: translateY(0);
        max-height: 2rem;
    }
    
    .view-case {
        opacity: 1;
        transform: translateY(0);
        position: static;
        display: inline-flex;
        margin-top: 1rem;
        background: rgba(255, 255, 255, 0.15);
    }
    
    .work-info {
        position: relative;
        padding: 1.5rem;
        background: var(--bg-secondary);
    }
    
    /* About section */
    .about {
        padding: 5rem 1.5rem;
    }
    
    .about-lead {
        font-size: 1.5rem;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .stat {
        padding: 1.5rem 0;
        border-bottom: 1px solid var(--border);
    }
    
    .stat:last-child {
        border-bottom: none;
    }
    
    .stat:not(:last-child)::after {
        display: none;
    }
    
    .services-list {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Reel section */
    .reel {
        padding: 5rem 1.5rem;
    }
    
    .play-button {
        width: 70px;
        height: 70px;
    }
    
    .play-button svg {
        width: 18px;
        height: 18px;
    }
    
    /* Journal section */
    .journal-preview {
        padding: 5rem 1.5rem;
    }
    
    .journal-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }
    
    .journal-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .journal-card-title {
        font-size: 1rem;
    }
    
    /* Contact section */
    .contact {
        padding: 6rem 1.5rem;
    }
    
    .contact-title {
        margin-bottom: 2rem;
    }
    
    .contact-email {
        font-size: 1rem;
        padding: 0.875rem 1.5rem;
        word-break: break-word;
    }
    
    .social-links {
        flex-direction: column;
        gap: 1.5rem;
        margin-top: 3rem;
    }
    
    /* Footer */
    .footer-top {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding: 3rem 1.5rem 2.5rem;
    }
    
    .footer-brand {
        grid-column: span 1;
    }
    
    .footer-tagline {
        font-size: 0.875rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
        padding: 1.5rem;
    }
    
    .footer-legal {
        gap: 1.5rem;
    }
    
    /* Ensure minimum touch target sizes (44x44px) */
    .nav-links a,
    .footer-links a,
    .social-link {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
    }
}

/* Small phones */
@media (max-width: 480px) {
    .nav {
        padding: 1rem;
    }
    
    .mobile-menu-toggle {
        top: 1rem;
        right: 1rem;
    }
    
    .logo {
        font-size: 1.1rem;
    }
    
    .hero-content {
        padding: 0 1rem;
    }
    
    .hero-tag {
        font-size: 0.6rem;
        padding: 0.5rem 1rem;
        letter-spacing: 0.15em;
    }
    
    .hero-title {
        font-size: 2.25rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .scroll-indicator {
        left: 1rem;
    }
    
    .section-number {
        font-size: 0.7rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .work,
    .about,
    .reel,
    .journal-preview {
        padding: 4rem 1rem;
    }
    
    .work-header,
    .about-header,
    .reel-header {
        margin-bottom: 2.5rem;
    }
    
    .work-intro,
    .journal-intro {
        font-size: 1rem;
    }
    
    .work-info {
        padding: 1.25rem;
    }
    
    .work-title {
        font-size: 1.25rem;
    }
    
    .about-lead {
        font-size: 1.35rem;
    }
    
    .about-description {
        font-size: 0.9rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .services-list {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .services-list li {
        padding: 1rem;
        font-size: 0.9rem;
    }
    
    .journal-card-content {
        padding: 1.25rem;
    }
    
    .contact {
        padding: 5rem 1rem;
    }
    
    .contact-title {
        font-size: 2rem;
    }
    
    .contact-email {
        font-size: 0.9rem;
        padding: 0.75rem 1.25rem;
    }
    
    .footer-top {
        padding: 2.5rem 1rem 2rem;
        gap: 2rem;
    }
    
    .footer-logo {
        font-size: 1.25rem;
    }
    
    .footer-bottom {
        padding: 1.25rem 1rem;
    }
    
    .footer-legal {
        flex-direction: column;
        gap: 1rem;
    }
    
    .mobile-nav-links a {
        font-size: 1.5rem;
    }
    
    .play-button {
        width: 60px;
        height: 60px;
    }
    
    .play-button svg {
        width: 16px;
        height: 16px;
    }
}

/* Landscape phones - adjust hero height */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        height: auto;
        min-height: 100vh;
        padding: 6rem 0 3rem;
    }
    
    .hero-content {
        padding-top: 2rem;
    }
    
    .scroll-indicator {
        position: relative;
        bottom: auto;
        left: auto;
        margin-top: 2rem;
        padding-left: 1.5rem;
    }
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

