     :root {
            --forest: #1a2e1c;
            --moss: #2d4a2e;
            --mist: #f5f0e8;
            --gold: #c9a84c;
            --gold-light: #e8d5a3;
            --cream: #faf7f2;
            --bark: #7a6250;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }

        body {
            font-family: 'DM Sans', sans-serif;
            background: var(--cream);
            color: var(--forest);
        }

        h1, h2, h3 { font-family: 'Cormorant Garamond', serif; font-weight: 400; }

        /* ─── NAVBAR ─── */
        nav {
            position: fixed;
            top: 0; left: 0; right: 0;
            z-index: 1000;
            padding: 22px 60px;
            background: rgba(26,46,28,0.97);
            display: flex;
            align-items: center;
            justify-content: space-between;
            backdrop-filter: blur(10px);
        }

        .nav-logo {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.8rem;
            color: white;
            letter-spacing: 3px;
            text-decoration: none;
            font-weight: 300;
        }
        .nav-logo span { color: var(--gold); }

        .nav-back {
            display: flex;
            align-items: center;
            gap: 8px;
            color: rgba(255,255,255,0.75);
            text-decoration: none;
            font-size: 13px;
            letter-spacing: 1px;
            text-transform: uppercase;
            transition: color 0.2s;
        }
        .nav-back:hover { color: var(--gold); }

     
        .page-hero {
            background: linear-gradient(135deg, #0d1a0e, #1a2e1c, #2d4a2e);
            padding: 140px 60px 80px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .page-hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse at 60% 50%, rgba(201,168,76,0.08), transparent 70%);
        }

        .page-hero-eyebrow {
            font-size: 11px;
            letter-spacing: 4px;
            text-transform: uppercase;
            color: var(--gold-light);
            margin-bottom: 16px;
        }

        .page-hero h1 {
            font-size: clamp(2.5rem, 5vw, 4.5rem);
            color: white;
            margin-bottom: 16px;
        }
        .page-hero h1 em { font-style: italic; color: var(--gold-light); }

        .page-hero p {
            color: rgba(255,255,255,0.6);
            font-size: 1rem;
            max-width: 480px;
            margin: 0 auto;
        }

        /* ─── FILTER BAR ─── */
        .filter-bar {
            background: var(--forest);
            padding: 0;
        }

        .filter-inner {
            display: flex;
            align-items: stretch;
            max-width: 1100px;
            margin: 0 auto;
        }

        .filter-field {
            flex: 1;
            padding: 20px 28px;
            border-right: 1px solid rgba(255,255,255,0.1);
        }

        .filter-field label {
            display: block;
            color: var(--gold);
            font-size: 10px;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 6px;
        }

        .filter-field input {
            width: 100%;
            background: none;
            border: none;
            outline: none;
            color: white;
            font-family: 'DM Sans', sans-serif;
            font-size: 14px;
        }
        .filter-field input::placeholder { color: rgba(255,255,255,0.4); }

        .filter-submit {
            background: var(--gold);
            border: none;
            padding: 0 36px;
            font-family: 'DM Sans', sans-serif;
            font-size: 12px;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            font-weight: 600;
            color: var(--forest);
            cursor: pointer;
            transition: background 0.3s;
            white-space: nowrap;
        }
        .filter-submit:hover { background: var(--gold-light); }

        /* ─── ROOMS GRID ─── */
        .rooms-page {
            padding: 70px 60px 100px;
            max-width: 1300px;
            margin: 0 auto;
        }

        .rooms-count {
            font-size: 13px;
            color: var(--bark);
            letter-spacing: 1px;
            text-transform: uppercase;
            margin-bottom: 40px;
        }

        .rooms-count strong { color: var(--forest); font-size: 1.1rem; }

        .rooms-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 28px;
        }

        /* ─── ROOM CARD ─── */
        .room-card {
            background: white;
            border-radius: 8px;
            overflow: hidden;
            border: 1px solid rgba(26,46,28,0.08);
            transition: all 0.35s ease;
            display: flex;
            flex-direction: column;
        }

        .room-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 24px 50px rgba(26,46,28,0.12);
        }

        /* Image */
        .room-card-img {
            height: 240px;
            overflow: hidden;
            position: relative;
        }

        .room-card-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .room-card:hover .room-card-img img { transform: scale(1.06); }

        .room-status-badge {
            position: absolute;
            top: 16px;
            left: 16px;
            display: flex;
            align-items: center;
            gap: 6px;
            padding: 5px 14px;
            border-radius: 99px;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.5px;
        }

        .badge-available {
            background: rgba(240,253,244,0.95);
            color: #166534;
        }

        .badge-booked {
            background: rgba(254,242,242,0.95);
            color: #991b1b;
        }

        .status-dot {
            width: 7px;
            height: 7px;
            border-radius: 50%;
        }

        .dot-green { background: #22c55e; box-shadow: 0 0 6px #22c55e; }
        .dot-red   { background: #ef4444; }

        /* Body */
        .room-card-body {
            padding: 24px 26px 20px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .room-card-name {
            font-size: 1.5rem;
            color: var(--forest);
            margin-bottom: 10px;
            line-height: 1.2;
        }

        .room-card-meta {
            display: flex;
            align-items: center;
            gap: 16px;
            font-size: 13px;
            color: var(--bark);
            margin-bottom: 16px;
        }

        .room-card-meta span {
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .room-card-meta i { font-size: 14px; }

        .room-card-divider {
            height: 1px;
            background: rgba(26,46,28,0.07);
            margin-bottom: 16px;
        }

        /* Footer */
        .room-card-footer {
            padding: 0 26px 24px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
        }

        .room-price {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.7rem;
            color: var(--forest);
            font-weight: 600;
        }

        .room-price small {
            font-size: 13px;
            color: var(--bark);
            font-family: 'DM Sans', sans-serif;
            font-weight: 400;
        }

        .btn-book {
            background: var(--forest);
            color: white;
            padding: 12px 26px;
            border-radius: 4px;
            font-size: 12px;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            font-weight: 600;
            text-decoration: none;
            font-family: 'DM Sans', sans-serif;
            transition: all 0.3s;
            display: inline-flex;
            align-items: center;
            gap: 7px;
            white-space: nowrap;
        }

        .btn-book:hover {
            background: var(--gold);
            color: var(--forest);
            transform: translateY(-2px);
        }

        .btn-unavailable {
            background: #f1f5f9;
            color: #94a3b8;
            padding: 12px 20px;
            border-radius: 4px;
            font-size: 12px;
            letter-spacing: 1px;
            text-transform: uppercase;
            font-weight: 600;
            font-family: 'DM Sans', sans-serif;
            cursor: not-allowed;
        }

        /* ─── EMPTY STATE ─── */
        .empty-state {
            grid-column: 1 / -1;
            text-align: center;
            padding: 100px 20px;
        }

        .empty-icon {
            width: 90px;
            height: 90px;
            background: var(--mist);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 24px;
        }

        .empty-icon i { font-size: 2.5rem; color: var(--bark); }

        .empty-state h3 {
            font-size: 1.8rem;
            color: var(--forest);
            margin-bottom: 10px;
        }

        .empty-state p {
            font-size: 14px;
            color: var(--bark);
            margin-bottom: 28px;
        }

        /* ─── FOOTER ─── */
        .page-footer {
            background: #0d1a0e;
            color: rgba(255,255,255,0.5);
            text-align: center;
            padding: 28px;
            font-size: 13px;
        }

        .page-footer a { color: var(--gold); text-decoration: none; }

        /* ─── RESPONSIVE ─── */
        @media (max-width: 992px) {
            nav { padding: 18px 24px; }
            .page-hero { padding: 120px 24px 60px; }
            .filter-inner { flex-direction: column; }
            .filter-field { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
            .filter-submit { padding: 18px; }
            .rooms-page { padding: 50px 24px 70px; }
            .rooms-grid { grid-template-columns: 1fr; }
        }

        @media (min-width: 993px) and (max-width: 1200px) {
            .rooms-grid { grid-template-columns: repeat(2, 1fr); }
        }

        /* Fade in animation */
        .room-card {
            opacity: 0;
            transform: translateY(24px);
            animation: cardIn 0.5s ease forwards;
        }

        .room-card:nth-child(1) { animation-delay: 0ms; }
        .room-card:nth-child(2) { animation-delay: 100ms; }
        .room-card:nth-child(3) { animation-delay: 200ms; }
        .room-card:nth-child(4) { animation-delay: 300ms; }
        .room-card:nth-child(5) { animation-delay: 400ms; }
        .room-card:nth-child(6) { animation-delay: 500ms; }
        .room-card:nth-child(7) { animation-delay: 600ms; }
        .room-card:nth-child(8) { animation-delay: 700ms; }
        .room-card:nth-child(9) { animation-delay: 800ms; }

        @keyframes cardIn {
            to { opacity: 1; transform: translateY(0); }
        }