  body {
            margin: 0;
            background: linear-gradient(135deg, #0b3b3b 0%, #1e6f6f 100%);
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
            color: #f4f7f2;
        }

        .wrap {
            max-width: 920px;
            margin: 0 auto;
            padding: 24px 16px 40px;
        }

        /* Cookie / age overlay */
        #age-overlay {
            position: fixed;
            inset: 0;
            background: rgba(11, 59, 59, 0.95);
            display: none;
            align-items: center;
            justify-content: center;
            padding: 20px;
            z-index: 99999;
            box-sizing: border-box;
        }

        #age-card {
            width: 100%;
            max-width: 380px;
            background: #1e6f6f;
            border-radius: 22px;
            border: 1px solid #f4c542;
            padding: 26px;
            color: #f4f7f2;
            text-align: left;
            box-shadow: 0 18px 42px rgba(0, 0, 0, 0.85);
            animation: fadeIn 0.4s ease-out;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: scale(0.94);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        #age-pill {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 6px 12px;
            border-radius: 999px;
            border: 1px solid #f4c542;
            font-size: 11px;
            letter-spacing: .14em;
            text-transform: uppercase;
            margin-bottom: 12px;
            color: #ffe5b4;
            background: rgba(244, 197, 66, 0.1);
        }

        #age-pill span {
            width: 9px;
            height: 9px;
            border-radius: 50%;
            background: #f4c542;
        }

        #age-overlay-heading {
            font-size: 22px;
            font-weight: 800;
            margin: 0 0 10px;
            color: #ffe5b4;
        }

        #age-title {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 10px;
            color: #f4f7f2;
        }

        #age-text {
            font-size: 14px;
            line-height: 1.55;
            margin-bottom: 20px;
            color: #d9e3d5;
        }

        #age-ok {
            width: 100%;
            display: inline-block;
            text-align: center;
            padding: 22px;
            border: none;
            border-radius: 18px;
            cursor: pointer;
            font-size: 19px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: .16em;
            color: #0b3b3b;
            background: linear-gradient(135deg, #f4c542, #f7b731);
            box-shadow: 0 0 22px rgba(244, 197, 66, 0.75);
            animation: pulse 1.8s infinite ease-in-out;
            transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
        }

        @keyframes pulse {
            0% {
                transform: scale(1);
                box-shadow: 0 0 16px rgba(244, 197, 66, 0.55);
            }
            50% {
                transform: scale(1.03);
                box-shadow: 0 0 26px rgba(247, 183, 49, 0.9);
            }
            100% {
                transform: scale(1);
                box-shadow: 0 0 16px rgba(244, 197, 66, 0.55);
            }
        }

        #age-ok:hover {
            transform: scale(1.05);
            filter: brightness(1.08);
            box-shadow: 0 0 34px rgba(247, 183, 49, 1);
        }

        #age-note {
            margin-top: 12px;
            font-size: 11px;
            color: #b8cfb2;
        }

        /* Header */
        .header {
            background: rgba(21, 88, 88, 0.8);
            border: 1px solid #f4c542;
            border-radius: 16px;
            padding: 18px 22px;
            color: #e0f0dc;
            margin-bottom: 24px;
            backdrop-filter: blur(10px);
        }

        .header-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            flex-wrap: wrap;
        }

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

        .brand-logo {
            width: 42px;
            height: 42px;
            border-radius: 50%;
            background: radial-gradient(circle at 25% 0, #f4c542, #f7b731, #e5a823);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #0b3b3b;
            font-weight: 800;
            font-size: 16px;
        }

        .brand-main {
            font-size: 14px;
            letter-spacing: .12em;
            text-transform: uppercase;
            color: #ffe5b4;
        }

        .brand-sub {
            font-size: 11px;
            letter-spacing: .18em;
            text-transform: uppercase;
            color: #b8cfb2;
        }

        .header-badge {
            padding: 6px 18px;
            border-radius: 999px;
            background: rgba(244, 197, 66, 0.1);
            border: 1px solid #f4c542;
            color: #ffe5b4;
            font-size: 11px;
            letter-spacing: .12em;
            text-transform: uppercase;
        }

        /* Hero */
        .hero {
            background: radial-gradient(circle at top, #1e6f6f 0%, #2a8282 45%, #0b3b3b 115%);
            border-radius: 18px;
            padding: 26px 24px;
            border: 1px solid #f4c542;
            margin-bottom: 26px;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, #f4c542, transparent);
        }

        .hero-label {
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: .2em;
            color: #f4c542;
            margin-bottom: 10px;
        }

        h1.hero-title {
            font-size: 28px;
            margin-bottom: 10px;
            color: #f4f7f2;
            background: linear-gradient(135deg, #ffe5b4, #f4f7f2);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-text {
            font-size: 15px;
            color: #d9e3d5;
            max-width: 650px;
            line-height: 1.6;
            margin-bottom: 16px;
        }

        .hero-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 14px;
        }

        .hero-card {
            background: rgba(21, 88, 88, 0.7);
            border-radius: 12px;
            padding: 12px;
            border: 1px solid rgba(244, 197, 66, 0.3);
            font-size: 13px;
            transition: transform 0.3s ease, border-color 0.3s ease;
        }

        .hero-card:hover {
            transform: translateY(-2px);
            border-color: #f4c542;
        }

        .hero-card-label {
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: .12em;
            color: #f7b731;
            margin-bottom: 3px;
        }

        .hero-card-value {
            font-size: 14px;
            font-weight: 600;
            color: #f4f7f2;
        }

        /* Main Heading */
        h2.hotel-heading {
            font-size: 20px;
            letter-spacing: .16em;
            text-transform: uppercase;
            color: #ffe5b4;
            padding: 12px;
            border-radius: 10px;
            border: 1px solid #f4c542;
            background: linear-gradient(to right, #0b3b3b, #1e6f6f, #0b3b3b);
            margin: 20px 0 18px;
            text-align: center;
        }

        /* Section */
        .section {
            background: rgba(21, 88, 88, 0.6);
            border-radius: 16px;
            padding: 22px;
            border: 1px solid rgba(244, 197, 66, 0.2);
            margin-bottom: 26px;
            backdrop-filter: blur(5px);
        }

        .section-title {
            font-size: 16px;
            text-transform: uppercase;
            letter-spacing: .14em;
            margin-bottom: 8px;
            color: #ffe5b4;
        }

        .section-sub {
            font-size: 14px;
            color: #d9e3d5;
            max-width: 640px;
            margin-bottom: 14px;
        }

        /* Card Grid */
        .card-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 16px;
        }

        .card {
            background: rgba(11, 59, 59, 0.8);
            border-radius: 16px;
            padding: 16px;
            border: 1px solid rgba(244, 197, 66, 0.3);
            font-size: 14px;
            transition: all 0.3s ease;
        }

        .card:hover {
            border-color: #f4c542;
            box-shadow: 0 8px 25px rgba(244, 197, 66, 0.2);
        }

        .card-kicker {
            font-size: 11px;
            color: #f7b731;
            text-transform: uppercase;
            letter-spacing: .12em;
            margin-bottom: 6px;
        }

        .card-title {
            font-size: 15px;
            font-weight: 600;
            color: #f4f7f2;
            margin-bottom: 6px;
        }

        .card p, .card li {
            color: #d9e3d5;
        }

        .card ul {
            padding-left: 20px;
            margin-top: 6px;
        }

        /* Footer */
        footer {
            background: rgba(11, 59, 59, 0.9);
            border: 1px solid #f4c542;
            padding: 24px;
            border-radius: 16px;
            font-size: 12px;
            color: #d9e3d5;
            margin-bottom: 40px;
        }

        .footer-title {
            font-size: 11px;
            letter-spacing: .14em;
            text-transform: uppercase;
            margin-bottom: 12px;
            color: #ffe5b4;
        }

        .footer-cols {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
        }

        /* Responsive */
        @media (max-width: 880px) {
            .card-grid {
                grid-template-columns: 1fr;
            }

            .hero-grid {
                grid-template-columns: 1fr;
            }

            .footer-cols {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 720px) {
            .header-row {
                flex-direction: column;
                text-align: center;
            }

            .brand {
                justify-content: center;
            }
        }