:root {
    --accent: #93d2d0;
    --bg: #0a0a0a;
    --text: #ffffff;
    --header-bg: #ffffff;
    --nav-height: 70px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body { 
    background: var(--bg); 
    color: var(--text); 
    font-family: 'Inter', -apple-system, sans-serif; 
    overflow-x: hidden; 
}

/* --- Navigation --- */
nav { 
    position: fixed; 
    top: 0; 
    width: 100%; 
    height: var(--nav-height); 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    padding: 0 5%; 
    z-index: 1000; 
    background: var(--header-bg); 
    border-bottom: 1px solid #ddd; 
}

.logo-img { height: 35px; }
nav ul { display: flex; list-style: none; gap: 40px; }
nav a { 
    color: #000 !important; 
    text-decoration: none; 
    font-weight: 700; 
    letter-spacing: 1px; 
    text-transform: uppercase; 
    font-size: 0.75rem; 
}

/* --- Scaled Down Brand Carousel --- */
.carousel-container { 
    padding: 40px 0; 
    background: #fdfdfd; 
    overflow: hidden; 
}

.carousel-title { 
    text-align: center; 
    font-size: 0.65rem; 
    letter-spacing: 3px; 
    text-transform: uppercase; 
    color: #888; 
    margin-bottom: 30px; 
    font-weight: 800; 
}

.slider { 
    display: flex; 
    width: calc(125px * 26); /* Scaled from 250px */
    animation: scroll 40s linear infinite; 
    align-items: center; 
}

.slider img { 
    width: 75px; /* Scaled from 150px */
    margin: 0 25px; /* Scaled from 50px */
    filter: grayscale(1); 
    opacity: 0.8; 
}

@keyframes scroll { 
    0% { transform: translateX(0); } 
    100% { transform: translateX(calc(-125px * 13)); } 
}

/* --- Integrated Services Hero --- */
.services-hero { 
    margin-top: var(--nav-height); 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    min-height: calc(100vh - var(--nav-height)); 
}

.services-hero-content { padding: 60px 10%; display: flex; flex-direction: column; justify-content: center; }
.services-hero-content h1 { font-size: clamp(3rem, 10vw, 5rem); line-height: 0.8; font-weight: 900; text-transform: uppercase; margin-bottom: 40px; }

.mini-grid { display: grid; gap: 20px; }
.mini-card { border-left: 3px solid var(--accent); padding: 20px; background: rgba(255, 255, 255, 0.05); }
.mini-card h2 { font-size: 1.1rem; text-transform: uppercase; color: var(--accent); margin-bottom: 5px; }
.mini-card p { font-size: 0.85rem; opacity: 0.7; font-weight: 300; line-height: 1.4; }

.hero-image-full { 
    height: 100%; 
    background-size: cover !important; 
    background-position: bottom !important; 
}

/* --- Contact Shaded Overlay --- */
.contact-hero-full {
    margin-top: var(--nav-height);
    height: calc(100vh - var(--nav-height));
    background: url('img/painted-girl-cropped.jpg') center/cover no-repeat;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.65); z-index: 1; }
.contact-overlay-content { position: relative; z-index: 2; text-align: center; }
.contact-overlay-content h2 { font-size: 0.75rem; letter-spacing: 6px; text-transform: uppercase; color: var(--accent); margin-bottom: 40px; }
.contact-box { margin-bottom: 60px; }
.contact-box span { display: block; font-size: 0.7rem; letter-spacing: 3px; text-transform: uppercase; opacity: 0.6; margin-bottom: 15px; }
.contact-box p { font-size: clamp(1.8rem, 6vw, 3.5rem); font-weight: 900; line-height: 1; }

/* --- Home Hero --- */
.hero { margin-top: var(--nav-height); display: grid; grid-template-columns: 1fr 1.2fr; min-height: 65vh; align-items: center; }
.hero-content { padding: 40px 10%; }
.hero-content h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); line-height: 0.9; margin-bottom: 15px; font-weight: 800; text-transform: uppercase; }
.hero-content h1 span { color: var(--accent); }
.hero-content p { font-size: 1rem; opacity: 0.7; max-width: 400px; margin-bottom: 30px; font-weight: 300; line-height: 1.6; }
.hero-image { height: 65vh; background-size: cover !important; background-position: center; }

@media (max-width: 900px) { .hero, .services-hero { grid-template-columns: 1fr; } .hero-image, .hero-image-full { height: 35vh; order: -1; } }