/* MRLD Industrial Design System */
/* Premium Industrial Direction */


:root {

    /* Industrial Palette */

    --black: #111111;
    --graphite: #2B2B2B;
    --steel: #6B7075;
    --concrete: #D9D7D2;
    --background: #F3F2EE;
    --white: #FFFFFF;

    --accent: #C46A24;


    /* Typography */

    --heading-font: "Manrope", sans-serif;
    --body-font: "Inter", sans-serif;


    /* Layout */

    --container: 1280px;

}




* {

    margin: 0;
    padding: 0;
    box-sizing: border-box;

}




body {

    font-family: var(--body-font);
    color: var(--graphite);
    background: var(--background);
    line-height: 1.7;

}




p {

    max-width: 750px;

}




h1,
h2,
h3 {

    font-family: var(--heading-font);
    color: var(--black);
    letter-spacing: -0.03em;

}




h1 {

    font-size: clamp(3rem, 6vw, 5rem);
    line-height: 1.05;

}




h2 {

    font-size: 2.5rem;
    margin-bottom: 25px;

}




h3 {

    font-size: 1.4rem;

}




/* Navigation */


.navbar {

    max-width: var(--container);
    margin: auto;

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

    padding: 35px 8%;

}




.logo {

    text-decoration: none;

    color: var(--black);

    font-size: 1.7rem;

    font-weight: 800;

    letter-spacing: 4px;

}




.logo:hover {

    color: var(--accent);

}




.nav-links {

    display: flex;

    gap: 35px;

    list-style: none;

}




.nav-links a {

    text-decoration: none;

    color: var(--graphite);

    transition: color .3s ease;

}




.nav-links a:hover {

    color: var(--accent);

}





/* Hero */


.hero {

    max-width: var(--container);

    margin: auto;

    padding: 140px 8% 100px;

}




.hero-layout {

    display: grid;

    grid-template-columns: 1.2fr .8fr;

    gap: 70px;

    align-items: center;

}




.hero p {

    margin: 30px 0;

    font-size: 1.25rem;

    color: var(--steel);

}




/* Buttons */


.button {

    display: inline-block;

    padding: 16px 32px;

    background: var(--black);

    color: var(--white);

    font-weight: 600;

    text-decoration: none;

    letter-spacing: .02em;

    transition: all .3s ease;

}




.button:hover {

    background: var(--accent);

}





/* Sections */


section {

    padding: 100px 0;

}




.container {

    max-width: var(--container);

    margin: auto;

    padding: 0 40px;

}




.section-header {

    max-width: 700px;

    margin-bottom: 40px;

}




.section-header p {

    color: var(--steel);

    font-size: 1.15rem;

}





/* Equipment / Capability Card */


.machine-card {

    background: var(--graphite);

    padding: 40px;

    border: 1px solid #444;

}




.machine-card div {

    padding: 18px;

    margin-bottom: 12px;

    background: var(--black);

    color: var(--white);

    text-align: center;

    font-weight: 600;

    letter-spacing: .02em;

}




.machine-card div:hover {

    background: var(--accent);

}





/* Service Cards */


.cards {

    display: grid;

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

    gap: 30px;

}




.card {

    background: var(--white);

    padding: 40px;

    border: 1px solid #ddd;

    transition: transform .3s ease;

}




.card:hover {

    transform: translateY(-3px);

}




.card h3 {

    margin-bottom: 15px;

}




.card p {

    color: var(--steel);

}





/* Contact */


.contact-layout {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 60px;

}




.contact-box {

    background: var(--white);

    padding: 40px;

    border: 1px solid #ddd;

}




form {

    display: flex;

    flex-direction: column;

    gap: 15px;

}




input,
textarea {

    padding: 15px;

    border: 1px solid #ccc;

    font-family: var(--body-font);

}




button {

    border: none;

    cursor: pointer;

}





/* Footer */

footer {

    background: var(--black);

    color: var(--white);

    padding: 60px 8% 30px;

}


.footer-content {

    display: flex;

    justify-content: space-between;

    gap: 60px;

}



.footer-brand {

    max-width: 350px;

}



.footer-brand h3 {

    color: var(--white);

    text-transform: uppercase;

    letter-spacing: 3px;

    margin-bottom: 15px;

}



.footer-tagline {

    color: var(--accent);

    font-weight: 600;

    margin-bottom: 15px;

}



.footer-description {

    color: #B5B5B5;

}



.footer-links {

    display: flex;

    gap: 70px;

}



.footer-links h4 {

    color: var(--accent);

    margin-bottom: 15px;

}



.footer-links a {

    display: block;

    color: var(--white);

    opacity: .85;

    text-decoration: none;

    margin-bottom: 10px;

}



.footer-links a:hover {

    opacity: 1;

    color: var(--accent);

}



.footer-bottom {

    margin-top: 40px;

    padding-top: 20px;

    border-top: 1px solid rgba(255,255,255,.15);

    display: flex;

    justify-content: space-between;

}



.footer-bottom p {

    color: #999;

    font-size: .9rem;

}



@media(max-width:768px){

    .footer-content,
    .footer-links,
    .footer-bottom {

        flex-direction: column;

        gap:30px;

    }

}




/* Mobile */


@media(max-width:768px){


.hero-layout,
.cards,
.contact-layout {

    grid-template-columns: 1fr;

}


.navbar {

    flex-direction: column;

    gap: 25px;

    align-items: flex-start;

}


.nav-links {

    flex-direction: column;

    gap: 15px;

}


.hero {

    padding: 80px 8% 60px;

}


.footer-content,
.footer-links {

    flex-direction: column;

}


}
