@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700&family=Syncopate:wght@400;700&display=swap');

:root {
    --accent: #c4a484;
    /* Adobe/Leather gold */
    --accent-glow: rgba(196, 164, 132, 0.3);
    --bg: #0a0a0a;
    --bg-surface: #121212;
    --text: #ffffff;
    --text-dim: #888888;
    --font-heading: 'Syncopate', sans-serif;
    --font-body: 'Outfit', sans-serif;
    --transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none;
    /* We'll use a custom cursor */
}

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: var(--font-body);
    line-height: 1.5;
    overflow-x: hidden;
}

/* --- Custom Cursor --- */
#cursor {
    width: 20px;
    height: 20px;
    background: var(--accent);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: difference;
    transition: transform 0.1s ease;
}

#cursor-follower {
    width: 40px;
    height: 40px;
    border: 1px solid var(--accent);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    transition: all 0.2s ease;
}

/* --- Navigation --- */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 0.5rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: 4px;
    text-decoration: none;
    color: var(--text);
}

.logo img {
    height: 180px;
    width: auto;
    filter: drop-shadow(0 0 15px rgba(196, 164, 132, 0.3));
    transition: var(--transition);
}

.logo:hover img {
    transform: scale(1.05);
    filter: drop-shadow(0 0 15px rgba(196, 164, 132, 0.4));
}

.nav-links {
    display: flex;
    gap: 3rem;
    list-style: none;
}

.nav-links a {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--text-dim);
    letter-spacing: 2px;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--accent);
}

/* --- Hero Section (Deconstructed) --- */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 10%;
    position: relative;
}

.hero-title-container {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 8vw, 6rem);
    line-height: 0.9;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.hero h1 span {
    display: block;
    color: transparent;
    -webkit-text-stroke: 1px var(--text);
}

.hero-stats {
    position: absolute;
    bottom: 10%;
    right: 10%;
    display: flex;
    gap: 4rem;
}

.stat-item h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--accent);
}

.stat-item p {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-dim);
}

.hero-img-box {
    position: absolute;
    right: 10%;
    top: 15%;
    width: 35%;
    height: 60%;
    overflow: hidden;
    transition: var(--transition);
}

.hero-img-box:hover {
    filter: brightness(1.2);
}

.hero-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --- Bento Services Section --- */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 300px);
    gap: 1.5rem;
    padding: 5% 10%;
}

.bento-item {
    background: var(--bg-surface);
    padding: 2rem;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.bento-item:hover {
    border-color: var(--accent);
}

.bento-item.large {
    grid-column: span 2;
}

.bento-item.tall {
    grid-row: span 2;
}

.bento-item h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.bento-item p {
    color: var(--text-dim);
    font-size: 0.9rem;
}

.bento-bg-icon {
    position: absolute;
    bottom: -20px;
    right: -20px;
    font-size: 8rem;
    opacity: 0.03;
    transition: var(--transition);
}

.bento-item:hover .bento-bg-icon {
    opacity: 0.1;
    transform: scale(1.1);
}

/* --- Brutalist CTA --- */
.brutalist-cta {
    padding: 10% 5%;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--accent);
    color: var(--bg);
}

.brutalist-cta h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 4rem);
    text-align: center;
    margin-bottom: 3rem;
}

.big-btn {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    padding: 2rem 4rem;
    background: var(--bg);
    color: var(--accent);
    text-decoration: none;
    text-transform: uppercase;
    transition: var(--transition);
}

.big-btn:hover {
    background: var(--text);
    color: var(--bg);
    transform: scale(1.05);
}

/* --- Architecture Grid --- */
.arch-grid {
    display: flex;
    height: 600px;
    margin-bottom: 5rem;
}

.arch-col {
    flex: 1;
    height: 100%;
    position: relative;
    overflow: hidden;
    border-right: 1px solid var(--bg);
    transition: var(--transition);
}

.arch-col:hover {
    flex: 2;
}

.arch-col img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    filter: brightness(0.6);
}

.arch-col:hover img {
    filter: brightness(1);
}

/* --- Contact Section --- */
.contact-minimal {
    padding: 10%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    margin-bottom: 2rem;
}

.contact-link {
    display: block;
    font-size: 1.5rem;
    color: var(--text);
    text-decoration: none;
    margin-bottom: 1rem;
    transition: var(--transition);
}

.contact-link:hover {
    color: var(--accent);
    padding-left: 20px;
}

/* --- Mobile Fixes --- */
/* --- Mobile Redesign --- */
/* --- Ultra-Responsive Mobile Redesign --- */
@media (max-width: 768px) {
    * {
        cursor: auto !important;
    }

    #cursor,
    #cursor-follower {
        display: none;
    }

    nav {
        padding: 1rem 5%;
        flex-direction: column;
        gap: 0.5rem;
        position: relative;
        background: var(--bg);
        width: 100%;
    }

    .logo img {
        height: 100px;
        max-width: 100%;
        object-fit: contain;
    }

    .hero {
        padding: 100px 5% 40px 5%;
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .hero h1 {
        font-size: clamp(2rem, 9vw, 3rem);
        word-break: normal;
        overflow-wrap: normal;
        line-height: 1.1;
        width: 100%;
    }

    .hero h1 span {
        white-space: nowrap;
    }

    .hero-img-box {
        position: relative;
        width: 100vw;
        margin: 2rem 0;
        height: 350px;
        left: 0;
        right: 0;
        border: none;
    }

    .hero-stats {
        position: relative;
        margin-top: 2rem;
        flex-direction: row;
        gap: 1.5rem;
        justify-content: center;
    }

    /* Bento Grid Mobile */
    .bento-grid {
        display: flex;
        flex-direction: column;
        padding: 2rem 5%;
        gap: 1.5rem;
    }

    .bento-item {
        width: 100%;
        min-height: auto;
    }

    /* Architecture Grid Stack */
    .arch-grid {
        display: flex;
        flex-direction: column;
        height: auto;
    }

    .arch-col {
        width: 100%;
        height: 300px;
        border-right: none;
        border-bottom: 2px solid var(--bg);
    }


    /* Contact Mobile */
    .contact-minimal {
        padding: 4rem 5%;
        display: flex;
        flex-direction: column;
        gap: 3rem;
        text-align: center;
    }

    .contact-info h2 {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .map-box {
        width: 100%;
        height: 300px;
        margin-top: 1rem;
    }

    .brutalist-cta {
        padding: 4rem 5%;
    }

    .big-btn {
        width: 100%;
        font-size: 1.2rem;
        padding: 1.5rem;
        text-align: center;
    }
}