        /* ============================================
           AMENITIES PAGE — Styles
           ============================================ */

        /* Hero */
        .amenities-hero {
            position: relative;
            height: 500px;
            background:
                linear-gradient(to bottom, rgba(5,15,30,0.5) 0%, rgba(5,15,30,0.3) 50%, rgba(5,15,30,0.8) 100%),
                url('https://images.unsplash.com/photo-1561501900-3701fa6a0864?w=1920&q=85') center/cover no-repeat;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .amenities-hero-content {
            text-align: center;
            position: relative;
            z-index: 2;
            padding: 0 24px;
            margin-top: 60px;
        }

        .amenities-hero-tag {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255,255,255,0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.15);
            padding: 7px 18px;
            border-radius: 50px;
            font-size: 0.72rem;
            font-weight: 700;
            letter-spacing: 2.5px;
            text-transform: uppercase;
            color: var(--sand-light);
            margin-bottom: 20px;
            animation: fadeUp 0.7s 0.2s both;
        }

        .amenities-hero h1 {
            font-size: clamp(2.2rem, 5vw, 3.8rem);
            color: #fff;
            margin-bottom: 14px;
            animation: fadeUp 0.7s 0.4s both;
        }

        .amenities-hero h1 em {
            color: var(--sand);
            font-style: italic;
        }

        .amenities-hero p {
            font-size: 1rem;
            color: rgba(255,255,255,0.8);
            max-width: 560px;
            margin: 0 auto;
            font-weight: 300;
            letter-spacing: 0.5px;
            animation: fadeUp 0.7s 0.6s both;
        }

        /* Stats bar — flush under hero */
        .amenities-stats-bar {
            background: var(--navy);
            border-bottom: 1px solid rgba(212,168,67,0.12);
        }

        .amenities-stats-inner {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
        }

        .stat-item {
            text-align: center;
            padding: 28px 20px;
            border-right: 1px solid rgba(255,255,255,0.07);
            transition: background 0.3s;
        }
        .stat-item:last-child { border-right: none; }
        .stat-item:hover { background: rgba(212,168,67,0.06); }

        .stat-number {
            font-family: 'Playfair Display', serif;
            font-size: 2.2rem;
            font-weight: 900;
            color: var(--sand);
            line-height: 1;
            margin-bottom: 4px;
        }

        .stat-label {
            font-size: 0.65rem;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: rgba(255,255,255,0.45);
        }

        /* Breadcrumb */
        .amenities-breadcrumb {
            background: var(--navy);
            padding: 14px 0;
            border-bottom: 1px solid rgba(255,255,255,0.06);
        }

        .amenities-breadcrumb .container {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.78rem;
            color: rgba(255,255,255,0.5);
        }

        .amenities-breadcrumb a {
            color: var(--sand);
            font-weight: 500;
            transition: opacity 0.2s;
        }
        .amenities-breadcrumb a:hover { opacity: 0.75; }
        .amenities-breadcrumb svg { stroke: rgba(255,255,255,0.3); flex-shrink: 0; }

        /* Tab nav — pill style matching rooms filter bar */
        .amenities-tab-bar {
            background: #fff;
            border-bottom: 1px solid #eaecf2;
            position: sticky;
            top: 70px;
            z-index: 50;
            box-shadow: 0 2px 12px rgba(10,22,40,0.06);
        }

        .amenities-tab-inner {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 14px 0;
            overflow-x: auto;
            scrollbar-width: none;
        }
        .amenities-tab-inner::-webkit-scrollbar { display: none; }

        .tab-btn {
            padding: 8px 18px;
            border-radius: 50px;
            border: 1.5px solid #e0e4ed;
            background: transparent;
            font-family: 'DM Sans', sans-serif;
            font-size: 0.8rem;
            font-weight: 600;
            color: var(--text);
            cursor: pointer;
            white-space: nowrap;
            transition: all 0.2s;
            letter-spacing: 0.3px;
        }
        .tab-btn:hover { border-color: var(--navy); color: var(--navy); }
        .tab-btn.active {
            background: var(--navy);
            border-color: var(--navy);
            color: #fff;
        }
        .tab-btn span.tab-emoji { display: none; }

        /* Main page bg */
        .amenities-page {
            background: #f8f9fc;
            padding: 70px 0 100px;
        }

        /* Section title — same pattern as rooms.html */
        .am-section-title {
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            margin-bottom: 36px;
            flex-wrap: wrap;
            gap: 12px;
        }

        .am-section-title h2 {
            font-size: 1.9rem;
            color: var(--navy);
        }

        .am-section-title h2 span {
            display: block;
            font-size: 0.65rem;
            font-weight: 700;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--sand);
            font-family: 'DM Sans', sans-serif;
            margin-bottom: 4px;
        }

        /* Section divider — same as rooms */
        .am-divider {
            display: flex;
            align-items: center;
            gap: 16px;
            margin: 60px 0 48px;
        }
        .am-divider::before,
        .am-divider::after {
            content: '';
            flex: 1;
            height: 1px;
            background: #e0e4ed;
        }
        .am-divider span {
            font-size: 0.62rem;
            font-weight: 700;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--text-light);
            white-space: nowrap;
            padding: 0 8px;
        }

        /* ============================================
           HERO AMENITY CARD (Full-width feature)
           ============================================ */
        .am-hero-card {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            height: 480px;
            display: flex;
            align-items: flex-end;
            margin-bottom: 60px;
            box-shadow: 0 12px 48px rgba(10,22,40,0.16);
        }

        .am-hero-card img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.8s ease;
        }
        .am-hero-card:hover img { transform: scale(1.04); }

        .am-hero-card-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(5,15,30,0.88) 0%, rgba(5,15,30,0.3) 55%, transparent 100%);
        }

        .am-hero-card-body {
            position: relative;
            z-index: 2;
            padding: 40px 48px;
            width: 100%;
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            gap: 24px;
            flex-wrap: wrap;
        }

        .am-hero-card-left {}

        .am-hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: var(--sand);
            color: var(--navy);
            padding: 5px 14px;
            border-radius: 50px;
            font-size: 0.62rem;
            font-weight: 700;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            margin-bottom: 12px;
        }

        .am-hero-card h3 {
            font-size: 2.4rem;
            color: #fff;
            margin-bottom: 10px;
            line-height: 1.15;
        }

        .am-hero-card p {
            font-size: 0.92rem;
            color: rgba(255,255,255,0.72);
            max-width: 520px;
            line-height: 1.65;
        }

        .am-hero-card-specs {
            display: flex;
            gap: 20px;
            margin-top: 16px;
            flex-wrap: wrap;
        }

        .am-hero-spec {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 0.78rem;
            color: rgba(255,255,255,0.65);
            font-weight: 500;
        }
        .am-hero-spec svg { stroke: var(--sand); flex-shrink: 0; }

        /* ============================================
           AMENITY CARDS GRID
           ============================================ */
        .am-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            margin-bottom: 0;
        }

        .am-grid-2col { grid-template-columns: repeat(2, 1fr); }
        .am-grid-4col { grid-template-columns: repeat(4, 1fr); }

        .am-card {
            background: #fff;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(10,22,40,0.07);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: flex;
            flex-direction: column;
        }
        .am-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 16px 48px rgba(10,22,40,0.13);
        }

        .am-card-img {
            position: relative;
            height: 220px;
            overflow: hidden;
            flex-shrink: 0;
        }

        .am-card-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }
        .am-card:hover .am-card-img img { transform: scale(1.06); }

        .am-card-tag {
            position: absolute;
            top: 14px;
            left: 14px;
            padding: 4px 12px;
            border-radius: 50px;
            font-size: 0.6rem;
            font-weight: 700;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            backdrop-filter: blur(8px);
        }
        .tag-blue   { background: var(--ocean); color: #fff; }
        .tag-gold   { background: var(--sand); color: var(--navy); }
        .tag-red    { background: var(--warm-red); color: #fff; }
        .tag-navy   { background: var(--navy); color: var(--sand); border: 1px solid var(--sand); }
        .tag-green  { background: #1a7a4a; color: #fff; }

        .am-card-body {
            padding: 22px 24px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .am-card-type {
            font-size: 0.6rem;
            font-weight: 700;
            letter-spacing: 2.5px;
            text-transform: uppercase;
            color: var(--sand);
            margin-bottom: 6px;
        }

        .am-card-body h3 {
            font-size: 1.2rem;
            color: var(--navy);
            margin-bottom: 8px;
        }

        .am-card-body p {
            font-size: 0.84rem;
            color: var(--text-light);
            line-height: 1.65;
            flex: 1;
            margin-bottom: 16px;
        }

        .am-features {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
        }

        .am-feature {
            padding: 4px 10px;
            background: var(--pale-cyan);
            color: var(--ocean);
            border-radius: 4px;
            font-size: 0.68rem;
            font-weight: 600;
            letter-spacing: 0.2px;
        }

        /* ============================================
           ICON GRID (small amenity tiles)
           ============================================ */
        .am-icon-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
            margin-bottom: 0;
        }

        .am-icon-tile {
            background: #fff;
            border-radius: 14px;
            padding: 28px 20px;
            text-align: center;
            box-shadow: 0 3px 16px rgba(10,22,40,0.06);
            transition: all 0.3s;
            border: 1.5px solid transparent;
        }
        .am-icon-tile:hover {
            border-color: var(--sand);
            transform: translateY(-4px);
            box-shadow: 0 12px 36px rgba(10,22,40,0.11);
        }

        .am-icon-tile-icon {
            font-size: 2.2rem;
            margin-bottom: 12px;
            display: block;
        }

        .am-icon-tile h4 {
            font-family: 'DM Sans', sans-serif;
            font-size: 0.82rem;
            font-weight: 700;
            color: var(--navy);
            margin-bottom: 4px;
        }

        .am-icon-tile p {
            font-size: 0.72rem;
            color: var(--text-light);
            line-height: 1.5;
        }

        /* ============================================
           SPLIT FEATURE (wide + info side by side)
           ============================================ */
        .am-split {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 8px 40px rgba(10,22,40,0.13);
            min-height: 400px;
            margin-bottom: 0;
        }

        .am-split-img {
            position: relative;
            overflow: hidden;
        }

        .am-split-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.7s ease;
        }
        .am-split:hover .am-split-img img { transform: scale(1.04); }

        .am-split-body {
            background: var(--navy);
            padding: 48px 44px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .am-split-body .am-card-type { color: var(--sand); margin-bottom: 8px; }
        .am-split-body h3 { color: #fff; font-size: 1.9rem; margin-bottom: 14px; line-height: 1.2; }
        .am-split-body p { color: rgba(255,255,255,0.68); font-size: 0.88rem; line-height: 1.75; margin-bottom: 24px; }

        .am-split-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 10px;
            margin-bottom: 28px;
        }

        .am-split-list li {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 0.84rem;
            color: rgba(255,255,255,0.75);
        }

        .am-split-list li::before {
            content: '';
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--sand);
            flex-shrink: 0;
        }

        .am-split-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 24px;
            background: var(--sand);
            color: var(--navy);
            border-radius: 8px;
            font-family: 'DM Sans', sans-serif;
            font-size: 0.78rem;
            font-weight: 700;
            letter-spacing: 1px;
            text-transform: uppercase;
            text-decoration: none;
            transition: all 0.2s;
            align-self: flex-start;
        }
        .am-split-btn:hover {
            background: var(--sand-light);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(212,168,67,0.4);
        }

        /* ============================================
           POLICY / HOURS STRIP
           ============================================ */
        .am-hours-strip {
            background: var(--navy);
            border-radius: 16px;
            padding: 36px 40px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 28px;
            margin-top: 60px;
        }

        .am-hours-item {
            display: flex;
            align-items: flex-start;
            gap: 14px;
        }

        .am-hours-icon {
            width: 44px;
            height: 44px;
            background: rgba(212,168,67,0.12);
            border: 1px solid rgba(212,168,67,0.22);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            flex-shrink: 0;
        }

        .am-hours-text h4 {
            font-family: 'DM Sans', sans-serif;
            font-size: 0.8rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 4px;
        }
        .am-hours-text p {
            font-size: 0.72rem;
            color: rgba(255,255,255,0.45);
            line-height: 1.55;
        }
        .am-hours-text strong {
            color: var(--sand-light);
            font-weight: 600;
        }

        /* ============================================
           DINING HIGHLIGHT CARD (special layout)
           ============================================ */
        .am-dining-row {
            display: grid;
            grid-template-columns: 1.2fr 1fr 1fr;
            gap: 24px;
        }

        .am-dining-main {
            grid-row: span 1;
        }

        .am-dining-main .am-card-img {
            height: 280px;
        }

        /* ============================================
           CTA BANNER
           ============================================ */
        .am-cta-banner {
            margin-top: 70px;
            background:
                linear-gradient(135deg, rgba(10,22,40,0.96) 0%, rgba(26,82,118,0.92) 100%),
                url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?w=1400&q=80') center/cover no-repeat;
            border-radius: 20px;
            padding: 60px 56px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 32px;
            flex-wrap: wrap;
            box-shadow: 0 12px 48px rgba(10,22,40,0.2);
            border: 1px solid rgba(212,168,67,0.15);
        }

        .am-cta-left h2 {
            color: #fff;
            font-size: 2rem;
            margin-bottom: 10px;
        }
        .am-cta-left h2 em { color: var(--sand); font-style: italic; }
        .am-cta-left p { color: rgba(255,255,255,0.65); font-size: 0.92rem; max-width: 480px; }

        .am-cta-btns {
            display: flex;
            gap: 14px;
            flex-shrink: 0;
            flex-wrap: wrap;
        }

        /* ============================================
           RESPONSIVE
           ============================================ */
        @media (max-width: 1024px) {
            .am-grid { grid-template-columns: repeat(2, 1fr); }
            .am-grid-4col { grid-template-columns: repeat(2, 1fr); }
            .am-icon-grid { grid-template-columns: repeat(2, 1fr); }
            .am-split { grid-template-columns: 1fr; }
            .am-split-img { height: 280px; }
            .am-split-body { padding: 32px 28px; }
            .am-dining-row { grid-template-columns: 1fr 1fr; }
            .am-dining-main { grid-column: span 2; }
        }

        @media (max-width: 768px) {
            .am-hero-card { height: 360px; }
            .am-hero-card-body { padding: 28px 24px; flex-direction: column; align-items: flex-start; }
            .am-hero-card h3 { font-size: 1.7rem; }
            .am-grid { grid-template-columns: 1fr; }
            .am-grid-2col { grid-template-columns: 1fr; }
            .am-icon-grid { grid-template-columns: repeat(2, 1fr); }
            .am-dining-row { grid-template-columns: 1fr; }
            .am-dining-main { grid-column: span 1; }
            .am-cta-banner { padding: 36px 28px; flex-direction: column; }
            .am-hours-strip { padding: 28px 24px; }
            .amenities-hero { height: 400px; }
            .amenities-stats-inner { grid-template-columns: repeat(2, 1fr); }
            .amenities-stats-inner .stat-item:nth-child(2) { border-right: none; }
            .amenities-stats-inner .stat-item:nth-child(3) { border-top: 1px solid rgba(255,255,255,0.07); }
            .amenities-stats-inner .stat-item:nth-child(4) { border-top: 1px solid rgba(255,255,255,0.07); }
        }

        @media (max-width: 480px) {
            .am-icon-grid { grid-template-columns: repeat(2, 1fr); }
            .amenities-stats-inner { grid-template-columns: repeat(2, 1fr); }
            .stat-item { padding: 20px 14px; }
            .stat-number { font-size: 1.7rem; }
        }

        @keyframes fadeUp {
            from { opacity: 0; transform: translateY(24px); }
            to   { opacity: 1; transform: translateY(0); }
        }
