 
        :root {
            --gold: #C9A84C;
            --gold-light: #E8C96E;
            --gold-dark: #9A7A2E;
            --cream: #FAF6EE;
            --deep: #0D0A06;
            --charcoal: #1C1712;
            --warm-gray: #6B6355;
            --border: rgba(201,168,76,0.2);
            --font-display: 'Cormorant Garamond', serif;
            --font-body: 'DM Sans', sans-serif;
        }

        *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

        html { scroll-behavior: smooth; }

        body {
            font-family: var(--font-body);
            background: var(--cream);
            color: var(--charcoal);
            overflow-x: hidden;
        }

        /* ─── NOISE TEXTURE OVERLAY ─── */
        body::before {
            content: '';
            position: fixed;
            inset: 0;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.035'/%3E%3C/svg%3E");
            pointer-events: none;
            z-index: 9999;
            opacity: 0.4;
        }

        /* ─── SCROLLBAR ─── */
        ::-webkit-scrollbar { width: 4px; }
        ::-webkit-scrollbar-track { background: var(--deep); }
        ::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }

        /* ─── NAVBAR ─── */
        .navbar {
            padding: 1.2rem 0;
            transition: all 0.4s ease;
            background: transparent;
        }
        .navbar.scrolled {
            background: rgba(13,10,6,0.96);
            backdrop-filter: blur(20px);
            padding: 0.8rem 0;
            box-shadow: 0 1px 0 var(--border);
        }
        .navbar-brand {
            font-family: var(--font-display);
            font-size: 1.5rem;
            font-weight: 600;
            color: #fff !important;
            letter-spacing: 0.02em;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        .brand-logo {
            width: 38px;
            height: 38px;
            border-radius: 50%;
            border: 1.5px solid var(--gold);
            padding: 3px;
            background: rgba(201,168,76,0.1);
        }
        .nav-link {
            font-family: var(--font-body);
            font-size: 0.8rem;
            font-weight: 500;
            color: rgba(255,255,255,0.75) !important;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            padding: 0.5rem 1rem !important;
            position: relative;
            transition: color 0.3s;
        }
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 1rem;
            right: 1rem;
            height: 1px;
            background: var(--gold);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }
        .nav-link:hover { color: var(--gold-light) !important; }
        .nav-link:hover::after { transform: scaleX(1); }
        .navbar-toggler { border: none; color: white; background: none; }

        /* ─── BUTTONS ─── */
        .btn-gold {
            background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
            color: var(--deep);
            font-family: var(--font-body);
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            padding: 0.65rem 1.6rem;
            border: none;
            border-radius: 0;
            position: relative;
            overflow: hidden;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-block;
        }
        .btn-gold::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, var(--gold-light), var(--gold));
            opacity: 0;
            transition: opacity 0.3s;
        }
        .btn-gold:hover::before { opacity: 1; }
        .btn-gold:hover { color: var(--deep); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(201,168,76,0.35); }
        .btn-gold span { position: relative; z-index: 1; }

        .btn-outline-gold {
            background: transparent;
            color: var(--gold);
            font-family: var(--font-body);
            font-size: 0.75rem;
            font-weight: 500;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            padding: 0.65rem 1.6rem;
            border: 1px solid var(--gold);
            border-radius: 0;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-block;
        }
        .btn-outline-gold:hover { background: var(--gold); color: var(--deep); }

        .btn-ghost {
            background: rgba(255,255,255,0.08);
            color: #fff;
            font-size: 0.75rem;
            font-weight: 500;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            padding: 0.6rem 1.2rem;
            border: 1px solid rgba(255,255,255,0.2);
            border-radius: 0;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            backdrop-filter: blur(8px);
        }
        .btn-ghost:hover { background: rgba(255,255,255,0.15); color: #fff; border-color: rgba(255,255,255,0.4); }

        .btn-wa {
            background: #25D366;
            color: #fff;
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            padding: 0.6rem 1.2rem;
            border: none;
            border-radius: 0;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
        }
        .btn-wa:hover { background: #128C4F; color: #fff; }

        /* ─── HERO ─── */
        #home {
            height: 100vh;
            min-height: 680px;
            position: relative;
        }
        .carousel, .carousel-inner, .carousel-item { height: 100%; }
        .hero-slide {
            height: 100%;
            background-size: cover;
            background-position: center;
            position: relative;
            display: flex;
            align-items: center;
        }
        .hero-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(
                to right,
                rgba(13,10,6,0.88) 0%,
                rgba(13,10,6,0.55) 60%,
                rgba(13,10,6,0.2) 100%
            );
        }
        .hero-overlay::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(13,10,6,0.6) 0%, transparent 50%);
        }
        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 680px;
        }
        .hero-eyebrow {
            font-family: var(--font-body);
            font-size: 0.7rem;
            font-weight: 600;
            letter-spacing: 0.3em;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 1rem;
            opacity: 0;
            transform: translateY(20px);
            animation: fadeUp 0.8s 0.2s forwards;
        }
        .hero-content h1 {
            font-family: var(--font-display);
            font-size: clamp(3rem, 7vw, 6rem);
            font-weight: 300;
            color: #fff;
            line-height: 1.05;
            letter-spacing: -0.01em;
            margin-bottom: 1.2rem;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeUp 0.9s 0.4s forwards;
        }
        .hero-content h1 em {
            font-style: italic;
            color: var(--gold-light);
        }
        .hero-content p {
            font-size: 1rem;
            color: rgba(255,255,255,0.72);
            font-weight: 300;
            line-height: 1.7;
            margin-bottom: 2rem;
            max-width: 480px;
            opacity: 0;
            transform: translateY(20px);
            animation: fadeUp 0.9s 0.6s forwards;
        }
        .hero-btns {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
            opacity: 0;
            transform: translateY(20px);
            animation: fadeUp 0.9s 0.8s forwards;
        }

        /* Hero scroll indicator */
        .hero-scroll {
            position: absolute;
            bottom: 2.5rem;
            left: 50%;
            transform: translateX(-50%);
            z-index: 10;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.5rem;
            color: rgba(255,255,255,0.5);
            font-size: 0.65rem;
            letter-spacing: 0.2em;
            text-transform: uppercase;
        }
        .scroll-line {
            width: 1px;
            height: 50px;
            background: linear-gradient(to bottom, var(--gold), transparent);
            animation: scrollPulse 2s infinite;
        }

        /* Carousel indicators */
        .carousel-indicators {
            bottom: 2rem;
            right: 3rem;
            left: auto;
            margin: 0;
            gap: 0.5rem;
        }
        .carousel-indicators button {
            width: 30px;
            height: 2px;
            background: rgba(255,255,255,0.3);
            border: none;
            border-radius: 1px;
            transition: all 0.4s;
        }
        .carousel-indicators button.active {
            background: var(--gold);
            width: 50px;
        }

        /* ─── DIVIDER ─── */
        .ornament-divider {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin: 0 auto 1.5rem;
            width: fit-content;
        }
        .ornament-divider::before,
        .ornament-divider::after {
            content: '';
            width: 50px;
            height: 1px;
            background: linear-gradient(to right, transparent, var(--gold));
        }
        .ornament-divider::after { background: linear-gradient(to left, transparent, var(--gold)); }
        .ornament-icon { color: var(--gold); font-size: 1rem; }

        /* ─── SECTION BASE ─── */
        .section { padding: 7rem 0; }
        .section-alt { background: var(--deep); }
        .section-mid { background: #F0EBE0; }

        .eyebrow {
            font-family: var(--font-body);
            font-size: 0.68rem;
            font-weight: 600;
            letter-spacing: 0.3em;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 0.75rem;
            display: block;
        }
        .section-title {
            font-family: var(--font-display);
            font-size: clamp(2.2rem, 4vw, 3.5rem);
            font-weight: 400;
            line-height: 1.1;
            color: var(--charcoal);
            margin-bottom: 1.25rem;
        }
        .section-title em { font-style: italic; color: var(--gold-dark); }
        .section-title.light { color: #fff; }
        .section-title.light em { color: var(--gold-light); }
        .section-desc {
            font-size: 0.95rem;
            color: var(--warm-gray);
            line-height: 1.8;
            font-weight: 300;
            max-width: 480px;
        }
        .section-desc.light { color: rgba(255,255,255,0.6); }

        /* ─── ABOUT ─── */
        .about-img-wrap {
            position: relative;
        }
        .about-img-main {
            width: 100%;
            aspect-ratio: 4/5;
            object-fit: cover;
            display: block;
        }
        .about-img-accent {
            position: absolute;
            bottom: -2rem;
            right: -2rem;
            width: 55%;
            aspect-ratio: 1;
            object-fit: cover;
            border: 6px solid var(--cream);
            box-shadow: 0 20px 60px rgba(0,0,0,0.15);
        }
        .about-frame {
            position: absolute;
            top: -1rem;
            left: -1rem;
            right: 2rem;
            bottom: 2rem;
            border: 1px solid var(--border);
            pointer-events: none;
        }
        .about-stat-row {
            display: flex;
            gap: 2.5rem;
            margin-top: 2.5rem;
            padding-top: 2.5rem;
            border-top: 1px solid var(--border);
        }
        .about-stat-num {
            font-family: var(--font-display);
            font-size: 2.5rem;
            font-weight: 300;
            color: var(--gold-dark);
            line-height: 1;
        }
        .about-stat-label {
            font-size: 0.7rem;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: var(--warm-gray);
            margin-top: 0.3rem;
        }

        /* ─── SERVICES ─── */
        .service-card {
            background: #fff;
            border: 1px solid rgba(201,168,76,0.12);
            padding: 2.5rem 2rem;
            position: relative;
            overflow: hidden;
            transition: all 0.4s ease;
        }
        .service-card::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(to right, var(--gold-dark), var(--gold));
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s ease;
        }
        .service-card:hover { transform: translateY(-6px); box-shadow: 0 24px 60px rgba(0,0,0,0.1); }
        .service-card:hover::before { transform: scaleX(1); }
        .service-icon {
            width: 52px;
            height: 52px;
            background: linear-gradient(135deg, rgba(201,168,76,0.08), rgba(201,168,76,0.2));
            border: 1px solid var(--border);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            color: var(--gold-dark);
            margin-bottom: 1.5rem;
        }
        .service-card h3 {
            font-family: var(--font-display);
            font-size: 1.4rem;
            font-weight: 500;
            margin-bottom: 0.75rem;
            color: var(--charcoal);
        }
        .service-card p {
            font-size: 0.88rem;
            color: var(--warm-gray);
            line-height: 1.7;
        }
        .service-num {
            position: absolute;
            top: 1.5rem;
            right: 1.5rem;
            font-family: var(--font-display);
            font-size: 3rem;
            font-weight: 300;
            color: rgba(201,168,76,0.08);
            line-height: 1;
        }

        /* ─── MENU ─── */
        .menu-section { background: var(--deep); }
        .menu-tab-nav {
            display: flex;
            gap: 0;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            margin-bottom: 3rem;
            overflow-x: auto;
        }
        .menu-tab-btn {
            background: none;
            border: none;
            color: rgba(255,255,255,0.45);
            font-family: var(--font-body);
            font-size: 0.75rem;
            font-weight: 500;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            padding: 1rem 2rem;
            cursor: pointer;
            transition: all 0.3s;
            border-bottom: 2px solid transparent;
            margin-bottom: -1px;
            white-space: nowrap;
        }
        .menu-tab-btn:hover { color: rgba(255,255,255,0.75); }
        .menu-tab-btn.active { color: var(--gold); border-bottom-color: var(--gold); }
        .menu-panel { display: none; }
        .menu-panel.active { display: block; }
        .menu-item {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 1.1rem 0;
            border-bottom: 1px solid rgba(255,255,255,0.05);
        }
        .menu-item-name {
            font-family: var(--font-display);
            font-size: 1.15rem;
            font-weight: 400;
            color: rgba(255,255,255,0.85);
        }
        .menu-item-dot {
            flex: 1;
            height: 1px;
            background: rgba(255,255,255,0.07);
            margin: 0 1rem;
        }
        .menu-item-tag {
            font-size: 0.65rem;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: var(--gold);
            border: 1px solid rgba(201,168,76,0.3);
            padding: 0.2rem 0.5rem;
        }

        /* ─── GALLERY ─── */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(12, 1fr);
            grid-template-rows: auto;
            gap: 12px;
        }
        .gallery-item { position: relative; overflow: hidden; }
        .gallery-item:nth-child(1) { grid-column: span 7; grid-row: span 2; }
        .gallery-item:nth-child(2) { grid-column: span 5; }
        .gallery-item:nth-child(3) { grid-column: span 5; }
        .gallery-item:nth-child(4) { grid-column: span 4; }
        .gallery-item:nth-child(5) { grid-column: span 4; }
        .gallery-item:nth-child(6) { grid-column: span 4; }
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            min-height: 220px;
        }
        .gallery-item:nth-child(1) img { min-height: 480px; }
        .gallery-item:hover img { transform: scale(1.06); }
        .gallery-caption {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(13,10,6,0.85) 0%, transparent 50%);
            opacity: 0;
            transition: opacity 0.4s;
            display: flex;
            align-items: flex-end;
            padding: 1.5rem;
        }
        .gallery-item:hover .gallery-caption { opacity: 1; }
        .gallery-caption span {
            font-family: var(--font-display);
            font-size: 1.1rem;
            color: #fff;
            font-style: italic;
        }

        /* ─── WHY CHOOSE US ─── */
        .why-card {
            display: flex;
            gap: 1.25rem;
            padding: 2rem;
            background: #fff;
            border: 1px solid rgba(201,168,76,0.1);
            transition: all 0.3s;
        }
        .why-card:hover { border-color: rgba(201,168,76,0.4); box-shadow: 0 8px 32px rgba(0,0,0,0.06); }
        .why-icon {
            width: 44px;
            height: 44px;
            min-width: 44px;
            background: linear-gradient(135deg, var(--gold-dark), var(--gold));
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--deep);
            font-size: 1.1rem;
        }
        .why-card h4 {
            font-family: var(--font-display);
            font-size: 1.2rem;
            font-weight: 500;
            margin-bottom: 0.4rem;
        }
        .why-card p {
            font-size: 0.85rem;
            color: var(--warm-gray);
            line-height: 1.7;
        }

        /* ─── BOOKING ─── */
        .booking-section { background: var(--deep); position: relative; overflow: hidden; }
        .booking-section::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -20%;
            width: 60%;
            height: 200%;
            background: radial-gradient(ellipse, rgba(201,168,76,0.06) 0%, transparent 70%);
            pointer-events: none;
        }
        .booking-wrap {
            background: rgba(255,255,255,0.03);
            border: 1px solid rgba(201,168,76,0.15);
            padding: 4rem;
            backdrop-filter: blur(10px);
        }
        .form-floating label { font-size: 0.82rem; color: rgba(255,255,255,0.45); }
        .form-control-dark {
            background: rgba(255,255,255,0.04) !important;
            border: 1px solid rgba(255,255,255,0.1) !important;
            border-radius: 0 !important;
            color: #fff !important;
            font-size: 0.9rem;
            padding: 0.85rem 1rem !important;
            transition: border-color 0.3s;
        }
        .form-control-dark:focus {
            border-color: var(--gold) !important;
            box-shadow: 0 0 0 1px rgba(201,168,76,0.2) !important;
            background: rgba(255,255,255,0.06) !important;
        }
        .form-control-dark::placeholder { color: rgba(255,255,255,0.3); }
        .form-control-dark option { background: var(--charcoal); }

        /* ─── CONTACT ─── */
        .contact-info-card {
            background: var(--deep);
            padding: 3rem;
            height: 100%;
        }
        .contact-info-card h3 {
            font-family: var(--font-display);
            font-size: 2rem;
            font-weight: 400;
            color: #fff;
            margin-bottom: 2rem;
        }
        .contact-info-item {
            display: flex;
            gap: 1rem;
            margin-bottom: 1.5rem;
            align-items: flex-start;
        }
        .contact-info-icon {
            width: 36px;
            height: 36px;
            min-width: 36px;
            border: 1px solid rgba(201,168,76,0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--gold);
            font-size: 0.9rem;
        }
        .contact-info-text {
            font-size: 0.88rem;
            color: rgba(255,255,255,0.65);
            line-height: 1.6;
        }
        .contact-info-label {
            font-size: 0.65rem;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: var(--gold);
            display: block;
            margin-bottom: 0.2rem;
        }
        .map-wrap {
            height: 100%;
            min-height: 400px;
        }
        .map-wrap iframe {
            width: 100%;
            height: 100%;
            min-height: 400px;
            border: none;
            filter: grayscale(40%) contrast(1.1);
        }
        .contact-form-card {
            background: #fff;
            padding: 3rem;
            border: 1px solid rgba(201,168,76,0.1);
        }
        .contact-form-card h4 {
            font-family: var(--font-display);
            font-size: 1.8rem;
            font-weight: 400;
            margin-bottom: 1.5rem;
        }
        .form-control-light {
            background: var(--cream) !important;
            border: 1px solid rgba(0,0,0,0.08) !important;
            border-radius: 0 !important;
            font-size: 0.88rem;
            padding: 0.85rem 1rem !important;
            transition: border-color 0.3s;
        }
        .form-control-light:focus {
            border-color: var(--gold) !important;
            box-shadow: none !important;
        }
        .form-label-sm {
            font-size: 0.68rem;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: var(--warm-gray);
            font-weight: 600;
            margin-bottom: 0.4rem;
        }

        /* ─── FOOTER ─── */
        footer {
            background: #080604;
            padding: 5rem 0 0;
            border-top: 1px solid rgba(201,168,76,0.15);
        }
        .footer-logo {
            font-family: var(--font-display);
            font-size: 1.6rem;
            font-weight: 500;
            color: #fff;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.75rem;
            margin-bottom: 1.25rem;
        }
        .footer-logo img {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            border: 1px solid var(--gold);
            padding: 2px;
        }
        .footer-about {
            font-size: 0.85rem;
            color: rgba(255,255,255,0.4);
            line-height: 1.8;
            max-width: 320px;
        }
        .footer-heading {
            font-family: var(--font-body);
            font-size: 0.68rem;
            font-weight: 600;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 1.25rem;
        }
        .footer-links { list-style: none; }
        .footer-links li { margin-bottom: 0.6rem; }
        .footer-links a {
            font-size: 0.85rem;
            color: rgba(255,255,255,0.45);
            text-decoration: none;
            transition: color 0.3s;
        }
        .footer-links a:hover { color: var(--gold-light); }
        .footer-contact-item {
            display: flex;
            gap: 0.75rem;
            margin-bottom: 0.75rem;
            font-size: 0.85rem;
            color: rgba(255,255,255,0.45);
            align-items: flex-start;
        }
        .footer-contact-item i { color: var(--gold); margin-top: 2px; }
        .social-links { display: flex; gap: 0.75rem; margin-top: 1.5rem; }
        .social-btn {
            width: 36px;
            height: 36px;
            border: 1px solid rgba(201,168,76,0.25);
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(255,255,255,0.5);
            font-size: 0.9rem;
            text-decoration: none;
            transition: all 0.3s;
        }
        .social-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--deep); }
        .footer-bottom {
            margin-top: 4rem;
            padding: 1.5rem 0;
            border-top: 1px solid rgba(255,255,255,0.05);
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
        }
        .footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.25); margin: 0; }

        /* ─── FLOATING WHATSAPP ─── */
        .wa-float {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            width: 54px;
            height: 54px;
            background: #25D366;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: #fff;
            text-decoration: none;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(37,211,102,0.4);
            transition: all 0.3s;
        }
        .wa-float:hover { background: #128C4F; color: #fff; transform: scale(1.1); }

        /* ─── ANIMATIONS ─── */
        @keyframes fadeUp {
            to { opacity: 1; transform: translateY(0); }
        }
        @keyframes scrollPulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.3; }
        }
        .reveal {
            opacity: 0;
            transform: translateY(40px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }
        .reveal.visible { opacity: 1; transform: translateY(0); }
        .reveal-delay-1 { transition-delay: 0.1s; }
        .reveal-delay-2 { transition-delay: 0.2s; }
        .reveal-delay-3 { transition-delay: 0.3s; }
        .reveal-delay-4 { transition-delay: 0.4s; }
        .reveal-delay-5 { transition-delay: 0.5s; }

        /* ─── ALERT ─── */
        .alert-success {
            background: rgba(40,167,69,0.1);
            border: 1px solid rgba(40,167,69,0.3);
            color: #2ecc71;
            border-radius: 0;
            font-size: 0.88rem;
        }

        /* ─── RESPONSIVE ─── */
        @media (max-width: 991px) {
            .navbar-collapse { background: rgba(13,10,6,0.97); padding: 1rem; backdrop-filter: blur(20px); }
            .booking-wrap { padding: 2.5rem 1.5rem; }
            .gallery-grid { grid-template-columns: repeat(2, 1fr); }
            .gallery-item { grid-column: span 1 !important; grid-row: span 1 !important; }
            .about-img-accent { display: none; }
        }
        @media (max-width: 767px) {
            .section { padding: 5rem 0; }
            .hero-content h1 { font-size: 2.8rem; }
            .gallery-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
            .contact-info-card, .contact-form-card { padding: 2rem; }
        }
   