/* ==========================================================================
   Suites Page Dedicated Stylesheet (Node 32:428 - Fully Responsive)
   ========================================================================== */

.suites-page-body {
    background-color: #ffffff;
}

/* Hero Banner (Node 32:429) */
.suites-hero-banner {
    position: relative;
    width: 100%;
    height: clamp(380px, 31.25vw, 600px);
    background-color: var(--hero-dark);
    overflow: hidden;
}

.suites-banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.suites-banner-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 276px;
    background: linear-gradient(180deg, rgba(5, 15, 29, 0.85) 0%, rgba(5, 15, 29, 0) 100%);
    pointer-events: none;
}

/* Breadcrumb Bar (64px Height, Node 32:527) */
.suites-breadcrumb-bar {
    width: 100%;
    height: 64px;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid rgba(18, 41, 73, 0.08);
}

.breadcrumb-content {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 24px;
}

.breadcrumb-content .crumb-link {
    color: var(--navy);
    font-weight: 450;
    transition: opacity 0.3s ease;
}

.breadcrumb-content .crumb-link:hover {
    opacity: 0.7;
}

.breadcrumb-content .crumb-slash {
    color: var(--navy);
    font-size: 18px;
    font-weight: 450;
}

.breadcrumb-content .crumb-active {
    color: #282828;
    font-weight: 600;
}

/* Main Section & Page Header (Node 32:533) */
.suites-main-section {
    width: 100%;
    background-color: #ffffff;
    padding: clamp(40px, 4.16vw, 60px) 0 clamp(80px, 8.33vw, 120px);
}

.suites-page-header {
    text-align: center;
    margin-bottom: clamp(48px, 5.55vw, 80px);
}

.suites-main-title {
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: clamp(36px, 4.16vw, 60px);
    line-height: 1.05;
    letter-spacing: -0.04em;
    color: var(--navy);
    text-transform: capitalize;
}

/* Suites Grid Container (1496px max-width, Node 32:535, 32:630, 32:725) */
.suites-grid-container {
    max-width: 1496px;
    width: min(calc(100% - 80px), 1496px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(32px, 3.33vw, 48px) clamp(16px, 1.38vw, 24px);
}

/* Card layout specs matching 738x502px card bounds with fluid scaling */
.suites-grid-container .suite-card {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.suites-grid-container .suite-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 738 / 350;
    height: auto;
    max-height: 350px;
    overflow: hidden;
}

.suites-grid-container .suite-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ==========================================================================
   Comprehensive Responsiveness Breakpoints for Suites Page
   ========================================================================== */

/* Large Screens & Ultra-Wide (> 1600px) */
@media (min-width: 1601px) {
    .suites-grid-container {
        width: 100%;
        max-width: 1496px;
    }
}

/* Laptops & Standard Desktop (1025px - 1440px) */
@media (max-width: 1440px) {
    .suites-grid-container {
        width: calc(100% - 64px);
    }

    .suites-grid-container .suite-card .suite-text h3 {
        font-size: clamp(26px, 2.22vw, 32px);
        line-height: 1.1;
    }
}

/* Tablets & Small Laptops (769px - 1024px) */
@media (max-width: 1024px) {
    .suites-hero-banner {
        height: clamp(340px, 40vw, 420px);
    }

    .suites-main-section {
        padding: clamp(36px, 5vw, 50px) 0 clamp(60px, 8vw, 90px);
    }

    .suites-page-header {
        margin-bottom: 40px;
    }

    .suites-grid-container {
        grid-template-columns: 1fr;
        width: calc(100% - 48px);
        max-width: 738px;
        gap: 40px;
    }

    .suites-grid-container .suite-image-wrapper {
        aspect-ratio: 738 / 380;
        height: auto;
        max-height: 380px;
    }

    .suites-grid-container .suite-info {
        gap: 24px;
    }
}

/* Mobile Devices (<= 768px) */
@media (max-width: 768px) {
    .suites-hero-banner {
        height: clamp(260px, 45vw, 320px);
    }

    .suites-breadcrumb-bar {
        height: 52px;
    }

    .breadcrumb-content {
        font-size: 14px;
        line-height: 20px;
        gap: 6px;
    }

    .suites-main-section {
        padding: 32px 0 60px;
    }

    .suites-page-header {
        margin-bottom: 28px;
    }

    .suites-main-title {
        font-size: clamp(28px, 6vw, 36px);
        line-height: 1.1;
        letter-spacing: -0.02em;
    }

    .suites-grid-container {
        width: calc(100% - 32px);
        gap: 32px;
    }

    .suites-grid-container .suite-image-wrapper {
        aspect-ratio: 16 / 9;
        height: auto;
    }

    .suites-grid-container .suite-card .suite-text {
        gap: 8px;
    }

    .suites-grid-container .suite-card .suite-text h3 {
        font-size: clamp(22px, 5vw, 26px);
        line-height: 1.15;
        letter-spacing: -0.02em;
    }

    .suites-grid-container .suite-card .suite-text p {
        font-size: 15px;
        line-height: 21px;
    }

    .suites-grid-container .cta-link {
        font-size: 14px;
        line-height: 18px;
    }
}

/* Small Mobile Devices (<= 480px) */
@media (max-width: 480px) {
    .suites-hero-banner {
        height: 240px;
    }

    .suites-breadcrumb-bar {
        height: 44px;
    }

    .breadcrumb-content {
        font-size: 13px;
    }

    .suites-main-title {
        font-size: 26px;
        line-height: 30px;
    }

    .suites-grid-container {
        width: calc(100% - 24px);
        gap: 28px;
    }

    .suites-grid-container .suite-image-wrapper {
        aspect-ratio: 4 / 3;
        height: auto;
    }

    .suites-grid-container .suite-info {
        gap: 20px;
    }

    .suites-grid-container .suite-card .suite-text h3 {
        font-size: 20px;
        line-height: 24px;
    }

    .suites-grid-container .suite-card .suite-text p {
        font-size: 14px;
        line-height: 19px;
    }
}
