/* =========================================================
   TRANQUIL INN HOSPITALITY
   HOTELS LISTING PAGE
   ========================================================= */

.hotels-page {
    min-height: 100vh;
    background: #f7f3ee;
    color: #332a25;
}

.hotels-hero {
    position: relative;
    overflow: hidden;
    padding: 180px 0 115px;
    background:
        radial-gradient(
            circle at 85% 20%,
            rgba(196, 154, 111, 0.22),
            transparent 32%
        ),
        linear-gradient(
            118deg,
            #251b17 0%,
            #513729 55%,
            #72513c 100%
        );
}

.hotels-hero::before {
    position: absolute;
    top: -160px;
    right: -120px;
    width: 520px;
    height: 520px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    content: "";
}

.hotels-hero::after {
    position: absolute;
    right: 13%;
    bottom: -230px;
    width: 430px;
    height: 430px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    content: "";
}

.hotels-hero-container {
    position: relative;
    z-index: 2;
}

.hotels-eyebrow {
    margin: 0 0 14px;
    color: #c99b70;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2.4px;
    text-transform: uppercase;
}

.hotels-hero h1 {
    max-width: 850px;
    margin: 0 0 24px;
    color: #ffffff;
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(48px, 7vw, 80px);
    font-weight: 700;
    line-height: 1.05;
}

.hotels-hero-description {
    max-width: 690px;
    margin: 0;
    color: rgba(255, 255, 255, 0.75);
    font-size: 18px;
    line-height: 1.75;
}

.hotels-hero-actions {
    display: flex;
    margin-top: 38px;
    flex-wrap: wrap;
    gap: 13px;
}

.hotels-primary-button,
.hotels-secondary-button,
.hotel-outline-button,
.hotels-light-button,
.hotels-transparent-button {
    display: inline-flex;
    min-height: 54px;
    padding: 14px 27px;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition:
        background 0.25s ease,
        border-color 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease;
}

.hotels-primary-button {
    border: 1px solid #6a4936;
    background: #6a4936;
    color: #ffffff;
}

.hotels-primary-button:hover {
    border-color: #8d654a;
    background: #8d654a;
    color: #ffffff;
    transform: translateY(-2px);
}

.hotels-secondary-button {
    border: 1px solid rgba(255, 255, 255, 0.45);
    background: transparent;
    color: #ffffff;
}

.hotels-secondary-button:hover {
    border-color: #ffffff;
    background: #ffffff;
    color: #3c2b22;
    transform: translateY(-2px);
}

.hotels-listing-section {
    padding: 105px 0;
}

.hotels-section-heading {
    display: grid;
    margin-bottom: 52px;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 520px);
    align-items: end;
    gap: 50px;
}

.hotels-section-heading h2 {
    margin: 0;
    color: #33251f;
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(39px, 5vw, 57px);
    line-height: 1.12;
}

.hotels-section-heading > p {
    margin: 0;
    color: #756b64;
    font-size: 16px;
    line-height: 1.75;
}

.hotels-grid {
    display: grid;
    gap: 35px;
}

.hotel-listing-card {
    display: grid;
    grid-template-columns: minmax(330px, 0.84fr) minmax(0, 1.16fr);
    overflow: hidden;
    border: 1px solid #e1d8d0;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 20px 55px rgba(64, 45, 34, 0.08);
}

.hotel-card-visual {
    position: relative;
    min-height: 530px;
    overflow: hidden;
}

.hotel-card-visual-1 {
    background:
        linear-gradient(
            145deg,
            rgba(30, 21, 17, 0.12),
            rgba(30, 21, 17, 0.58)
        ),
        linear-gradient(
            135deg,
            #a77c59,
            #3f2c23
        );
}

.hotel-card-visual-2 {
    background:
        linear-gradient(
            145deg,
            rgba(30, 21, 17, 0.06),
            rgba(30, 21, 17, 0.6)
        ),
        linear-gradient(
            135deg,
            #c0a080,
            #5e4232
        );
}

.hotel-card-pattern {
    position: absolute;
    top: -20%;
    left: -25%;
    width: 150%;
    height: 140%;
    opacity: 0.34;
    background:
        repeating-linear-gradient(
            120deg,
            transparent 0,
            transparent 42px,
            rgba(255, 255, 255, 0.08) 43px,
            rgba(255, 255, 255, 0.08) 44px
        );
    transform: rotate(-8deg);
}

.hotel-card-initials {
    position: absolute;
    top: 50%;
    left: 50%;
    color: rgba(255, 255, 255, 0.93);
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(90px, 12vw, 155px);
    font-weight: 700;
    letter-spacing: -8px;
    line-height: 1;
    text-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
    transform: translate(-50%, -50%);
}

.hotel-card-location {
    position: absolute;
    right: 28px;
    bottom: 26px;
    left: 28px;
    padding-top: 17px;
    border-top: 1px solid rgba(255, 255, 255, 0.28);
    color: rgba(255, 255, 255, 0.84);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.hotel-card-content {
    padding: 46px;
}

.hotel-card-title-row {
    display: flex;
    margin-bottom: 22px;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
}

.hotel-card-label {
    margin: 0 0 7px;
    color: #a57550;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.7px;
    text-transform: uppercase;
}

.hotel-card-title-row h2 {
    margin: 0;
    color: #33251f;
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(34px, 4vw, 47px);
    line-height: 1.12;
}

.hotel-status-badge {
    display: inline-flex;
    padding: 7px 13px;
    align-items: center;
    border-radius: 30px;
    background: #eef5eb;
    color: #4f6f46;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.7px;
    text-transform: uppercase;
}

.hotel-status-badge::before {
    width: 7px;
    height: 7px;
    margin-right: 7px;
    border-radius: 50%;
    background: #6e925f;
    content: "";
}

.hotel-card-description {
    margin: 0 0 28px;
    color: #756c66;
    font-size: 15px;
    line-height: 1.75;
}

.hotel-card-information {
    display: grid;
    gap: 18px;
}

.hotel-information-item {
    display: grid;
    grid-template-columns: 39px minmax(0, 1fr);
    align-items: start;
    gap: 13px;
}

.hotel-information-icon {
    display: grid;
    width: 39px;
    height: 39px;
    place-items: center;
    border: 1px solid #e4d8ce;
    border-radius: 50%;
    background: #faf7f3;
    color: #78543d;
    font-size: 15px;
}

.hotel-information-item small {
    display: block;
    margin-bottom: 4px;
    color: #a69b93;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.hotel-information-item p,
.hotel-information-item a {
    margin: 0;
    color: #443731;
    font-size: 14px;
    line-height: 1.55;
    overflow-wrap: anywhere;
}

.hotel-information-item a:hover {
    color: #9a6d4d;
}

.hotel-card-features {
    display: flex;
    padding: 24px 0;
    margin-top: 27px;
    flex-wrap: wrap;
    gap: 9px;
    border-top: 1px solid #ece4de;
    border-bottom: 1px solid #ece4de;
}

.hotel-card-features span {
    padding: 7px 12px;
    border-radius: 30px;
    background: #f5f0eb;
    color: #6f625a;
    font-size: 11px;
    font-weight: 600;
}

.hotel-card-actions {
    display: flex;
    margin-top: 27px;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.hotel-outline-button {
    border: 1px solid #795640;
    background: transparent;
    color: #624532;
}

.hotel-outline-button:hover {
    background: #795640;
    color: #ffffff;
    transform: translateY(-2px);
}

.hotel-text-link {
    padding: 10px 5px;
    color: #795640;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}

.hotel-text-link:hover {
    color: #a57550;
}

.hotels-message-card {
    max-width: 760px;
    padding: 50px;
    margin: 0 auto;
    border: 1px solid #e1d8d0;
    border-radius: 16px;
    background: #ffffff;
    text-align: center;
    box-shadow: 0 20px 55px rgba(64, 45, 34, 0.08);
}

.hotels-message-card h2 {
    margin: 0 0 15px;
    color: #33251f;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 40px;
}

.hotels-message-card p {
    margin: 0 0 25px;
    color: #756c66;
}

.hotels-benefits-section {
    padding: 0 0 105px;
}

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

.hotel-benefit-card {
    padding: 35px;
    border: 1px solid #e1d8d0;
    border-radius: 13px;
    background: #ffffff;
}

.hotel-benefit-card > span {
    display: block;
    margin-bottom: 26px;
    color: #b68a66;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 27px;
}

.hotel-benefit-card h3 {
    margin: 0 0 13px;
    color: #382a23;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 25px;
}

.hotel-benefit-card p {
    margin: 0;
    color: #776c65;
    font-size: 14px;
    line-height: 1.7;
}

.hotels-contact-banner {
    padding: 80px 0;
    background:
        radial-gradient(
            circle at 15% 50%,
            rgba(190, 145, 106, 0.16),
            transparent 35%
        ),
        #2d211c;
}

.hotels-contact-banner-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 45px;
}

.hotels-contact-banner h2 {
    margin: 0 0 12px;
    color: #ffffff;
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(36px, 5vw, 54px);
}

.hotels-contact-banner p:not(.hotels-eyebrow) {
    max-width: 650px;
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

.hotels-contact-banner-actions {
    display: flex;
    flex-shrink: 0;
    flex-wrap: wrap;
    gap: 12px;
}

.hotels-light-button {
    border: 1px solid #ffffff;
    background: #ffffff;
    color: #35261f;
}

.hotels-light-button:hover {
    border-color: #c99b70;
    background: #c99b70;
    color: #ffffff;
    transform: translateY(-2px);
}

.hotels-transparent-button {
    border: 1px solid rgba(255, 255, 255, 0.45);
    background: transparent;
    color: #ffffff;
}

.hotels-transparent-button:hover {
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1050px) {
    .hotel-listing-card {
        grid-template-columns: 1fr;
    }

    .hotel-card-visual {
        min-height: 390px;
    }

    .hotels-contact-banner-inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .hotels-contact-banner-actions {
        flex-shrink: 1;
    }
}

@media (max-width: 850px) {
    .hotels-section-heading {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .hotels-benefits-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 650px) {
    .hotels-hero {
        padding: 145px 0 80px;
    }

    .hotels-hero h1 {
        font-size: 47px;
    }

    .hotels-hero-description {
        font-size: 16px;
    }

    .hotels-hero-actions,
    .hotel-card-actions,
    .hotels-contact-banner-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .hotels-primary-button,
    .hotels-secondary-button,
    .hotel-outline-button,
    .hotels-light-button,
    .hotels-transparent-button {
        width: 100%;
    }

    .hotels-listing-section {
        padding: 75px 0;
    }

    .hotel-card-visual {
        min-height: 300px;
    }

    .hotel-card-initials {
        font-size: 100px;
    }

    .hotel-card-content {
        padding: 29px 22px;
    }

    .hotel-card-title-row {
        align-items: flex-start;
        flex-direction: column;
    }

    .hotel-card-title-row h2 {
        font-size: 37px;
    }

    .hotel-status-badge {
        align-self: flex-start;
    }

    .hotels-benefits-section {
        padding-bottom: 75px;
    }

    .hotel-benefit-card {
        padding: 28px 23px;
    }

    .hotels-contact-banner {
        padding: 65px 0;
    }

    .hotels-contact-banner h2 {
        font-size: 39px;
    }

    .hotels-message-card {
        padding: 35px 22px;
    }

    .hotels-message-card h2 {
        font-size: 34px;
    }
}