/* =====================================================
   RESET
===================================================== */

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


html {
    scroll-behavior: smooth;
}


body {
    font-family: "DM Sans", sans-serif;

    background: #ffffff;

    color: #111111;
}


a {
    text-decoration: none;
}


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

.header {

    position: relative;

    width: 100%;

    height: 82px;

    background: #ffffff;

    border-bottom: 1px solid #eeeeee;

    z-index: 100;
}


.header-inner {

    width: 100%;

    max-width: 700px;

    height: 100%;

    margin: 0 auto;

    padding: 0 45px;

    display: flex;

    align-items: center;

    justify-content: space-between;
}




/* NAVIGATION */

.navigation {

    display: flex;

    align-items: center;

    gap: 36px;
}


.navigation a {

    position: relative;

    font-size: 12px;

    font-weight: 500;

    color: #333333;

    transition: 0.2s ease;
}


.navigation a::after {

    content: "";

    position: absolute;

    left: 0;

    bottom: -7px;

    width: 0;

    height: 2px;

    background: #a6f000;

    transition: 0.25s ease;
}


.navigation a:hover {

    color: #111111;
}


.navigation a:hover::after {

    width: 100%;
}


/* HEADER BUTTON */

.header-button {

    padding: 13px 21px;

    background: #111111;

    color: #ffffff;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: .5px;

    transition: .25s ease;
}


.header-button:hover {

    background: #a6f000;

    color: #111111;
}


/* MOBILE BUTTON */

.menu-toggle {

    display: none;

    border: 0;

    background: none;

    font-size: 20px;

    cursor: pointer;
}


/* MOBILE NAVIGATION */

.mobile-navigation {

    display: none;

    position: absolute;

    top: 82px;

    left: 0;

    width: 100%;

    padding: 20px;

    background: #ffffff;

    border-bottom: 1px solid #eeeeee;
}


.mobile-navigation a {

    display: block;

    padding: 14px 5px;

    color: #222222;

    font-size: 13px;

    border-bottom: 1px solid #eeeeee;
}


.mobile-navigation.active {

    display: block;
}


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

.hero {

    position: relative;

    width: 100%;

    min-height: 450px;

    display: flex;

    align-items: center;

    overflow: hidden;

    background: #26351f;
}


/* HERO IMAGE */

.hero-background {

    position: absolute;

    inset: 0;

    width: 100%;

    height: 100%;

    object-fit: cover;

    object-position: center;

    z-index: 0;
}


/* HERO OVERLAY */

.hero-overlay {

    position: absolute;

    inset: 0;

    z-index: 1;

    background:
        linear-gradient(
            90deg,
            rgba(8, 15, 7, .82) 0%,
            rgba(8, 15, 7, .66) 50%,
            rgba(8, 15, 7, .35) 100%
        );
}


/* HERO INNER */

.hero-inner {

    position: relative;

    z-index: 2;

    width: calc(100% - 90px);

    max-width: 1400px;

    margin: 0 auto;

    padding: 80px 0;
}


/* HERO EYEBROW */

.hero-eyebrow {

    display: block;

    margin-bottom: 25px;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 2.5px;

    color: #a6f000;
}


/* HERO HEADING */

.hero h1 {

    max-width: 760px;

    margin: 0 0 25px;

    font-family: "Playfair Display", serif;

    font-size: clamp(55px, 7vw, 92px);

    line-height: .95;

    letter-spacing: -3px;

    color: #ffffff;
}


.hero h1 span {

    color: #a6f000;
}


/* HERO DESCRIPTION */

.hero p {

    max-width: 550px;

    margin-bottom: 25px;

    font-size: 14px;

    line-height: 1.8;

    color: rgba(255,255,255,.82);
}


/* HERO BUTTON */

.hero-button {

    display: inline-flex;

    align-items: center;

    gap: 15px;

    padding: 15px 22px;

    background: #a6f000;

    color: #111111;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: .6px;

    transition: .25s ease;
}


.hero-button:hover {

    background: #ffffff;

    transform: translateY(-2px);
}


.hero-button i {

    font-size: 11px;
}

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

.contact-page {

    width: 100%;

    display: flex;

    justify-content: center;

    padding: 50px 30px 110px;

    background: #ffffff;
}


/* FORM SECTION */

.contact-form-section {

    width: 100%;

    display: flex;

    justify-content: center;
}


/* FORM CONTAINER */

.form-inner {

    width: 100%;

    max-width: 650px;

    margin: 0 auto;
}


/* FORM EYEBROW */

.form-eyebrow {

    display: block;

    margin-bottom: 12px;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 2px;

    color: #7ca800;
}


/* FORM HEADING */

.form-inner h2 {

    margin: 0 0 12px;

    font-family: "Playfair Display", serif;

    font-size: 52px;

    line-height: 1.05;

    letter-spacing: -1.5px;

    color: #111111;
}


/* FORM DESCRIPTION */

.form-intro {

    max-width: 520px;

    margin: 0 0 38px;

    font-size: 13px;

    line-height: 1.7;

    color: #777777;
}


/* =====================================================
   FORM
===================================================== */

.form-row {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 20px;
}


.form-group {

    margin-bottom: 20px;
}


.form-group label {

    display: block;

    margin-bottom: 7px;

    font-size: 11px;

    font-weight: 600;

    color: #222222;
}


.form-group label span {

    color: #7ca800;
}


/* INPUTS */

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

    width: 100%;

    border: 1px solid #dddddd;

    border-radius: 2px;

    outline: none;

    background: #ffffff;

    color: #222222;

    font-family: "DM Sans", sans-serif;

    font-size: 12px;

    transition: .2s ease;
}


.form-group input,
.form-group select {

    height: 45px;

    padding: 0 13px;
}


.form-group textarea {

    min-height: 130px;

    padding: 13px;

    resize: vertical;
}


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

    color: #aaaaaa;
}


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

    border-color: #a6f000;

    box-shadow:
        0 0 0 2px rgba(166,240,0,.12);
}


/* WHATSAPP */

.whatsapp-option {

    display: flex;

    align-items: center;

    gap: 8px;

    margin-bottom: 25px;
}


.whatsapp-option input {

    width: 14px;

    height: 14px;

    accent-color: #a6f000;
}


.whatsapp-option label {

    font-size: 11px;

    color: #666666;

    cursor: pointer;
}


/* SUBMIT */

.submit-btn {

    width: 100%;

    height: 52px;

    border: none;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    background: #111111;

    color: #ffffff;

    font-family: "DM Sans", sans-serif;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: .5px;

    cursor: pointer;

    transition: .25s ease;
}


.submit-btn:hover {

    background: #a6f000;

    color: #111111;
}


/* FORM MESSAGE */

.form-message {

    display: none;

    margin-top: 15px;

    padding: 12px;

    text-align: center;

    font-size: 12px;
}


.form-message.show {

    display: block;
}


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

.footer {

    background: #111111;

    color: #ffffff;

    padding: 45px 30px;
}


.footer-inner {

    width: 100%;

    max-width: 1400px;

    margin: 0 auto;

    display: grid;

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

    gap: 40px;

    align-items: center;
}


.footer-logo {

    margin-bottom: 8px;

    font-size: 20px;

    font-weight: 800;
}


.footer p {

    max-width: 300px;

    font-size: 11px;

    line-height: 1.6;

    color: #888888;
}


.footer-links {

    display: flex;

    gap: 25px;
}


.footer-links a {

    font-size: 11px;

    color: #bbbbbb;

    transition: .2s ease;
}


.footer-links a:hover {

    color: #a6f000;
}


.footer-copy {

    text-align: right;

    font-size: 10px;

    color: #666666;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 900px) {

    .navigation {

        gap: 20px;
    }


    .hero {

        min-height: 550px;
    }


    .hero-inner {

        width: calc(100% - 60px);
    }


    .hero-bottom {

        width: calc(100% - 60px);
    }


    .footer-inner {

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


    .footer-copy {

        text-align: left;
    }

}


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

@media (max-width: 700px) {

    .header {

        height: 70px;
    }


    .header-inner {

        padding: 0 20px;
    }


    .navigation,
    .header-button {

        display: none;
    }


    .menu-toggle {

        display: block;
    }


    .mobile-navigation {

        top: 70px;
    }


    .hero {

        min-height: 600px;
    }


    .hero-inner {

        width: calc(100% - 40px);

        padding: 70px 0;
    }


    .hero h1 {

        font-size: 53px;

        letter-spacing: -2px;
    }


    .hero p {

        font-size: 13px;
    }


    .hero-bottom {

        width: calc(100% - 40px);

        bottom: 22px;
    }


    .contact-page {

        padding: 70px 20px 80px;
    }


    .form-inner h2 {

        font-size: 43px;
    }


    .form-row {

        grid-template-columns: 1fr;

        gap: 0;
    }


    .footer {

        padding: 40px 20px;
    }


    .footer-inner {

        grid-template-columns: 1fr;

        gap: 25px;
    }


    .footer-copy {

        text-align: left;
    }

}


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

@media (max-width: 450px) {

    .hero h1 {

        font-size: 44px;
    }


    .hero-bottom {

        font-size: 8px;
    }


    .hero-line {

        width: 40px;
    }


    .form-inner h2 {

        font-size: 36px;
    }

}