:root {
    /* Color Palette - Clean Light Theme */
    --color-bg: #ffffff;
    --color-bg-alt: #fcfcfc;
    /* Extremely subtle grey for sections */
    --color-text-main: #555555;
    /* Grey for body */
    --color-text-heading: #111111;
    /* Black for headings */
    --color-accent: #111111;
    /* Black for buttons (minimalist) */
    --color-accent-hover: #333333;
    --color-border: #eeeeee;

    /* Typography */
    --font-main: 'Outfit', sans-serif;

    /* Spacing - Compact & Clean */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    /* Reduced from 2rem */
    --spacing-lg: 3rem;
    /* Reduced from 5rem */
    --spacing-xl: 5rem;
    /* Reduced from 8rem */

    /* Layout */
    --container-width: 1100px;
    /* Slightly tighter container */
    --border-radius: 0px;
    /* Sharper corners for a more serious look */
    --transition: all 0.2s ease-out;
}

/* Reset & Base */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--color-bg);
    color: var(--color-text-main);
    font-family: var(--font-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* Typography Scale - Simplified */
h1 {
    color: var(--color-text-heading);
    font-weight: 700;
    line-height: 1.1;
    font-size: clamp(2.5rem, 5vw, 4rem);
    /* BIG */
    letter-spacing: -0.02em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

h2 {
    color: var(--color-text-heading);
    font-weight: 600;
    line-height: 1.2;
    font-size: 2rem;
    /* MEDIUM */
    letter-spacing: -0.01em;
    margin-bottom: 1rem;
}

h3 {
    color: var(--color-text-heading);
    font-weight: 600;
    font-size: 1.25rem;
    /* MEDIUM-SMALL */
    margin-bottom: 0.5rem;
}

p,
li,
a {
    font-size: 1rem;
    /* SMALL/Standard */
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Components */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--border-radius);
    cursor: pointer;
    letter-spacing: 0.05em;
    border: 1px solid var(--color-text-heading);
    color: var(--color-text-heading);
    background: transparent;
    text-transform: uppercase;
}

.btn:hover {
    background: var(--color-text-heading);
    color: var(--color-bg);
}

.highlight {
    color: var(--color-text-heading);
    font-weight: 600;
}

/* Header */
.site-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-border);
    padding: 1rem 0;
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-text-heading);
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a:not(.btn) {
    font-size: 0.9rem;
    color: var(--color-text-main);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.nav-links a:not(.btn):hover {
    color: var(--color-text-heading);
}

/* Hero */
.hero-section {
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding-top: var(--spacing-lg);
}

.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    align-items: center;
}

.hero-content {
    max-width: 650px;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    margin-bottom: 0.5rem;
    line-height: 1;
    color: var(--color-text-heading);
}

.hero-position {
    font-size: 1.25rem;
    /* ~20px */
    font-weight: 600;
    color: var(--color-text-heading);
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 500px;
    color: var(--color-text-main);
}

.hero-image-wrapper {
    position: relative;
}

.hero-image {
    border-radius: var(--border-radius);
}

/* Overview */
.overview-section {
    padding: var(--spacing-lg) 0;
    background: var(--color-bg);
}

.lead-text-wrapper p {
    font-size: 1rem;
    /* Standardized to 1rem */
    color: var(--color-text-main);
    margin-bottom: 1rem;
    max-width: 800px;
    line-height: 1.6;
}

.overview-content {
    display: grid;
    gap: 2rem;
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.overview-card {
    background: var(--color-bg-alt);
    padding: 2rem;
    border-radius: var(--border-radius);
    border: 1px solid var(--color-border);
}

.overview-card h3 {
    margin-bottom: 1rem;
}

.overview-card ul li {
    position: relative;
    padding-left: 1.2rem;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.overview-card ul li::before {
    content: "•";
    color: var(--color-text-heading);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.overview-cta {
    font-size: 1.1rem;
    font-weight: 500;
    margin-top: 1.5rem;
    padding-left: 0;
    border: none;
    color: var(--color-text-heading);
}

/* Services */
.services-section {
    padding: var(--spacing-lg) 0;
    background: var(--color-bg-alt);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.service-card {
    background: var(--color-bg);
    padding: 2rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
    border: 1px solid var(--color-border);
}

.service-card:hover {
    border-color: var(--color-text-heading);
    transform: translateY(-3px);
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.service-card p {
    font-size: 0.95rem;
    color: var(--color-text-main);
}

/* Brands */
.brands-section {
    padding: var(--spacing-lg) 0;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 2rem;
    align-items: center;
    justify-items: center;
    margin-top: 2rem;
}

.brands-grid img {
    /* filter: grayscale(100%);  REMOVED per user request */
    transition: var(--transition);
    max-height: 60px;
    width: auto;
}

.brands-grid img:hover {
    transform: scale(1.05);
}

/* CTA */
.cta-section {
    padding: var(--spacing-xl) 0;
    text-align: center;
    background: var(--color-bg);
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* Footer */
.site-footer {
    padding: 3rem 0;
    text-align: center;
    border-top: 1px solid var(--color-border);
    color: var(--color-text-main);
    font-size: 0.9rem;
}

/* Animations */
.fade-in-section {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
    will-change: opacity, visibility;
}

.fade-in-section.visible {
    opacity: 1;
    transform: none;
}

/* Mobile */
@media (max-width: 768px) {
    .site-header {
        padding: 0.8rem 0;
    }

    .mobile-menu-toggle {
        display: block;
        cursor: pointer;
        z-index: 1001;
    }

    .mobile-menu-toggle span {
        display: block;
        width: 25px;
        height: 2px;
        /* Thinner lines */
        margin: 5px auto;
        transition: all 0.3s ease-in-out;
        background-color: var(--color-text-heading);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .nav-links {
        display: flex;
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 100%;
        /* Full width on mobile for better UX */
        background-color: var(--color-bg);
        flex-direction: column;
        justify-content: center;
        transition: 0.3s ease-in-out;
        padding: 2rem;
        z-index: 999;
    }

    .nav-links.active {
        right: 0;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-section {
        padding-top: 8rem;
        /* Correct fix for header overlap */
        min-height: auto;
        /* Allow content to determine height on mobile if needed */
        padding-bottom: 4rem;
    }

    .hero-subtitle {
        margin: 0 auto 1.5rem;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-image {
        max-width: 90%;
        margin: 0 auto;
    }

    :root {
        --spacing-lg: 3rem;
        --spacing-xl: 4rem;
    }

    .overview-grid {
        grid-template-columns: 1fr;
    }
}