/* ==========================================================
   homepage.css — Home-page-specific layout tweaks
   ========================================================== */

/* Company introduction: intro text + quick-fact panel side by side */
#company-introduction .container {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: var(--space-lg);
    align-items: center;
}

#company-introduction .about-facts {
    background: var(--color-bg-grey);
    border: 1px solid var(--color-light-grey);
    border-radius: var(--radius-md);
    padding: var(--space-md);
}

#company-introduction .about-facts dl {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-sm) var(--space-md);
    margin: 0;
}

#company-introduction .about-facts dt {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.6rem;
    color: var(--color-red);
}

#company-introduction .about-facts dd {
    margin: 0;
    font-size: 0.82rem;
    color: var(--color-charcoal);
    font-weight: 500;
}

@media (max-width: 860px) {
    #company-introduction .container {
        grid-template-columns: 1fr;
    }
}

/* Industries section: dark, tag-based */
#industries-served {
    background: var(--color-navy);
    color: rgba(255, 255, 255, 0.85);
}

#industries-served h2 {
    color: var(--color-white);
}

#industries-served .tag-list li {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.15);
    color: var(--color-white);
}

#industries-served .tag-list li:hover {
    border-color: var(--color-red);
    color: #FF8B8E;
}

/* Featured projects: dark section, card grid */
#featured-projects {
    background: var(--color-navy);
}

#featured-projects h2 {
    color: var(--color-white);
}

#featured-projects .section-head p {
    color: rgba(255, 255, 255, 0.72);
}

/* Clients preview strip */
#clients-preview {
    text-align: center;
}

#clients-preview .logo-marquee {
    justify-content: center;
}

/* Contact preview: dark */
#contact-preview {
    background: var(--color-navy);
    color: rgba(255, 255, 255, 0.85);
}

#contact-preview h2 {
    color: var(--color-white);
}
