@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=DM+Sans:wght@300;400;500;600&display=swap');

* {
    box-sizing: border-box;
}

:root {
    --green: #58904d;
    --green-dark: #2d5a27;
    --green-light: #eef5ec;
    --green-accent: #8bc34a;
    --text-dark: #1a1a1a;
    --text-mid: #444;
    --text-light: #666;
    --bg-soft: #f8f8f8;
    --white: #ffffff;
    --shadow-sm: 0 4px 16px rgba(0,0,0,0.07);
    --shadow-md: 0 12px 32px rgba(0,0,0,0.13);
    --radius: 16px;
    --radius-sm: 10px;
    --radius-pill: 30px;
}

body {
    margin: 0;
    font-family: 'DM Sans', sans-serif;
    overflow-x: hidden;
    color: var(--text-dark);
    background: var(--white);
}

/* ─── HEADER ─── */

header {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 22px 30px;
    z-index: 10;
}

.logo {
    position: absolute;
    left: 30px;
}

.logo img {
    padding-top: 20px;
    width: 96px;
}

.navigate {
    display: flex;
    border-radius: var(--radius-pill);
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.22);
    overflow: hidden;
}

.navigate a {
    text-align: center;
    padding: 10px 32px;
    text-decoration: none;
    color: white;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.3px;
    position: relative;
    display: inline-block;
    will-change: transform;
}

.navigate a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 6px;
    width: 60%;
    height: 2px;
    background: white;
    border-radius: 2px;
    transform: translateX(-50%) scaleX(0);
    transform-origin: center;
    transition: transform 0.28s ease;
}

.navigate a:hover::after,
.navigate a.active::after {
    transform: translateX(-50%) scaleX(1);
}

/* ─── HERO ─── */

.hero {
    height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    background-image:
        linear-gradient(rgba(0,0,0,0.18), rgba(0,0,0,0.58)),
        url("images/hero_1.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

.hero .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.intro {
    width: 50%;
    color: white;
}

.intro h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 52px;
    font-weight: 700;
    line-height: 1.1;
    margin: 0 0 12px;
    letter-spacing: -0.5px;
}

.intro h4 {
    font-size: 16px;
    font-weight: 400;
    margin: 0 0 16px;
    opacity: 0.88;
    letter-spacing: 0.2px;
}

.intro p {
    font-size: 15px;
    line-height: 1.7;
    opacity: 0.8;
    max-width: 400px;
}

.bottom-content {
    width: 62%;
    position: absolute;
    bottom: 22px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-evenly;
    gap: 20px;
    padding: 14px 30px;
    background: white;
    border-radius: var(--radius-pill);
    color: var(--green);
    font-size: 13.5px;
    font-weight: 600;
    box-shadow: var(--shadow-md);
}

.feature {
    display: flex;
    align-items: center;
    gap: 7px;
}

.feature i {
    font-size: 15px;
    color: var(--green-accent);
}

.hero-disclaimer {
    position: absolute;
    bottom: 22px;
    right: 28px;
    font-size: 11px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.55);
    letter-spacing: 0.3px;
    pointer-events: none;
    z-index: 5;
    user-select: none;
}

/* ─── MAIN WELCOME ─── */

.main {
    padding: 70px 0;
}

.main .container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.welcome-section {
    width: 50%;
}

.welcome-section p:first-child {
    color: var(--green);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.welcome-section h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 18px;
    color: var(--text-dark);
}

.welcome-section p {
    color: var(--text-light);
    line-height: 1.75;
    font-size: 15px;
    margin-bottom: 12px;
}

.main img {
    width: 50%;
    border-radius: var(--radius);
    object-fit: cover;
    box-shadow: var(--shadow-md);
}

/* ─── ROOMS ─── */

.rooms {
    padding: 36px 30px 40px;
    background: var(--bg-soft);
}

.rooms-header {
    text-align: center;
    margin-bottom: 22px;
}

.sub-title {
    color: var(--green);
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 6px;
}

.rooms-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    font-weight: 700;
    margin: 0;
    color: var(--text-dark);
}

.rooms-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    max-width: 1240px;
    margin: 0 auto;
    padding: 2px;
}

.rooms-row-break {
    flex-basis: 100%;
    width: 100%;
    height: 0;
    margin: 0;
    padding: 0;
    border: none;
}

/* ─── CARD GENERAL STYLES ─── */

.rooms-grid .card {
    flex: 0 0 calc((100% - 48px) / 4);
    max-width: calc((100% - 48px) / 4);
    width: calc((100% - 48px) / 4);
    background: #ffffff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
    border: 1px solid #eaefe9;
    display: flex;
    flex-direction: column;
    padding-bottom: 0;
    height: 100%;
}

.rooms-grid .card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.09);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    transition-delay: 0s;
}

/* Dark Theme for Cards (if needed) */
.rooms-grid .card.card-dark {
    background: #2b3336;
    color: #ffffff;
    border-color: #232a2c;
}

.rooms-grid .card.card-dark h4 {
    color: #ffffff;
}

.rooms-grid .card.card-dark p {
    color: #b0bec5;
}

.rooms-grid .card.card-dark .card-title-row i {
    color: #cfd8dc;
}

/* ─── ROOM IMAGES ─── */

.room-image-wrap {
    width: 100%;
    aspect-ratio: 16 / 10;
    position: relative;
    overflow: hidden;
    background: #eef2ed;
    flex-shrink: 0;
}

.room-image-wrap .room-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease;
}

/* Card hover image zoom effect */
.rooms-grid .card:hover .room-img {
    transform: scale(1.04);
}

/* Specific framing adjustments */
.card-courtyard .room-image-wrap .room-img {
    object-position: right 30%;
}

.card-reception .room-image-wrap .room-img {
    object-position: center 55%;
}

.card-living .room-image-wrap .room-img {
    object-position: center 55%;
}

.card-ambiance .room-image-wrap .room-img {
    object-position: center 30%;
}

.card-kitchen .room-image-wrap .room-img {
    object-position: center 55%;
}

.card-bedroom-1 .room-image-wrap .room-img {
    object-position: left 50%;
}

.card-bedroom-2 .room-image-wrap .room-img {
    object-position: center top;
}

.card-bathroom .room-image-wrap .room-img {
    object-position: center 50%;
}

/* ─── CARD INFO AREA ─── */

.card-info {
    padding: 10px 14px 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.card-title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 3px;
}

.card-title-row h4 {
    margin: 0;
    font-family: 'DM Sans', sans-serif;
    font-size: 13.5px;
    font-weight: 600;
    letter-spacing: normal;
    text-transform: none;
    color: var(--text-dark);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.card-title-row i {
    font-size: 12px;
    color: var(--green);
    flex-shrink: 0;
}

.card-info p {
    margin: 0;
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: var(--text-light);
    line-height: 1.4;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ─── SM SECTION ─── */

.sm-sec {
    padding: 50px 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image:
        linear-gradient(rgba(0,0,0,0.32), rgba(0,0,0,0.68)),
        url("./images/bg.jpg");
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
}

.sm-div {
    width: 100%;
    max-width: 1100px;
    text-align: center;
    color: white;
}

.sm-div h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 38px;
    font-weight: 700;
    margin: 0 0 44px;
    letter-spacing: -0.3px;
}

.feature-strip {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-item i {
    font-size: 24px;
    color: var(--green-accent);
}

.feature-item p {
    margin: 0 0 2px;
    font-weight: 600;
    font-size: 15px;
}

.feature-item span {
    font-size: 13px;
    color: rgba(255,255,255,0.65);
}

/* ─── OCCASION ─── */

.occasion {
    padding: 70px 60px;
    background: #f9f9f9;
}

.occasion-header {
    text-align: center;
    margin-bottom: 44px;
}

.occasion-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    font-weight: 700;
    margin: 0;
    color: var(--text-dark);
}

.occasion-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1240px;
    margin: 0 auto;
    padding: 8px 4px;
    align-items: stretch;
}

/* ─── O-CARD (hover fixed) ─── */

.o-card {
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    padding-bottom: 16px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.o-card img {
    width: 100%;
    height: 155px;
    object-fit: cover;
    display: block;
    transition: transform 0.42s ease;
}

.o-card:hover img {
    transform: scale(1.05);
}

.o-card h4 {
    margin: 12px 12px 6px;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
}

.o-card p {
    font-size: 13.5px;
    color: var(--text-light);
    margin: 0 12px;
    line-height: 1.5;
}

/* ─── OCCASION BOTTOM / ARRIVAL & ENTRANCE ─── */

.occasion-bottom {
    display: flex;
    gap: 36px;
    align-items: center;
    border-radius: var(--radius);
    padding: 20px 24px;
    background: white;
    box-shadow: var(--shadow-sm);
    max-width: 1200px;
    width: calc(100% - 60px);
    margin: 40px auto 20px;
}

.o-left {
    flex: 1;
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.o-left > h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--green);
    margin: 0 0 20px;
}

.o-feature {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
}

.o-feature:last-child {
    margin-bottom: 0;
}

.o-feature i {
    font-size: 18px;
    color: var(--green);
    background: var(--green-light);
    padding: 10px;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.o-feature p {
    margin: 0;
    font-weight: 600;
    font-size: 15px;
    color: var(--text-dark);
}

.o-center {
    flex: 1;
    width: 100%;
    max-width: 500px;
    aspect-ratio: 4 / 3.5;
    overflow: hidden;
    border-radius: 18px;
}

.o-center img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 50%;
    display: block;
    transition: transform 0.45s ease;
}

.o-center:hover img {
    transform: scale(1.04);
}

.o-right {
    background: var(--green-light);
    padding: 26px 22px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 100%;
}

.o-right h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 14px;
    line-height: 1.25;
}

.o-right button,
.o-right .book-btn {
    margin-top: 12px;
    padding: 12px 26px;
    border: none;
    background: var(--green);
    color: white;
    border-radius: var(--radius-pill);
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: background 0.25s ease, transform 0.2s ease;
}

.o-right button:hover,
.o-right .book-btn:hover {
    background: var(--green-dark);
    transform: translateY(-2px);
}

/* ─── BOOKING PLATFORMS (Airbnb & Booking.com) ─── */
.booking-platforms {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 14px;
    flex-wrap: wrap;
}

.platform-link {
    display: inline-flex;
    padding-top: 20px;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.platform-link:hover {
    opacity: 0.78;
    transform: translateY(-1px) scale(1.03);
}

.platform-link.airbnb img {
    height: 20px;
    width: auto;
    display: block;
}

.platform-link.booking img {
    height: 16px;
    width: auto;
    display: block;
}

/* ─── FOOTER ─── */

.footer {
    font-family: 'Cormorant Garamond', serif;
    padding: 40px 30px;
    background-color: var(--green);
    color: white;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-left img {
    width: 80px;
}

.footer-center p,
.footer-right p {
    margin: 5px 0;
    font-size: 14px;
}

.footer-center i,
.footer-right i {
    margin-right: 8px;
    color: var(--green-accent);
}

.social-icons {
    margin-top: 12px;
}

.social-icons i {
    margin-right: 12px;
    font-size: 18px;
    cursor: pointer;
    transition: color 0.2s ease, transform 0.2s ease;
}

.social-icons i:hover {
    color: var(--green-accent);
    transform: translateY(-2px);
}
.footer-right > a {
    color: inherit;
    text-decoration: none;
}

/* ─── REVEAL ANIMATION ─── */
/* This is the ONLY place opacity transition lives */

.reveal {
    opacity: 0;
    transition: opacity 0.9s ease;
}

.reveal.active {
    opacity: 1;
}

/* Delay classes affect only the reveal — not hover */
.delay-1 { transition-delay: 0s; }
.delay-2 { transition-delay: 0.1s; }
.delay-3 { transition-delay: 0.2s; }
.delay-4 { transition-delay: 0.3s; }
.delay-5 { transition-delay: 0.4s; }
.delay-6 { transition-delay: 0.5s; }
.delay-7 { transition-delay: 0.6s; }
.delay-8 { transition-delay: 0.7s; }

/* ─── CONTACT PAGE ─── */

.contact-hero {
    height: 45vh;
    display: flex;
    align-items: flex-end;
    padding-bottom: 50px;
    background-image:
        linear-gradient(rgba(0,0,0,0.32), rgba(0,0,0,0.62)),
        url("images/contact_bg.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.contact-hero-content {
    padding-left: 60px;
    color: white;
}

.contact-hero-content h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 56px;
    font-weight: 700;
    margin: 0 0 12px;
    letter-spacing: -1px;
}

.contact-hero-line {
    width: 50px;
    height: 3px;
    background: var(--green-accent);
    margin-bottom: 16px;
    border-radius: 2px;
}

.contact-hero-content p {
    margin: 4px 0;
    font-size: 15px;
    opacity: 0.88;
}

.contact-body {
    background: #f4f6f3;
    padding: 60px 40px;
    min-height: 60vh;
}

.contact-card {
    max-width: 1100px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.09);
    display: flex;
    overflow: hidden;
}

.contact-left {
    width: 38%;
    padding: 48px 42px;
    flex-shrink: 0;
}

.contact-left h2,
.contact-right h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 10px;
    color: var(--text-dark);
}

.contact-underline {
    width: 40px;
    height: 3px;
    background: var(--green-accent);
    border-radius: 2px;
    margin-bottom: 18px;
}

.contact-intro {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.7;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 22px;
}

.contact-icon {
    width: 38px;
    height: 38px;
    background: var(--green-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    color: var(--green);
    font-size: 15px;
}

.contact-info-item p {
    margin: 0;
    font-size: 13.5px;
    color: var(--text-mid);
    line-height: 1.65;
}

.info-label {
    font-weight: 700 !important;
    color: var(--text-dark) !important;
    font-size: 13px !important;
    margin-bottom: 3px !important;
}

.contact-divider {
    width: 1px;
    background: #ebebeb;
    margin: 40px 0;
    flex-shrink: 0;
}

.contact-right {
    flex: 1;
    padding: 48px 42px;
}

.form-row {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
}

.form-row input,
.form-row textarea {
    flex: 1;
    padding: 14px 16px;
    border: 1.5px solid #e4e4e4;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-family: 'DM Sans', sans-serif;
    color: var(--text-dark);
    background: #fafafa;
    outline: none;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.form-row input:focus,
.form-row textarea:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(88,144,77,0.1);
    background: white;
}

.form-row textarea {
    height: 135px;
    resize: vertical;
}

.send-btn {
    margin-top: 8px;
    padding: 13px 30px;
    background: var(--green-dark);
    color: white;
    border: none;
    border-radius: var(--radius-pill);
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
}

.send-btn:hover {
    background: var(--green);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(88,144,77,0.3);
}

/* ─── RESPONSIVE ─── */

@media (max-width: 1024px) {
    .rooms { padding: 40px 24px; }
    .rooms-row-break { display: none; }
    .rooms-grid {
        display: flex;
        flex-wrap: wrap;
        gap: 16px;
    }
    .rooms-grid .card {
        flex: 0 0 calc((100% - 16px) / 2);
        max-width: calc((100% - 16px) / 2);
        width: calc((100% - 16px) / 2);
    }
    .rooms-grid .room-image-wrap {
        aspect-ratio: 16 / 10;
        height: auto;
    }
    .occasion { padding: 50px 30px; }
    .occasion-cards {
        grid-template-columns: repeat(2, minmax(0, 320px));
        justify-content: center;
        gap: 20px;
    }

    .occasion-bottom {
        flex-direction: column;
        width: calc(100% - 48px);
        margin: 40px auto 10px;
    }

    .o-left {
        padding-left: 0;
        width: 100%;
    }

    .o-center,
    .o-right { width: 100%; }

    .sm-div h1 { font-size: 28px; }
    .feature-strip { flex-wrap: wrap; gap: 24px; justify-content: center; }

    .contact-card { flex-direction: column; }
    .contact-left { width: 100%; padding: 35px 30px; }
    .contact-divider { width: auto; height: 1px; margin: 0 40px; }
    .contact-right { padding: 35px 30px; }

    .footer-container { flex-wrap: wrap; gap: 20px; justify-content: center; text-align: center; }
}

@media (max-width: 768px) {
    header { padding: 15px 20px; justify-content: space-between; }
    .logo { position: static; }
    .logo img {
        width: 72px;
        padding-top: 0;
        margin-top: -6px;
    }

    .navigate a { padding: 9px 18px; font-size: 13px; }

    .hero { height: 70vh; }
    .intro { width: 85%; }
    .intro h2 { font-size: 36px; }

    .bottom-content {
        width: calc(100% - 40px);
        max-width: 480px;
        bottom: 35px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: nowrap;
        gap: 8px;
        font-size: 12px;
        padding: 10px 16px;
    }

    .main .container { flex-direction: column; }
    .welcome-section { width: 100%; }
    .main img { width: 100%; }

    .rooms { padding: 35px 16px; }
    .rooms-row-break { display: none; }
    .rooms-grid {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }
    .rooms-grid .card {
        width: 100%;
        max-width: 100%;
        flex: 1 1 auto;
    }
    .rooms-grid .room-image-wrap {
        aspect-ratio: 16 / 10;
        height: auto;
        max-height: 280px;
    }

    .occasion { padding: 40px 20px; }
    .occasion-cards {
        grid-template-columns: minmax(0, 420px);
        justify-content: center;
        gap: 16px;
    }
    .occasion-bottom {
        width: calc(100% - 32px);
        padding: 24px 16px;
        margin: 30px auto 10px;
    }

    .contact-hero { height: 40vh; padding-bottom: 30px; }
    .contact-hero-content { padding-left: 25px; }
    .contact-hero-content h1 { font-size: 38px; }

    .contact-body { padding: 30px 16px; }
    .contact-left { padding: 25px 20px; }
    .contact-right { padding: 25px 20px; }
    .contact-divider { margin: 0 20px; }
    .form-row { flex-direction: column; gap: 12px; }
}

@media (max-width: 480px) {
    .navigate a {
        padding: 8px 16px;
        font-size: 12.5px;
    }
    .navigate a::after {
        bottom: 5px;
        height: 2px;
    }

    .hero {
        height: 66vh;
        min-height: 480px;
    }
    .intro { width: 95%; }
    .intro h2 { font-size: 28px; }
    .intro h4 { font-size: 13px; }
    .bottom-content {
        display: flex;
        width: calc(100% - 24px);
        max-width: 390px;
        bottom: 36px;
        padding: 8px 12px;
        justify-content: space-between;
        align-items: center;
        gap: 4px;
        font-size: 10.5px;
    }
    .feature {
        gap: 4px;
    }
    .feature i {
        font-size: 12px;
    }
    .hero-disclaimer {
        bottom: 6px;
        right: 14px;
        font-size: 9.5px;
    }

    .rooms { padding: 30px 14px; }
    .rooms-row-break { display: none; }
    .rooms-grid {
        display: flex;
        flex-direction: column;
        gap: 14px;
    }
    .rooms-grid .card {
        width: 100%;
        max-width: 100%;
        flex: 1 1 auto;
    }
    .rooms-grid .room-image-wrap {
        aspect-ratio: 16 / 10;
        height: auto;
        min-height: unset;
        max-height: 220px;
    }
    .occasion-cards {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .occasion-bottom {
        width: calc(100% - 24px);
        padding: 20px 14px;
        margin: 25px auto 10px;
    }

    .rooms-header h2,
    .occasion-header h2 { font-size: 26px; }

    .sm-div h1 { font-size: 22px; }

    .contact-hero-content h1 { font-size: 30px; }
    .contact-hero-content p { font-size: 13px; }

    .footer-container { flex-direction: column; align-items: center; gap: 16px; }
}