/* =========================================================
   GLOBAL
========================================================= */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;

    font-family: "Inter", Arial, Helvetica, sans-serif;


    background: #ffffff;
    color: #171917;

    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

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


/* =========================================================
   HEADER / NAVIGATION
========================================================= */

.site-header {
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;

    z-index: 100;

    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.75),
        rgba(0, 0, 0, 0)
    );
}

.site-header .nav-container > img {
    
    width: 260px;
    
    height: auto;
    
    display: block;
    
    object-fit: contain;
}

.nav-container {
    width: min(1400px, 90%);

    min-height: 80px;

    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 40px;
}


/* Company name */

.logo {
    color: #ffffff;

    font-size: 1.2rem;
    font-weight: 700;

    letter-spacing: 0.06em;

    white-space: nowrap;
}


/* Navigation */

.main-nav {
    display: flex;
    align-items: center;

    gap: 35px;
}

.main-nav a {
    position: relative;

    color: #ffffff;

    font-size: 0.82rem;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 0.08em;

    transition: opacity 0.2s ease;
}

.main-nav a::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -8px;

    width: 0;
    height: 2px;

    background: #6B7540;

    transition: width 0.25s ease;
}

.main-nav a:hover {
    opacity: 0.8;
}

.main-nav a:hover::after {
    width: 100%;
}


/* =========================================================
   HERO
========================================================= */

.hero {
    position: relative;
    min-height: 100vh;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;
    background: #111311;
}

/* Background video */

.hero-video {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    z-index: 0;
}

/* Dark overlay over video */

.hero-overlay {
    position: absolute;
    inset: 0;

    z-index: 1;

    background:
        linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.45),
            rgba(0, 0, 0, 0.6)
        );
}


/* Hero text */

.hero-content {
    position: relative;

    z-index: 2;

    width: min(1100px, 90%);

    margin: 0 auto;

    padding-top: 70px;

    text-align: center;
}

.hero-eyebrow {
    margin: 0 0 22px;

    color: rgba(255, 255, 255, 0.9);

    font-size: 0.78rem;
    font-weight: 700;

    letter-spacing: 0.25em;
}

.hero h1 {

    font-family: "Inter", Arial, Helvetica, sans-serif;

    margin: 0;

    color: #ffffff;

    font-size: clamp(3.5rem, 8vw, 7.5rem);

    font-weight: 700;

    line-height: 1;

    letter-spacing: -0.02em;
}

.hero-description {
    max-width: 650px;

    margin: 30px auto 35px;

    color: rgba(255, 255, 255, 0.9);

    font-size: 1.1rem;
}


/* Hero button */

.hero-button {
    display: inline-block;

    padding: 14px 30px;

    border: 1px solid #6B7540;

    color: #6B7540;

    font-size: 0.8rem;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 0.1em;

    transition:
        background 0.25s ease,
        color 0.25s ease;
}

.hero-button:hover {
    background: #6B7540;
    color: #000000;
}

/* =========================================================
   ACCREDITATIONS DROPDOWN
   ========================================================= */

.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.nav-dropdown-toggle::after {
    content: "▾";
    font-size: 0.7em;
    transition: transform 0.2s ease;
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    min-width: 180px;
    padding: 8px 0;

    background: #ffffff;
    border: 1px solid #d7dacd;

    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);

    opacity: 0;
    visibility: hidden;
    transform: translateY(-5px);

    transition:
        opacity 0.2s ease,
        visibility 0.2s ease,
        transform 0.2s ease;

    z-index: 1000;
}

.nav-dropdown-menu a {
    display: block;
    padding: 10px 18px;

    color: #171917;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-decoration: none;
    white-space: nowrap;
}

.nav-dropdown-menu a:hover {
    background: #f3f4ee;
    color: #6B7540;
}

/* Show dropdown on hover */
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown:hover .nav-dropdown-toggle::after {
    transform: rotate(180deg);
}

/* =========================================================
   SCROLL INDICATOR
========================================================= */

.scroll-indicator {
    position: absolute;

    left: 50%;
    bottom: 30px;

    z-index: 2;

    transform: translateX(-50%);

    display: flex;
    flex-direction: column;
    align-items: center;

    color: rgba(255, 255, 255, 0.8);

    font-size: 0.65rem;

    text-transform: uppercase;

    letter-spacing: 0.15em;
}

.scroll-indicator .arrow {
    font-size: 1.5rem;

    animation: bounce 1.8s infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(7px);
    }
}


/* =========================================================
   STANDARD PAGE HEADER
========================================================= */

.page-header {
    min-height: 420px;

    display: flex;
    align-items: flex-end;

    padding: 140px 0 70px;

    background: #ffffff;
}

.page-header .container {
    width: min(1200px, 90%);
    margin: 0 auto;
}

.page-header h1 {
    margin: 0 0 15px;

    color: #171917;

    font-size: clamp(3rem, 7vw, 6rem);

    line-height: 0.95;

    letter-spacing: -0.04em;
}

.page-header p {
    margin: 0;

    color: #5f6259;

    font-size: 1.1rem;
}


/* =========================================================
   STANDARD CONTENT SECTIONS
========================================================= */

.section {
    padding: 110px 0;

    background: #ffffff;
}

.section-light {
    background: #ffffff;

    color: #171917;
}

.container {
    width: min(1200px, 90%);
    margin: 0 auto;
}

.content {
    max-width: 850px;
}

.section h2 {
    color: inherit;

    font-size: clamp(2rem, 4vw, 4rem);

    line-height: 1.05;

    letter-spacing: -0.03em;
}

.section p {
    color: #5f6259;

    font-size: 1.05rem;
}

.section-light p {
    color: #5f6259;
}


/* =========================================================
   INTRO SECTION
========================================================= */

.intro-section {
    padding: 120px 0;

    background: #6B7540;

    color: #000000; /* "Built on Precision. Driven by quality"- example text*/
}

.intro-container {
    width: min(1200px, 90%);

    margin: 0 auto;
}

.intro-label {
    margin-bottom: 50px;

    color: #000000; /* "WHO WE ARE" */

    font-size: 0.75rem;
    font-weight: 700;

    letter-spacing: 0.2em;
}

.intro-content {
    display: grid;

    grid-template-columns:
        minmax(300px, 1fr)
        minmax(300px, 1fr);

    gap: 100px;

    align-items: start;
}

.intro-content h2 {

    margin: 0;

    font-size: clamp(2.5rem, 5vw, 5rem);

    line-height: 1;

    letter-spacing: -0.04em;
}

.intro-text {
    max-width: 600px;

    color: #000000;

    font-size: 1.1rem;
}

.intro-text p {
    margin-top: 0;
    margin-bottom: 25px;
}


/* =========================================================
   TEXT LINKS
========================================================= */

.text-link {
    display: inline-block;

    margin-top: 15px;

    color: #000000; /* "LEARN MORE ABOUT US" */

    font-size: 0.8rem;
    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 0.1em;

    border-bottom: 1px solid #6B7540;

    padding-bottom: 5px;
}


/* =========================================================
   CERTIFICATIONS
========================================================= */

.certification {
    display: flex;

    align-items: center;

    gap: 40px;

    padding: 45px 0;

    border-bottom: 1px solid #d7dacd;
}

.cert-logo {
    width: 150px;
    height: 100px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #f3f4ee;

    color: #5f6259;

    border: 1px solid #cdd2bf;
}

.certification h2 {
    margin-bottom: 10px;

    font-size: 1.6rem;
}

.certification p {
    margin: 0;

    color: #5f6259;
}


/* =========================================================
   CONTACT
========================================================= */

.contact-grid {
    display: grid;

    grid-template-columns:
        1fr
        1.5fr;

    gap: 80px;
}


form {
    display: flex;
    flex-direction: column;
}

label {
    margin-bottom: 7px;

    color: #171917;

    font-size: 0.8rem;
    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 0.08em;
}

input,
textarea {
    width: 100%;

    margin-bottom: 25px;

    padding: 14px;

    background: #ffffff;

    color: #171917;

    border: 1px solid #cdd2bf;

    font: inherit;
}

input:focus,
textarea:focus {
    outline: none;

    border-color: #6B7540;
}

textarea {
    resize: vertical;
}

button {
    cursor: pointer;
}


/* =========================================================
   PLACEHOLDER
========================================================= */

.placeholder-section {
    min-height: 500px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #f3f4ee;

    text-align: center;
}

.placeholder-content p {
    margin-bottom: 10px;

    color: #5f6259;

    font-size: 0.7rem;

    letter-spacing: 0.2em;
}

.placeholder-content h2 {
    margin: 0;

    color: #171917;

    font-size: 3rem;
}


/* =========================================================
   FOOTER
========================================================= */


.footer-container strong {
    font-size: 1rem;

    letter-spacing: 0.05em;
}

.footer-container p {
    color: #5f6259;

    font-size: 0.85rem;
}


.linkedin-icon {
    width: 18px;
    height: 18px;
    object-fit: contain;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .nav-container {
        min-height: 80px;

        flex-direction: column;

        justify-content: center;

        gap: 15px;
    }

    .logo {
        font-size: 1rem;
    }

    .main-nav {
        gap: 18px;
    }

    .main-nav a {
        font-size: 0.62rem;
    }

    .hero-content {
        padding-top: 90px;
    }

    .hero h1 {
        font-size: clamp(3rem, 14vw, 5rem);
    }

    .hero-description {
        font-size: 1rem;
    }

    .intro-section {
        padding: 80px 0;
    }

    .intro-content {
        grid-template-columns: 1fr;

        gap: 45px;
    }

    .contact-grid {
        grid-template-columns: 1fr;

        gap: 50px;
    }

    .certification {
        align-items: flex-start;

        flex-direction: column;

        gap: 25px;
    }

    .footer-container {
        grid-template-columns: 1fr;

        gap: 20px;
    }

    .section {
        padding: 80px 0;
    }

}

/* =========================================================
   PAGE EYEBROW
========================================================= */

.page-eyebrow {
    margin: 0 0 20px;

    color: #000000;

    font-size: 0.9rem;
    font-weight: 700;

    letter-spacing: 0.2em;
}


/* =========================================================
   ABOUT PAGE
========================================================= */

.about-intro {
    display: block;
}


.about-content {
    display: grid;

    grid-template-columns:
        minmax(300px, 1fr)
        minmax(300px, 1fr);

    gap: 100px;

    align-items: start;
}

.about-content h2 {
    margin: 0;

    color: #171917;

    font-size: clamp(
        2.5rem,
        5vw,
        5rem
    );

    line-height: 1;

    letter-spacing: -0.04em;
}

.about-text {
    max-width: 600px;
}

.about-text p {
    margin-top: 0;

    margin-bottom: 25px;

    color: #000000;

    font-size: 1.05rem;
}


/* Dark About section */


/* About CTA */


.about-cta h2 {
    margin: 0 0 40px;

    color: #171917;

    font-size: clamp(
        3rem,
        7vw,
        6rem
    );

    line-height: 0.95;

    letter-spacing: -0.04em;
}


/* =========================================================
   CONTACT PAGE
========================================================= */

.contact-info h2 {
    margin: 0 0 30px;

    color: #171917;

    font-size: clamp(
        2.5rem,
        5vw,
        4.5rem
    );

    line-height: 1;

    letter-spacing: -0.04em;
}

.contact-info > p {
    max-width: 500px;

    margin-bottom: 50px;

    color: #5f6259;

    font-size: 1.05rem;
}


/* Contact details */


.contact-detail a {
    color: #171917;

    font-size: 1rem;
}

.contact-detail p {
    margin: 0;

    color: #5f6259;

    font-size: 0.95rem;
}


/* Form */

.form-header {
    margin-bottom: 35px;
}

.form-header .about-label {
    margin-bottom: 15px;
}

.form-header h2 {
    margin: 0;

    color: #171917;

    font-size: 2rem;

    line-height: 1.1;
}

.form-container form .hero-button {
    width: 100%;
    display: block;
    color: #000000;
    background: transparent;
    border: 1px solid #000000;
    border-radius: 8px;
    padding: 14px 30px;
}

.form-container form .hero-button:hover {
    background: #000000;
    color: #ffffff;
    border-color: #000000;
}


/* Contact bottom */


/* =========================================================
   PRODUCT / FACILITY GALLERY
========================================================= */

.gallery-section {
    padding: 120px 0;

    background: #ffffff;
}

.gallery-container {
    width: min(1400px, 92%);

    margin: 0 auto;
}


/* Gallery heading */

.gallery-header {
    display: grid;

    grid-template-columns:
        1fr
        1fr;

    gap: 80px;

    align-items: end;

    margin-bottom: 60px;
}

.gallery-eyebrow {
    margin: 0 0 20px;

    color: #5f6259;

    font-size: 0.7rem;
    font-weight: 700;

    letter-spacing: 0.2em;
}

.gallery-header h2 {
    margin: 0;

    color: #171917;

    font-size: clamp(
        2.5rem,
        5vw,
        5rem
    );

    line-height: 0.95;

    letter-spacing: -0.04em;
}

.gallery-description {
    max-width: 500px;

    margin: 0;

    color: #5f6259;

    font-size: 1rem;
}


/* =========================================================
   GRID
========================================================= */

.gallery-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 5px;
}

.gallery-item {
    position: relative;

    display: block;

    aspect-ratio: 4 / 3;

    overflow: hidden;

    background: #f3f4ee;
}


/* Image itself */

.gallery-item img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 0.6s ease,
        filter 0.6s ease;
}


/* Dark overlay */

.gallery-item::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(0, 0, 0, 0.65),
            rgba(0, 0, 0, 0)
        );

    opacity: 0;

    transition: opacity 0.4s ease;
}


/* Label */

.gallery-overlay {
    position: absolute;

    left: 25px;
    bottom: 20px;

    z-index: 2;

    color: #171917;

    font-size: 0.7rem;
    font-weight: 700;

    letter-spacing: 0.15em;

    opacity: 0;

    transform: translateY(10px);

    transition:
        opacity 0.4s ease,
        transform 0.4s ease;
}


/* Hover */

.gallery-item:hover img {
    transform: scale(1.06);

    filter: brightness(0.8);
}

.gallery-item:hover::after {
    opacity: 1;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;

    transform: translateY(0);
}


/* =========================================================
   GALLERY MOBILE
========================================================= */

@media (max-width: 700px) {

    .gallery-section {
        padding: 80px 0;
    }

    .gallery-header {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 40px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .gallery-item {
        aspect-ratio: 4 / 3;
    }

    .gallery-overlay {
        left: 15px;
        bottom: 15px;
        font-size: 0.6rem;
    }

}


/* =========================================================
   ABOUT + CONTACT MOBILE
========================================================= */

@media (max-width: 700px) {

    .about-content {
        grid-template-columns: 1fr;

        gap: 50px;
    }

    .about-cards {
        grid-template-columns: 1fr;
    }

    .about-card {
        min-height: auto;
    }

    .about-number {
        margin-bottom: 30px;
    }

    .about-cta,
    .contact-bottom {
        padding: 90px 0;
    }

}

/* =========================================================
   COPYRIGHT / LINKEDIN MOBILE
========================================================= */

@media (max-width: 700px) {

    .copyright {
        gap: 15px;
    }

    .linkedin-link {
        font-size: 0.7rem;
    }

}
/* =========================================================
   ABOUT + CONTACT OLIVE THEME
   ========================================================= */

/* Interior page headers */
body:has(.about-intro) .page-header,
body:has(.contact-grid) .page-header {
    background: #6B7540;
}


/* About page */
.about-label {
    margin-bottom: 45px;
    font-size: 1.2rem;
    font-weight: 650;
    letter-spacing: 0.2em;
    color: #6B7540;
}


.about-cta {
    padding: 95px 0;
    background: #6B7540;
    color: #ffffff;
    text-align: center;
}

.about-cta .page-eyebrow,
.about-cta h2 {
    color: #ffffff;
}


/* Contact information */
.contact-info .about-label,
.contact-detail span {
    color: #6B7540;
}

.contact-detail {
    padding: 0;
    margin-bottom: 24px;
    border-top: none;
}

.contact-detail:last-child {
    margin-bottom: 0;
}

.contact-detail span {
    color: #6f7268;
    display: block;
    margin-bottom: 5px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
}

.contact-detail a,
.contact-detail p {
    display: block;
    margin: 0;

    color: #171917;
    font-size: 1rem;
    line-height: 1.5;
}

/* Contact form */
.form-container {
    padding: 40px;
    background: #6B7540;
    border: 1px solid #6B7540;
    border-radius: 12px;
}


.form-container input,
.form-container textarea {
    background: #ffffff;
    color: #171917;
    border: 1px solid #ffffff;
    border-radius: 8px;
}

.form-container input:focus,
.form-container textarea:focus {
    border-color: #171917;
}


/* Contact CTA */
.contact-bottom {
    padding: 85px 0;
    background: #6B7540;
    text-align: center;
}

.contact-bottom .page-eyebrow {
    margin-bottom: 18px;
    color: #ffffff;
}

.contact-bottom h2 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1;
    letter-spacing: -0.04em;
}

/* =========================================================
   DARK FOOTER
   ========================================================= */


.footer-container {
    width: min(1200px, 90%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    align-items: center;
    gap: 70px;
}

.footer-logo {
    width: 260px;
    height: auto;
    margin-bottom: 15px;
}


.copyright p {
    margin: 0;
}


@media (max-width: 700px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .footer-logo {
        width: 220px;
    }

    .footer-container > div:nth-child(2),
    .footer-container > div:nth-child(3) {
        padding-left: 0;
        padding-top: 20px;
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
    }

    .copyright {
        flex-direction: column;
        align-items: flex-start;
    }
}
/* =========================================================
   OLIVE BACKGROUNDS - BLACK TEXT
   ========================================================= */

body:has(.about-intro) .page-header h1, body:has(.about-intro) .page-header p, body:has(.about-intro) .page-header .page-eyebrow, body:has(.contact-grid) .page-header h1, body:has(.contact-grid) .page-header p, body:has(.contact-grid) .page-header .page-eyebrow {
    color: #000000;
}

.about-card,
.about-card h3,
.about-card p,
.about-number {
    color: #000000;
}

.about-cta,
.about-cta .page-eyebrow,
.about-cta h2 {
    color: #000000;
}

.about-cta .hero-button {
    border-radius: 8px;
    color: #000000;
    border-color: #000000;
}

.about-cta .hero-button:hover {
    background: #000000;
    color: #ffffff;
}

.form-container .about-label, .form-container .form-header h2, .form-container label {
    color: #000000;
}

.contact-bottom .page-eyebrow,
.contact-bottom h2 {
    color: #000000;
}

/* =========================================================
   LIGHT FOOTER
   ========================================================= */

.site-footer {
    padding: 60px 0 25px;
    background: #ffffff;
    color: #171917;
    border-top: 1px solid #d7dacd;
}

.footer-brand p, .footer-container p {
    margin: 0;
    font-size: 0.85rem;
    line-height: 1.7;
    color: #5f6259;
}

.footer-container > div:nth-child(2), .footer-container > div:nth-child(3) {
    padding-left: 25px;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    border-left-color: #d7dacd;
}

.copyright {
    width: min(1200px, 90%);
    margin: 45px auto 0;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    color: #6F7169;
    border-top-color: #d7dacd;
}

.linkedin-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-decoration: none;
    transition: opacity 0.2s ease, color 0.2s ease;
    color: #171917;
}

.linkedin-link:hover {
    opacity: 0.7;
    color: #6B7540;
}

@media (max-width: 700px) {
    .footer-container > div:nth-child(2),
    .footer-container > div:nth-child(3) {
        border-top-color: #d7dacd;
    }
}


/* =========================================================
   SERVICES / CAPABILITIES
   ========================================================= */

.capabilities-section {
    padding: 120px 0;
    background: #6B7540;
}

.capabilities-header {
    max-width: 850px;
    margin: 0 auto 60px;
    text-align: center;
}

.capabilities-eyebrow {
    margin: 0 0 18px;

    color: #6B7540;

    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
}

.capabilities-header h2 {
    margin: 0;

    color: #171917;

    font-size: clamp(2.8rem, 5vw, 5.2rem);
    line-height: 1;
    letter-spacing: -0.04em;
}

.capabilities-description {
    max-width: 720px;
    margin: 24px auto 0;

    color: #000000;

    font-size: 1.05rem;
    line-height: 1.7;
}

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.capability-card {
    min-height: 100%;

    padding: 30px;

    background: #ffffff;
    border: 1px solid #d7dacd;
    border-radius: 14px;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.capability-card-header {
    display: flex;
    align-items: center;
    gap: 18px;

    padding-bottom: 22px;
    margin-bottom: 22px;

    border-bottom: 1px solid #d7dacd;
}

.capability-icon {
    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex: 0 0 58px;

    border-radius: 50%;

    background: #6B7540;
    color: #000000;

    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.capability-card h3 {
    margin: 0;

    color: #171917;

    font-size: 1.35rem;
    line-height: 1.1;
}

.capability-card ul {
    list-style: none;

    margin: 0;
    padding: 0;
}

.capability-card li {
    margin-bottom: 10px;

    color: #44483f;

    font-size: 0.98rem;
    line-height: 1.5;
}

.capability-card li:last-child {
    margin-bottom: 0;
}

/* =========================================================
   ABOUT APPROACH - CLEANER CARDS
   ========================================================= */

.about-dark {
    padding: 120px 0;
    background: #6B7540;
}

.about-dark .about-label {
    margin-bottom: 30px;

    color: #000000;
    text-align: center;
}

.about-cards {
    border-color: #6B7540;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    background: transparent;
    border: none;
}

.about-card {
    min-height: 280px;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 24px;
    padding: 34px;
    background: transparent;
    color: #000000;
    border-right: 1px solid rgba(0, 0, 0, 0.22);
}

.about-card:last-child {
    border-right: none;
}

.about-number {
    margin-bottom: 60px;
    letter-spacing: 0.15em;
    display: block;
    margin: 0;
    color: rgba(0, 0, 0, 0.55);
    font-size: 1.85rem;
    font-weight: 500;
    line-height: 1;
}

.about-card-content {
    padding-left: 4px;
}

.about-card h3 {
    margin: 0 0 12px;
    color: #000000;
    font-size: 1.45rem;
}

.about-card p {
    margin: 0;
    color: rgba(0, 0, 0, 0.78);
    font-size: 0.98rem;
    line-height: 1.6;
}

@media (max-width: 900px) {
    .capabilities-grid {
        grid-template-columns: 1fr;
    }

    .about-cards {
        grid-template-columns: 1fr;
    }

    .about-card {
        min-height: auto;

        border-right: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.22);
    }

    .about-card:last-child {
        border-bottom: none;
    }
}

@media (max-width: 700px) {
    .capabilities-section,
    .about-dark {
        padding: 80px 0;
    }

    .capabilities-header {
        margin-bottom: 40px;
    }

    .capability-card {
        padding: 24px;
    }

    .about-card {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 28px 0;
    }
}


/* =========================================================
   CAPABILITY CARD ICONS
   ========================================================= */

.capability-icon svg {
    width: 28px;
    height: 28px;

    fill: none;
    stroke: #000000;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}


/* =========================================================
   INDUSTRIES WE SERVICE
   ========================================================= */

.industries-section {
    padding: 120px 0;
    background: #ffffff;
}

.industries-header {
    margin-bottom: 55px;
    text-align: center;
}

.industries-eyebrow {
    margin: 0;
    color: #6B7540;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.2em;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.industry-card {
    min-height: 185px;
    padding: 30px;
    display: flex;
    align-items: center;

    background: #ffffff;
    border: 1px solid #d7dacd;
    border-radius: 14px;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.industry-card-header {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 18px;
}

.industry-icon {
    width: 58px;
    height: 58px;
    flex: 0 0 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #6B7540;
    border-radius: 50%;
}

.industry-icon svg {
    width: 28px;
    height: 28px;

    fill: none;
    stroke: #000000;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.industry-card h3 {
    margin: 0;
    color: #171917;
    font-size: 1.35rem;
    line-height: 1.1;
}

@media (max-width: 900px) {
    .industries-grid {
        grid-template-columns: 1fr;
    }

    .industry-card {
        min-height: 140px;
    }
}

@media (max-width: 700px) {
    .industries-section {
        padding: 80px 0;
    }

    .industries-header {
        margin-bottom: 40px;
    }

    .industry-card {
        padding: 24px;
    }
}

/* =========================================================
   CONTACT FORM BUTTON - MATCH ABOUT CTA
   ========================================================= */

.form-container form .hero-button {
    width: 100%;
    display: block;

    color: #000000;
    background: transparent;

    border: 1px solid #000000;
    border-radius: 8px;

    padding: 14px 30px;
}

.form-container form .hero-button:hover {
    background: #000000;
    color: #ffffff;
    border-color: #000000;
}