:root {
    --bg-dark: #070707; /* Extremely dark, almost absolute black */
    --surface-dark: #121212;
    --text-primary: #ffffff;
    --text-secondary: #888888;
    --accent: #ffffff; /* We'll use crisp white and dark greys as accents, very corporate */
    --cmyk-c: #00ffff;
    --cmyk-m: #ff00ff;
    --cmyk-y: #ffff00;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    -webkit-font-smoothing: antialiased;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

/* Navbar */
.top-nav {
    padding: 24px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.brand {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.nav-contact {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* Hero */
.hero-split {
    padding: 100px 0;
    min-height: 75vh;
    display: flex;
    align-items: center;
}
.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    width: 100%;
}
.hero-content {
    flex: 1;
    max-width: 600px;
}
.hero-title {
    font-size: 5rem;
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -2.5px;
    margin-bottom: 24px;
}
.hero-subtitle {
    font-size: 1.35rem;
    color: var(--text-secondary);
    margin-bottom: 48px;
    font-weight: 300;
    line-height: 1.5;
}
.btn-primary {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 20px 48px;
    background-color: var(--accent);
    color: var(--bg-dark);
    font-weight: 800;
    text-decoration: none;
    font-size: 1rem;
    letter-spacing: 1.5px;
    border-radius: 4px; /* Professional square edge */
    transition: all 0.3s ease;
    border: 2px solid var(--accent);
}
.btn-primary:hover {
    background-color: transparent;
    color: var(--accent);
}

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}
.hero-logo-large {
    max-width: 380px;
    width: 100%;
    /* Elegant shadow pushing the logo off the page subtly */
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.8));
}

/* Services */
.services-wrapper {
    padding: 100px 0;
    background-color: var(--surface-dark);
}
.section-header {
    margin-bottom: 60px;
}
.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -1px;
}
.header-line {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--cmyk-c), var(--cmyk-m), var(--cmyk-y));
    margin-top: 16px;
    border-radius: 2px;
}

/* Bento Grid */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 250px;
    gap: 20px;
}

.bento-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    background: #000;
    cursor: pointer;
    border: 1px solid rgba(255,255,255,0.05);
    grid-column: span 1;
    grid-row: span 1;
}

.bento-large {
    grid-column: span 2;
    grid-row: span 2;
}

.bento-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
    transition: opacity 0.6s ease, transform 0.8s ease;
}

.bento-item:hover .bento-img {
    opacity: 0.2;
    transform: scale(1.04);
}

.bento-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    transform: translateY(10px);
    transition: transform 0.4s ease;
}

.bento-item:hover .bento-overlay {
    transform: translateY(0);
}

.bento-overlay h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: #fff;
    letter-spacing: -0.5px;
}

.bento-overlay p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Footer */
.corporate-footer {
    padding: 80px 0 30px;
    background-color: var(--bg-dark);
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}
.footer-logo {
    width: 60px;
    margin-bottom: 20px;
}
.brand-col p {
    color: var(--text-secondary);
}
.footer-col h4 {
    font-weight: 600;
    margin-bottom: 20px;
    color: #fff;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}
.footer-col p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}
.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 30px;
    color: var(--text-secondary);
    font-size: 0.8rem;
}

/* Responsive */
@media (max-width: 900px) {
    .header-content { flex-direction: column;}
    .hero-container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    .hero-title { font-size: 4rem; }
    .hero-visual { justify-content: center; }
    .bento-grid { 
        grid-template-columns: 1fr 1fr; 
    }
    .bento-large {
        grid-column: span 2;
        grid-row: span 1;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 600px) {
    .bento-grid { grid-template-columns: 1fr; }
    .bento-large, .bento-item { grid-column: span 1; }
    .nav-contact { display: none; }
    .hero-title { font-size: 3rem;}
}
