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

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #F5F0E6;
    color: #252525;
}

nav {
    height: 80px;
    padding: 0 7%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #d8d1c4;
}

.logo {
    font-weight: 800;
    font-size: 20px;
}

.logo span {
    color: #18392B;
    font-size: 27px;
}

.nav-links {
    display: flex;
    gap: 35px;
}

.nav-links a {
    text-decoration: none;
    color: #252525;
    font-weight: 600;
}

.hero {
    min-height: 650px;
    padding: 90px 7%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
}

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

.location,
.section-label {
    color: #18392B;
    font-size: 13px;
    font-weight: bold;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: clamp(48px, 6vw, 85px);
    line-height: .95;
    letter-spacing: -4px;
}

.hero h1 span {
    color: #18392B;
}

.hero-text {
    max-width: 600px;
    margin-top: 30px;
    font-size: 19px;
    line-height: 1.6;
    color: #555;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-top: 35px;
}

.primary-btn,
.secondary-btn {
    padding: 16px 24px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 6px;
}

.primary-btn {
    background: #18392B;
    color: white;
}

.secondary-btn {
    border: 2px solid #18392B;
    color: #18392B;
}

.hero-card {
    min-width: 320px;
    background: #F5B82E;
    padding: 50px 35px;
    border-radius: 20px;
    transform: rotate(3deg);
    box-shadow: 15px 15px 0 #18392B;
}

.bee {
    font-size: 50px;
    margin-bottom: 40px;
}

.hero-card h2 {
    font-size: 35px;
}

.hero-card p {
    margin-top: 20px;
}

.services {
    background: #18392B;
    color: white;
    padding: 100px 7%;
}

.services .section-label {
    color: #F5B82E;
}

.services > h2 {
    font-size: 48px;
    margin-bottom: 50px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.service-card {
    background: #F5F0E6;
    color: #252525;
    padding: 35px;
    border-radius: 12px;
    min-height: 280px;
}

.icon {
    font-size: 35px;
    margin-bottom: 40px;
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.service-card p {
    color: #666;
    line-height: 1.6;
}

.about {
    padding: 110px 7%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.about h2 {
    font-size: 50px;
    margin-bottom: 25px;
}

.about p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 15px;
}

.manchester {
    background: #F5B82E;
    padding: 60px;
    text-align: center;
    border-radius: 15px;
}

.manchester span {
    display: block;
    font-size: 100px;
    font-weight: 900;
    color: #18392B;
}

.cta {
    padding: 100px 7%;
    background: #F5B82E;
    text-align: center;
}

.cta > p:first-child {
    font-weight: bold;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.cta h2 {
    font-size: 55px;
}

.cta-description {
    max-width: 650px;
    margin: 25px auto 40px;
    font-size: 18px;
    line-height: 1.6;
}

.cta-button {
    display: inline-block;
    padding: 18px 30px;
    background: #18392B;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
}

footer {
    background: #111;
    color: white;
    padding: 50px 7%;
    display: flex;
    justify-content: space-between;
}

footer strong {
    font-size: 22px;
}

footer p {
    margin-top: 10px;
    color: #aaa;
}

/* MOBILE */

@media (max-width: 850px) {

    .nav-links {
        display: none;
    }

    .hero {
        flex-direction: column;
        align-items: flex-start;
        padding-top: 60px;
    }

    .hero h1 {
        letter-spacing: -2px;
    }

    .hero-card {
        min-width: 100%;
    }

    .service-grid {
        grid-template-columns: 1fr;
    }

    .about {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
    }

    footer {
        flex-direction: column;
        gap: 30px;
    }

    .cta h2 {
        font-size: 38px;
    }
}
