﻿:root {
            --orange: #E04A0A;
            --orange-light: #FF5C1A;
            --black: #111111;
            --dark: #1A1A1A;
            --charcoal: #222222;
            --white: #FFFFFF;
            --gray: #888888;
            --border: rgba(224, 74, 10, 0.2);
        }

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

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Barlow', sans-serif;
            background: var(--black);
            color: var(--white);
            overflow-x: hidden;
        }

        nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 100;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 5%;
            height: 100px;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--border);
        }

        .nav-logo {
            display: flex;
            align-items: center;
        }

        .nav-logo img {
            height: 75px;
            width: auto;
            object-fit: contain;
        }

        .nav-links {
            display: flex;
            gap: 2rem;
            list-style: none;
        }

        .nav-links a {
            color: var(--charcoal);
            text-decoration: none;
            font-size: 0.8rem;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            transition: color 0.3s;
        }

        .nav-links a:hover,
        .nav-links a.active {
            color: var(--orange);
        }

        .nav-cta {
            background: var(--orange);
            color: var(--white) !important;
            padding: 0.5rem 1.2rem;
            clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
            transition: background 0.3s !important;
        }

        .nav-cta:hover {
            background: var(--orange-light) !important;
            color: var(--white) !important;
        }

        main {
            padding-top: 100px;
        }

        section {
            padding: 80px 5%;
        }

        .section-tag {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-size: 0.7rem;
            font-weight: 700;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--orange);
            margin-bottom: 1rem;
        }

        .section-tag::before {
            content: '';
            display: block;
            width: 30px;
            height: 2px;
            background: var(--orange);
        }

        .project-hero {
            background: linear-gradient(135deg, rgba(17, 17, 17, 0.98), rgba(34, 34, 34, 0.96));
            border-bottom: 1px solid var(--border);
            position: relative;
            overflow: hidden;
        }

        .project-hero::before {
            content: 'PROJECTS';
            position: absolute;
            right: -3%;
            bottom: -8%;
            font-family: 'Bebas Neue', sans-serif;
            font-size: 15vw;
            letter-spacing: 4px;
            color: rgba(255, 255, 255, 0.025);
            white-space: nowrap;
            pointer-events: none;
        }

        .project-hero-content {
            max-width: 920px;
            position: relative;
            z-index: 1;
        }

        h1 {
            font-family: 'Bebas Neue', sans-serif;
            font-size: clamp(3rem, 8vw, 7rem);
            line-height: 0.95;
            letter-spacing: 2px;
            margin-bottom: 1rem;
        }

        .accent {
            color: var(--orange);
        }

        .project-hero p {
            max-width: 720px;
            color: rgba(255, 255, 255, 0.68);
            font-size: 1rem;
            line-height: 1.8;
        }

        .project-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 1px;
            margin-top: 2rem;
            background: var(--border);
            border: 1px solid var(--border);
            max-width: 760px;
        }

        .meta-item {
            flex: 1 1 180px;
            background: var(--dark);
            padding: 1.2rem 1.4rem;
        }

        .meta-label {
            color: var(--gray);
            font-size: 0.7rem;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 0.35rem;
        }

        .meta-value {
            font-family: 'Barlow Condensed', sans-serif;
            font-size: 1.15rem;
            font-weight: 700;
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        .gallery-section {
            background: var(--black);
        }

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

        h2 {
            font-family: 'Bebas Neue', sans-serif;
            font-size: clamp(2.5rem, 5vw, 4.5rem);
            line-height: 1;
            letter-spacing: 2px;
        }

        .gallery-note {
            color: rgba(255, 255, 255, 0.58);
            font-size: 0.9rem;
            line-height: 1.6;
            max-width: 360px;
        }

        .project-gallery {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
        }

        .project-block {
            padding-top: 2rem;
            scroll-margin-top: 120px;
        }

        .project-block + .project-block {
            margin-top: 5rem;
            padding-top: 5rem;
            border-top: 1px solid var(--border);
        }

        .project-title {
            font-family: 'Barlow Condensed', sans-serif;
            font-size: clamp(1.8rem, 4vw, 3rem);
            font-weight: 700;
            letter-spacing: 1px;
            text-transform: uppercase;
            margin-bottom: 1.5rem;
        }

        .project-description {
            color: rgba(255, 255, 255, 0.62);
            font-size: 0.95rem;
            line-height: 1.7;
            max-width: 720px;
            margin: -0.5rem 0 1.5rem;
        }

        .image-panel {
            background: var(--dark);
            border: 1px solid rgba(255, 255, 255, 0.08);
            padding: 1rem;
        }

        .image-frame {
            min-height: 70vh;
            background: #0d0d0d;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .image-frame img {
            display: block;
            width: 100%;
            height: 100%;
            max-height: 80vh;
            object-fit: contain;
        }

        .image-caption {
            display: flex;
            justify-content: space-between;
            gap: 1rem;
            align-items: center;
            padding-top: 1rem;
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.85rem;
            line-height: 1.5;
        }

        .image-caption strong {
            font-family: 'Barlow Condensed', sans-serif;
            color: var(--white);
            font-size: 1rem;
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        .back-link {
            display: inline-flex;
            align-items: center;
            margin-top: 2.5rem;
            color: var(--white);
            border: 2px solid rgba(255, 255, 255, 0.2);
            padding: 0.85rem 1.2rem;
            text-decoration: none;
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
            transition: all 0.3s;
        }

        .back-link:hover {
            background: var(--orange);
            border-color: var(--orange);
        }

        @media (max-width: 1024px) {
            .nav-links {
                gap: 1.2rem;
            }

            .nav-links a {
                font-size: 0.72rem;
                letter-spacing: 1.5px;
            }
        }

        @media (max-width: 768px) {
            nav {
                height: 88px;
            }

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

            .nav-links {
                display: none;
            }

            main {
                padding-top: 88px;
            }

            section {
                padding: 60px 5%;
            }

            .gallery-header {
                display: block;
            }

            .gallery-note {
                margin-top: 1rem;
            }

            .image-panel {
                padding: 0.6rem;
            }

            .image-frame {
                min-height: 58vh;
            }

            .image-caption {
                display: block;
            }
        }
