        /* --- CSS VARIABLES & RESET --- */
        :root {
            --c-midnight: #0f172a;
            --c-midnight-alpha: rgba(15, 23, 42, 0.95);
            --c-mustard: #d4af37;
            --c-mustard-dim: rgba(212, 175, 55, 0.3);
            --c-olive: #556b2f;
            --c-cream: #fdfbf7;
            --c-sand: #e8e4c9;
            --c-deepRed: #8b0000;
            --c-text-dark: #333333;
            --c-text-light: #f3f4f6;
            --c-text-muted: #9ca3af;
            
            --f-serif: 'Playfair Display', serif;
            --f-script: 'Great Vibes', cursive;
            --f-body: 'Lato', sans-serif;
            --f-cinzel: 'Cinzel', serif;

            --shadow-glow: 0 0 15px rgba(212, 175, 55, 0.5);
            --shadow-card: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
        }

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

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--f-body);
            background-color: var(--c-cream);
            color: var(--c-text-dark);
            line-height: 1.6;
            overflow-x: hidden;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: all 0.3s ease;
        }

        img {
            max-width: 100%;
            display: block;
        }

        ul {
            list-style: none;
        }

        /* --- UTILITY CLASSES --- */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .flex { display: flex; }
        .flex-col { flex-direction: column; }
        .items-center { align-items: center; }
        .justify-center { justify-content: center; }
        .justify-between { justify-content: space-between; }
        .wrap { flex-wrap: wrap; }
        .gap-2 { gap: 0.5rem; }
        .gap-4 { gap: 1rem; }
        
        .text-center { text-align: center; }
        .text-right { text-align: right; }
        
        .section-py { padding: 6rem 0; }

        /* Typography */
        .font-cinzel { font-family: var(--f-cinzel); }
        .font-serif { font-family: var(--f-serif); }
        .font-script { font-family: var(--f-script); }

        /* Icons (SVG Sizing) */
        .icon-sm { width: 16px; height: 16px; fill: currentColor; }
        .icon-md { width: 24px; height: 24px; fill: currentColor; }
        .icon-lg { width: 40px; height: 40px; fill: currentColor; }
        .icon-xl { width: 64px; height: 64px; fill: currentColor; }

        /* --- NAVIGATION --- */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 90px;
            background-color: var(--c-midnight-alpha);
            border-bottom: 1px solid var(--c-mustard-dim);
            z-index: 1000;
            backdrop-filter: blur(5px);
            display: flex;
            align-items: center;
        }

        .nav-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
        }

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

        .logo-circle {
            width: 56px;
            height: 56px;
            background-color: var(--c-midnight);
            border: 2px solid var(--c-mustard);
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            box-shadow: var(--shadow-glow);
            color: var(--c-mustard);
        }

        .brand-name {
            font-family: var(--f-cinzel);
            font-size: 1.25rem;
            letter-spacing: 0.1em;
            color: var(--c-cream);
        }

        .nav-links {
            display: flex;
            gap: 32px;
            align-items: center;
        }

        .nav-link {
            font-family: var(--f-serif);
            color: var(--c-cream);
            font-size: 1.125rem;
        }

        .nav-link:hover {
            color: var(--c-mustard);
        }

        .btn-book {
            padding: 10px 24px;
            border: 1px solid var(--c-mustard);
            color: var(--c-mustard);
            font-family: var(--f-cinzel);
            font-size: 0.9rem;
            border-radius: 2px;
            background: transparent;
            cursor: pointer;
        }

        .btn-book:hover {
            background-color: var(--c-mustard);
            color: var(--c-midnight);
        }

        /* Mobile Menu */
        .mobile-toggle {
            display: none;
            background: none;
            border: none;
            color: var(--c-mustard);
            cursor: pointer;
        }

        .mobile-menu-panel {
            display: none;
            position: fixed;
            top: 90px;
            left: 0;
            width: 100%;
            background-color: var(--c-midnight);
            border-top: 1px solid var(--c-mustard-dim);
            padding: 20px 0;
            z-index: 999;
            text-align: center;
        }

        .mobile-menu-panel.active {
            display: block;
        }

        .mobile-link {
            display: block;
            padding: 12px;
            color: var(--c-cream);
            font-family: var(--f-serif);
            font-size: 1.1rem;
        }

        /* --- HERO SECTION --- */
        .hero {
            position: relative;
            height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            background: linear-gradient(rgba(15, 23, 42, 0.7), rgba(15, 23, 42, 0.4)),
                        url('https://images.unsplash.com/photo-1532968961962-8a0cb3a2d4f5?q=80&w=2070&auto=format&fit=crop');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            padding: 0 20px;
            color: white;
        }

        /* Moon Glow Effect */
        .hero::before {
            content: '';
            position: absolute;
            top: 20%;
            right: 20%;
            width: 100px;
            height: 100px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(200,220,255,0.9) 0%, rgba(100,150,255,0.4) 40%, transparent 70%);
            box-shadow: 0 0 60px 30px rgba(100,150,255,0.3);
            z-index: 0;
            opacity: 0.8;
            pointer-events: none;
        }

        .hero-content {
            position: relative;
            z-index: 10;
            animation: fadeIn 2s ease-out forwards;
        }

        .hero-title {
            font-family: var(--f-serif);
            font-size: 3.5rem;
            margin-bottom: 0.5rem;
            text-shadow: 0 4px 10px rgba(0,0,0,0.5);
        }

        .hero-subtitle {
            font-family: var(--f-script);
            font-size: 2.5rem;
            color: var(--c-mustard);
            opacity: 0.9;
            margin-bottom: 2rem;
        }

        .hero-divider {
            width: 100px;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--c-mustard), transparent);
            margin: 1.5rem auto;
        }

        .hero-tagline {
            font-family: var(--f-cinzel);
            font-size: 1.25rem;
            letter-spacing: 0.1em;
            color: var(--c-cream);
            text-transform: uppercase;
            margin-bottom: 1rem;
        }

        .hero-author {
            font-family: var(--f-serif);
            font-style: italic;
            color: #d1d5db;
            margin-bottom: 3rem;
        }

        .btn-hero {
            display: inline-block;
            padding: 16px 40px;
            border: 2px solid var(--c-mustard);
            color: var(--c-mustard);
            font-family: var(--f-cinzel);
            text-transform: uppercase;
            letter-spacing: 2px;
            background: transparent;
            transition: all 0.3s;
        }

        .btn-hero:hover {
            background-color: var(--c-mustard);
            color: var(--c-midnight);
        }

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

        /* --- BACKGROUNDS & TEXTURES --- */
        .bg-watermark {
            background-color: var(--c-cream);
            background-image: url("data:image/svg+xml,%3Csvg width='120' height='120' viewBox='0 0 120 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cg opacity='0.3'%3E%3Cpath d='M60 40c-5.5 0-10 4.5-10 10s4.5 10 10 10 10-4.5 10-10-4.5-10-10-10zm0 25c-8 0-15 5-15 15v5h30v-5c0-10-7-15-15-15z' fill='%23d4af37'/%3E%3Ctext x='60' y='30' font-family='serif' font-size='10' fill='%23556b2f' text-anchor='middle'%3Eॐ%3C/text%3E%3C/g%3E%3C/svg%3E");
            background-repeat: repeat;
        }

        .bg-paper-overlay {
            position: absolute;
            inset: 0;
            background-image: url('https://www.transparenttextures.com/patterns/cream-paper.png');
            background-blend-mode: multiply;
            opacity: 0.5;
            pointer-events: none;
            z-index: 1;
        }

        /* --- ABOUT SECTION --- */
        .section-about {
            position: relative;
            text-align: center;
        }

        .about-icon-wrapper {
            width: 80px;
            height: 80px;
            border: 2px solid var(--c-mustard);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--c-cream);
            margin: 0 auto 2rem;
            box-shadow: var(--shadow-card);
            color: var(--c-olive);
            position: relative;
            z-index: 10;
        }

        .section-heading {
            font-family: var(--f-serif);
            font-size: 2.5rem;
            color: var(--c-midnight);
            margin-bottom: 0.5rem;
            position: relative;
            z-index: 10;
        }

        .section-subheading {
            font-family: var(--f-script);
            font-size: 2rem;
            color: var(--c-olive);
            margin-bottom: 2rem;
            position: relative;
            z-index: 10;
        }

        .text-prose {
            max-width: 700px;
            margin: 0 auto;
            color: var(--c-text-dark);
            font-size: 1.1rem;
            position: relative;
            z-index: 10;
        }

        /* --- SERVICES SECTION --- */
        .section-services {
            background-color: var(--c-cream);
            position: relative;
        }

        .services-title {
            font-family: var(--f-serif);
            font-size: 3rem;
            color: var(--c-midnight);
            border-bottom: 4px solid var(--c-deepRed);
            display: inline-block;
            padding-bottom: 10px;
            margin-bottom: 4rem;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 3rem;
            position: relative;
            z-index: 10;
        }

        .service-card {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            transition: transform 0.3s;
        }

        .service-card:hover .service-img-wrapper {
            transform: scale(1.05);
        }

        .service-img-wrapper {
            width: 190px;
            height: 190px;
            border-radius: 50%;
            overflow: hidden;
            border: 4px solid var(--c-mustard);
            box-shadow: var(--shadow-card);
            margin-bottom: 1.5rem;
            transition: transform 0.5s ease;
        }

        .service-img-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .service-title {
            font-family: var(--f-cinzel);
            font-size: 1.25rem;
            font-weight: bold;
            margin-bottom: 0.75rem;
            /* Radial Gradient Text Effect */
            background: radial-gradient(circle, #ff4d4d, #990000);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-transform: uppercase;
        }

        .service-desc {
            color: var(--c-gray-600);
            padding: 0 1rem;
        }

        /* --- EDUCATIONAL / INFO SECTION --- */
        .section-info {
            background-color: rgba(85, 107, 47, 0.1); /* Olive/10 */
            overflow: hidden;
        }

        .info-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .info-content h2 {
            font-family: var(--f-serif);
            font-size: 2.5rem;
            color: var(--c-midnight);
        }

        .info-bar {
            width: 80px;
            height: 4px;
            background-color: var(--c-mustard);
            margin: 1rem 0 2rem 0;
        }

        .info-list {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .info-item {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
        }

        .info-icon-circle {
            width: 40px;
            height: 40px;
            background-color: var(--c-olive);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            color: var(--c-cream);
        }

        .info-text h4 {
            font-family: var(--f-cinzel);
            font-size: 1.1rem;
            color: var(--c-midnight);
            font-weight: bold;
        }

        .info-text p {
            font-size: 0.9rem;
            color: #4b5563;
        }

        .info-image-container {
            position: relative;
        }

        .info-border-deco {
            position: absolute;
            inset: 0;
            border: 2px solid var(--c-mustard);
            transform: translate(16px, 16px);
            border-radius: 8px;
            z-index: 1;
        }

        .info-image {
            position: relative;
            z-index: 2;
            border-radius: 8px;
            box-shadow: var(--shadow-card);
            transform: rotate(-2deg);
            transition: transform 0.5s;
            width: 100%;
            height: 500px;
            object-fit: cover;
        }

        .info-image:hover {
            transform: rotate(0);
        }

        /* --- ZEN BOTTOM SECTION --- */
        .section-zen {
            background-color: var(--c-cream);
            position: relative;
        }

        .zen-grid {
            display: grid;
            grid-template-columns: 3fr 2fr;
            gap: 3rem;
            align-items: center;
            position: relative;
            z-index: 10;
        }

        .zen-title {
            font-family: var(--f-serif);
            font-size: 3rem;
            color: var(--c-olive);
        }

        .zen-subtitle {
            font-family: var(--f-script);
            font-size: 2rem;
            color: var(--c-mustard);
            margin-bottom: 1.5rem;
        }

        .zen-actions {
            display: flex;
            gap: 1rem;
            margin-top: 2rem;
            flex-wrap: wrap;
        }

        .btn-olive {
            padding: 12px 32px;
            background-color: var(--c-olive);
            color: var(--c-cream);
            font-family: var(--f-cinzel);
            text-transform: uppercase;
            font-size: 0.9rem;
            letter-spacing: 1px;
            border: none;
            cursor: pointer;
            box-shadow: var(--shadow-card);
        }

        .btn-olive:hover {
            background-color: var(--c-midnight);
        }

        .btn-outline-olive {
            padding: 12px 32px;
            border: 2px solid var(--c-olive);
            color: var(--c-olive);
            font-family: var(--f-cinzel);
            text-transform: uppercase;
            font-size: 0.9rem;
            letter-spacing: 1px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .btn-outline-olive:hover {
            background-color: var(--c-olive);
            color: white;
        }

        /* Organic Shape Image */
        .organic-shape {
            border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
            transition: border-radius 0.5s ease-in-out;
            width: 100%;
            height: 400px;
            object-fit: cover;
            border: 4px solid white;
            box-shadow: var(--shadow-card);
        }

        .organic-shape:hover {
            border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
        }

        /* --- FOOTER --- */
        .footer {
            background-color: var(--c-midnight);
            border-top: 4px solid var(--c-mustard);
            color: var(--c-cream);
            padding: 4rem 0 2rem 0;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .footer-brand {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 1rem;
        }

        .footer-logo-circle {
            width: 40px;
            height: 40px;
            border: 1px solid var(--c-mustard);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--c-mustard);
            font-family: var(--f-cinzel);
            font-weight: bold;
        }

        .footer-address {
            font-style: normal;
            color: #9ca3af;
            line-height: 1.8;
            margin-bottom: 1rem;
        }

        .social-links {
            display: flex;
            gap: 12px;
        }

        .social-icon {
            width: 40px;
            height: 40px;
            background-color: #1e293b; /* Slate-800 */
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--c-cream);
            transition: background-color 0.3s;
        }

        .social-icon:hover {
            background-color: var(--c-mustard);
            color: var(--c-midnight);
        }

        .footer-heading {
            font-family: var(--f-serif);
            font-size: 1.25rem;
            color: var(--c-mustard);
            margin-bottom: 1.5rem;
            border-bottom: 1px solid #374151;
            padding-bottom: 0.5rem;
            display: inline-block;
        }

        .footer-links li {
            margin-bottom: 0.75rem;
        }

        .footer-links a {
            color: #d1d5db;
        }

        .footer-links a:hover {
            color: var(--c-mustard);
        }

        .bank-card {
            background-color: rgba(30, 41, 59, 0.5);
            padding: 1.5rem;
            border-radius: 8px;
            border: 1px solid #374151;
        }

        .bank-heading {
            font-family: var(--f-serif);
            font-size: 1.2rem;
            color: var(--c-mustard);
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .bank-details p {
            font-size: 0.9rem;
            margin-bottom: 4px;
        }

        .bank-label {
            color: var(--c-mustard);
            font-weight: bold;
        }

        .bank-warning {
            margin-top: 1rem;
            padding: 0.75rem;
            background-color: rgba(127, 29, 29, 0.2);
            border: 1px solid rgba(127, 29, 29, 0.5);
            border-radius: 4px;
            font-size: 0.75rem;
            color: #fca5a5;
            display: flex;
            gap: 8px;
        }

        .copyright {
            border-top: 1px solid #1f2937;
            padding-top: 2rem;
            text-align: center;
            font-size: 0.875rem;
            color: #6b7280;
        }

        /* --- RESPONSIVE MEDIA QUERIES --- */
        @media (max-width: 768px) {
            .navbar { height: 70px; }
            .nav-links { display: none; }
            .mobile-toggle { display: block; }
            
            .hero-title { font-size: 2.5rem; }
            .hero-subtitle { font-size: 1.8rem; }
            
            .info-grid { grid-template-columns: 1fr; }
            .zen-grid { grid-template-columns: 1fr; }
            
            .section-py { padding: 4rem 0; }
            .btn-book { display: none; } /* Hide book button in header on mobile */
        }