*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:Arial, Helvetica, sans-serif;
    background:#050505;
    color:#ffffff;
    line-height:1.6;
    overflow-x:hidden;
}

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

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

.container{
    width:90%;
    max-width:1320px;
    margin:0 auto;
}

/* HEADER */

.site-header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:1000;
    background:rgba(3,3,3,.92);
    backdrop-filter:blur(14px);
    border-bottom:1px solid rgba(217,106,23,.35);
}

.nav-inner{
    height:92px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:32px;
}

.brand img{
    height:72px;
    width:auto;
    object-fit:contain;
}

.main-nav{
    display:flex;
    align-items:center;
    gap:34px;
}

.main-nav a{
    font-size:15px;
    font-weight:900;
    letter-spacing:.5px;
    transition:.25s ease;
}

.main-nav a:hover{
    color:#d96a17;
}

.nav-button{
    background:#d96a17;
    padding:15px 28px;
    border-radius:4px;
    font-weight:900;
    white-space:nowrap;
    box-shadow:0 0 26px rgba(217,106,23,.28);
}

/* HERO */

.hero{
    min-height:100vh;
    background:
        linear-gradient(90deg, rgba(0,0,0,.94) 0%, rgba(0,0,0,.76) 42%, rgba(0,0,0,.38) 100%),
        url("../images/hero/hero-workshop-clean.jpg");
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
}

.hero-overlay{
    min-height:100vh;
    display:flex;
    align-items:center;
    padding-top:92px;
}

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

.eyebrow{
    color:#d96a17;
    text-transform:uppercase;
    letter-spacing:5px;
    font-size:14px;
    font-weight:900;
    margin-bottom:18px;
}

.hero h1{
    font-size:86px;
    line-height:.9;
    text-transform:uppercase;
    font-weight:900;
    margin-bottom:18px;
}

.hero h2{
    color:#d96a17;
    font-size:44px;
    line-height:1;
    font-style:italic;
    text-transform:uppercase;
    margin-bottom:28px;
}

.hero p{
    max-width:650px;
    color:#dddddd;
    font-size:22px;
    margin-bottom:38px;
}

.hero-buttons{
    display:flex;
    gap:18px;
    flex-wrap:wrap;
}

/* BUTTONS */

.primary-button,
.secondary-button{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:17px 34px;
    border-radius:4px;
    font-weight:900;
    transition:.25s ease;
}

.primary-button{
    background:#d96a17;
    color:#ffffff;
    box-shadow:0 0 24px rgba(217,106,23,.28);
}

.primary-button:hover{
    background:#f47a1f;
    transform:translateY(-2px);
}

.secondary-button{
    border:2px solid #ffffff;
    color:#ffffff;
}

.secondary-button:hover{
    background:#ffffff;
    color:#050505;
}

/* SECTIONS */

.services-section,
.builds-section,
.about-section,
.suppliers-section,
.gallery-section,
.contact-section{
    padding:110px 0;
}

.section-heading{
    margin-bottom:58px;
}

.section-heading.centre{
    text-align:center;
}

.section-heading h2,
.build-content h2,
.about-content h2,
.suppliers-section h2,
.contact-grid h2{
    font-size:52px;
    line-height:1.08;
    text-transform:uppercase;
}

/* SERVICES */

.services-section{
    background:linear-gradient(180deg,#121212,#080808);
}

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

.service-card{
    position:relative;
    background:linear-gradient(180deg,#191919,#101010);
    border:1px solid rgba(255,255,255,.12);
    border-radius:10px;
    padding:34px;
    min-height:245px;
    overflow:hidden;
    transition:.3s ease;
}

.service-card:before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:0;
    height:3px;
    background:#d96a17;
    transition:.3s ease;
}

.service-card:hover:before{
    width:100%;
}

.service-card:hover{
    transform:translateY(-8px);
    border-color:rgba(217,106,23,.85);
    box-shadow:0 24px 60px rgba(217,106,23,.12);
}

.service-card span{
    display:block;
    color:#d96a17;
    font-size:32px;
    font-weight:900;
    margin-bottom:20px;
}

.service-card h3{
    font-size:25px;
    line-height:1.15;
    text-transform:uppercase;
    margin-bottom:14px;
}

.service-card p{
    color:#c7c7c7;
}

/* BUILDS */

.builds-section{
    background:#050505;
}

.builds-grid,
.about-grid,
.suppliers-grid,
.contact-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
}

.build-image,
.about-image,
.supplier-image{
    overflow:hidden;
    border-radius:12px;
    border:1px solid rgba(217,106,23,.35);
    box-shadow:0 30px 80px rgba(0,0,0,.55);
}

.build-image img,
.about-image img,
.supplier-image img{
    width:100%;
    height:520px;
    object-fit:cover;
    object-position:center;
    transition:.4s ease;
}

.build-image:hover img,
.about-image:hover img,
.supplier-image:hover img{
    transform:scale(1.04);
}

.build-content p,
.about-content p,
.suppliers-section p,
.contact-grid p{
    color:#cccccc;
    font-size:18px;
    margin-bottom:22px;
}

/* ABOUT */

.about-section{
    background:linear-gradient(90deg,#151515,#0d0d0d);
}

/* SUPPLIERS */

.suppliers-section{
    background:#080808;
}

/* GALLERY */

.gallery-section{
    background:#050505;
}

.gallery-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr;
    gap:20px;
}

.gallery-grid img{
    width:100%;
    height:360px;
    object-fit:cover;
    border-radius:10px;
    border:1px solid rgba(255,255,255,.12);
}

/* CONTACT */

.contact-section{
    background:
        linear-gradient(rgba(0,0,0,.86),rgba(0,0,0,.86)),
        url("../images/gallery/neon-floor-texture.jpg");
    background-size:cover;
    background-position:center;
}

.contact-card{
    background:linear-gradient(180deg,#1a1a1a,#101010);
    border:1px solid rgba(255,255,255,.12);
    border-radius:10px;
    padding:42px;
}

.contact-card p{
    margin-bottom:18px;
}

/* FOOTER */

.site-footer{
    background:#030303;
    border-top:1px solid rgba(255,255,255,.08);
}

.footer-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr;
    gap:55px;
    padding:70px 0;
}

.footer-logo{
    width:130px;
    margin-bottom:25px;
}

.footer-grid h3{
    color:#d96a17;
    margin-bottom:18px;
}

.footer-grid a,
.footer-grid p{
    display:block;
    color:#c9c9c9;
    margin-bottom:10px;
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,.08);
    text-align:center;
    padding:24px;
    color:#8f8f8f;
}

/* MOBILE */

@media(max-width:1000px){

    .nav-inner{
        height:auto;
        min-height:86px;
        padding:12px 0;
    }

    .brand img{
        height:58px;
    }

    .main-nav{
        display:none;
    }

    .nav-button{
        padding:12px 18px;
        font-size:13px;
    }

    .hero{
        min-height:760px;
        background-position:center;
    }

    .hero-overlay{
        min-height:760px;
        padding-top:86px;
    }

    .hero h1{
        font-size:48px;
    }

    .hero h2{
        font-size:28px;
    }

    .hero p{
        font-size:18px;
    }

    .hero-buttons{
        flex-direction:column;
        align-items:flex-start;
    }

    .primary-button,
    .secondary-button{
        width:100%;
        max-width:280px;
    }

    .services-section,
    .builds-section,
    .about-section,
    .suppliers-section,
    .gallery-section,
    .contact-section{
        padding:80px 0;
    }

    .services-grid,
    .builds-grid,
    .about-grid,
    .suppliers-grid,
    .gallery-grid,
    .contact-grid,
    .footer-grid{
        grid-template-columns:1fr;
    }

    .section-heading h2,
    .build-content h2,
    .about-content h2,
    .suppliers-section h2,
    .contact-grid h2{
        font-size:34px;
    }

    .build-image img,
    .about-image img,
    .supplier-image img,
    .gallery-grid img{
        height:280px;
    }
}