@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 {
    color: var(--white);
    font-size: .9rem;
    text-decoration: none;
}

.nav-button,
.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, .52)),
        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-content > p:not(.eyebrow) {
    font-size: 1.1rem;
    margin: 30px 0;
    max-width: 550px;
}

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

.link {
    color: var(--white);
    text-decoration: none;
}

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

.hero-badge strong {
    color: var(--orange);
    font-size: 1.3rem;
}

.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: 22px;
    grid-template-columns: repeat(3, 1fr);
    padding-bottom: 120px;
    padding-top: 0;
}

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

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

.number {
    color: var(--orange);
}

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

.service-card h3 {
    font-size: 1.35rem;
    margin: 24px 0 12px;
}

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

.wellness-image {
    background:
        linear-gradient(rgba(24, 61, 50, .18), rgba(24, 61, 50, .35)),
        radial-gradient(circle at 55% 44%, #b9a375 0 8%, transparent 9%),
        linear-gradient(135deg, #718b6e, #d5c59a 55%, #54705e);
    min-height: 500px;
}

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

.wellness ul {
    list-style: none;
}

.wellness li {
    margin: 13px 0;
}

.wellness 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-button {
        display: none;
    }

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

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

    .section {
        padding: 75px 7vw;
    }

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

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

    .services {
        grid-template-columns: 1fr;
        padding-top: 0;
    }

    .service-card.featured {
        transform: none;
    }

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

    footer {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }
}
.gallery {
    background: var(--sand);
}

.gallery-heading {
    margin-bottom: 42px;
}

.gallery-grid {
    display: grid;
    gap: 22px;
    grid-template-columns: repeat(3, 1fr);
}

.gallery-grid img {
    display: block;
    height: 360px;
    object-fit: cover;
    width: 100%;
}

.gallery-grid img:nth-child(2) {
    transform: translateY(35px);
}

@media (max-width: 760px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid img,
    .gallery-grid img:nth-child(2) {
        height: 300px;
        transform: none;
    }
}