 :root {
            --maroon: #70181f;
            --green: #427d3a;
            --black: #000000;
            --white: #ffffff;
            --light-bg: #f5f5f5;
            --text-gray: #555555;
            --border-light: #e0e0e0;
            --gold: #c9a84c;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }

        body {
            font-family: 'Poppins', sans-serif;
            line-height: 1.6;
            color: var(--text-gray);
            background: var(--white);
        }

        /* ── Hero ── */
        .hero-section {
            min-height: 100vh;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            padding: 80px 0;
        }

        .hero-bg {
            position: absolute;
            inset: 0;
            background: linear-gradient(rgba(0, 0, 0, 0.34), rgba(0, 0, 0, 0.68)), url(../assets/image/bg.webp?w=1200&h=600&fit=crop) center / cover;
        }

        /* .hero-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg,
                rgba(112, 24, 31, 0.92) 0%,
                rgba(112, 24, 31, 0.75) 50%,
                rgba(66, 125, 58, 0.7) 100%);
        } */

        .hero-pattern {
            position: absolute;
            inset: 0;
            background-image:
                linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
            background-size: 60px 60px;
            animation: patternMove 20s linear infinite;
        }

        @keyframes patternMove {
            0%   { background-position: 0 0, 0 0; }
            100% { background-position: 60px 60px, 60px 60px; }
        }

        .hero-content {
            position: relative;
            z-index: 10;
            text-align: center;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: rgba(255,255,255,.15);
            backdrop-filter: blur(10px);
            color: var(--white);
            border: 1px solid rgba(255,255,255,.3);
            padding: 10px 28px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 14px;
            margin-bottom: 30px;
            animation: floatBadge 3s ease-in-out infinite;
        }

        @keyframes floatBadge {
            0%,100% { transform: translateY(0); }
            50%     { transform: translateY(-8px); }
        }

        .hero-badge i { color: var(--gold); animation: starSpin 3s linear infinite; }

        @keyframes starSpin {
            0%,100% { transform: rotate(0deg) scale(1); }
            50%     { transform: rotate(180deg) scale(1.2); }
        }

        .hero-title {
            font-size: clamp(3.5rem, 9vw, 7rem);
            font-weight: 900;
            color: var(--white);
            line-height: 1.05;
            margin-bottom: 20px;
            text-shadow: 0 10px 40px rgba(0,0,0,.4);
            animation: titleFadeIn 1s ease-out;
        }

        @keyframes titleFadeIn {
            from { opacity: 0; transform: translateY(40px); }
            to   { opacity: 1; transform: translateY(0); }
        }

        .hero-title span {
            background: linear-gradient(135deg, var(--gold) 0%, #f0d080 50%, var(--gold) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            background-size: 200% 200%;
            animation: goldShimmer 3s ease infinite;
        }

        @keyframes goldShimmer {
            0%,100% { background-position: 0% 50%; }
            50%     { background-position: 100% 50%; }
        }

        .hero-subtitle {
            font-size: clamp(1.1rem, 2vw, 1.4rem);
            color: rgba(255,255,255,.92);
            max-width: 700px;
            margin: 0 auto 50px;
        }

        .hero-actions {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .hero-btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: linear-gradient(135deg, var(--maroon), #8b1f28);
            color: var(--white);
            padding: 18px 45px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1rem;
            text-decoration: none;
            box-shadow: 0 10px 30px rgba(112,24,31,.5);
            transition: all .4s cubic-bezier(.175,.885,.32,1.275);
            position: relative;
            overflow: hidden;
        }

        .hero-btn-primary::before {
            content: '';
            position: absolute; top: 50%; left: 50%;
            width: 0; height: 0; border-radius: 50%;
            background: var(--green);
            transform: translate(-50%,-50%);
            transition: width .6s ease, height .6s ease;
        }

        .hero-btn-primary:hover::before { width: 300px; height: 300px; }
        .hero-btn-primary span,
        .hero-btn-primary i { position: relative; z-index: 1; }
        .hero-btn-primary:hover { transform: translateY(-8px); color: var(--white); }

        .hero-btn-secondary {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: rgba(255,255,255,.15);
            backdrop-filter: blur(10px);
            color: var(--white);
            border: 2px solid rgba(255,255,255,.4);
            padding: 18px 45px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1rem;
            text-decoration: none;
            transition: all .4s ease;
        }

        .hero-btn-secondary:hover {
            background: var(--white);
            color: var(--maroon);
            transform: translateY(-8px);
            border-color: var(--white);
        }

        /* Scroll Indicator */
        .scroll-indicator {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 10;
            animation: scrollBounce 2s ease-in-out infinite;
        }

        @keyframes scrollBounce {
            0%,100% { transform: translateX(-50%) translateY(0); }
            50%     { transform: translateX(-50%) translateY(12px); }
        }

        .scroll-indicator i { font-size: 2rem; color: rgba(255,255,255,.7); }

        /* ── Stats ── */
        .stats-section {
            padding: 80px 0;
            background: var(--light-bg);
            margin-top: 0;
            position: relative;
            z-index: 20;
        }

        .stats-container {
            background: var(--white);
            border-radius: 20px;
            padding: 50px 30px;
            box-shadow: 0 10px 50px rgba(0,0,0,.1);
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4,1fr);
            gap: 40px;
        }

        .stat-item {
            text-align: center;
            padding: 20px;
            opacity: 0;
            animation: fadeInScale .6s ease forwards;
        }

        .stat-item:nth-child(1){animation-delay:.2s;}
        .stat-item:nth-child(2){animation-delay:.4s;}
        .stat-item:nth-child(3){animation-delay:.6s;}
        .stat-item:nth-child(4){animation-delay:.8s;}

        @keyframes fadeInScale {
            from { opacity:0; transform:scale(.8) translateY(20px); }
            to   { opacity:1; transform:scale(1) translateY(0); }
        }

        .stat-icon {
            width: 80px; height: 80px;
            background: linear-gradient(135deg,var(--maroon),#8b1f28);
            border-radius: 50%;
            margin: 0 auto 20px;
            display: flex; align-items: center; justify-content: center;
            transition: all .5s cubic-bezier(.175,.885,.32,1.275);
            box-shadow: 0 5px 20px rgba(112,24,31,.3);
            position: relative; overflow: hidden;
        }

        .stat-icon::before {
            content: '';
            position: absolute; inset: -10px;
            background: linear-gradient(45deg,var(--green),var(--maroon));
            opacity: 0;
            transition: opacity .5s ease;
            animation: rotate 3s linear infinite;
        }

        @keyframes rotate {
            from { transform: rotate(0deg); }
            to   { transform: rotate(360deg); }
        }

        .stat-item:hover .stat-icon::before { opacity: 1; }
        .stat-item:hover .stat-icon {
            background: var(--green);
            transform: scale(1.15) translateY(-10px);
            box-shadow: 0 15px 40px rgba(66,125,58,.5);
        }

        .stat-icon i { font-size: 2.2rem; color: var(--white); position: relative; z-index: 1; }
        .stat-number { font-size: 2.5rem; font-weight: 800; color: var(--maroon); margin-bottom: 8px; }
        .stat-label  { font-size: .95rem; color: var(--text-gray); font-weight: 500; }

        /* ── Section Header ── */
        .section-header { text-align: center; margin-bottom: 60px; }

        .section-tag {
            display: inline-block;
            background: var(--maroon);
            color: var(--white);
            padding: 8px 20px;
            border-radius: 50px;
            font-size: 13px; font-weight: 600;
            text-transform: uppercase; letter-spacing: 1px;
            margin-bottom: 15px;
        }

        .section-title { font-size: clamp(2.5rem,5vw,3.5rem); font-weight: 800; color: var(--black); margin-bottom: 15px; }
        .section-desc  { font-size: 1.1rem; color: var(--text-gray); max-width: 600px; margin: 0 auto; }

        /* ── Rooms ── */
        .rooms-section { padding: 80px 0; background: var(--white); }

        .rooms-grid {
            display: grid;
            grid-template-columns: repeat(3,1fr);
            gap: 30px;
        }

        .room-card {
            background: var(--white);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 5px 25px rgba(0,0,0,.1);
            transition: all .4s cubic-bezier(.175,.885,.32,1.275);
            position: relative;
            border: 2px solid transparent;
        }

        .room-card:hover {
            transform: translateY(-18px) scale(1.02);
            border-color: var(--maroon);
            box-shadow: 0 25px 60px rgba(112,24,31,.2);
        }

        .room-image {
            height: 260px;
            overflow: hidden;
            position: relative;
        }

        .room-image img {
            width: 100%; height: 100%;
            object-fit: cover;
            transition: transform .5s ease;
        }

        .room-card:hover .room-image img { transform: scale(1.12); }

        .room-label {
            position: absolute;
            top: 20px; left: 20px;
            background: linear-gradient(135deg,var(--maroon),#8b1f28);
            color: var(--white);
            padding: 8px 18px;
            border-radius: 30px;
            font-size: .85rem;
            font-weight: 700;
            letter-spacing: .5px;
        }

        .room-price-badge {
            position: absolute;
            top: 20px; right: 20px;
            background: linear-gradient(135deg,var(--gold),#e8c060);
            color: var(--black);
            padding: 8px 18px;
            border-radius: 30px;
            font-size: .85rem;
            font-weight: 800;
        }

        .room-content { padding: 30px; }

        .room-content h4 {
            font-size: 1.5rem; font-weight: 800;
            color: var(--black); margin-bottom: 10px;
        }

        .room-content p {
            font-size: .95rem; color: var(--text-gray);
            line-height: 1.7; margin-bottom: 20px;
        }

        .room-features {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 25px;
        }

        .room-feature {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: .82rem;
            color: var(--text-gray);
            font-weight: 500;
        }

        .room-feature i { color: var(--green); font-size: .9rem; }

        .room-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: linear-gradient(135deg,var(--maroon),#8b1f28);
            color: var(--white);
            padding: 12px 28px;
            border-radius: 30px;
            font-size: .9rem;
            font-weight: 700;
            text-decoration: none;
            transition: all .4s cubic-bezier(.175,.885,.32,1.275);
            position: relative;
            overflow: hidden;
        }

        .room-btn::before {
            content: '';
            position: absolute; top: 50%; left: 50%;
            width: 0; height: 0; border-radius: 50%;
            background: var(--green);
            transform: translate(-50%,-50%);
            transition: width .6s ease, height .6s ease;
        }

        .room-btn span, .room-btn i { position: relative; z-index: 1; }
        .room-btn:hover::before { width: 200px; height: 200px; }
        .room-btn:hover { transform: translateY(-4px); color: var(--white); }

        /* ── Amenities ── */
        .amenities-section { padding: 80px 0; background: var(--light-bg); }

        .amenities-grid {
            display: grid;
            grid-template-columns: repeat(4,1fr);
            gap: 25px;
        }

        .amenity-card {
            background: var(--white);
            border-radius: 15px;
            padding: 35px 25px;
            text-align: center;
            transition: all .4s cubic-bezier(.175,.885,.32,1.275);
            position: relative;
            overflow: hidden;
            border: 2px solid transparent;
        }

        .amenity-card::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 4px;
            background: linear-gradient(90deg,var(--maroon),var(--green));
            transform: scaleX(0);
            transition: transform .4s ease;
        }

        .amenity-card:hover::before { transform: scaleX(1); }

        .amenity-card:hover {
            transform: translateY(-12px) scale(1.03);
            border-color: var(--maroon);
            box-shadow: 0 20px 50px rgba(112,24,31,.15);
        }

        .amenity-icon {
            width: 75px; height: 75px;
            background: linear-gradient(135deg,var(--maroon),#8b1f28);
            border-radius: 50%;
            margin: 0 auto 20px;
            display: flex; align-items: center; justify-content: center;
            transition: all .4s ease;
            position: relative; overflow: hidden;
        }

        .amenity-icon::before {
            content: '';
            position: absolute; inset: -10px;
            background: linear-gradient(45deg,var(--green),var(--maroon));
            opacity: 0;
            transition: opacity .5s ease;
            animation: rotate 3s linear infinite;
        }

        .amenity-card:hover .amenity-icon::before { opacity: 1; }
        .amenity-card:hover .amenity-icon { transform: scale(1.1) rotate(360deg); }
        .amenity-icon i { font-size: 2rem; color: var(--white); position: relative; z-index: 1; }

        .amenity-card h5 { font-size: 1.05rem; font-weight: 700; color: var(--black); margin-bottom: 8px; }
        .amenity-card p  { font-size: .88rem; color: var(--text-gray); line-height: 1.5; }

        /* ── Gallery ── */
        .gallery-section { padding: 80px 0; background: var(--black); }

        .section-header.light .section-tag  { background: var(--white); color: var(--black); }
        .section-header.light .section-title{ color: var(--white); }
        .section-header.light .section-desc { color: rgba(255,255,255,.8); }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(4,1fr);
            grid-template-rows: auto auto;
            gap: 15px;
        }

        .gallery-item {
            border-radius: 15px;
            overflow: hidden;
            position: relative;
            cursor: pointer;
        }

        .gallery-item.featured {
            grid-column: span 2;
            grid-row: span 2;
        }

        .gallery-item img {
            width: 100%; height: 100%;
            object-fit: cover;
            min-height: 200px;
            transition: transform .5s ease;
        }

        .gallery-item.featured img { min-height: 430px; }

        .gallery-item:hover img { transform: scale(1.1); }

        .gallery-overlay {
            position: absolute; inset: 0;
            background: linear-gradient(to top,rgba(112,24,31,.85) 0%,transparent 60%);
            opacity: 0;
            transition: opacity .4s ease;
            display: flex; align-items: flex-end;
            padding: 20px;
        }

        .gallery-item:hover .gallery-overlay { opacity: 1; }

        .gallery-overlay span {
            color: var(--white);
            font-size: .9rem; font-weight: 600;
        }

        /* ── Policies ── */
        .policies-section { padding: 80px 0; background: var(--white); }

        .policies-grid {
            display: grid;
            grid-template-columns: repeat(2,1fr);
            gap: 25px;
        }

        .policy-card {
            background: var(--light-bg);
            border-radius: 15px;
            padding: 30px;
            border-left: 5px solid var(--maroon);
            transition: all .4s ease;
            box-shadow: 0 5px 20px rgba(0,0,0,.06);
        }

        .policy-card:hover {
            transform: translateX(12px);
            border-left-color: var(--green);
            background: var(--white);
            box-shadow: 0 10px 35px rgba(0,0,0,.12);
        }

        .policy-header {
            display: flex; align-items: center; gap: 15px;
            margin-bottom: 15px;
        }

        .policy-num {
            width: 50px; height: 50px;
            background: linear-gradient(135deg,var(--maroon),var(--green));
            border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            font-size: 1.4rem; font-weight: 800; color: var(--white);
            flex-shrink: 0;
            transition: all .4s ease;
        }

        .policy-card:hover .policy-num { transform: rotate(360deg) scale(1.1); }

        .policy-header h5 { font-size: 1.2rem; font-weight: 700; color: var(--black); margin: 0; }

        .policy-card p { font-size: .95rem; color: var(--text-gray); line-height: 1.6; margin: 0; }

        /* ── Booking ── */
        .booking-section { padding: 80px 0; background: var(--light-bg); }

        .booking-container {
            background: linear-gradient(135deg,var(--maroon) 0%,#8b1f28 25%,var(--green) 75%,#5fa94d 100%);
            background-size: 400% 400%;
            border-radius: 20px;
            padding: 60px 50px;
            position: relative;
            overflow: hidden;
            animation: gradientAnimation 15s ease infinite;
        }

        @keyframes gradientAnimation {
            0%,100% { background-position: 0% 50%; }
            50%     { background-position: 100% 50%; }
        }

        .booking-container::before {
            content: '';
            position: absolute; top: -50%; left: -50%;
            width: 200%; height: 200%;
            background: radial-gradient(circle,rgba(255,255,255,.1) 0%,transparent 70%);
            animation: rotateGlow 10s linear infinite;
        }

        @keyframes rotateGlow {
            from { transform: rotate(0deg); }
            to   { transform: rotate(360deg); }
        }

        .booking-container > * { position: relative; z-index: 1; }

        .booking-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: start;
        }

        .booking-info h3 {
            font-size: 2.8rem; font-weight: 800;
            color: var(--white); margin-bottom: 20px;
            text-shadow: 0 5px 20px rgba(0,0,0,.3);
        }

        .booking-info p { font-size: 1.1rem; color: rgba(255,255,255,.95); line-height: 1.8; margin-bottom: 30px; }

        .booking-contacts { display: flex; flex-direction: column; gap: 15px; }

        .contact-item {
            display: flex; align-items: center; gap: 15px;
            background: rgba(255,255,255,.15);
            backdrop-filter: blur(10px);
            padding: 18px 25px;
            border-radius: 12px;
            border: 1px solid rgba(255,255,255,.25);
            transition: all .3s ease;
        }

        .contact-item:hover { background: rgba(255,255,255,.25); transform: translateX(10px); }

        .contact-item i { font-size: 1.8rem; color: var(--white); flex-shrink: 0; }
        .contact-item div h6 { font-size: .85rem; font-weight: 600; color: rgba(255,255,255,.75); margin: 0 0 4px; }
        .contact-item div p  { font-size: 1rem; font-weight: 700; color: var(--white); margin: 0; }

        .booking-form-card {
            background: var(--white);
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 20px 60px rgba(0,0,0,.2);
        }

        .booking-form-card h4 {
            font-size: 1.8rem; font-weight: 800;
            color: var(--maroon); margin-bottom: 30px;
            text-align: center;
        }

        .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }

        .form-group { margin-bottom: 18px; }

        .form-label { font-size: .88rem; font-weight: 600; color: var(--black); margin-bottom: 7px; display: block; }

        .form-control, .form-select {
            width: 100%;
            padding: 13px 17px;
            border: 2px solid var(--border-light);
            border-radius: 10px;
            font-size: .92rem;
            font-family: 'Poppins', sans-serif;
            outline: none;
            transition: all .3s ease;
            background: var(--light-bg);
        }

        .form-control:focus, .form-select:focus {
            border-color: var(--maroon);
            background: var(--white);
            box-shadow: 0 0 0 4px rgba(112,24,31,.1);
        }

        .submit-btn {
            width: 100%;
            padding: 16px;
            background: linear-gradient(135deg,var(--maroon),#8b1f28);
            color: var(--white);
            border: none;
            border-radius: 12px;
            font-size: 1.05rem; font-weight: 700;
            font-family: 'Poppins', sans-serif;
            cursor: pointer;
            transition: all .4s cubic-bezier(.175,.885,.32,1.275);
            position: relative; overflow: hidden;
            margin-top: 5px;
        }

        .submit-btn::before {
            content: '';
            position: absolute; top: 50%; left: 50%;
            width: 0; height: 0; border-radius: 50%;
            background: var(--green);
            transform: translate(-50%,-50%);
            transition: width .6s ease, height .6s ease;
        }

        .submit-btn span { position: relative; z-index: 1; }
        .submit-btn:hover::before { width: 500px; height: 500px; }
        .submit-btn:hover { transform: translateY(-5px); box-shadow: 0 15px 40px rgba(112,24,31,.4); }

        /* ── Tariff ── */
        .tariff-section { padding: 80px 0; background: var(--white); }

        .tariff-table-wrap {
            background: var(--white);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0,0,0,.1);
        }

        .tariff-table { width: 100%; border-collapse: collapse; }

        .tariff-table thead {
            background: linear-gradient(135deg,var(--maroon),#8b1f28);
        }

        .tariff-table thead th {
            color: var(--white);
            padding: 22px 25px;
            text-align: left;
            font-size: 1rem; font-weight: 600;
            text-transform: uppercase; letter-spacing: .5px;
        }

        .tariff-table tbody tr {
            border-bottom: 1px solid var(--border-light);
            transition: all .3s ease;
            position: relative;
        }

        .tariff-table tbody tr:hover {
            background: linear-gradient(90deg,rgba(112,24,31,.05) 0%,transparent 100%);
            transform: translateX(5px);
        }

        .tariff-table tbody td {
            padding: 20px 25px;
            font-size: .95rem; color: var(--text-gray);
        }

        .tariff-table tbody td:first-child { font-weight: 600; color: var(--black); }

        .price-tag {
            display: inline-block;
            background: linear-gradient(135deg,var(--green),#5fa94d);
            color: var(--white);
            padding: 5px 16px;
            border-radius: 20px;
            font-weight: 700; font-size: .9rem;
            box-shadow: 0 4px 12px rgba(66,125,58,.3);
        }

        .status-badge {
            display: inline-block;
            padding: 5px 14px;
            border-radius: 20px;
            font-size: .82rem; font-weight: 600;
        }

        .status-available { background: rgba(66,125,58,.15); color: var(--green); }
        .status-limited   { background: rgba(201,168,76,.15); color: #9a7020; }

        /* ── CTA ── */
        .cta-section { padding: 80px 0; background: var(--green); text-align: center; }

        .cta-content h3 {
            font-size: clamp(2rem,5vw,3.5rem);
            font-weight: 800; color: var(--white); margin-bottom: 20px;
        }

        .cta-content p { font-size: 1.2rem; color: var(--white); margin-bottom: 35px; }

        .cta-btn {
            display: inline-flex; align-items: center; gap: 10px;
            background: var(--white); color: var(--green);
            padding: 18px 45px; border-radius: 50px;
            font-weight: 700; font-size: 1.1rem;
            text-decoration: none;
            transition: all .4s cubic-bezier(.175,.885,.32,1.275);
            position: relative; overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,.2);
        }

        .cta-btn::before {
            content: '';
            position: absolute; top: 50%; left: 50%;
            width: 0; height: 0; border-radius: 50%;
            background: linear-gradient(135deg,var(--maroon),#8b1f28);
            transform: translate(-50%,-50%);
            transition: width .6s ease, height .6s ease;
        }

        .cta-btn span, .cta-btn i { position: relative; z-index: 1; transition: all .4s ease; }
        .cta-btn:hover::before { width: 400px; height: 400px; }
        .cta-btn:hover { transform: translateY(-8px) scale(1.05); box-shadow: 0 20px 50px rgba(0,0,0,.3); color: var(--white); }
        .cta-btn:hover i { animation: arrowBounce .6s ease infinite; }

        @keyframes arrowBounce {
            0%,100% { transform: translateX(5px); }
            50%     { transform: translateX(10px); }
        }

        /* ── Responsive ── */
        @media (max-width:1200px) {
            .stats-grid     { grid-template-columns: repeat(2,1fr); }
            .rooms-grid     { grid-template-columns: repeat(2,1fr); }
            .amenities-grid { grid-template-columns: repeat(2,1fr); }
            .gallery-grid   { grid-template-columns: repeat(2,1fr); }
            .gallery-item.featured { grid-column: span 1; grid-row: span 1; }
            .gallery-item.featured img { min-height: 200px; }
        }

        @media (max-width:768px) {
            .stats-grid     { grid-template-columns: 1fr; }
            .rooms-grid     { grid-template-columns: 1fr; }
            .amenities-grid { grid-template-columns: 1fr; }
            .gallery-grid   { grid-template-columns: 1fr 1fr; }
            .policies-grid  { grid-template-columns: 1fr; }
            .booking-grid   { grid-template-columns: 1fr; }
            .form-row       { grid-template-columns: 1fr; }
            .booking-container { padding: 30px 20px; }
            .hero-actions   { flex-direction: column; align-items: center; }
        }