@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;500;600;700;800&family=Inter:wght@400;500;600;700&display=swap');


:root {

    --black: #111111;
    --dark: #181818;
    --dark-2: #222222;

    --red: #B4121B;
    --red-dark: #C72B32;

    --green: #BAFF39;
    --green-dark: #636B2F;

    --yellow: #f5b900;
    --yellow-dark: #d99f00;

    --white: #ffffff;
    --light: #f5f5f3;
    --gray: #777777;
    --border: #dddddd;

    --container: 1200px;

    --heading-font: "Barlow Condensed", sans-serif;
    --body-font: "Inter", sans-serif;

}


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


html {
    scroll-behavior: smooth;
}


body {

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

    color: var(--black);

    background: var(--white);

    line-height: 1.6;

}


body.no-scroll {
    overflow: hidden;
}


img {

    max-width: 100%;

    display: block;

}


a {

    color: inherit;

    text-decoration: none;

}


button,
input,
textarea {

    font-family: inherit;

}


.container {

    width: min(
        calc(100% - 40px),
        var(--container)
    );

    margin: 0 auto;

}


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


.header {

    position: fixed;

    top: 0;
    left: 0;

    width: 100%;

    z-index: 1000;

    background: #ffffff;

    transition: .3s ease;

}


.header.scrolled {

    box-shadow:
        0 10px 30px rgba(0, 0, 0, .15);

}


.nav-container {

    min-height: 90px;

    display: flex;

    align-items: center;

    justify-content: space-between;

}


.logo img {

    width: 150px;

    height: auto;

    object-fit: contain;

}


.nav {

    display: flex;

    align-items: center;

    gap: 32px;

}


.nav a {

    color: var(--black);

    font-size: 14px;

    font-weight: 700;

    position: relative;

    transition: .25s;

}


.nav a:not(.nav-phone)::after {

    content: "";

    position: absolute;

    left: 0;
    bottom: -8px;

    width: 0;

    height: 2px;

    background: var(--red-dark);

    transition: .25s;

}


.nav a:hover:not(.nav-phone)::after,
.nav a.active:not(.nav-phone)::after {

    width: 100%;

}


.nav a:hover {

    color: var(--red);

}


/* =========================
   PHONE
========================= */


.nav-phone {

    background: var(--red-dark);

    color: #000000 !important;

    padding: 12px 18px;

    font-weight: 700 !important;

}


.nav-phone:hover {

    background: var(--red-dark);

    color: #000000 !important;

}


.menu-toggle {

    display: none;

    border: 0;

    background: transparent;

    cursor: pointer;

    width: 40px;

}


.menu-toggle span {

    display: block;

    width: 30px;

    height: 3px;

    background: white;

    margin: 6px 0;

    transition: .3s;

}


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


.hero {

    min-height: 780px;

    position: relative;

    background:
        url("../assets/index-1.jpg")
        center center /
        cover
        no-repeat;

    display: flex;

    align-items: center;

}


.hero-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, .82),
            rgba(0, 0, 0, .42),
            rgba(0, 0, 0, .18)
        );

}


.hero-content {

    position: relative;

    z-index: 2;

    padding-top: 90px;

    color: white;

    max-width: 760px;

}


.hero-label,
.section-label {

    display: inline-block;

    color: var(--black);

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

    font-size: 17px;

    font-weight: 700;

    letter-spacing: 2px;

    margin-bottom: 12px;

}


.hero h1 {

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

    text-transform: uppercase;

    font-size: clamp(
        58px,
        8vw,
        100px
    );

    line-height: .9;

    font-weight: 800;

    max-width: 800px;

}


.hero h1 span {

    color: var(--white);

}


.hero p {

    max-width: 600px;

    margin-top: 28px;

    font-size: 19px;

    color: rgba(255, 255, 255, .85);

}


.hero-buttons {

    display: flex;

    flex-wrap: wrap;

    gap: 15px;

    margin-top: 35px;

}


.btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-height: 52px;

    padding: 0 28px;

    border: 2px solid transparent;

    font-weight: 700;

    font-size: 14px;

    text-transform: uppercase;

    letter-spacing: .5px;

    cursor: pointer;

    transition: .25s;

}


.btn-primary {

    background: var(--green-dark);

    color: var(--black);

}


.btn-primary:hover {

    background: var(--red-dark);

    transform: translateY(-2px);

}


.btn-outline {

    border-color: white;

    color: white;

}


.btn-outline:hover {

    background: white;

    color: var(--black);

}


.btn-dark {

    background: var(--black);

    color: white;

}


.btn-dark:hover {

    background: var(--red-dark);

    color: var(--black);

}


.hero-bottom {

    position: absolute;

    bottom: 0;

    left: 0;

    width: 100%;

    background: var(--green-dark);

    z-index: 2;

}


.hero-info {

    display: grid;

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

}


.hero-info > div {

    padding: 22px 25px;

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

    color: white;

}


.hero-info > div:last-child {

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

}


.hero-info strong {

    display: block;

    font-size: 15px;

}


.hero-info span {

    color: #aaa;

    font-size: 13px;

}


/* =========================
   GENERAL SECTIONS
========================= */


.section {

    padding: 110px 0;

}


.section-dark {

    background: var(--green-dark);

    color: white;

}


.section-heading {

    max-width: 700px;

    margin-bottom: 55px;

}


.section-heading.center {

    text-align: center;

    margin-left: auto;

    margin-right: auto;

}


.section-heading h2,
.section-content h2,
.feature-content h2,
.contact-info h2 {

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

    text-transform: uppercase;

    font-size: clamp(42px, 5vw, 68px);

    line-height: .95;

    margin-bottom: 22px;

}


.section-heading p {

    color: var(--gray);

}


.section-dark .section-heading p {

    color: #aaa;

}


.two-columns {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 80px;

    align-items: center;

}


.section-image {

    position: relative;

}


.section-image::before {

    content: "";

    position: absolute;

    width: 100%;

    height: 100%;

    border: 3px solid var(--green-dark);

    left: 18px;

    top: 18px;

    z-index: 0;

}


.section-image img {

    position: relative;

    z-index: 1;

    width: 100%;

    height: 520px;

    object-fit: cover;

}


.section-content p {

    color: #666;

    margin-bottom: 20px;

}


.text-link {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    margin-top: 15px;

    font-weight: 700;

    text-transform: uppercase;

    font-size: 13px;

}


.text-link span {

    color: var(--green-dark);

    font-size: 24px;

}


.text-link:hover {

    color: var(--red-dark);

}


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


.services-grid {

    display: grid;

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

    gap: 2px;

}


.service-card {

    padding: 40px 30px;

    background: #222;

    min-height: 300px;

    transition: .3s;

}


.service-card:hover {

    background: var(--white);

    color: var(--black);

    transform: translateY(-6px);

}


.service-number {

    color: var(--red);

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

    font-size: 22px;

    font-weight: 700;

    margin-bottom: 50px;

}


.service-card:hover .service-number {

    color: var(--black);

}


.service-card h3 {

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

    text-transform: uppercase;

    font-size: 32px;

    margin-bottom: 12px;

}


.service-card p {

    color: #aaa;

    font-size: 14px;

}


.service-card:hover p {

    color: #222;

}


/* =========================
   FEATURE
========================= */


.feature {

    background: var(--light);

    padding: 110px 0;

}


.feature-grid {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 80px;

    align-items: center;

}


.feature-content p {

    color: #666;

    margin-bottom: 30px;

    max-width: 600px;

}


.feature-image img {

    width: 100%;

    height: 550px;

    object-fit: cover;

}


.check-list {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 15px;

}


.check-list div {

    font-weight: 600;

    font-size: 14px;

}


.check-list span {

    color: var(--green-dark);

    margin-right: 8px;

    font-size: 18px;

}


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


.gallery-preview {

    display: grid;

    grid-template-columns: 2fr 1fr;

    grid-template-rows: 260px 260px;

    gap: 15px;

}


.gallery-item {

    position: relative;

    overflow: hidden;

}


.gallery-item.large {

    grid-row: span 2;

}


.gallery-item img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: .5s;

}


.gallery-item:hover img {

    transform: scale(1.06);

}


.gallery-item span {

    position: absolute;

    left: 25px;

    bottom: 25px;

    color: white;

    background: var(--red-dark);

    color: black;

    padding: 10px 15px;

    font-weight: 700;

}


.center-button {

    text-align: center;

    margin-top: 40px;

}


/* =========================
   CTA
========================= */


.cta {

    padding: 75px 0;

    background: var(--green-dark);

}


.cta-content {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 40px;

}


.cta .section-label {

    color: var(--black);

}


.cta h2 {

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

    text-transform: uppercase;

    font-size: clamp(38px, 5vw, 60px);

    line-height: .95;

}


.cta .btn-primary {

    background: var(--black);

    color: var(--white);

    flex-shrink: 0;

}


.cta .btn-primary:hover {

    background: var(--red-dark);

    color: var(--black);

}


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


.page-hero {

    background:

        linear-gradient(
            var(--green-dark),
            var(--green-dark)
        ),

        url("../assets/index-1.jpg")
        center /
        cover;

    min-height: 420px;

    display: flex;

    align-items: center;

    color: white;

    padding-top: 90px;

}


.page-hero h1 {

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

    font-size: clamp(65px, 8vw, 100px);

    line-height: .9;

    text-transform: uppercase;

}


.page-hero p {

    margin-top: 20px;

    color: #bbb;

}


/* =========================
   VALUES
========================= */


.values-grid {

    display: grid;

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

    gap: 2px;

}


.value-card {

    background: #222;

    padding: 40px 30px;

    min-height: 300px;

}


.value-icon {

    display: block;

    color: var(--red-dark);

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

    font-size: 25px;

    font-weight: 700;

    margin-bottom: 45px;

}


.value-card h3 {

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

    text-transform: uppercase;

    font-size: 30px;

    margin-bottom: 15px;

}


.value-card p {

    color: #aaa;

    font-size: 14px;

}


/* =========================
   GALLERY PAGE
========================= */


.gallery-grid {

    display: grid;

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

    gap: 20px;

}


.gallery-card {

    position: relative;

    overflow: hidden;

    background: #eee;

}


.gallery-card img {

    width: 100%;

    aspect-ratio: 4 / 3;

    object-fit: cover;

    cursor: pointer;

    transition: .5s;

}


.gallery-card:hover img {

    transform: scale(1.05);

}


.gallery-caption {

    padding: 18px;

    background: white;

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

    font-size: 20px;

    text-transform: uppercase;

}


/* =========================
   LIGHTBOX
========================= */


.lightbox {

    position: fixed;

    inset: 0;

    background: rgba(0, 0, 0, .95);

    display: none;

    align-items: center;

    justify-content: center;

    padding: 40px;

    z-index: 2000;

}


.lightbox.active {

    display: flex;

}


.lightbox img {

    max-width: 90vw;

    max-height: 85vh;

    object-fit: contain;

}


.lightbox-close {

    position: absolute;

    top: 25px;

    right: 30px;

    border: none;

    background: transparent;

    color: white;

    font-size: 50px;

    cursor: pointer;

}


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


.contact-grid {

    display: grid;

    grid-template-columns: .85fr 1.15fr;

    gap: 80px;

}


.contact-info > p {

    color: #666;

    max-width: 500px;

}


.contact-items {

    margin-top: 40px;

    display: grid;

    gap: 25px;

}


.contact-item {

    display: flex;

    gap: 20px;

    align-items: center;

}


.contact-icon {

    width: 55px;

    height: 55px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: var(--red-dark);

    color: var(--white);

    font-size: 23px;

    font-weight: 700;

}


.contact-item span {

    display: block;

    font-size: 12px;

    text-transform: uppercase;

    color: #888;

    margin-bottom: 2px;

}


.contact-item a,
.contact-item strong {

    font-size: 17px;

    font-weight: 700;

}


.contact-item a:hover {

    color: var(--yellow-dark);

}


.contact-form-wrapper {

    background: var(--light);

    padding: 45px;

}


.contact-form {

    display: grid;

    gap: 20px;

}


.form-row {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 20px;

}


.form-group {

    display: flex;

    flex-direction: column;

    gap: 8px;

}


.form-group label {

    font-size: 13px;

    font-weight: 700;

}


.form-group input,
.form-group textarea {

    width: 100%;

    border: 1px solid var(--border);

    background: white;

    padding: 15px;

    outline: none;

    font-size: 14px;

    resize: vertical;

    transition: .2s;

}


.form-group input:focus,
.form-group textarea:focus {

    border-color: var(--yellow);

}


.form-submit {

    border: none;

    width: 100%;

}


.form-message {

    display: none;

    padding: 14px;

    font-size: 14px;

}


.form-message.success {

    display: block;

    background: #dff5df;

    color: #236523;

}


.form-message.error {

    display: block;

    background: #f8dddd;

    color: #8b2222;

}


/* =========================
   MAP
========================= */


.map-section {

    height: 400px;

}


.map-placeholder {

    height: 100%;

    background:

        linear-gradient(
            rgba(0, 0, 0, .5),
            rgba(0, 0, 0, .5)
        ),

        url("../assets/contact-1.jpg")
        center /
        cover;

    display: flex;

    align-items: center;

    justify-content: center;

    text-align: center;

    color: white;

}


.map-placeholder div {

    background: rgba(0, 0, 0, .8);

    padding: 30px 50px;

}


.map-placeholder span {

    display: block;

    color: var(--red);

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

    font-size: 24px;

    text-transform: uppercase;

}


.map-placeholder strong {

    font-size: 20px;

}


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


.footer {

    background: var(--white);

    color: var(--white);

}


.footer-grid {

    padding: 70px 0;

    display: grid;

    grid-template-columns:
        2fr 1fr 1fr;

    gap: 80px;

}


.footer-brand img {

    width: 150px;

    margin-bottom: 20px;

}


.footer-brand p {

    color: var(--black);

    max-width: 350px;

    font-size: 14px;

}


.footer-column {

    display: flex;

    flex-direction: column;

    gap: 12px;

}


.footer-column h3 {

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

    text-transform: uppercase;

    font-size: 25px;

    color: var(--black);

    margin-bottom: 10px;

}


.footer-column a {

    color: var(--black);

    font-size: 14px;

}


.footer-column a:hover {

    color: var(--red);

}


.footer-bottom {

    border-top: 1px solid var(--white);

    padding: 22px 0;

    color: var(--black);

    font-size: 12px;

}


/* =========================
   ANIMATIONS
========================= */


.reveal {

    opacity: 0;

    transform: translateY(25px);

    transition:
        opacity .7s ease,
        transform .7s ease;

}


.reveal.visible {

    opacity: 1;

    transform: translateY(0);

}


/* =========================
   RESPONSIVE
========================= */


@media (max-width: 1000px) {

    .nav {

        gap: 18px;

    }


    .services-grid,
    .values-grid {

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

    }


    .two-columns,
    .feature-grid {

        gap: 50px;

    }


    .contact-grid {

        gap: 40px;

    }

}


@media (max-width: 800px) {

    .nav-container {

        min-height: 75px;

    }


    .menu-toggle {

        display: block;

        z-index: 1001;

    }


    .nav {

        position: fixed;

        inset: 0;

        background: var(--white);

        display: flex;

        flex-direction: column;

        justify-content: center;

        gap: 28px;

        transform: translateX(100%);

        transition: .35s;

    }


    .nav.open {

        transform: translateX(0);

    }


    .nav a {

        font-size: 22px;

    }


    .nav-phone {

        font-size: 16px !important;

    }


    .hero {

        min-height: 700px;

    }


    .hero-info {

        grid-template-columns: 1fr;

    }


    .hero-info > div {

        display: none;

    }


    .hero-info > div:last-child {

        display: block;

        border: none;

    }


    .two-columns,
    .feature-grid,
    .contact-grid {

        grid-template-columns: 1fr;

    }


    .section-image img {

        height: 400px;

    }


    .gallery-grid {

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

    }


    .footer-grid {

        grid-template-columns: 1fr 1fr;

    }


    .cta-content {

        align-items: flex-start;

        flex-direction: column;

    }

}


@media (max-width: 550px) {

    .container {

        width: min(
            calc(100% - 30px),
            var(--container)
        );

    }


    .section {

        padding: 75px 0;

    }


    .hero h1 {

        font-size: 58px;

    }


    .hero p {

        font-size: 16px;

    }


    .hero-buttons {

        flex-direction: column;

        align-items: stretch;

    }


    .btn {

        width: 100%;

    }


    .services-grid,
    .values-grid,
    .gallery-grid {

        grid-template-columns: 1fr;

    }


    .gallery-preview {

        grid-template-columns: 1fr;

        grid-template-rows:
            300px
            200px
            200px;

    }


    .gallery-item.large {

        grid-row: auto;

    }


    .form-row {

        grid-template-columns: 1fr;

    }


    .contact-form-wrapper {

        padding: 25px;

    }


    .footer-grid {

        grid-template-columns: 1fr;

        gap: 40px;

    }


    .section-image::before {

        left: 10px;

        top: 10px;

    }


    .section-image img {

        height: 350px;

    }


    .page-hero {

        min-height: 350px;

    }

}

/* SPA page loading state: preserves the existing design. */
body.page-loading main { opacity: .65; transition: opacity .15s ease; }
