@import url('https://fonts.googleapis.com/css2?family=Unbounded:wght@900&family=Playfair+Display:ital,wght@0,700;1,700&family=Space+Grotesk:wght@300;700&family=Inter:wght@400;700&family=JetBrains+Mono:wght@400&display=swap');



:root {
    --bg-color: #020202;
    --text-color: #ffffff;
    --accent-color: #7b2ff7;
    --accent-glow: rgba(123, 47, 247, 0.5);
    --tech-blue: #00f2ff;
    --tech-red: #ff3e3e;
    --tech-green: #00ffaa;
    --tech-gold: #ffcc00;
    --glass-bg: rgba(255, 255, 255, 0.02);
    --glass-border: rgba(255, 255, 255, 0.08);
    --mono-font: 'JetBrains Mono', monospace;
    --serif-font: 'Playfair Display', serif;
    --display-font: 'Space Grotesk', sans-serif;
    --transition-slow: 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Global Site Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 30px 60px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    z-index: 1000;
    transition: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0;
    pointer-events: none;
    user-select: none;
    mix-blend-mode: difference;
}

.site-header.scrolled {
    opacity: 1;
    pointer-events: all;
}

.header-logo {
    height: 35px;
    width: auto;
    filter: brightness(0) invert(1);
    transition: 0.3s;
}

.logo-link {
    position: absolute !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: #fff;
    pointer-events: auto;
}

.header-brand-text {
    font-family: 'Unbounded', sans-serif;
    font-weight: 900;
    font-size: 1.85rem;
    letter-spacing: -0.05em;
    text-transform: uppercase;
    color: #ffffff;
    opacity: 0;
    white-space: nowrap;
    line-height: 1;
    display: inline-block;
    mix-blend-mode: difference;
    transform: scaleY(1.3);
    transform-origin: center center;
}

.nav-pill-glass {
    position: relative;
    display: flex;
    gap: 10px;
    /* Reduced gap to make it more like a segmented control */
    padding: 6px;
    /* Padding for the frame */
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(25px) saturate(1.5);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 100px;
    font-family: var(--display-font);
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    z-index: 1;
}

.nav-pill-glass a {
    position: relative;
    z-index: 2;
    color: #fff;
    text-decoration: none;
    opacity: 0.6;
    padding: 10px 25px;
    transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: block;
}

.nav-indicator {
    position: absolute;
    top: 6px;
    left: 6px;
    height: calc(100% - 12px);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    z-index: 0;
    transition: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
    opacity: 0;
}

.nav-pill-glass a:hover {
    opacity: 1;
}

.project-page:not(.home-page) .nav-pill-glass {
    margin-right: 70px;
}

.site-header,
.close-btn,
.reconstruction-title h1,
.hero-content h1,
.project-hero-content h1,
.glow-text,
.card-title,
.detail-section h3,
.tech-tag,
.uto-tag,
.data-tag,
.project-meta,
.project-nav,
.credits-list,
.liquid-glass-text {
    user-select: none;
}

@media (max-width: 768px) {
    .site-header {
        padding: 20px 30px;
    }

    .nav-pill-glass {
        display: none;
    }

    .header-logo {
        height: 30px;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% center;
    }

    100% {
        background-position: 200% center;
    }
}

.liquid-glass-text {
    background: linear-gradient(120deg,
            rgba(255, 255, 255, 0) 30%,
            rgba(255, 255, 255, 0.8) 50%,
            rgba(255, 255, 255, 0) 70%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 6s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    position: relative;
    display: inline-block;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

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

html {
    scroll-behavior: smooth;
    background-color: var(--bg-color);
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    background-color: var(--bg-color);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--bg-color);
}

::-webkit-scrollbar-thumb {
    background: var(--accent-color);
    border-radius: 10px;
}

/* Typography */
h1,
h2,
h3 {
    font-family: 'Space Grotesk', sans-serif;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    /* Tighter for modern look */
    font-weight: 700;
}

.glow-text {
    text-shadow: 0 0 20px var(--accent-glow);
}

/* Layout */
section {
    position: relative;
    padding: 0;
}

/* Hero Section */
#hero {
    height: 100vh;
    padding: 0 8%;
    overflow: hidden;
    display: flex;
    align-items: stretch;
    justify-content: center;
    text-align: center;
}

/* Scanning Line Effect */
.scanline {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 242, 255, 0.05) 50%, transparent 100%);
    background-size: 100% 4px;
    z-index: 5;
    pointer-events: none;
    animation: scan 8s linear infinite;
}

@keyframes scan {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(100%);
    }
}

/* Section Guide Markers */
.section-guide {
    position: absolute;
    top: 40px;
    left: 40px;
    width: 20px;
    height: 20px;
    border-top: 1px solid var(--tech-blue);
    border-left: 1px solid var(--tech-blue);
    opacity: 0.3;
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #111;
    /* Dark grey backdrop while video loads */
}

.hero-video-container video,
.hero-video-container .hero-placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), var(--bg-color));
    /* On top of video */
}

.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    height: 100%;
    animation: fadeInUp var(--transition-slow) forwards 0.2s;
    will-change: transform, opacity;
    transform: translate3d(0, 0, 0);
    display: flex;
    flex-direction: column;
}

.hero-top {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: relative;
}

.hero-bottom {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.hero-logo {
    height: clamp(100px, 15vw, 130px);
    width: auto;
    margin-bottom: 20px;
    filter: brightness(0) invert(1) drop-shadow(0 0 40px rgba(255, 255, 255, 0.1));
    animation: fadeInScale 1.5s var(--transition-slow) forwards;
}

.hero-title-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    pointer-events: none;
}

.hero-title-container .hero-top {
    align-items: center;
    justify-content: center;
    padding-top: 0;
    flex: 1 !important;
}

.hero-title-container .hero-bottom {
    display: none !important;
}

.hero-title {
    font-family: 'Unbounded', sans-serif;
    font-weight: 900;
    font-size: 15.5vw;
    line-height: 0.95;
    letter-spacing: -0.05em;
    color: #ffffff;
    text-align: center;
    text-transform: uppercase;
    white-space: nowrap;
    width: 100vw;
    margin: 0;
    display: block;
    mix-blend-mode: difference;
    will-change: transform;
    transform: scaleY(1.3);
    transform-origin: center center;
}

/* Project-specific hero title font-size overrides to prevent horizontal overflow */
.automotive-page .hero-title,
.plane-page .hero-title {
    font-size: 12.5vw;
}

.fortnite-page .hero-title {
    font-size: 13.5vw;
}

.hero-content p {
    font-family: var(--mono-font);
    font-size: clamp(0.6rem, 0.8vw, 0.8rem);
    color: var(--tech-blue);
    letter-spacing: 0.6em;
    text-transform: uppercase;
    font-weight: 400;
    margin-top: 30px;
    opacity: 0.8;
}

/* Professional Decorative Blocks */
.studio-info {
    position: absolute;
    bottom: 60px;
    right: 5%;
    font-size: 0.6rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    text-align: right;
    line-height: 2;
    opacity: 0.3;
    border-right: 1px solid #fff;
    padding-right: 20px;
    z-index: 3;
}

.view-cta {
    display: inline-block;
    margin-top: 60px;
    padding: 18px 45px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    color: #fff;
    font-family: var(--mono-font);
    font-size: 0.7rem;
    letter-spacing: 0.4em;
    text-decoration: none;
    transition: var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.view-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: 0.5s;
}

.view-cta:hover {
    background: #fff;
    color: #000;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0.6;
    animation: bounce 2s infinite;
}

.mouse {
    width: 25px;
    height: 40px;
    border: 2px solid #fff;
    border-radius: 15px;
    position: relative;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    width: 4px;
    height: 4px;
    background: #fff;
    border-radius: 50%;
    transform: translateX(-50%);
    animation: mouseScroll 1.5s infinite;
}

/* Projects Section */
/* Projects Section Redesign - Studio Vault */
#projects {
    padding: 180px 8%;
    background: #020202;
    position: relative;
    overflow: hidden;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 40px;
    max-width: 1800px;
    margin: 0 auto;
}

.project-card {
    position: relative;
    background: #000;
    border: 1px solid var(--glass-border);
    border-radius: 4px;
    overflow: hidden;
    transition: var(--transition-slow);
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(60px);
}

.project-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.project-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-10px) scale(1.01);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8);
    z-index: 10;
}

/* Featured Card (Large) */
.project-card.featured {
    grid-column: span 12;
    height: 70vh;
}

/* Standard Card (Small) */
.project-card.standard {
    grid-column: span 6;
    height: 45vh;
}

.card-media-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #050505;
}

.card-media-wrap video,
.card-media-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    filter: grayscale(0.5) contrast(1.1);
    transition: 2s var(--transition-slow);
}

.project-card:hover .card-media-wrap video,
.project-card:hover .card-media-wrap img {
    opacity: 1;
    filter: grayscale(0) contrast(1);
    transform: scale(1.05);
}

/* Thematic Scanners */
.thematic-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 6;
    opacity: 0;
    transition: 0.8s var(--transition-fast);
}

.project-card:hover .thematic-overlay {
    opacity: 1;
}

/* Theme: Automotive */
.theme-auto .thematic-overlay {
    background: radial-gradient(circle at center, transparent 30%, rgba(255, 62, 62, 0.05) 100%);
}

.theme-auto .scan-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--tech-red), transparent);
    box-shadow: 0 0 15px var(--tech-red);
    animation: scanVertical 3s infinite linear;
}

/* Theme: Bio-Systems */
.theme-bio .thematic-overlay {
    background: radial-gradient(circle at center, transparent 30%, rgba(0, 242, 255, 0.05) 100%);
}

.theme-bio .neural-pulse {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(0, 242, 255, 0.1) 0%, transparent 70%);
    animation: pulseNeural 4s infinite ease-in-out;
}

/* Theme: Gaming */
.theme-game .thematic-overlay {
    background: radial-gradient(circle at center, transparent 30%, rgba(0, 255, 170, 0.05) 100%);
}

.theme-game .glitch-bar {
    position: absolute;
    width: 100%;
    height: 1px;
    background: var(--tech-green);
    opacity: 0.3;
    animation: glitchMove 2s infinite steps(10);
}

/* Theme: Aerospace */
.theme-aero .thematic-overlay {
    background: radial-gradient(circle at center, transparent 30%, rgba(255, 204, 0, 0.05) 100%);
}

.theme-aero .aero-shimmer {
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, transparent 45%, rgba(255, 204, 0, 0.1) 50%, transparent 55%);
    background-size: 200% 200%;
    animation: aeroShimmer 4s infinite linear;
}

@keyframes aeroShimmer {
    0% {
        background-position: -100% -100%;
    }

    100% {
        background-position: 100% 100%;
    }
}

/* Theme: Luxury / 911 */
.theme-911 .thematic-overlay {
    background: radial-gradient(circle at center, transparent 30%, rgba(255, 255, 255, 0.05) 100%);
}

.theme-911 .luxury-shimmer {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    background-size: 200% 100%;
    animation: luxuryShimmer 5s infinite ease-in-out;
}

@keyframes luxuryShimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

@keyframes scanVertical {
    0% {
        transform: translateY(-100%);
    }

    100% {
        transform: translateY(1000%);
    }
}

@keyframes pulseNeural {

    0%,
    100% {
        opacity: 0.2;
        transform: scale(0.8);
    }

    50% {
        opacity: 0.6;
        transform: scale(1.2);
    }
}

@keyframes glitchMove {
    0% {
        top: 0%;
        height: 1px;
    }

    50% {
        top: 50%;
        height: 4px;
    }

    100% {
        top: 100%;
        height: 1px;
    }
}

/* HUD Brackets - Studio Grade */
.hud-bracket {
    position: absolute;
    width: 40px;
    height: 40px;
    border-color: rgba(255, 255, 255, 0.1);
    z-index: 10;
    transition: 0.6s var(--transition-fast);
}

.project-card:hover .hud-bracket {
    border-color: #fff;
    width: 25px;
    height: 25px;
}

.bracket-tl {
    top: 30px;
    left: 30px;
    border-top: 1px solid;
    border-left: 1px solid;
}

.bracket-br {
    bottom: 30px;
    right: 30px;
    border-bottom: 1px solid;
    border-right: 1px solid;
}

/* Card Info - Cinematic Editorial */
.card-info {
    position: relative;
    z-index: 10;
    margin-top: auto;
    padding: 60px 40px 40px 40px;
    background: linear-gradient(to top, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.8) 40%, transparent 100%);
    pointer-events: none;
}

.tech-tag {
    font-family: var(--mono-font);
    font-size: 0.6rem;
    color: var(--tech-blue);
    letter-spacing: 0.5em;
    margin-bottom: 15px;
    display: block;
    text-transform: uppercase;
    opacity: 0.6;
    transition: 0.4s;
}

.project-card:hover .tech-tag {
    opacity: 1;
    letter-spacing: 0.7em;
}

.card-title {
    font-family: var(--display-font);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    margin: 0;
    line-height: 0.9;
    font-weight: 700;
    letter-spacing: -0.04em;
    transform: translateY(10px);
    opacity: 0.8;
    transition: 0.6s var(--transition-fast);
}

.project-card:hover .card-title {
    transform: translateY(0);
    opacity: 1;
}

.standard .card-title {
    font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.card-description {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    max-width: 500px;
    margin-top: 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: 0.6s var(--transition-fast) 0.1s;
}

.project-card:hover .card-description {
    opacity: 1;
    transform: translateY(0);
}

/* Liquid Glass Text Effect Refined */
.liquid-glass-text {
    position: relative;
    display: inline-block;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 1) 0%,
            rgba(200, 230, 255, 0.9) 20%,
            rgba(255, 255, 255, 0.6) 40%,
            rgba(180, 210, 255, 0.95) 60%,
            rgba(255, 255, 255, 0.7) 80%,
            rgba(220, 240, 255, 1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
}

/* Tight inner glow — letters lit from within */
.liquid-glass-text::after {
    content: attr(data-text);
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(220, 240, 255, 1) 0%,
            rgba(255, 255, 255, 1) 50%,
            rgba(180, 220, 255, 1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: liquidShimmer 6s ease-in-out infinite;
    filter: blur(4px);
    opacity: 0.9;
    pointer-events: none;
    z-index: -1;
}

.liquid-glass-text::before {
    content: attr(data-text);
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            transparent 0%,
            rgba(255, 255, 255, 0.15) 30%,
            rgba(180, 220, 255, 0.3) 50%,
            transparent 70%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 300% 300%;
    animation: liquidShimmer 4s ease-in-out infinite reverse;
    pointer-events: none;
}

@keyframes liquidShimmer {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Professional Image Aesthetics */
.prof-media-wrap {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #000;
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.prof-media-wrap::before,
.prof-media-wrap::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    z-index: 10;
    pointer-events: none;
    transition: 0.5s var(--transition-slow);
}

/* Corner L-shapes */
.prof-media-wrap::before {
    top: 20px;
    left: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    border-left: 1px solid rgba(255, 255, 255, 0.3);
}

.prof-media-wrap::after {
    bottom: 20px;
    right: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    border-right: 1px solid rgba(255, 255, 255, 0.3);
}

.prof-media-wrap:hover::before {
    top: 10px;
    left: 10px;
    border-color: var(--tech-blue);
}

.prof-media-wrap:hover::after {
    bottom: 10px;
    right: 10px;
    border-color: var(--tech-blue);
}

.scan-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(255, 255, 255, 0.03) 50%, transparent 100%);
    background-size: 100% 10px;
    pointer-events: none;
    z-index: 5;
    opacity: 0.3;
}

.data-overlay {
    position: absolute;
    bottom: 30px;
    left: 30px;
    z-index: 12;
    font-family: var(--mono-font);
    font-size: 0.5rem;
    color: #fff;
    letter-spacing: 0.2rem;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(10px);
    transition: 0.5s;
}

.prof-media-wrap:hover .data-overlay {
    opacity: 0.8;
    transform: translateY(0);
}

/* Parallax Utility */

/* --- RESPONSIVENESS SYSTEM --- */

/* Ultra Wide Screens */
@media (min-width: 2000px) {
    .projects-grid {
        max-width: 2200px;
        gap: 60px;
    }
}

/* Large Laptops / Desktops */
@media (max-width: 1440px) {
    #projects {
        padding: 140px 6%;
    }

    .projects-grid {
        gap: 30px;
    }
}

/* Tablets & Small Laptops */
@media (max-width: 1024px) {
    #hero {
        padding: 0 6%;
    }

    .hero-title {
        font-size: 15.5vw;
    }

    .automotive-page .hero-title,
    .plane-page .hero-title {
        font-size: 12.5vw;
    }

    .fortnite-page .hero-title {
        font-size: 13.5vw;
    }

    #projects {
        padding: 100px 5%;
    }

    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .project-card.featured,
    .project-card.standard {
        grid-column: span 1;
        height: 50vh;
    }

    .project-card.featured {
        grid-column: span 2;
    }

    .card-info {
        padding: 40px 30px 30px 30px;
    }
}

/* Large Mobile / Small Tablets */
@media (max-width: 768px) {
    .logo-link {
        gap: 10px;
    }

    .header-brand-text {
        font-size: 1.4rem;
    }

    #hero {
        justify-content: center;
        text-align: center;
        padding: 0 30px;
    }

    .hero-logo {
        height: 90px;
    }

    .hero-title {
        font-size: 15vw;
    }

    .automotive-page .hero-title,
    .plane-page .hero-title {
        font-size: 12vw;
    }

    .fortnite-page .hero-title {
        font-size: 13vw;
    }

    .hero-content p {
        letter-spacing: 0.3em;
        margin-top: 20px;
        font-size: 0.6rem;
    }

    .studio-info {
        display: none;
    }

    .scroll-indicator {
        bottom: 20px;
    }

    #projects {
        padding: 80px 20px;
    }

    .projects-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .project-card.featured,
    .project-card.standard {
        grid-column: span 1;
        height: 60vh;
    }

    .section-title {
        font-size: 2.5rem;
    }

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

    .card-description {
        opacity: 0.8;
        transform: translateY(0);
        font-size: 0.75rem;
        margin-top: 15px;
    }

    .view-cta {
        margin-top: 40px;
        padding: 15px 30px;
        width: 100%;
        text-align: center;
    }

    footer {
        padding: 80px 20px;
    }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
    .hero-title {
        font-size: 14.5vw;
    }

    .automotive-page .hero-title,
    .plane-page .hero-title {
        font-size: 11vw;
    }

    .fortnite-page .hero-title {
        font-size: 12vw;
    }

    .section-title {
        font-size: 2rem;
    }

    .project-card.featured,
    .project-card.standard {
        height: 55vh;
    }

    .card-info {
        padding: 30px 20px 20px 20px;
    }

    .hud-bracket {
        width: 30px;
        height: 30px;
    }
}

/* Height-based fixes for small screens */
@media (max-height: 700px) and (orientation: landscape) {
    #hero {
        height: auto;
        padding: 100px 5%;
    }
}

/* Site Footer & Contact */
.site-footer {
    background: #050505;
    padding: 150px 8% 80px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    z-index: 10;
}

.footer-cta,
.footer-grid,
.footer-bottom {
    max-width: 1800px;
    margin-left: auto;
    margin-right: auto;
}

.footer-cta {
    margin-bottom: 120px;
}

.footer-cta h2 {
    font-family: var(--display-font);
    font-size: clamp(3rem, 10vw, 8rem);
    font-weight: 700;
    line-height: 0.9;
    letter-spacing: -0.04em;
    text-transform: uppercase;
    color: #fff;
    margin: 0;
    user-select: none;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 100px;
    padding-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-section h4 {
    font-family: var(--display-font);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 40px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-links a {
    font-family: var(--display-font);
    font-size: 1.2rem;
    color: #fff;
    text-decoration: none;
    opacity: 0.8;
    transition: 0.3s;
    width: fit-content;
}

.footer-links a:hover {
    opacity: 1;
    transform: translateX(10px);
}

.footer-bottom {
    margin-top: 120px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--mono-font);
    font-size: 0.6rem;
    letter-spacing: 0.3em;
    opacity: 0.3;
    text-transform: uppercase;
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .footer-cta h2 {
        font-size: 4rem;
    }
}

.project-details-grid {
    max-width: 1800px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}