.top {
    padding: clamp(144px, 15vw, 208px) max(24px, 9vw) 90px;
    background-color: #f7f3eb;
    background-image:
        linear-gradient(rgba(247, 243, 235, .22), rgba(247, 243, 235, .22)),
        url('../assets/img/papel-amassado.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.kicker,
.section-kicker {
    color: var(--navy);
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .22em;
}

.top h1 {
    margin: .5rem 0 3rem;
    color: var(--wine);
    font-family: var(--font-script);
    font-size: clamp(2.8rem, 5.8vw, 5rem);
    font-weight: 400;
    line-height: 1.04;
}

.text {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(32px, 6vw, 96px);
    font-size: clamp(1.1rem, 1.8vw, 1.4rem);
    line-height: 1.7;
}

.text p,
.hotel-grid article p,
.contact-note {
    text-align: justify;
    text-justify: inter-word;
    hyphens: auto;
}

.hotels {
    padding: clamp(70px, 8vw, 112px) max(20px, 5vw);
    background: #eee7de;
}

.section-kicker {
    margin-bottom: .9rem;
    text-align: center;
}

.hotels > h2 {
    margin-bottom: 3.5rem;
    color: var(--wine);
    font: 400 clamp(2.5rem, 4.5vw, 4rem) / 1.05 var(--font-script);
    text-align: center;
}

.hotel-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 90rem;
    margin: auto;
}

.hotel-grid article {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid rgba(84, 49, 39, .17);
    background: var(--paper);
    transition: transform .3s, box-shadow .3s;
}

.hotel-grid article:hover {
    transform: translateY(-7px);
    box-shadow: 0 20px 40px rgba(59, 31, 25, .11);
}

.hotel-grid img {
    width: 100%;
    height: 14rem;
    object-fit: cover;
}

.hotel-content {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 22px;
}

.hotel-grid h3 {
    min-height: 3.1rem;
    font-size: 1.3rem;
}

.hotel-grid p {
    margin-top: .5rem;
    color: var(--brown);
    font-size: .9rem;
}

.hotel-links {
    display: flex;
    flex-wrap: wrap;
    gap: .65rem;
    margin-top: auto;
    padding-top: 1.5rem;
}

.hotel-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 39px;
    padding: .65rem .8rem;
    border: 1px solid rgba(75, 11, 32, .5);
    color: var(--wine);
    font-size: .65rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    transition: color .2s, background .2s, border-color .2s;
}

.hotel-links a:hover,
.hotel-links a:focus-visible {
    border-color: var(--wine);
    color: #fff;
    background: var(--wine);
}

.hotel-links .contact-link {
    color: #fff;
    background: var(--wine);
}

.hotel-links .contact-link:hover,
.hotel-links .contact-link:focus-visible {
    border-color: var(--navy);
    background: var(--navy);
}

.contact-note {
    max-width: 52rem;
    margin: 2.4rem auto 0;
    color: var(--brown);
    font-size: .82rem;
    line-height: 1.6;
    text-align: center;
}

.dress {
    position: relative;
    overflow: hidden;
    padding: clamp(58px, 6vw, 90px) max(24px, 12vw) clamp(78px, 9vw, 130px);
    background-color: #f7f3eb;
    background-image:
        linear-gradient(rgba(247, 243, 235, .28), rgba(247, 243, 235, .28)),
        url('../assets/img/papel-amassado.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.dress > div {
    max-width: 65rem;
    margin: auto;
    text-align: center;
}

.script {
    color: var(--wine);
    font: 400 clamp(2.8rem, 5.8vw, 5rem) / 1.04 var(--font-script);
}

.dress h2 {
    margin: clamp(1.5rem, 2.5vw, 2.5rem) 0 1.6rem;
    font-size: clamp(.9rem, 1.4vw, 1.15rem);
    text-transform: uppercase;
    letter-spacing: .2em;
}

.dress p:not(.script) {
    font-size: clamp(1.1rem, 2vw, 1.45rem);
    line-height: 1.7;
}

.dress p + p {
    margin-top: 1rem;
}

.garden {
    height: min(55vw, 40rem);
    min-height: 25rem;
    background: url('../assets/img/jardim-aquarela.jpg') center / cover no-repeat;
}

@media (max-width: 1100px) {
    .hotel-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

@media (max-width: 560px) {
    .top {
        padding-inline: 20px;
    }

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

    .hotel-grid img {
        height: 16rem;
    }

    .hotel-grid h3 {
        min-height: auto;
    }

    .hotel-links a {
        flex: 1;
    }

    .script {
        font-size: clamp(2.8rem, 14vw, 4.25rem);
    }
}

@media (prefers-reduced-motion: reduce) {
    .hotel-grid article,
    .hotel-links a {
        transition: none;
    }
}
