        :root {
            --gold: #C8A456;
            --gold-light: #E8D5A3;
            --sandalwood: #8B6914;
            --ochre: #B8860B;
            --cream: #FFF8F0;
            --warm-white: #FFFDF9;
            --deep-brown: #3D2B1F;
            --text-dark: #2C1810;
            --text-medium: #5C4033;
            --text-light: #8B7355;
            --lotus-pink: #E8B4B8;
            --sage: #A8B5A0;
            --whatsapp: #25D366;
            --telegram: #0088cc;
            --shadow-soft: 0 4px 20px rgba(61, 43, 31, 0.08);
            --shadow-medium: 0 8px 32px rgba(61, 43, 31, 0.12);
            --shadow-heavy: 0 16px 48px rgba(61, 43, 31, 0.16);
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }
		/* === Change Hyperlinks Default Colors to Match Theme === */
		/* 1. Unvisited link state */
		a:link {
		  color: var(--gold); 
		}

		/* 2. Visited link state */
		a:visited {
		  color: var(--gold-light); 
		}

		/* 3. Hover state (mouse pointer over link) */
		a:hover {
		  color: var(--sandalwood); 
		}

		/* 4. Active state (the moment the link is clicked) */
		a:active {
		  color: var(--ochre); 
		}


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

        body {
            font-family: 'Inter', sans-serif;
            background: var(--warm-white);
			background-color: white; /* Ensure the iframe has a white background */
            color: var(--text-dark);
            line-height: 1.7;
            overflow-x: hidden;
        }

        ::-webkit-scrollbar { width: 8px; }
        ::-webkit-scrollbar-track { background: var(--cream); }
        ::-webkit-scrollbar-thumb { background: var(--gold-light); border-radius: 4px; }
        ::-webkit-scrollbar-thumb:hover { background: var(--gold); }

        h1, h2, h3, h4 {
            font-family: 'Playfair Display', serif;
            color: var(--text-dark);
            line-height: 1.3;
        }

        .section-subtitle {
			display: block;
            font-family: 'Cormorant Garamond', serif;
            font-style: italic;
            color: var(--gold);
            font-size: 2rem !important; 
            letter-spacing: 0.5px;
        }

        .section-title {
            font-size: clamp(2rem, 4vw, 3rem);
            margin: 0.5rem 0 1.5rem;
            font-weight: 600;
        }

        .section-desc {
            color: var(--text-medium);
            max-width: 640px;
            margin: 0 auto;
            font-size: 1.05rem;
        }

        /* Navigation */
        .nav {
            position: fixed;
            top: 0; left: 0; right: 0;
            z-index: 1000;
            padding: 1rem 2rem;
            transition: var(--transition);
            background: transparent;
        }

        .nav.scrolled {
            background: rgba(255, 253, 249, 0.95);
            backdrop-filter: blur(20px);
            box-shadow: var(--shadow-soft);
            padding: 0.7rem 2rem;
        }

        .nav-inner {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .nav-logo {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            text-decoration: none;
            color: var(--text-dark);
        }

        .nav-logo-icon {
            width: 42px;
            height: 42px;
            border-radius: 50%;
            background: var(--warm-white);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
        }

        .nav-logo-text {
            font-family: 'Playfair Display', serif;
            font-size: 1.15rem;
            font-weight: 600;
            color: var(--text-dark);
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 2rem;
            list-style: none;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--text-medium);
            font-size: 0.9rem;
            font-weight: 500;
            letter-spacing: 0.3px;
            transition: var(--transition);
            position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gold);
            transition: var(--transition);
        }

        .nav-links a:hover { color: var(--sandalwood); }
        .nav-links a:hover::after { width: 100%; }

        .nav-cta {
            background: var(--gold);
            color: white !important;
            padding: 0.6rem 1.5rem;
            border-radius: 50px;
            font-weight: 600 !important;
        }

        .nav-cta::after { display: none !important; }
        .nav-cta:hover { background: var(--ochre) !important; transform: translateY(-1px); }
		/* Submenu / dropdown */
		.has-submenu { position: relative; }

		.submenu-trigger {
			display: inline-flex;
			align-items: center;
			gap: 0.3rem;
			cursor: pointer;
		}

		.submenu-caret {
			font-size: 0.7rem;
			transition: transform 0.3s ease;
			color: var(--gold);
		}

		.has-submenu:hover .submenu-caret,
		.has-submenu.open .submenu-caret {
			transform: rotate(180deg);
		}

		.submenu {
			position: absolute;
			top: 100%;
			left: 50%;
			transform: translateX(-50%) translateY(8px);
			min-width: 240px;
			background: rgba(255, 253, 249, 0.98);
			backdrop-filter: blur(20px);
			border: 1px solid rgba(200, 164, 86, 0.2);
			border-radius: 14px;
			box-shadow: var(--shadow-medium);
			padding: 0.6rem;
			list-style: none;
			opacity: 0;
			visibility: hidden;
			transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
			z-index: 1001;
		}

		.has-submenu:hover .submenu,
		.has-submenu.open .submenu {
			opacity: 1;
			visibility: visible;
			transform: translateX(-50%) translateY(0);
		}

		.submenu li { width: 100%; }

		.submenu a {
			display: block;
			padding: 0.65rem 0.9rem;
			border-radius: 8px;
			font-size: 0.88rem;
			color: var(--text-medium);
			white-space: nowrap;
			transition: var(--transition);
		}

		.submenu a::after { display: none; }

		.submenu a:hover {
			background: rgba(200, 164, 86, 0.12);
			color: var(--sandalwood);
			padding-left: 1.1rem;
		}

		/* Mobile: submenu becomes inline accordion */
		@media (max-width: 768px) {
			.submenu {
				position: static;
				transform: none;
				opacity: 1;
				visibility: visible;
				background: transparent;
				backdrop-filter: none;
				border: none;
				box-shadow: none;
				padding: 0;
				margin-top: 0.5rem;
				max-height: 0;
				overflow: hidden;
				transition: max-height 0.35s ease;
				
			}
			
			.has-submenu { width: 100%; text-align: center; }
				.submenu-trigger { justify-content: center; width: 100%; }
			.has-submenu.open .submenu {
				max-height: 500px;
				transform: none;
			}
			.submenu li { padding-left: 1rem; }
			.submenu a { font-size: 0.85rem; padding: 0.5rem 0.75rem; }
		}		

        .mobile-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            padding: 5px;
        }

        .mobile-toggle span {
            width: 24px;
            height: 2px;
            background: var(--text-dark);
            transition: var(--transition);
            border-radius: 2px;
        }

        .mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
        .mobile-toggle.active span:nth-child(2) { opacity: 0; }
        .mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

        /* Hero */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            background: linear-gradient(135deg, var(--cream) 0%, #F5E6D0 50%, #EDD9C0 100%);
        }

        .hero-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(255,253,249,0.3) 0%, rgba(255,248,240,0.8) 60%, var(--warm-white) 100%);
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 1200px;
            margin: 0 auto;
            padding: 8rem 2rem 4rem;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .hero-text { animation: fadeInUp 1s ease; }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(200, 164, 86, 0.15);
            border: 1px solid rgba(200, 164, 86, 0.3);
            padding: 0.4rem 1rem;
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 500;
            color: var(--sandalwood);
            margin-bottom: 1.5rem;
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        .hero-title {
            font-size: clamp(2.5rem, 5vw, 3.8rem);
            font-weight: 700;
            line-height: 1.15;
            margin-bottom: 1.5rem;
            color: var(--text-dark);
        }

        .hero-title span { color: var(--gold); font-style: italic; }
		.hero-title span.nowrap { color: inherit; font-style: normal; }

        .hero-desc {
            font-size: 1.1rem;
            color: var(--text-medium);
            margin-bottom: 2rem;
            max-width: 520px;
            line-height: 1.8;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.9rem 2rem;
            border-radius: 50px;
            font-size: 0.95rem;
            font-weight: 600;
            text-decoration: none;
            transition: var(--transition);
            cursor: pointer;
            border: none;
            font-family: 'Inter', sans-serif;
            letter-spacing: 0.3px;
        }

        .btn-primary {
            background: var(--gold);
            color: white;
            box-shadow: 0 4px 16px rgba(200, 164, 86, 0.4);
        }

        .btn-primary:hover {
            background: var(--ochre);
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(200, 164, 86, 0.5);
        }

        .btn-outline {
            background: transparent;
            color: var(--sandalwood);
            border: 2px solid var(--gold-light);
        }

        .btn-outline:hover {
            background: var(--gold);
            color: white;
            border-color: var(--gold);
            transform: translateY(-2px);
        }
		/* Buttons are links too - exempt them from the theme link colors */
		a.btn-primary:link, a.btn-primary:visited, a.btn-primary:hover, a.btn-primary:active { color: #fff; }
		a.btn-outline:link, a.btn-outline:visited { color: var(--sandalwood); }
		a.btn-outline:hover, a.btn-outline:active { color: white; }
		a.btn-white:link, a.btn-white:visited, a.btn-white:hover { color: var(--gold); }		.btn-primary:visited { color: #fff; }

        .hero-visual {
            display: flex;
            justify-content: center;
            align-items: center;
            animation: fadeInRight 1s ease 0.3s both;
        }

        .hero-logo-container {
            position: relative;
            width: 480px;
            height: 480px;
        }

		.hero-logo-glow {
			position: absolute;
			inset: -7.5%;
			border-radius: 20%;
			background: radial-gradient(circle,
				rgba(200, 164, 86, 0.75) 0%,
				rgba(200, 164, 86, 0.40) 28%,
				rgba(200, 164, 86, 0.12) 55%,
				transparent 75%);
			filter: blur(22px);
			animation: mwLogoGlow 4s ease-in-out infinite;
			transform-origin: center center;
			will-change: transform, opacity;
			z-index: 0;
			pointer-events: none;
		}

        .hero-logo-img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            position: relative;
            z-index: 1;
            filter: drop-shadow(0 8px 32px rgba(61, 43, 31, 0.15));
        }

		.hero-stats {
			display: flex;
			gap: 2.5rem;
			margin-top: 3rem;
			padding-top: 2rem;
			border-top: 1px solid rgba(200, 164, 86, 0.2);
			flex-wrap: nowrap; /* Prevents wrapping */
			justify-content: center;
		}

        .hero-stat h4 { font-size: 1.8rem; color: var(--gold); font-weight: 700; }
		.hero-stat p {
			font-size: 0.8rem;
			color: var(--text-light);
			text-transform: uppercase;
			letter-spacing: 1px;
/*			white-space: nowrap; *//* Forces single line */
			min-width: 100px; /* Gives consistent breathing room */
			text-align: center;
		}
		
		/* Hero rotating taglines */
		.hero-rotating-wrapper {
			min-height: 1.4em;
//			position: relative;
			overflow: hidden;
			display: grid;
			align-items: start;
			grid-area: 1 / 1;
			position: static;
			width: auto;
		}

		.hero-rotating-line {
			position: absolute;
			top: 0;
			left: 0;
			width: 100%;
			opacity: 0;
			transform: translateY(20px);
			transition: opacity 0.8s ease, transform 0.8s ease;
			pointer-events: none;
			grid-area: 1 / 1;
//			position: static;
			position: relative;
			width: auto;
//			white-space: nowrap;
		}

		.hero-rotating-line.active {
			opacity: 1;
			transform: translateY(0);
/*			position: relative ; */
			grid-area: 1 / 1;
			position: static;
			width: auto;
		}

		.hero-rotating-line .highlight {
			color: var(--gold);
			font-style: italic;
		}

		/* Typing cursor blink for the rotating line */
/*		.hero-rotating-line.active::after {
			content: '|';
			animation: cursorBlink 1s step-end infinite;
			color: var(--gold);
			margin-left: 2px;
		} */

		.hero-rotating-line.typing-done::after {
			display: none;
		}
		
		.nowrap { white-space: nowrap; }

		@keyframes cursorBlink {
			0%, 100% { opacity: 1; }
			50% { opacity: 0; }
		}

		/* Dhammapada quote carousel */
		.dhamma-carousel {
			position: relative;
			min-height: 120px;
			overflow: hidden;
		}

		.dhamma-slide {
			position: absolute;
			inset: 0;
			display: flex;
			flex-direction: column;
			align-items: center;
			justify-content: center;
			opacity: 0;
			transform: translateX(60px);
			transition: opacity 0.8s ease, transform 0.8s ease;
			pointer-events: none;
		}

		.dhamma-slide.active {
			opacity: 1;
			transform: translateX(0);
			position: relative;
		}

		.dhamma-slide.exit {
			opacity: 0;
			transform: translateX(-60px);
		}

		.dhamma-carousel-dots {
			display: flex;
			justify-content: center;
			gap: 0.5rem;
			margin-top: 1.5rem;
		}

		.dhamma-dot {
			width: 8px;
			height: 8px;
			border-radius: 50%;
			background: var(--gold-light);
			border: none;
			cursor: pointer;
			transition: var(--transition);
			padding: 0;
		}

		.dhamma-dot.active {
			background: var(--gold);
			transform: scale(1.3);
		}

		/* Netlify honeypot - always hidden */
		.honeypot-field {
			position: absolute !important;
			left: -9999px !important;
			opacity: 0 !important;
			height: 0 !important;
			width: 0 !important;
			overflow: hidden !important;
		}
		
        .floating-shapes {
            position: absolute;
            inset: 0;
            pointer-events: none;
            overflow: hidden;
        }

        .shape {
            position: absolute;
            border-radius: 50%;
            opacity: 0.1;
        }

        .shape-1 {
            width: 300px; height: 300px;
            background: var(--gold);
            top: 10%; right: -5%;
            animation: float 8s ease-in-out infinite;
        }

        .shape-2 {
            width: 200px; height: 200px;
            background: var(--lotus-pink);
            bottom: 20%; left: -3%;
            animation: float 6s ease-in-out infinite reverse;
        }

        .shape-3 {
            width: 150px; height: 150px;
            background: var(--sage);
            top: 40%; left: 30%;
            animation: float 10s ease-in-out infinite;
        }

        /* Section styles */
        .section { padding: 6rem 2rem; }

        .section-inner { max-width: 1200px; margin: 0 auto; }

        .section-header { text-align: center; margin-bottom: 4rem; }

        .section-divider {
            width: 60px; height: 3px;
            background: linear-gradient(90deg, var(--gold-light), var(--gold));
            margin: 1.5rem auto 0;
            border-radius: 2px;
        }

        /* About */
        .about { background: var(--warm-white); }

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

        .about-image-wrapper {
            position: relative;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0;
        }
 
        .about-photo-card {
            width: 100%;
            border-radius: 20px;
            background: linear-gradient(135deg, #F5E6D0 0%, #E8D5A3 50%, #D4C090 100%);
            box-shadow: var(--shadow-medium);
            overflow: hidden;
            position: relative;
            display: flex;
            align-items: flex-end;
            justify-content: center;
        }
 
        .about-photo-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: top center;
            display: block;
        }
 
        .about-photo-label {
            position: absolute;
            top: 16px;
            left: 16px;
            background: var(--gold);
            color: white;
            padding: 0.55rem 1.2rem;
            border-radius: 10px;
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.15rem;
            font-style: italic;
            font-weight: 500;
            box-shadow: var(--shadow-medium);
            z-index: 2;
        }
 
        .about-arrow {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0;
            padding: 0.6rem 0;
            color: var(--gold);
            opacity: 0.8;
        }
 
        .about-arrow-line {
            width: 2px;
            height: 48px;
            background: linear-gradient(to bottom, var(--gold-light), var(--gold));
            border-radius: 2px;
        }
 
        .about-arrow-head {
            width: 0;
            height: 0;
            border-left: 7px solid transparent;
            border-right: 7px solid transparent;
            border-top: 10px solid var(--gold);
        }
 
        .about-accent {
            position: absolute;
            bottom: -20px; right: -20px;
            width: 180px; height: 180px;
            border: 3px solid var(--gold-light);
            border-radius: 20px;
            z-index: -1;
        }

        .about-content h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); margin-bottom: 1.5rem; }
        .about-content p { color: var(--text-medium); margin-bottom: 1.2rem; font-size: 1.02rem; }

        .about-values {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
            margin-top: 2rem;
        }

        .about-value {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            padding: 0.8rem 1rem;
            background: var(--cream);
            border-radius: 10px;
            font-size: 0.9rem;
            color: var(--text-medium);
        }

        /* Services - Dana-based */
        .services { background: var(--cream); }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        .service-card {
            background: white;
            border-radius: 20px;
            padding: 2.5rem 2rem;
            text-align: center;
            transition: var(--transition);
            box-shadow: var(--shadow-soft);
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--gold-light), var(--gold));
            transform: scaleX(0);
            transition: var(--transition);
        }

        .service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-heavy); }
        .service-card:hover::before { transform: scaleX(1); }

        .service-icon {
            width: 70px; height: 70px;
            border-radius: 50%;
            background: linear-gradient(135deg, rgba(200, 164, 86, 0.1), rgba(200, 164, 86, 0.2));
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 1.8rem;
        }

        .service-card h3 { font-size: 1.3rem; margin-bottom: 0.75rem; }
        .service-card p { color: var(--text-light); font-size: 0.95rem; line-height: 1.7; }

        .service-dana {
            margin-top: 1.5rem;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(200, 164, 86, 0.15);
        }

        .service-dana .dana-label {
            font-size: 0.75rem;
            color: var(--text-light);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 0.25rem;
        }

        .service-dana .dana-text {
            font-family: 'Cormorant Garamond', serif;
            font-style: italic;
            font-size: 1.05rem;
            color: var(--gold);
            font-weight: 500;
        }

        .service-dana .dana-note {
            font-size: 0.78rem;
            color: var(--text-light);
            margin-top: 0.3rem;
            line-height: 1.5;
        }

        /* Dana / Generosity Banner */
        .dana-banner {
            background: linear-gradient(135deg, var(--sandalwood) 0%, var(--ochre) 100%);
            padding: 3.5rem 2rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .dana-banner::before {
            content: '';
            position: absolute;
            inset: 0;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        }

        .dana-banner-content {
            position: relative;
            z-index: 1;
            max-width: 800px;
            margin: 0 auto;
        }

        .dana-banner h3 {
            color: white;
            font-size: 1.6rem;
            margin-bottom: 0.75rem;
        }

        .dana-banner p {
            color: rgba(255, 255, 255, 0.85);
            font-size: 1rem;
            line-height: 1.7;
        }

        .dana-banner .dana-icon {
            font-size: 2rem;
            margin-bottom: 0.75rem;
        }

        /* Wisdom Section */
        .wisdom {
            background: linear-gradient(135deg, var(--deep-brown) 0%, #4A3228 100%);
            color: white;
            position: relative;
            overflow: hidden;
        }

        .wisdom::before {
            content: '';
            position: absolute;
            inset: 0;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C8A456' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        }

        .wisdom .section-subtitle { color: var(--gold-light); }
        .wisdom .section-title { color: white; }
        .wisdom .section-desc { color: rgba(255, 255, 255, 0.7); }

        .wisdom-cards {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            position: relative;
            z-index: 1;
        }

        .wisdom-card {
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(200, 164, 86, 0.2);
            border-radius: 20px;
            padding: 2rem;
            backdrop-filter: blur(10px);
            transition: var(--transition);
        }

        .wisdom-card:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-4px);
            border-color: var(--gold);
        }

        .wisdom-card-number {
            font-family: 'Playfair Display', serif;
            font-size: 3rem;
            color: var(--gold);
            opacity: 0.3;
            line-height: 1;
            margin-bottom: 0.5rem;
        }

        .wisdom-card h3 { color: white; font-size: 1.2rem; margin-bottom: 0.75rem; }
        .wisdom-card p { color: rgba(255, 255, 255, 0.65); font-size: 0.92rem; line-height: 1.7; }

        /* Testimonials */
        .testimonials { background: var(--warm-white); }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        .testimonial-card {
            background: white;
            border-radius: 20px;
            padding: 2rem;
            box-shadow: var(--shadow-soft);
            position: relative;
            transition: var(--transition);
        }

        .testimonial-card:hover { box-shadow: var(--shadow-medium); transform: translateY(-4px); }

        .testimonial-quote-mark {
            font-family: 'Playfair Display', serif;
            font-size: 4rem;
            color: var(--gold-light);
            line-height: 1;
            margin-bottom: -1rem;
        }

        .testimonial-text {
            color: var(--text-medium);
            font-size: 0.95rem;
            line-height: 1.8;
            font-style: italic;
            margin-bottom: 1.5rem;
        }

        .testimonial-author { display: flex; align-items: center; gap: 0.75rem; }

        .testimonial-avatar {
            width: 44px; height: 44px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--gold-light), var(--gold));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
            color: white;
            font-weight: 600;
            font-family: 'Playfair Display', serif;
        }

        .testimonial-name { font-weight: 600; font-size: 0.9rem; color: var(--text-dark); }
        .testimonial-role { font-size: 0.8rem; color: var(--text-light); }
        .testimonial-stars { color: var(--gold); font-size: 0.85rem; letter-spacing: 2px; margin-bottom: 0.5rem; }

        /* Advice */
        .advice { background: var(--cream); }

        .advice-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        .advice-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--shadow-soft);
            transition: var(--transition);
        }

        .advice-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-medium); }

        .advice-card-image {
            height: 200px;
            background: linear-gradient(135deg, #F5E6D0, #E8D5A3);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
        }

        .advice-card-content { padding: 1.5rem; }

        .advice-card-tag {
            display: inline-block;
            background: rgba(200, 164, 86, 0.12);
            color: var(--sandalwood);
            padding: 0.25rem 0.75rem;
            border-radius: 50px;
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 0.75rem;
        }

        .advice-card h3 { font-size: 1.15rem; margin-bottom: 0.5rem; }
        .advice-card p { color: var(--text-light); font-size: 0.9rem; line-height: 1.6; }

        .advice-card-link {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--gold);
            font-weight: 600;
            font-size: 0.9rem;
            text-decoration: none;
            margin-top: 1rem;
            transition: var(--transition);
        }

        .advice-card-link:hover { color: var(--ochre); gap: 0.75rem; }

        /* CTA */
        .cta {
            background: linear-gradient(135deg, var(--gold) 0%, var(--ochre) 100%);
            text-align: center;
            padding: 5rem 2rem;
            position: relative;
            overflow: hidden;
        }

        .cta::before {
            content: '';
            position: absolute;
            inset: 0;
            background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M50 0 L60 40 L100 50 L60 60 L50 100 L40 60 L0 50 L40 40 Z' fill='%23ffffff' fill-opacity='0.05'/%3E%3C/svg%3E");
            background-size: 100px;
        }

        .cta-content { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }

        .cta h2 { color: white; font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 1rem; }

        .cta p { color: rgba(255, 255, 255, 0.85); font-size: 1.1rem; margin-bottom: 2rem; line-height: 1.7; }

        .btn-white {
            background: white;
            color: var(--gold);
            padding: 1rem 2.5rem;
            font-size: 1rem;
            font-weight: 700;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
        }

        .btn-white:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2); }

        /* Contact */
        .contact { background: var(--warm-white); }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
        }

        .contact-info h3 { font-size: 1.5rem; margin-bottom: 1rem; }
        .contact-info > p { color: var(--text-medium); margin-bottom: 2rem; font-size: 1rem; }

        .contact-methods { display: flex; flex-direction: column; gap: 1.2rem; }

        .contact-method {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 1rem 1.5rem;
            background: var(--cream);
            border-radius: 12px;
            text-decoration: none;
            color: var(--text-dark);
            transition: var(--transition);
        }

        .contact-method:hover { background: white; box-shadow: var(--shadow-soft); transform: translateX(4px); }

        .contact-method-icon {
            width: 44px; height: 44px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            flex-shrink: 0;
        }
		.contact-method-icon img {
			width: 100%;
			height: 100%;
			object-fit: contain;
		}

        .contact-method-icon.whatsapp { background: rgba(37, 211, 102, 0.12); }
        .contact-method-icon.telegram { background: rgba(0, 136, 204, 0.12); }
        .contact-method-icon.email { background: rgba(200, 164, 86, 0.15); }

        .contact-method-text h4 { font-size: 0.95rem; font-family: 'Inter', sans-serif; font-weight: 600; }
        .contact-method-text p { font-size: 0.85rem; color: var(--text-light); }

        .contact-form {
            background: white;
            border-radius: 20px;
            padding: 2.5rem;
            box-shadow: var(--shadow-medium);
        }

        .contact-form h3 { font-size: 1.3rem; margin-bottom: 1.5rem; }

        .form-group { margin-bottom: 1.2rem; }

        .form-group label {
            display: block;
            font-size: 0.85rem;
            font-weight: 500;
            color: var(--text-medium);
            margin-bottom: 0.4rem;
        }

        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 0.8rem 1rem;
            border: 2px solid rgba(200, 164, 86, 0.2);
            border-radius: 10px;
            font-family: 'Inter', sans-serif;
            font-size: 0.95rem;
            color: var(--text-dark);
            background: var(--cream);
            transition: var(--transition);
            outline: none;
        }

        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            border-color: var(--gold);
            background: white;
            box-shadow: 0 0 0 4px rgba(200, 164, 86, 0.1);
        }

        .form-group textarea { resize: vertical; min-height: 120px; }
        .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

        .form-submit {
            width: 100%;
            padding: 1rem;
            background: var(--gold);
            color: white;
            border: none;
            border-radius: 10px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            font-family: 'Inter', sans-serif;
        }

        .form-submit:hover {
            background: var(--ochre);
            transform: translateY(-2px);
            box-shadow: 0 4px 16px rgba(200, 164, 86, 0.4);
        }

        /* Footer */
        .footer {
            background: var(--deep-brown);
            color: rgba(255, 255, 255, 0.7);
            padding: 4rem 2rem 2rem;
        }

        .footer-inner { max-width: 1200px; margin: 0 auto; }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .footer-brand h3 { color: white; font-size: 1.4rem; margin-bottom: 1rem; }
        .footer-brand p { font-size: 0.9rem; line-height: 1.7; margin-bottom: 1.5rem; }

        .footer-social { display: flex; gap: 0.75rem; }

        .footer-social a {
            width: 40px; height: 40px;
            border-radius: 10px;
            background: rgba(255, 255, 255, 0.08);
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            font-size: 1.1rem;
            transition: var(--transition);
        }

        .footer-social a:hover { background: var(--gold); transform: translateY(-2px); }

        .footer-col h4 {
            color: white;
            font-size: 0.95rem;
            font-family: 'Inter', sans-serif;
            font-weight: 600;
            margin-bottom: 1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .footer-col ul { list-style: none; }
        .footer-col ul li { margin-bottom: 0.6rem; }

        .footer-col ul li a {
            color: rgba(255, 255, 255, 0.6);
            text-decoration: none;
            font-size: 0.9rem;
            transition: var(--transition);
        }

        .footer-col ul li a:hover { color: var(--gold-light); }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            padding-top: 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.85rem;
        }

        /* Floating buttons */
        .floating-contact {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            z-index: 999;
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }

        .floating-btn {
            width: 56px; height: 56px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            font-size: 1.5rem;
            color: white;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
            transition: var(--transition);
            position: relative;
        }
		.floating-btn img {
			width: 100%;  /* This gives the icon some breathing room */
			height: 100%;
			object-fit: contain;
			display: block;
		}
	
        .floating-btn:hover { transform: scale(1.1); }
 /*       .floating-btn.whatsapp { background: var(--whatsapp); }
        .floating-btn.telegram { background: var(--telegram); } */

        .floating-btn .tooltip {
            position: absolute;
            right: 70px;
            background: white;
            color: var(--text-dark);
            padding: 0.4rem 0.8rem;
            border-radius: 8px;
            font-size: 0.8rem;
            font-weight: 500;
            white-space: nowrap;
            box-shadow: var(--shadow-soft);
            opacity: 0;
            pointer-events: none;
            transition: var(--transition);
        }

        .floating-btn:hover .tooltip { opacity: 1; }
        .floating-btn.whatsapp:hover { box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4); }
        .floating-btn.telegram:hover { box-shadow: 0 6px 20px rgba(0, 136, 204, 0.4); }

        .scroll-top {
            position: fixed;
            bottom: 2rem; left: 2rem;
            width: 44px; height: 44px;
            border-radius: 50%;
            background: var(--gold);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
            box-shadow: var(--shadow-soft);
            z-index: 999;
            border: none;
            font-size: 1.2rem;
        }

        .scroll-top.visible { opacity: 1; visibility: visible; }
        .scroll-top:hover { transform: translateY(-3px); background: var(--ochre); }

        /* Animations */
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes fadeInRight {
            from { opacity: 0; transform: translateX(30px); }
            to { opacity: 1; transform: translateX(0); }
        }

        @keyframes float {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(5deg); }
        }

		@keyframes mwLogoGlow {
			0%, 100% { transform: scale(0.85); opacity: 0.45; }
			50%      { transform: scale(1.22); opacity: 1;    }
		}
        .reveal {
            opacity: 0;
            transform: translateY(18px);
/*            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1); */
			transition: opacity 0.45s ease-out, transform 0.45s ease-out;
        }

        .reveal.visible { opacity: 1; transform: translateY(0); }

        /* Dhamma Quote */
        .dhamma-banner {
            background: var(--cream);
            padding: 3rem 2rem;
            text-align: center;
            border-top: 1px solid rgba(200, 164, 86, 0.15);
            border-bottom: 1px solid rgba(200, 164, 86, 0.15);
        }

        .dhamma-quote {
            max-width: 700px;
            margin: 0 auto;
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.4rem;
            font-style: italic;
            color: var(--text-medium);
            line-height: 1.6;
        }

        .dhamma-source {
            margin-top: 1rem;
            font-family: 'Inter', sans-serif;
            font-style: normal;
            font-size: 0.85rem;
            color: var(--gold);
            font-weight: 500;
        }

        /* Process */
        .process { background: var(--warm-white); }

        .process-timeline {
            display: flex;
            justify-content: space-between;
            position: relative;
            max-width: 900px;
            margin: 0 auto;
        }

        .process-timeline::before {
            content: '';
            position: absolute;
            top: 30px;
            left: 60px;
            right: 60px;
            height: 2px;
            background: var(--gold-light);
        }

        .process-step { text-align: center; position: relative; flex: 1; }

        .process-step-number {
            width: 60px; height: 60px;
            border-radius: 50%;
            background: var(--gold);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Playfair Display', serif;
            font-size: 1.3rem;
            font-weight: 700;
            margin: 0 auto 1rem;
            position: relative;
            z-index: 1;
        }

        .process-step h4 { font-size: 1.05rem; margin-bottom: 0.5rem; }
        .process-step p { font-size: 0.85rem; color: var(--text-light); max-width: 180px; margin: 0 auto; }

        /* Responsive */
        @media (max-width: 1024px) {
            .hero-content { grid-template-columns: 1fr; text-align: center; padding-top: 7rem; }
            .hero-desc { margin: 0 auto 2rem; }
            .hero-buttons { justify-content: center; }
            .hero-stats { justify-content: center; }
            .hero-visual { order: -1; }
			.hero-logo-container { width: 480px; height: 480px; }
			.hero .shape-1 { display: none; }

            .about-grid { grid-template-columns: 1fr; gap: 3rem; }
            .services-grid { grid-template-columns: repeat(2, 1fr); }
            .wisdom-cards { grid-template-columns: repeat(2, 1fr); }
            .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
            .advice-grid { grid-template-columns: repeat(2, 1fr); }
            .contact-grid { grid-template-columns: 1fr; }
            .footer-grid { grid-template-columns: 1fr 1fr; }
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
                position: absolute;
                top: 100%; left: 0; right: 0;
                background: white;
                flex-direction: column;
                padding: 2rem;
                box-shadow: var(--shadow-medium);
                gap: 1.5rem;
            }

            .nav-links.open { display: flex; }
            .mobile-toggle { display: flex; }

            .services-grid,
            .wisdom-cards,
            .testimonials-grid,
            .advice-grid {
                grid-template-columns: 1fr;
            }

			.hero-stats {
				flex-direction: row;
				flex-wrap: wrap;
				gap: 0.75rem 1rem;
				justify-content: center;
				margin-top: 2rem;
				padding-top: 1.5rem;
			}
			.hero-stat { flex: 0 1 auto; text-align: center; }
			.hero-stat h4 {
				font-size: 0.95rem;
				white-space: nowrap;
			}
			.hero-stat p {
				font-size: 0.65rem;
				min-width: 0;
				letter-spacing: 0.5px;
			}
			.hero-logo-container { width: min(320px, 75vw); height: min(320px, 75vw); }
			
            .about-values { grid-template-columns: 1fr; }
            .form-row { grid-template-columns: 1fr; }
            .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
            .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }

            .section { padding: 4rem 1.5rem; }

            .process-timeline {
                flex-direction: column;
                gap: 2rem;
            }

            .process-timeline::before {
                top: 0; bottom: 0;
                left: 30px; right: auto;
                width: 2px; height: auto;
            }

            .process-step {
                text-align: left;
                display: flex;
                gap: 1.5rem;
                align-items: flex-start;
            }

            .process-step-number { flex-shrink: 0; margin: 0; }
            .process-step p { max-width: none; }
        }
	  /* Container for the tooltip */
	  .tooltip-container {
		position: relative;
		display: inline-block;
		cursor: help;
		border-bottom: 1px dotted #555;
	  }

	  /* Style for the indicator icon */
	  .info-icon {
		font-size: 0.5em;
		color: #0066cc;
		margin-left: 2px;
		vertical-align: super;
	  }

	  /* Hidden tooltip box */
	  .tooltip-box {
		visibility: hidden;
		width: 300px;
		background-color: #333;
		color: #fff;
		text-align: center;
		text-transform: none;
		border-radius: 5px;
		padding: 8px;
		position: absolute;
		z-index: 1;
		bottom: 125%; /* Position above the text */
		left: 50%;
		transform: translateX(-50%);
		opacity: 0;
		transition: opacity 0.3s;
		font-size: 0.9em;
		line-height: 1.4;
	  }

	  /* Tooltip arrow pointer */
	  .tooltip-box::after {
		content: "";
		position: absolute;
		top: 100%;
		left: 50%;
		margin-left: -5px;
		border-width: 5px;
		border-style: solid;
		border-color: #333 transparent transparent transparent;
	  }

	  /* Show tooltip on hover */
	  .tooltip-container:hover .tooltip-box {
		visibility: visible;
		opacity: 1;
	  }
	/* Navigation container */
	.nav-tooltip-container {
	  position: relative;
	  display: inline-block;
	}

	/* Hidden navigation tooltip box */
	.nav-tooltip-box {
	  visibility: hidden;
	  width: 300px;
	  background-color: #333;
	  color: #fff;
	  text-align: center;
	  text-transform: none;
	  border-radius: 5px;
	  padding: 8px;
	  position: absolute;
	  z-index: 100;
	  top: 130%; /* Positions the box BELOW the menu item */
	  left: 50%;
	  transform: translateX(-50%);
	  opacity: 0;
	  transition: opacity 0.3s;
	  font-size: 0.85em;
	  line-height: 1.4;
	}

	/* Tooltip arrow pointer facing UP */
	.nav-tooltip-box::after {
	  content: "";
	  position: absolute;
	  bottom: 100%; /* Positions arrow at the top of the box */
	  left: 50%;
	  margin-left: -5px;
	  border-width: 5px;
	  border-style: solid;
	  border-color: transparent transparent #333 transparent; /* Arrow points up */
	}

	/* Show tooltip on hover */
	.nav-tooltip-container:hover .nav-tooltip-box {
	  visibility: visible;
	  opacity: 1;
	}
	<!-- ===================== FAQ CSS ===================== -->
	/* FAQ CSS */
	
    .faq-section {
        background: var(--cream);
        padding: 6rem 2rem;
    }

    .faq-inner {
        max-width: 820px;
        margin: 0 auto;
    }

    .faq-header {
        text-align: center;
        margin-bottom: 3.5rem;
    }

    .faq-header .section-subtitle {
        display: block;
        margin-bottom: 0.5rem;
    }

    .faq-header h2 {
        font-size: clamp(1.8rem, 3vw, 2.5rem);
    }

    .faq-intro {
        max-width: 620px;
        margin: 1.2rem auto 0;
        color: var(--text-medium);
        font-size: 1.02rem;
        line-height: 1.7;
    }

    .faq-list {
        display: flex;
        flex-direction: column;
        gap: 0.9rem;
    }

    .faq-item {
        background: var(--warm-white);
        border: 1px solid rgba(200, 164, 86, 0.18);
        border-radius: 14px;
        overflow: hidden;
        transition: var(--transition);
    }

    .faq-item.open {
        border-color: var(--gold-light);
        box-shadow: var(--shadow-soft);
    }

    .faq-question {
        width: 100%;
        text-align: left;
        background: none;
        border: none;
        cursor: pointer;
        padding: 1.3rem 1.5rem;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
        font-family: 'Playfair Display', serif;
        font-size: 1.08rem;
        font-weight: 500;
        color: var(--text-dark);
        line-height: 1.4;
        transition: var(--transition);
    }

    .faq-question:hover { color: var(--sandalwood); }

    .faq-icon {
        flex-shrink: 0;
        width: 26px; height: 26px;
        position: relative;
        transition: transform 0.3s ease;
    }

    .faq-icon::before,
    .faq-icon::after {
        content: '';
        position: absolute;
        background: var(--gold);
        border-radius: 2px;
        transition: var(--transition);
    }

    .faq-icon::before {
        top: 50%; left: 4px; right: 4px; height: 2px;
        transform: translateY(-50%);
    }

    .faq-icon::after {
        left: 50%; top: 4px; bottom: 4px; width: 2px;
        transform: translateX(-50%);
    }

    .faq-item.open .faq-icon::after {
        transform: translateX(-50%) scaleY(0);
        opacity: 0;
    }

    .faq-answer {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .faq-answer-inner {
        padding: 0 1.5rem 1.4rem;
        color: var(--text-medium);
        font-size: 0.98rem;
        line-height: 1.75;
    }

    .faq-answer-inner p { margin-bottom: 0.9rem; }
    .faq-answer-inner p:last-child { margin-bottom: 0; }

    .faq-cta {
        text-align: center;
        margin-top: 3rem;
        color: var(--text-medium);
        font-size: 1rem;
    }

    .faq-cta a {
        color: var(--sandalwood);
        font-weight: 600;
        text-decoration: none;
        border-bottom: 1px solid var(--gold-light);
        transition: var(--transition);
    }

    .faq-cta a:hover { color: var(--gold); border-color: var(--gold); }

    @media (max-width: 600px) {
        .faq-section { padding: 4rem 1.2rem; }
        .faq-question { font-size: 1rem; padding: 1.1rem 1.2rem; }
        .faq-answer-inner { padding: 0 1.2rem 1.2rem; }
    }
	.hero, .dhamma-banner, .faq-section, .cta, .footer, .section { overflow-x: clip; }
	
	/* === Make Highlight a Global Style  === */
	.highlight { color: var(--gold); font-style: italic; }
	
	/* === Mobile side-by-side photo pair === */
	.about-photos-mobile { display: none; }

	@media (max-width: 768px) {
	.nav, .nav.scrolled { padding-left: 1rem; padding-right: 0.5rem; }
	.tooltip-box { font-size: 0.75em; border-radius: 4px; padding: 4px;}
	.floating-btn { width: 38px; height: 38px; }
	.floating-contact { right: 0.25rem; gap: 0.5rem}
	.scroll-top { width: 34px; height: 34px; }
	  
	  /* hide the tall vertical stack on phones */
	  .about-image-wrapper { display: none; }

	  .about-photos-mobile {
		display: flex;
		align-items: center;
		gap: 0.6rem;
		margin: 1.25rem 0 1.75rem;
	  }
	  .about-photos-mobile .about-photo-card {
		flex: 1;
		width: auto;
		height: 180px;
	  }
	  .about-photos-mobile .about-photo-label {
		top: 8px; left: 8px;
		font-size: 0.85rem;
		padding: 0.3rem 0.7rem;
	  }
	  .about-photos-mobile .about-photo-card img { object-position: center center; }
	  .about-arrow-h { display: flex; align-items: center; flex: 0 0 auto; }
	  .about-arrow-h-line {
		width: 22px; height: 2px;
		background: linear-gradient(to right, var(--gold-light), var(--gold));
		border-radius: 2px;
	  }
	  .about-arrow-h-head {
		width: 0; height: 0;
		border-top: 6px solid transparent;
		border-bottom: 6px solid transparent;
		border-left: 9px solid var(--gold);
	  }
	}
/*	@media (max-width: 480px) {
		.nowrap { white-space: normal; }
	} */
	.hero-text, .hero-rotating-wrapper  { min-width: 0; max-width: 100%; }
	.hero-title, .hero-rotating-line { font-size: clamp(1.4rem, 3.6vw, 2.7rem);  line-height: 1.25; }
	
	@media (min-width: 769px) {
		.hero-logo-container {
		width: clamp(420px, 34vw, 680px);
		height: auto;
		aspect-ratio: 1 / 1;
		}
	}
	/* === Stable-height dhamma carousel (no layout shift) === */
	#dhammaCarousel { display: grid; align-items: center; }
	#dhammaCarousel .dhamma-slide,
	#dhammaCarousel .dhamma-slide.active {
	grid-area: 1 / 1;
	position: static;
	}
	.footer-legal {
		margin: 0.4rem 0;
		font-size: 0.8rem;
	}

	.footer-legal a {
		color: rgba(255, 255, 255, 0.5);
		text-decoration: none;
		transition: color 0.2s ease;
	}

	.footer-legal a:hover { color: var(--gold-light); }

	.footer-legal span {
		color: rgba(255, 255, 255, 0.25);
		margin: 0 0.4rem;
	}