@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&family=Playfair+Display:ital,wght@0,500;1,500;1,600&display=swap');

:root {
    --green: #183d32;
    --dark-green: #102d26;
    --cream: #f4f0e7;
    --sand: #ddd2bc;
    --orange: #c87945;
    --text: #26362f;
    --white: #fffdf8;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background: var(--cream);
    color: var(--text);
    font-family: 'DM Sans', sans-serif;
    line-height: 1.6;
}

.navbar {
    align-items: center;
    background: var(--green);
    color: var(--white);
    display: flex;
    justify-content: space-between;
    padding: 22px 6vw;
}

.logo,
footer a {
    color: inherit;
    font-weight: 700;
    text-decoration: none;
}

.logo span,
footer a span {
    color: var(--orange);
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-links a,
.nav-cta {
    color: var(--white);
    text-decoration: none;
}

.nav-links a {
    font-size: .9rem;
}

.nav-cta,
.button {
    background: var(--orange);
    color: var(--white);
    display: inline-block;
    font-weight: 700;
    padding: 13px 21px;
    text-decoration: none;
}

.hero {
    align-items: center;
    background:
        linear-gradient(90deg, rgba(16, 45, 38, .96), rgba(24, 61, 50, .5)),
        radial-gradient(circle at 78% 30%, #c2ad7d, #496b58 42%, #16372e);
    color: var(--white);
    display: flex;
    min-height: 650px;
    padding: 100px 10vw;
    position: relative;
}

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

.eyebrow {
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .16em;
    margin-bottom: 22px;
}

h1,
h2 {
    font-weight: 500;
    line-height: 1.05;
}

h1 {
    font-size: clamp(3.2rem, 7vw, 6.5rem);
}

h2 {
    color: var(--green);
    font-size: clamp(2.4rem, 5vw, 4.5rem);
}

em {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
}

.hero-text {
    font-size: 1.1rem;
    margin: 30px 0;
    max-width: 550px;
}

.hero-actions {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
}

.text-link {
    color: var(--green);
    font-weight: 700;
    text-decoration: none;
}

.light-link {
    color: var(--white);
}

.hero-label {
    bottom: 45px;
    display: flex;
    flex-direction: column;
    position: absolute;
    right: 10vw;
}

.hero-label strong,
.card-number {
    color: var(--orange);
}

.section {
    padding: 110px 10vw;
}

.intro {
    display: grid;
    gap: 80px;
    grid-template-columns: 1fr 1fr;
}

.intro-copy {
    max-width: 500px;
    padding-top: 45px;
}

.highlight {
    border-left: 3px solid var(--orange);
    display: flex;
    flex-direction: column;
    margin-top: 35px;
    padding-left: 18px;
}

.highlight strong {
    color: var(--green);
    font-size: 2.2rem;
}

.services {
    background: var(--sand);
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(2, 1fr);
    padding-top: 0;
}

.service-card {
    background: var(--white);
    min-height: 360px;
    padding: 38px;
}

.service-card.featured {
    background: var(--green);
    color: var(--white);
}

.service-icon {
    color: var(--orange);
    font-size: 3rem;
    margin: 28px 0 12px;
}

.service-card h3 {
    color: var(--green);
    font-size: 1.5rem;
    margin-bottom: 14px;
}

.featured h3 {
    color: var(--white);
}

.service-card p {
    margin-bottom: 28px;
    max-width: 500px;
}

.values {
    align-items: center;
    display: grid;
    gap: 80px;
    grid-template-columns: 1fr 1fr;
}

.values-image {
    background:
        linear-gradient(rgba(24, 61, 50, .18), rgba(24, 61, 50, .35)),
        linear-gradient(135deg, #718b6e, #d5c59a 55%, #54705e);
    min-height: 500px;
}

.values-copy > p:not(.eyebrow) {
    margin: 25px 0;
    max-width: 530px;
}

.values ul {
    list-style: none;
}

.values li {
    margin: 13px 0;
}

.values li span {
    color: var(--orange);
    font-weight: 700;
    margin-right: 12px;
}

.contact {
    background: var(--green);
    color: var(--white);
    text-align: center;
}

.contact h2 {
    color: var(--white);
}

.contact > p:not(.eyebrow) {
    margin: 25px auto;
}

footer {
    align-items: center;
    background: var(--dark-green);
    color: var(--white);
    display: flex;
    justify-content: space-between;
    padding: 28px 10vw;
}

@media (max-width: 760px) {
    .navbar {
        align-items: flex-start;
        flex-direction: column;
        gap: 20px;
    }

    .nav-links {
        flex-wrap: wrap;
        gap: 14px 20px;
    }

    .nav-cta {
        display: none;
    }

    .hero {
        min-height: 590px;
        padding: 80px 7vw;
    }

    .hero-label {
        bottom: 25px;
        left: 7vw;
        right: auto;
    }

    .section {
        padding: 75px 7vw;
    }

    .intro,
    .values,
    .services {
        gap: 35px;
        grid-template-columns: 1fr;
    }

    .intro-copy {
        padding-top: 0;
    }

    .values-image {
        min-height: 330px;
    }

    footer {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }
}