:root {
    --bg: #0D0D0D;
    --text: #F0F0F0;
    --accent: #d33515;
    --gray: #2A2A2A;
    --font-head: 'Oswald', sans-serif;
    --font-body: 'Space Grotesk', sans-serif;
    --easing: cubic-bezier(0.16, 1, 0.3, 1);
}

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

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

/* Typography Utility */
h1, h2, h3, h4 {
    font-family: var(--font-head);
    text-transform: uppercase;
    font-weight: 700;
    line-height: 0.9;
}

.accent { color: var(--accent); }
.outline-text {
    -webkit-text-stroke: 1px var(--text);
    color: transparent;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    mix-blend-mode: difference;
}

.nav-logo {
    font-family: var(--font-head);
    font-size: 24px;
    font-weight: 700;
}

.accent-dot { color: var(--accent); }
.nav-location { font-size: 12px; letter-spacing: 1px; color: white; font-weight: bold; }

/* Hero */
.hero {
    height: 100vh;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    border-bottom: 1px solid var(--gray);
    position: relative;
}

.hero-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 2;
}

.hero-title {
    font-size: clamp(60px, 12vw, 150px);
    display: flex;
    flex-direction: column;
}

.hero-title .outline-text {
    -webkit-text-stroke: 2px var(--text);
}

.hero-title .line {
    display: block;
}

.hero-meta {
    margin-top: 40px;
    font-size: 14px;
    border-top: 1px solid var(--accent);
    padding-top: 20px;
    width: fit-content;
}

.hero-visual {
    position: relative;
    height: 100%;
    overflow: hidden;
    border-left: 1px solid var(--gray);
}

.hero-visual .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 13, 13, 0.3);
    mix-blend-mode: multiply;
}

/* Marquee */
.marquee-container {
    background: var(--accent);
    color: var(--bg);
    padding: 15px 0;
    overflow: hidden;
    font-family: var(--font-head);
    font-size: 24px;
    font-weight: 700;
    white-space: nowrap;
    transform: rotate(-1deg) scale(1.05);
    margin: 40px 0;
    border-top: 2px solid var(--text);
    border-bottom: 2px solid var(--text);
}

.marquee-content {
    display: inline-block;
    animation: marquee 20s linear infinite;
}

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

/* Section Layouts */
.section {
    padding: 100px 40px;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    font-size: clamp(40px, 8vw, 100px);
    margin-bottom: 60px;
}

/* About */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.lead {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--accent);
}

.about-visual {
    position: relative;
    height: 600px;
}

.floating-img {
    position: absolute;
    width: 70%;
    height: 70%;
    border: 1px solid var(--text);
    transition: transform 0.5s var(--easing);
}

.floating-img:first-child {
    top: 0;
    left: 0;
    z-index: 1;
}

.floating-img.secondary {
    bottom: 0;
    right: 0;
    z-index: 2;
    border-color: var(--accent);
}

.about-visual:hover .floating-img:first-child { transform: translate(-10px, -10px); }
.about-visual:hover .floating-img.secondary { transform: translate(10px, 10px); }

/* Services Bento Grid */
.big-border {
    border-bottom: 4px solid var(--text);
    padding-bottom: 20px;
    display: inline-block;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: minmax(300px, auto);
    gap: 20px;
}

.bento-item {
    border: 1px solid var(--gray);
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: border-color 0.3s ease;
}

.bento-item:hover {
    border-color: var(--accent);
}

.bento-item h3 {
    font-size: 32px;
    margin-bottom: 20px;
}

.bento-item.img-box {
    padding: 0;
    overflow: hidden;
}

.bento-item.img-box img {
    transition: transform 1s var(--easing);
}

.bento-item.img-box:hover img {
    transform: scale(1.1);
}

.bento-item.dark-accent {
    background-color: var(--gray);
}

.bento-item.tall {
    grid-row: span 2;
}

/* Manifesto */
.manifesto-item {
    display: flex;
    align-items: flex-start;
    border-top: 1px solid var(--gray);
    padding: 40px 0;
    transition: padding 0.3s ease;
}

.manifesto-item:hover {
    padding-left: 20px;
    border-color: var(--accent);
}

.manifesto-item .number {
    font-family: var(--font-head);
    font-size: 40px;
    color: var(--accent);
    width: 80px;
}

.manifesto-item h3 {
    font-size: 40px;
    margin-bottom: 10px;
}

/* Gallery Strip */
.gallery-strip {
    height: 400px;
    overflow: hidden;
    margin: 80px 0;
    border-top: 10px solid var(--accent);
    border-bottom: 10px solid var(--accent);
}

.strip-wrapper {
    display: flex;
    height: 100%;
    width: 100%;
}

.strip-wrapper img {
    width: 25%;
    filter: grayscale(100%);
    transition: filter 0.5s ease;
}

.strip-wrapper img:hover {
    filter: grayscale(0%);
}

/* Footer */
.footer {
    padding: 100px 40px 40px;
    border-top: 1px solid var(--gray);
}

.footer-cta h2 {
    font-size: clamp(50px, 10vw, 120px);
    margin-bottom: 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 80px;
    margin-bottom: 80px;
}

.info-block h4 {
    color: var(--accent);
    margin-bottom: 20px;
    font-size: 20px;
    letter-spacing: 1px;
}

.btn-link {
    display: inline-block;
    color: var(--text);
    text-decoration: none;
    font-family: var(--font-head);
    font-size: 24px;
    border: 1px solid var(--text);
    padding: 10px 20px;
    margin-top: 10px;
    transition: all 0.3s ease;
}

.btn-link:hover {
    background: var(--accent);
    color: var(--bg);
    border-color: var(--accent);
}

.footer-brand {
    font-size: 200px;
    font-family: var(--font-head);
    font-weight: 700;
    opacity: 0.05;
    text-align: center;
    line-height: 0.8;
    pointer-events: none;
}

/* Animations */
.reveal-up {
    opacity: 0;
    transform: translateY(100px);
    transition: all 0.8s var(--easing);
}

.reveal-img {
    opacity: 0;
    transform: scale(0.9);
    transition: all 1s var(--easing);
}

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

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }

/* Mobile */
@media (max-width: 900px) {
    .hero {
        grid-template-columns: 1fr;
        height: auto;
        min-height: 100vh;
    }
    .hero-visual {
        height: 50vh;
        border-left: none;
        border-top: 1px solid var(--gray);
    }
    .about-grid {
        grid-template-columns: 1fr;
    }
    .bento-grid {
        grid-template-columns: 1fr;
    }
    .bento-item.tall {
        grid-row: auto;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-brand {
        font-size: 60px;
    }
    .strip-wrapper {
        flex-wrap: wrap;
    }
    .strip-wrapper img {
        width: 50%;
        height: 50%;
    }
}