/* 
    bloohoo. | Pure Copy Edition
    No Images. All Impact.
*/

:root {
    --bg: #ffffff;
    --bg-dark: #000000;
    --text: #000000;
    --text-light: #ffffff;
    --text-dim: #6e6e73;
    --accent: #00F1F6; /* Neon Cyan */
    --accent-glow: #00F1F6;
    
    --font: -apple-system, BlinkMacSystemFont, 'Inter', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: var(--font);
    line-height: 1.1;
    -webkit-font-smoothing: antialiased;
    word-break: break-word;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* --- Nav --- */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    height: 60px;
    z-index: 9999;
    display: flex;
    align-items: center;
    transition: color 0.4s, background 0.4s;
}

nav.nav-light {
    color: #000000;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid var(--border);
}

nav.nav-dark {
    color: #ffffff;
    background: transparent;
    border-bottom: none;
}

.nav-inner {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1001;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: inherit;
    font-size: 14px;
    font-weight: 900;
    cursor: pointer;
    letter-spacing: 0.1em;
    position: relative;
    z-index: 1100;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
    transition: color 0.4s;
}

.logo svg {
    max-width: 100%;
    height: auto;
}

.logo:hover {
    color: var(--accent) !important;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: inherit;
    font-size: 14px;
    font-weight: 600;
}

/* --- Hero (Typographic) --- */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--bg-dark);
    color: var(--text-light);
    padding: 120px 0;
    overflow: hidden;
}

.hero h1 {
    font-size: clamp(3.5rem, 18vw, 15rem);
    font-weight: 900;
    letter-spacing: -0.08em;
    line-height: 0.85;
    margin-bottom: 40px;
    text-transform: uppercase;
}

.hero .line {
    overflow: hidden;
    display: block;
}

.hero .line span {
    display: block;
    transform: translateY(110%);
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero.active .line span {
    transform: translateY(0);
}

.hero .line:nth-child(2) span {
    transition-delay: 0.15s;
}

.hero p {
    font-size: clamp(1.5rem, 5vw, 3rem);
    font-weight: 700;
    color: #888;
    max-width: 900px;
    letter-spacing: -0.04em;
    line-height: 1;
    opacity: 0;
    transform: translateY(20px);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1) 0.5s;
}

.hero.active p {
    opacity: 1;
    transform: translateY(0);
}

.hero .highlight {
    color: var(--accent-glow);
}

/* --- Sectioning --- */
.section {
    padding: 160px 0;
}

.label {
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--text-dim);
    margin-bottom: 20px;
    display: block;
}

.section.crew {
    background: var(--accent);
    color: #000000;
    padding: 160px 0;
}

.crew .section-h, .crew p {
    color: #000000 !important;
}

.crew .label {
    color: rgba(0, 0, 0, 0.4);
}

.section-h {
    font-size: clamp(3rem, 10vw, 8rem);
    font-weight: 900;
    letter-spacing: -0.07em;
    line-height: 0.9;
    margin-bottom: 60px;
}

/* --- Copy-based Grid --- */
.grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px; /* Thin line separator effect */
    background: #e5e5e7;
    border: 1px solid #e5e5e7;
}

.card {
    background: var(--bg);
    padding: 80px 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 400px;
    transition: 0.4s;
}

.card:hover {
    background: var(--accent);
    color: #000000;
}

.card:hover .card-p {
    color: rgba(0, 0, 0, 0.6);
}

.card-h {
    font-size: 3rem;
    font-weight: 900;
    letter-spacing: -0.05em;
    margin-bottom: 20px;
}

.card-p {
    font-size: 1.4rem;
    color: var(--text-dim);
    line-height: 1.2;
    font-weight: 500;
}

.card-link {
    margin-top: 60px;
    font-weight: 900;
    text-decoration: none;
    color: var(--text);
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* --- Brands (Text Only) --- */
.brands-section {
    background: var(--bg-dark);
    color: var(--text-light);
    padding: 160px 0;
}

.brand-list {
    display: flex;
    flex-wrap: wrap;
    gap: 40px 80px;
}

.brand-item {
    font-size: clamp(2rem, 6vw, 4rem);
    font-weight: 900;
    letter-spacing: -0.06em;
    opacity: 0.2;
    transition: 0.3s;
}

.brand-item:hover {
    opacity: 1;
    color: var(--accent-glow);
}

/* --- Vision --- */
.vision {
    padding: 200px 0;
    text-align: left;
}

.vision h2 {
    font-size: clamp(3rem, 12vw, 10rem);
    font-weight: 900;
    letter-spacing: -0.07em;
    line-height: 0.8;
    margin-bottom: 40px;
}

.vision p {
    font-size: clamp(1.5rem, 5vw, 3rem);
    color: var(--text-dim);
    font-weight: 700;
    line-height: 1;
}

/* --- Footer --- */
footer {
    padding: 120px 0 60px;
    background: #000;
    color: #fff;
    border-top: 1px solid #1a1a1a;
}

.footer-inner {
    display: flex;
    flex-direction: column;
    gap: 100px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: right;
}

.footer-col h4 {
    font-size: 12px;
    font-weight: 800;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #555;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 15px;
}

.footer-col ul li a {
    text-decoration: none;
    color: #fff;
    font-weight: 800;
    font-size: 1.2rem;
    letter-spacing: -0.02em;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-col ul li a span {
    display: inline-block;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.footer-col ul li a:hover {
    color: var(--accent);
}

.footer-col ul li a:hover span {
    transform: rotate(45deg) translate(2px, -2px);
}

.footer-main {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    border-top: 1px solid #1a1a1a;
    padding-top: 80px;
    margin-top: 100px;
}

.footer-slogan {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: -0.05em;
    margin-top: 30px;
    color: #fff;
}

.footer-desc {
    font-size: 1.1rem;
    color: #888;
    max-width: 400px;
    line-height: 1.4;
    font-weight: 500;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #1a1a1a;
    padding-top: 40px;
    margin-top: 60px;
}

.footer-bottom-text {
    font-size: 11px;
    color: #444;
    letter-spacing: 0.1em;
    font-weight: 800;
    text-transform: uppercase;
}

.footer-logo {
    color: var(--accent) !important;
    transition: color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.footer-logo:hover {
    color: #fff !important;
}

.company-link {
    font-weight: 500 !important;
    color: #666 !important;
    font-size: 1rem !important;
}

.nav-link {
    font-weight: 900 !important;
    color: #fff !important;
    font-size: 1.4rem !important;
    letter-spacing: -0.04em !important;
}

.nav-link:hover {
    color: var(--accent) !important;
}

/* --- Mobile Overhaul --- */
@media (max-width: 800px) {
    :root {
        --padding-side: 24px;
        --section-spacing: 120px;
    }

    .container { 
        padding: 0 var(--padding-side); 
    }

    .nav-inner {
        padding: 24px var(--padding-side);
    }

    .menu-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: var(--accent);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 40px;
        clip-path: circle(0% at top right);
        visibility: hidden;
        transition: clip-path 0.6s cubic-bezier(0.16, 1, 0.3, 1), visibility 0s 0.6s;
        z-index: 1050;
        opacity: 1;
    }

    .nav-links.active {
        visibility: visible;
        clip-path: circle(150% at top right);
        transition: clip-path 0.6s cubic-bezier(0.16, 1, 0.3, 1), visibility 0s;
    }

    .nav-links a {
        font-size: 3.5rem;
        font-weight: 900;
        color: #000 !important;
        letter-spacing: -0.05em;
    }

    .nav-links a:hover {
        opacity: 0.7;
    }

    /* Change toggle color when menu is open */
    body.menu-open .menu-toggle {
        color: #000 !important;
    }

    /* Aggressive Mobile Type */
    h1 {
        font-size: 16vw;
        line-height: 0.85;
        letter-spacing: -0.05em;
    }

    h2 {
        font-size: 14vw;
        line-height: 0.9;
        letter-spacing: -0.04em;
    }

    .hero {
        padding: 0;
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .hero p {
        font-size: 1.1rem;
        margin-top: 30px;
        line-height: 1.4;
        max-width: 90%;
    }

    .section {
        padding: 120px 0; /* Consistent vertical spacing */
    }

    .grid {
        display: flex;
        flex-direction: column;
        gap: 80px; /* Big gaps between work categories */
        margin-top: 80px;
        background: transparent;
        border: none;
    }

    .card {
        padding: 0;
        background: transparent;
        border: none;
        min-height: auto;
    }

    .card-h {
        font-size: 3.5rem;
        font-weight: 900;
        margin-bottom: 15px;
        letter-spacing: -0.05em;
    }

    .card-p {
        font-size: 1.1rem;
        color: #555;
        margin-bottom: 25px;
        max-width: 85%;
        line-height: 1.4;
    }

    .card-link {
        font-size: 14px;
        font-weight: 900;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        text-decoration: none;
        color: #000;
        border-bottom: 2px solid #000;
        padding-bottom: 4px;
        display: inline-block;
    }

    .footer-bottom {
        display: flex;
        flex-direction: column;
        gap: 20px;
        margin-top: 80px;
        padding-top: 40px;
        border-top: 1px solid #1a1a1a;
    }

    .footer-bottom-text {
        font-size: 10px;
        color: #444;
        letter-spacing: 0.05em;
        text-transform: uppercase;
        font-weight: 700;
    }

    .footer-bottom-text span {
        color: var(--accent);
    }

    /* Footer Mobile */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 80px;
        text-align: left;
    }

    .footer-col ul li a {
        font-size: 2.2rem;
        padding: 15px 0;
    }

    .footer-main {
        flex-direction: column;
        align-items: flex-start;
        gap: 80px;
        padding-top: 100px;
    }

    .brands-section {
        padding: 120px 0;
    }

    .brand-list {
        margin-top: 60px;
        gap: 30px 60px;
    }

    .vision {
        padding: 120px 0;
    }

    .vision h2 {
        margin: 30px 0;
    }
}

/* --- Animation --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
}

.active {
    opacity: 1;
    transform: translateY(0);
    transition: 1s cubic-bezier(0.16, 1, 0.3, 1);
}
