/* --- GLOBAL RESET & VARIABLES --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --mint-bg: #d9f7e6; /* Exact Noisetron light green */
    --text-main: #111111;
    --logo-green: #1ca953;
    --content-width: 1200px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: var(--text-main);
    background-color: #ffffff;
    line-height: 1.6;
    font-size: 21px;
    -webkit-font-smoothing: antialiased;
}

.mint-bg {
    background-color: var(--mint-bg);
}

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

/* --- TYPOGRAPHY --- */
h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1.25rem;
    font-size: 1.2rem;
}

a {
    color: var(--text-main);
    text-decoration: underline;
    text-underline-offset: 3px;
}

a:hover {
    color: #444444;
}

/* --- HEADER & NAVIGATION --- */
.site-header {
    padding: 2rem 0 1rem 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon {
    width: 38px;
    height: 38px;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--logo-green);
    text-decoration: none;
    letter-spacing: -0.5px;
}

.logo-text:hover {
    color: #148a42;
    text-decoration: none;
}

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

.nav-link {
    text-decoration: none;
    font-weight: 500;
}

.nav-link.active {
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-thickness: 1.5px;
}

/* PILL BUTTON */
.btn-pill {
    background-color: #000000;
    color: #ffffff !important;
    text-decoration: none;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 1.25rem;
    font-weight: 500;
    transition: opacity 0.2s;
}

.btn-pill:hover {
    opacity: 0.8;
}

/* --- HERO SECTION (Home) --- */
.hero-section {
    padding: 3rem 0 4rem 0;
    text-align: center;
}

.hero-text {
    font-size: 2.25rem;
    line-height: 1.3;
    max-width: 900px;
    margin: 0 auto;
    letter-spacing: -0.5px;
}

/* --- MAIN CONTENT & GRIDS --- */
.main-content {
    padding: 4rem 2rem;
}

/* 3-Column Grid for Home */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

/* 2-Column Grid for Leadership */
.leadership-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: flex-start;
}

.leadership-text {
    padding-top: 1rem;
}

.leadership-photo .profile-img {
    width: 100%;
    max-width: 450px;
    height: auto;
    display: block;
    filter: grayscale(100%); /* Matches the B&W look in your screenshot */
}

/* --- LINKEDIN BADGE --- */
.linkedin-connect {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 2rem;
    font-weight: 500;
}

.linkedin-btn {
    background-color: #000000;
    color: #ffffff !important;
    text-decoration: none;
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 700;
}

.linkedin-btn:hover {
    background-color: #333333;
}

/* --- FOOTER --- */
.site-footer {
    padding: 4rem 0 2rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-col h2 {
    margin-top: 0;
    margin-bottom: 1.5rem;
}

.footer-col p {
    margin-bottom: 0.5rem;
}

.copyright {
    border-top: 1px solid rgba(0,0,0,0.1);
    padding-top: 2rem;
    font-size: 0.85rem;
}

.copyright p {
    margin-bottom: 0;
}

/* --- RESPONSIVE DESIGN (Mobile view) --- */
@media (max-width: 900px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .leadership-grid, .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .header-container {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .hero-text {
        font-size: 1.5rem;
    }
}
