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

html {
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: Georgia, "Times New Roman", serif;
    background: #0b0b0b;
    color: #1d3b2a;
}

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

.page-wrapper {
    width: min(1100px, calc(100% - 30px));
    margin: 30px auto;
    background: #f5efe6;
    border-radius: 8px;
    overflow: hidden;
}

/* HEADER */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    background: #f5efe6;
    flex-wrap: wrap;
}

.logo img {
    height: 70px;
    width: auto;
    display: block;
}

nav {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

nav a {
    color: #1d3b2a;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
}

/* HERO */
.hero {
    position: relative;
    min-height: 400px;
    background-image:
        linear-gradient(
            rgba(245, 239, 230, 0.45),
            rgba(245, 239, 230, 0.45)
        ),
        url("images/hero-farm.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    padding: 40px;
}

.hero-text {
    position: relative;
    z-index: 2;
    max-width: 650px;
    color: #0b0b0b;
    /*color: #1d3b2a;*/
}

.hero-text h1 {
    color: #0b0b0b;
    /*color: #1d3b2a;*/
    font-size: clamp(2rem, 5vw, 4rem);
    line-height: 1;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.hero-text h3 {
    color: #0b0b0b;
    /*color: #1d3b2a;*/
    font-size: clamp(1rem, 2vw, 1.35rem);
    margin-bottom: 12px;
    letter-spacing: 2px;
}

.hero-text p {
    color: #0b0b0b;
    /*color: #1d3b2a;*/
    font-size: clamp(1rem, 2vw, 1.15rem);
    margin-bottom: 22px;
}

.btn {
    display: inline-block;
    background: #1d3b2a;
    color: #ffffff;
    padding: 12px 22px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 700;
}

/* SERVICES */
.services {
    display: flex;
    flex-wrap: wrap;
    background: #1d3b2a;
    color: #ffffff;
}

.service {
    flex: 1 1 300px;
    padding: 32px 26px;
    text-align: center;
    color: #ffffff;
}

.service h3,
.service p {
    color: #ffffff;
}

.service h3 {
    margin-bottom: 10px;
    font-size: 1rem;
}

/* ABOUT / CONTACT */
.about-contact {
    display: flex;
    flex-wrap: wrap;
    background: #f5efe6;
}

.image-block {
    flex: 1 1 400px;
    min-height: 300px;
    background-image: url("images/orchard.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.contact-block {
    flex: 1 1 400px;
    padding: 40px;
    color: #1d3b2a;
    background: #f5efe6;
}

.contact-block h2,
.contact-block p {
    color: #1d3b2a;
}

.contact-block h2 {
    margin-bottom: 15px;
}

/* FOOTER */
.footer {
    background: #1d3b2a;
    color: #ffffff;
    text-align: center;
    padding: 15px;
}

.footer p {
    color: #ffffff;
}

/* TABLET */
@media (max-width: 900px) {
    .hero {
        min-height: 340px;
        padding: 50px 25px;
    }

    .services {
        flex-direction: column;
    }

    .about-contact {
        flex-direction: column;
    }

    .image-block {
        min-height: 250px;
    }
}

/* MOBILE */
@media (max-width: 600px) {
    .page-wrapper {
        width: 100%;
        margin: 0;
        border-radius: 0;
    }

    .header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        padding: 18px 22px;
    }

    nav {
        gap: 12px;
    }

    .hero {
        min-height: 300px;
        padding: 40px 22px;
    }

    .contact-block {
        padding: 28px 22px;
    }
}