:root {
    --cream: #f8f4e8;
    --cream-dark: #eee7d8;

    --green: #638d7e;
    --green-dark: #426d61;

    --blue: #173b94;

    --text: #20201d;
    --white: #ffffff;

    --serif: "Cormorant Garamond", serif;
    --sans: "Montserrat", sans-serif;

    --shadow: 0 10px 30px rgba(0, 0, 0, .08);
}


/* RESET */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--sans);
    background: var(--cream);
    color: var(--text);
    line-height: 1.6;
}

img {
    width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}


/* HEADER */

.header {
    height: 75px;

    padding: 0 6%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    position: absolute;
    width: 100%;

    z-index: 10;

    color: white;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo span {
    font-family: var(--serif);
    font-size: 2.2rem;
    line-height: .8;
    font-style: italic;
}

.logo small {
    font-size: .5rem;
    letter-spacing: 3px;
    margin-top: 8px;
}

.menu-btn {
    background: none;
    border: none;

    color: white;

    font-size: 1.8rem;
    cursor: pointer;
}

.nav {
    position: absolute;

    top: 75px;
    left: 5%;
    right: 5%;

    background: var(--cream);

    color: var(--text);

    display: none;
    flex-direction: column;

    padding: 20px;

    border-radius: 12px;

    box-shadow: var(--shadow);
}

.nav.active {
    display: flex;
}

.nav a {
    padding: 12px 5px;
}


/* HERO */

.hero {
    min-height: 100svh;

    position: relative;

    display: flex;
    align-items: flex-end;

    padding:
        120px
        7%
        70px;

    color: white;

    background:
        url("../img/hero.jpg")
        center / cover
        no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to bottom,
            rgba(0,0,0,.05),
            rgba(0,0,0,.72)
        );
}

.hero-content {
    position: relative;
    z-index: 2;

    max-width: 600px;
}

.eyebrow {
    font-size: .75rem;
    letter-spacing: 3px;

    margin-bottom: 10px;
}

.hero h1 {
    font-family: var(--serif);

    font-size: clamp(3.6rem, 14vw, 6rem);

    font-weight: 400;

    line-height: .82;

    margin-bottom: 25px;
}

.hero-text {
    max-width: 420px;

    font-size: .95rem;

    margin-bottom: 30px;
}


/* BOTONES */

.button {
    display: inline-flex;

    justify-content: center;
    align-items: center;

    min-height: 52px;

    padding: 0 28px;

    border-radius: 30px;

    background: var(--green-dark);

    color: white;

    font-size: .85rem;
    font-weight: 500;

    transition: .3s;
}

.button:hover {
    transform: translateY(-3px);
}

.button-whatsapp {
    background: var(--green);
}


/* INTRO */

.intro {
    padding: 75px 8%;

    max-width: 700px;

    margin: auto;

    text-align: center;
}

.intro span {
    color: var(--green);
    font-size: 2rem;
}

.intro h2 {
    font-family: var(--serif);

    font-size: 2.7rem;

    font-weight: 400;

    margin: 10px 0;
}

.intro p {
    font-size: .9rem;
    color: #666;
}


/* SECCIONES */

.section {
    padding: 75px 6%;
}

.section-title {
    text-align: center;

    margin-bottom: 40px;
}

.section-title > p {
    color: var(--green-dark);

    font-size: .65rem;

    letter-spacing: 3px;

    font-weight: 600;
}

.section-title h2 {
    font-family: var(--serif);

    font-size: 3rem;

    line-height: 1;

    font-weight: 400;

    margin: 10px 0;
}

.section-title span {
    color: #666;

    font-size: .8rem;
}


/* SERVICIOS */

.services-grid {
    display: grid;

    grid-template-columns: 1fr;

    gap: 22px;

    max-width: 1200px;

    margin: auto;
}

.service-card {
    background: #fffdf6;

    border-radius: 18px;

    overflow: hidden;

    box-shadow: var(--shadow);
}

.service-card img {
    height: 230px;

    object-fit: cover;
}

.card-content {
    padding: 25px;
}

.card-content h3 {
    font-family: var(--serif);

    font-size: 1.7rem;

    line-height: 1;

    margin-bottom: 10px;
}

.card-content p {
    color: #555;

    font-size: .82rem;

    margin-bottom: 20px;
}

.card-content a {
    color: var(--green-dark);

    font-size: .8rem;

    font-weight: 600;
}


/* EXPERIENCIA */

.experience {
    background: var(--green);

    color: white;

    padding: 75px 7%;

    display: grid;

    gap: 40px;
}

.experience h2 {
    font-family: var(--serif);

    font-size: 3.7rem;

    line-height: .9;

    font-weight: 400;

    margin-bottom: 30px;
}

.experience p {
    margin-bottom: 20px;

    font-size: .88rem;

    max-width: 550px;
}

.experience-image img {
    border-radius: 4px;

    min-height: 350px;

    object-fit: cover;
}


/* COMPLEMENTOS */

.complements-grid {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 14px;

    max-width: 1100px;

    margin: auto;
}

.complement-card {
    background: #fffdf6;

    border-radius: 12px;

    overflow: hidden;

    padding-bottom: 20px;

    box-shadow: var(--shadow);
}

.complement-card img {
    aspect-ratio: 1;

    object-fit: cover;
}

.complement-card h3 {
    font-family: var(--serif);

    font-size: 1.25rem;

    padding: 15px 15px 3px;
}

.complement-card p {
    padding: 0 15px;

    font-size: .7rem;

    color: #555;
}


/* RESEÑAS */

.reviews {
    background: var(--green);

    padding: 75px 6%;
}

.section-title.light {
    color: white;
}

.section-title.light p,
.section-title.light span {
    color: white;
}

.review-grid {
    display: grid;

    gap: 18px;

    max-width: 1000px;

    margin: auto;
}

.review {
    background: var(--cream);

    padding: 35px 25px;

    border-radius: 14px;

    text-align: center;
}

.stars {
    color: #d79720;

    letter-spacing: 3px;

    margin-bottom: 15px;
}

.review p {
    font-family: var(--serif);

    font-size: 1.3rem;

    font-style: italic;

    margin-bottom: 15px;
}

.review strong {
    font-size: .75rem;
}


/* CONTACTO */

.contact {
    padding: 90px 8%;

    max-width: 900px;

    margin: auto;

    text-align: center;
}

.eyebrow.dark {
    color: var(--green-dark);
}

.contact h2 {
    font-family: var(--serif);

    font-size: 3rem;

    line-height: 1;

    font-weight: 400;

    margin-bottom: 30px;
}

.contact p {
    font-size: .85rem;

    margin-bottom: 25px;
}


/* FOOTER */

footer {
    background: var(--cream-dark);

    text-align: center;

    padding: 60px 20px;
}

.footer-logo {
    font-family: var(--serif);

    font-size: 4rem;

    font-style: italic;

    line-height: 1;
}

footer > p {
    letter-spacing: 5px;

    font-size: .55rem;

    margin-bottom: 25px;
}

footer > span {
    display: block;

    font-family: var(--serif);

    font-size: 1.5rem;

    font-style: italic;

    margin-bottom: 30px;
}

footer small {
    font-size: .6rem;

    color: #777;
}


/* TABLET */

@media (min-width: 700px) {

    .services-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .complements-grid {
        grid-template-columns:
            repeat(4, 1fr);
    }

    .review-grid {
        grid-template-columns:
            repeat(3, 1fr);
    }

}


/* ESCRITORIO */

@media (min-width: 1000px) {

    .header {
        padding: 0 8%;
    }

    .menu-btn {
        display: none;
    }

    .nav {
        position: static;

        display: flex;

        flex-direction: row;

        background: transparent;

        color: white;

        padding: 0;

        box-shadow: none;

        gap: 30px;
    }

    .nav a {
        font-size: .75rem;
    }

    .hero {
        padding:
            150px
            10%
            100px;
    }

    .services-grid {
        grid-template-columns:
            repeat(3, 1fr);
    }

    .experience {
        grid-template-columns:
            1fr 1fr;

        align-items: center;

        padding: 100px 10%;
    }

}