/* Rooms Section */
#rooms {
    background-color: transparent;
    padding: var(--section-padding) 0;
}

.section-header {
    text-align: left;
    margin-bottom: 54px;
    padding-left: 26px;
    border-left: 3px solid rgba(123, 75, 42, 0.55);
    position: relative;
}

.section-header::after {
    content: '';
    position: absolute;
    left: -3px;
    top: 0;
    width: 3px;
    height: 32px;
    background: rgba(47, 74, 58, 0.75);
}

.section-header h3 {
    font-family: var(--font-en);
    font-size: clamp(2.2rem, 3.2vw, 3.1rem);
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--text-color);
    margin-bottom: 10px;
    text-transform: none;
}

.section-header p {
    font-family: var(--font-kr);
    font-size: 1.02rem;
    color: var(--text-light);
    letter-spacing: 0.02em;
    max-width: 52ch;
}

.room-grid {
    column-count: 2;
    column-gap: 28px;
}

.room-item {
    position: relative;
    display: inline-block;
    overflow: hidden;
    width: 100%;
    margin: 0 0 28px;
    border-radius: var(--radius);
    background: rgba(251, 247, 239, 0.72);
    border: 1px solid rgba(31, 25, 20, 0.14);
    box-shadow: var(--shadow-paper);
    vertical-align: top;
    break-inside: avoid;
    page-break-inside: avoid;
    -webkit-column-break-inside: avoid;
}

.room-item:last-child {
    margin-bottom: 0;
}

.room-item::after {
    display: none;
}

.room-item img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: var(--radius) var(--radius) 0 0;
    filter: saturate(1.05) contrast(1.03);
    opacity: 1;
}

.room-overlay {
    display: block;
    padding: 14px 16px 16px;
    color: var(--text-color);
    font-family: var(--font-kr);
    font-size: 0.98rem;
    font-weight: 600;
    letter-spacing: 0.01em;
}

@media (max-width: 768px) {
    .section-header {
        text-align: center;
        border-left: none;
        padding-left: 0;
    }

    .section-header::after {
        display: none;
    }

    .room-grid {
        column-count: 1;
        column-gap: 0;
    }

    .room-item {
        margin-bottom: 24px;
        border-radius: var(--radius);
    }

    .room-item:last-child {
        margin-bottom: 0;
    }
}
