	* {
		margin: 0;
		padding: 0;
		-webkit-box-sizing: border-box;
		box-sizing: border-box;
	}
	html, body, .t-body, .t-records, .t-rec, .t-container {
		background: #171411 !important;
		background-color: #171411 !important;
	}
	.t-rec, .t-container {
		max-width: none !important;
		padding: 0 !important;
	}
	body {
		font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
		background: #171411 !important;
		background-color: #171411 !important;
		color: #ebe7e3;
		overflow-x: clip;
		-webkit-overflow-scrolling: touch;
		scroll-behavior: smooth;
	}
	.font-serif {
		font-family: inherit;
	}
	.nav {
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		z-index: 50;
		padding: 12px 16px;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		background: rgba(23, 20, 17, 0.7);
		-webkit-backdrop-filter: blur(12px);
		backdrop-filter: blur(12px);
		border-bottom: 1px solid rgba(212, 175, 55, 0.1);
	}
	@media (min-width: 768px) {
		.nav {
		padding: 16px 48px;
		}
	}
	.nav-logo {
		display: flex;
		align-items: center;
		gap: 12px;
		text-decoration: none;
	}
	.nav-logo-circle {
		width: 32px;
		height: 32px;
		border: 1px solid rgba(212, 175, 55, 0.5);
		border-radius: 50%;
		display: flex;
		align-items: center;
		justify-content: center;
		transition: transform 0.8s ease;
	}
	@media (min-width: 768px) {
		.nav-logo-circle {
		width: 40px;
		height: 40px;
		}
	}
	.nav-logo:hover .nav-logo-circle {
		transform: rotate(180deg);
	}
	.nav-logo-dot {
		width: 6px;
		height: 6px;
		background: #d4af37;
		border-radius: 50%;
	}
	.nav-logo-text {
		font-family: 'Playfair Display', serif;
		font-size: 18px;
		letter-spacing: 0.1em;
		text-transform: uppercase;
		color: #d4af37;
		opacity: 0;
		transition: opacity 0.3s;
		display: none;
	}
	@media (min-width: 768px) {
		.nav-logo-text {
		display: block;
		}
	}
	.nav-logo:hover .nav-logo-text {
		opacity: 1;
	}
	.nav-links {
		display: none;
		align-items: center;
		gap: 24px;
	}
	@media (min-width: 1024px) {
		.nav-links {
		display: flex;
		}
	}
	.nav-link {
		font-size: 12px;
		letter-spacing: 0.1em;
		text-transform: uppercase;
		color: rgba(232, 228, 224, 0.95);
		text-decoration: none;
		transition: color 0.3s;
		background: none;
		border: none;
		cursor: pointer;
	}
	.nav-link:hover {
		color: #d4af37;
	}
	@media (min-width: 769px) {
		.nav-link {
		position: relative;
		transition: color 0.3s, text-shadow 0.3s;
		}
		.nav-link::after {
		content: '';
		position: absolute;
		bottom: -4px;
		left: 0;
		width: 0;
		height: 1px;
		background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.8), transparent);
		transition: width 0.4s ease;
		}
		.nav-link:hover::after {
		width: 100%;
		}
		.nav-link:hover {
		text-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
		}
	}
	
	/* Burger Menu for Mobile */
	.burger-btn {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		width: 32px;
		height: 32px;
		background: none;
		border: 1px solid rgba(212, 175, 55, 0.4);
		border-radius: 4px;
		cursor: pointer;
		padding: 6px;
		gap: 4px;
		transition: all 0.3s ease;
	}
	.burger-btn:hover {
		border-color: #d4af37;
	}
	.burger-line {
		width: 16px;
		height: 2px;
		background: #d4af37;
		transition: all 0.3s ease;
	}
	.burger-btn.active .burger-line:nth-child(1) {
		transform: rotate(45deg) translate(4px, 4px);
	}
	.burger-btn.active .burger-line:nth-child(2) {
		opacity: 0;
	}
	.burger-btn.active .burger-line:nth-child(3) {
		transform: rotate(-45deg) translate(4px, -4px);
	}
	@media (min-width: 1024px) {
		.burger-btn {
		display: none;
		}
	}
	
	/* Mobile Menu Overlay */
	.mobile-menu {
		position: fixed;
		top: 56px;
		left: 0;
		right: 0;
		bottom: 0;
		background: rgba(23, 20, 17, 0.98);
		backdrop-filter: blur(20px);
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: flex-start;
		padding-top: 60px;
		gap: 24px;
		z-index: 45;
		opacity: 0;
		visibility: hidden;
		transition: all 0.3s ease;
	}
	.mobile-menu.active {
		opacity: 1;
		visibility: visible;
	}
	.mobile-menu-link {
		font-family: 'Playfair Display', serif;
		font-size: 1.25rem;
		letter-spacing: 0.1em;
		text-transform: uppercase;
		color: rgba(232, 228, 224, 0.8);
		text-decoration: none;
		padding: 12px 24px;
		border: 1px solid transparent;
		transition: all 0.3s ease;
	}
	.mobile-menu-link:hover {
		color: #d4af37;
		border-color: rgba(212, 175, 55, 0.3);
	}
	section {
		scroll-margin-top: 0px;
		min-height: 100vh;
		display: flex;
		align-items: center;
		justify-content: center;
		padding: 30px 24px;
		position: relative;
	}
	/* === SHIMMERING & GLOW EFFECTS === */
	@keyframes text-shimmer {
		0%, 100% { 
		text-shadow: 0 0 20px rgba(212, 175, 55, 0.3), 0 0 40px rgba(212, 175, 55, 0.15);
		}
		25% {
		text-shadow: 0 0 25px rgba(212, 175, 55, 0.5), 0 0 50px rgba(212, 175, 55, 0.25);
		}
		50% { 
		text-shadow: 0 0 35px rgba(212, 175, 55, 0.7), 0 0 70px rgba(212, 175, 55, 0.4), 0 0 100px rgba(212, 175, 55, 0.2);
		}
		75% {
		text-shadow: 0 0 25px rgba(212, 175, 55, 0.5), 0 0 50px rgba(212, 175, 55, 0.25);
		}
	}
	@keyframes border-shimmer {
		0%, 100% { 
		border-color: rgba(212, 175, 55, 0.3);
		box-shadow: 0 0 15px rgba(212, 175, 55, 0.15);
		}
		25% {
		border-color: rgba(212, 175, 55, 0.4);
		box-shadow: 0 0 20px rgba(212, 175, 55, 0.25);
		}
		50% { 
		border-color: rgba(212, 175, 55, 0.55);
		box-shadow: 0 0 28px rgba(212, 175, 55, 0.35);
		}
		75% {
		border-color: rgba(212, 175, 55, 0.4);
		box-shadow: 0 0 20px rgba(212, 175, 55, 0.25);
		}
	}
	@keyframes glow-pulse-intense {
		0%, 100% { 
		filter: blur(100px);
		opacity: 0.3;
		}
		50% { 
		filter: blur(150px);
		opacity: 0.6;
		}
	}
	@keyframes sparkle {
		0% { opacity: 0; transform: scale(0.3); }
		15% { opacity: 0.4; transform: scale(0.6); }
		35% { opacity: 0.8; transform: scale(1); }
		50% { opacity: 1; transform: scale(1.1); }
		65% { opacity: 0.8; transform: scale(1); }
		85% { opacity: 0.4; transform: scale(0.6); }
		100% { opacity: 0; transform: scale(0.3); }
	}
	.shimmer-text {
		animation: text-shimmer 8s cubic-bezier(0.25, 0.1, 0.25, 1) infinite;
	}
	.shimmer-border {
		animation: border-shimmer 10s cubic-bezier(0.25, 0.1, 0.25, 1) infinite;
	}
	/* Global sparkle particles - MORE intense */
	.sparkle-container {
		position: fixed;
		inset: 0;
		pointer-events: none;
		z-index: 999;
		overflow: hidden;
	}
	.sparkle {
		position: absolute;
		width: 5px;
		height: 5px;
		background: #d4af37;
		border-radius: 50%;
		box-shadow: 0 0 15px rgba(212, 175, 55, 1), 0 0 30px rgba(212, 175, 55, 0.7), 0 0 45px rgba(212, 175, 55, 0.4);
		animation: sparkle 6s cubic-bezier(0.25, 0.1, 0.25, 1) infinite;
	}
	.sparkle-lg {
		width: 8px;
		height: 8px;
		box-shadow: 0 0 20px rgba(212, 175, 55, 1), 0 0 40px rgba(212, 175, 55, 0.8), 0 0 60px rgba(212, 175, 55, 0.5);
	}
	.sparkle:nth-child(1) { top: 8%; left: 5%; animation-delay: 0s; }
	.sparkle:nth-child(2) { top: 15%; left: 92%; animation-delay: 0.4s; }
	.sparkle:nth-child(3) { top: 25%; left: 12%; animation-delay: 0.8s; }
	.sparkle:nth-child(4) { top: 35%; left: 88%; animation-delay: 1.2s; }
	.sparkle:nth-child(5) { top: 45%; left: 6%; animation-delay: 1.6s; }
	.sparkle:nth-child(6) { top: 55%; left: 94%; animation-delay: 2s; }
	.sparkle:nth-child(7) { top: 65%; left: 8%; animation-delay: 0.2s; }
	.sparkle:nth-child(8) { top: 75%; left: 90%; animation-delay: 0.6s; }
	.sparkle:nth-child(9) { top: 85%; left: 15%; animation-delay: 1s; }
	.sparkle:nth-child(10) { top: 92%; left: 85%; animation-delay: 1.4s; }
	.sparkle:nth-child(11) { top: 12%; left: 50%; animation-delay: 1.8s; }
	.sparkle:nth-child(12) { top: 40%; left: 3%; animation-delay: 2.2s; }
	.sparkle:nth-child(13) { top: 60%; left: 97%; animation-delay: 0.3s; }
	.sparkle:nth-child(14) { top: 80%; left: 4%; animation-delay: 0.7s; }
	.sparkle:nth-child(15) { top: 30%; left: 96%; animation-delay: 1.1s; }
	.sparkle:nth-child(16) { top: 70%; left: 15%; animation-delay: 1.5s; }
	
	/* Floating dust particles */
	@keyframes float-dust {
		0% { transform: translateY(0) translateX(0); opacity: 0.2; }
		15% { transform: translateY(-8px) translateX(5px); opacity: 0.35; }
		30% { transform: translateY(-18px) translateX(8px); opacity: 0.5; }
		45% { transform: translateY(-12px) translateX(-3px); opacity: 0.4; }
		60% { transform: translateY(-25px) translateX(6px); opacity: 0.45; }
		75% { transform: translateY(-15px) translateX(-5px); opacity: 0.35; }
		90% { transform: translateY(-5px) translateX(2px); opacity: 0.25; }
		100% { transform: translateY(0) translateX(0); opacity: 0.2; }
	}
	.dust-particle {
		position: absolute;
		width: 2px;
		height: 2px;
		background: rgba(212, 175, 55, 0.6);
		border-radius: 50%;
		animation: float-dust 16s cubic-bezier(0.25, 0.1, 0.25, 1) infinite;
	}
	@keyframes breathe {
		0%, 100% { transform: scale(1); opacity: 0.3; }
		50% { transform: scale(1.05); opacity: 0.5; }
	}
	@keyframes breathe-alt {
		0%, 100% { transform: scale(1.05); opacity: 0.2; }
		50% { transform: scale(1); opacity: 0.4; }
	}
	
	/* === ENHANCED DESKTOP SHIMMER EFFECTS === */
	@keyframes magic-glow-wave {
		0%, 100% { 
		opacity: 0.1;
		transform: translateX(-100%) skewX(-15deg);
		}
		50% { 
		opacity: 0.4;
		transform: translateX(100%) skewX(-15deg);
		}
	}
	
	@keyframes golden-ray {
		0% { opacity: 0; transform: translateY(100%) rotate(45deg); }
		20% { opacity: 0.3; }
		50% { opacity: 0.6; }
		80% { opacity: 0.3; }
		100% { opacity: 0; transform: translateY(-100%) rotate(45deg); }
	}
	
	@keyframes aura-pulse {
		0%, 100% { 
		box-shadow: 
			0 0 60px rgba(212, 175, 55, 0.1),
			0 0 120px rgba(212, 175, 55, 0.05),
			inset 0 0 60px rgba(212, 175, 55, 0.02);
		}
		50% { 
		box-shadow: 
			0 0 100px rgba(212, 175, 55, 0.2),
			0 0 200px rgba(212, 175, 55, 0.1),
			inset 0 0 100px rgba(212, 175, 55, 0.05);
		}
	}
	
	@keyframes star-twinkle {
		0%, 100% { opacity: 0.2; transform: scale(0.8); }
		25% { opacity: 1; transform: scale(1.2); }
		50% { opacity: 0.3; transform: scale(0.9); }
		75% { opacity: 0.9; transform: scale(1.1); }
	}
	
	@keyframes light-sweep {
		0% { 
		background-position: -200% center;
		opacity: 0;
		}
		50% { opacity: 1; }
		100% { 
		background-position: 200% center;
		opacity: 0;
		}
	}
	
	@keyframes glow-border-rotate {
		0% { 
		background: linear-gradient(0deg, transparent, rgba(212, 175, 55, 0.5), transparent);
		}
		25% { 
		background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.5), transparent);
		}
		50% { 
		background: linear-gradient(180deg, transparent, rgba(212, 175, 55, 0.5), transparent);
		}
		75% { 
		background: linear-gradient(270deg, transparent, rgba(212, 175, 55, 0.5), transparent);
		}
		100% { 
		background: linear-gradient(360deg, transparent, rgba(212, 175, 55, 0.5), transparent);
		}
	}
	
	/* Desktop magic aura - unified across whole page */
	@media (min-width: 769px) {
		/* Unified page-wide glow overlay */
		.page-glow {
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		pointer-events: none;
		z-index: 0;
		background: 
			radial-gradient(ellipse 80% 50% at 20% 30%, rgba(212, 175, 55, 0.06) 0%, transparent 50%),
			radial-gradient(ellipse 60% 40% at 80% 70%, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
			radial-gradient(ellipse 100% 60% at 50% 100%, rgba(212, 175, 55, 0.04) 0%, transparent 40%);
		animation: page-glow-breathe 12s ease-in-out infinite;
		}
		
		@keyframes page-glow-breathe {
		0%, 100% { opacity: 0.6; }
		50% { opacity: 1; }
		}
		
		/* Golden light rays overlay */
		.golden-rays {
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		pointer-events: none;
		z-index: 1;
		overflow: hidden;
		}
		
		.golden-ray {
		position: absolute;
		width: 2px;
		height: 300px;
		background: linear-gradient(to bottom, 
			transparent, 
			rgba(212, 175, 55, 0.4), 
			rgba(212, 175, 55, 0.6),
			rgba(212, 175, 55, 0.4),
			transparent
		);
		animation: golden-ray 15s ease-in-out infinite;
		filter: blur(1px);
		}
		
		.golden-ray:nth-child(1) { left: 5%; animation-delay: 0s; }
		.golden-ray:nth-child(2) { left: 15%; animation-delay: 3s; }
		.golden-ray:nth-child(3) { left: 25%; animation-delay: 6s; }
		.golden-ray:nth-child(4) { left: 75%; animation-delay: 2s; }
		.golden-ray:nth-child(5) { left: 85%; animation-delay: 5s; }
		.golden-ray:nth-child(6) { left: 95%; animation-delay: 8s; }
		
		/* Twinkling stars */
		.star-field {
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		pointer-events: none;
		z-index: 0;
		}
		
		.star {
		position: absolute;
		width: 3px;
		height: 3px;
		background: #d4af37;
		border-radius: 50%;
		box-shadow: 0 0 10px rgba(212, 175, 55, 0.8), 0 0 20px rgba(212, 175, 55, 0.4);
		animation: star-twinkle 4s ease-in-out infinite;
		}
		
		.star:nth-child(1) { top: 10%; left: 20%; animation-delay: 0s; animation-duration: 3s; }
		.star:nth-child(2) { top: 20%; left: 80%; animation-delay: 0.5s; animation-duration: 4s; }
		.star:nth-child(3) { top: 30%; left: 10%; animation-delay: 1s; animation-duration: 3.5s; }
		.star:nth-child(4) { top: 40%; left: 90%; animation-delay: 1.5s; animation-duration: 4.5s; }
		.star:nth-child(5) { top: 50%; left: 30%; animation-delay: 2s; animation-duration: 3s; }
		.star:nth-child(6) { top: 60%; left: 70%; animation-delay: 0.3s; animation-duration: 5s; }
		.star:nth-child(7) { top: 70%; left: 15%; animation-delay: 0.8s; animation-duration: 4s; }
		.star:nth-child(8) { top: 80%; left: 85%; animation-delay: 1.3s; animation-duration: 3.5s; }
		.star:nth-child(9) { top: 15%; left: 50%; animation-delay: 1.8s; animation-duration: 4.5s; }
		.star:nth-child(10) { top: 90%; left: 40%; animation-delay: 2.3s; animation-duration: 3s; }
		.star:nth-child(11) { top: 25%; left: 60%; animation-delay: 0.7s; animation-duration: 5s; }
		.star:nth-child(12) { top: 75%; left: 25%; animation-delay: 1.2s; animation-duration: 4s; }
		
		/* Light sweep effect on titles - REMOVED to avoid visible box */
		
		/* Enhanced card glow on hover */
		.teaching-card::before {
		content: '';
		position: absolute;
		top: -2px;
		left: -2px;
		right: -2px;
		bottom: -2px;
		background: linear-gradient(45deg, 
			rgba(212, 175, 55, 0.3),
			rgba(212, 175, 55, 0.1),
			rgba(212, 175, 55, 0.3),
			rgba(212, 175, 55, 0.1)
		);
		background-size: 400% 400%;
		border-radius: 10px;
		z-index: -1;
		animation: glow-border-rotate 6s linear infinite;
		opacity: 0;
		transition: opacity 0.5s ease;
		}
		
		.teaching-card:hover::before {
		opacity: 1;
		}
		
		/* Floating magic orbs */
		.magic-orb {
		position: fixed;
		width: 150px;
		height: 150px;
		border-radius: 50%;
		background: radial-gradient(circle, 
			rgba(212, 175, 55, 0.15) 0%, 
			rgba(212, 175, 55, 0.05) 40%,
			transparent 70%
		);
		filter: blur(30px);
		pointer-events: none;
		z-index: 1;
		animation: float-dust 20s ease-in-out infinite;
		}
		
		.magic-orb:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
		.magic-orb:nth-child(2) { top: 40%; right: 5%; animation-delay: 5s; }
		.magic-orb:nth-child(3) { top: 70%; left: 5%; animation-delay: 10s; }
	}
	
	/* Hide desktop-only effects on mobile */
	@media (max-width: 768px) {
		.golden-rays,
		.star-field,
		.magic-orbs,
		.page-glow {
		display: none !important;
		}
	}
	@keyframes rotate-slow {
		from { transform: rotate(0deg); }
		to { transform: rotate(360deg); }
	}
	@keyframes rotate-reverse {
		from { transform: rotate(0deg); }
		to { transform: rotate(-360deg); }
	}
	@keyframes pulse-glow {
		0%, 100% { 
		box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
		transform: scale(1);
		}
		50% { 
		box-shadow: 0 0 40px rgba(212, 175, 55, 0.7);
		transform: scale(1.1);
		}
	}
	@keyframes fade-in-up {
		from {
		opacity: 0;
		transform: translateY(30px);
		}
		to {
		opacity: 1;
		transform: translateY(0);
		}
	}
	@keyframes pulse-opacity {
		0%, 100% { opacity: 0.4; }
		50% { opacity: 0.8; }
	}
	@keyframes wobble {
		0%, 100% { transform: translateY(0); }
		25% { transform: translateY(-3px); }
		75% { transform: translateY(3px); }
	}
	@keyframes circle-pulse {
		0%, 100% { opacity: 0.08; }
		50% { opacity: 0.12; }
	}
	@keyframes ring-pulse {
		0%, 100% { transform: scale(1); opacity: 0.4; }
		50% { transform: scale(1.2); opacity: 0; }
	}
	.fade-in {
		opacity: 0;
		transform: translateY(30px);
		transition: opacity 1s ease, transform 1s ease;
	}
	.fade-in.visible {
		opacity: 1;
		transform: translateY(0);
	}
	section {
		position: relative;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		min-height: 100vh;
		padding: 10px 24px;
		background: #171411;
		overflow: visible;
	}
	#hero {
		height: auto;
		min-height: 100vh;
		padding: 0;
		background: #171411;
		display: flex;
		align-items: center;
		justify-content: center;
	}
	@media (max-width: 768px) {
		#hero {
		padding: 0;
		min-height: auto;
		display: block;
		}
	}
	.hero-circle-outer {
		position: absolute;
		width: 50vh;
		height: 50vh;
		border-radius: 50%;
		border: 2px solid rgba(212, 175, 55, 0.3);
		animation: breathe 8s ease-in-out infinite, border-shimmer 6s ease-in-out infinite;
		box-shadow: 0 0 30px rgba(212, 175, 55, 0.15);
	}
	@media (min-width: 768px) {
		.hero-circle-outer {
		width: 70vh;
		height: 70vh;
		}
	}
	.hero-circle-inner {
		position: absolute;
		width: 35vh;
		height: 35vh;
		border-radius: 50%;
		border: 1px solid rgba(212, 175, 55, 0.2);
		animation: breathe-alt 10s ease-in-out infinite, border-shimmer 8s ease-in-out infinite 2s;
		box-shadow: 0 0 20px rgba(212, 175, 55, 0.1);
	}
	@media (min-width: 768px) {
		.hero-circle-inner {
		width: 50vh;
		height: 50vh;
		}
	}
	.hero-glow {
		position: absolute;
		width: 50vh;
		height: 50vh;
		background: rgba(212, 175, 55, 0.08);
		border-radius: 50%;
		filter: blur(120px);
		pointer-events: none;
		animation: glow-pulse-intense 5s ease-in-out infinite;
	}
	/* Old hero-content styles - kept for compatibility */
	.hero-content {
		display: none;
	}
	
	/* Hero Section overflow fix for Tilda */
	#hero {
		position: relative;
		overflow: visible;
	}
	
	/* Hero Particles */
	.hero-particle {
		position: absolute;
		width: 3px;
		height: 3px;
		background: rgba(212, 175, 55, 0.6);
		border-radius: 50%;
		left: var(--x);
		top: var(--y);
		z-index: 2;
		animation: hero-particle-float var(--dur) ease-in-out infinite;
		-webkit-animation: hero-particle-float var(--dur) ease-in-out infinite;
		animation-delay: var(--delay);
		-webkit-animation-delay: var(--delay);
		box-shadow: 0 0 8px rgba(212, 175, 55, 0.4);
		pointer-events: none;
	}
	@keyframes hero-particle-float {
		0%, 100% { transform: translateY(0) translateX(0); opacity: 0.3; }
		25% { transform: translateY(-25px) translateX(10px); opacity: 0.7; }
		50% { transform: translateY(-5px) translateX(-8px); opacity: 0.5; }
		75% { transform: translateY(-35px) translateX(5px); opacity: 0.8; }
	}
	
	/* Hero CTA Button */
	.hero-cta {
		display: inline-flex;
		align-items: center;
		gap: 8px;
		margin-top: 32px;
		padding: 12px 24px;
		background: transparent;
		border: 1px solid rgba(212, 175, 55, 0.5);
		border-radius: 999px;
		color: #d4af37;
		font-size: 14px;
		letter-spacing: 0.1em;
		text-transform: uppercase;
		text-decoration: none;
		cursor: pointer;
		transition: all 0.3s ease;
		animation: fade-in-up 1.5s ease-out 1.4s backwards;
	}
	.hero-cta:hover {
		background: rgba(212, 175, 55, 0.1);
		border-color: #d4af37;
		box-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
	}
	.hero-cta svg {
		animation: cta-bounce 4s cubic-bezier(0.25, 0.1, 0.25, 1) infinite;
	}
	@keyframes cta-bounce {
		0%, 100% { transform: translateY(0); }
		50% { transform: translateY(4px); }
	}
	
	/* Open Book Layout for Hero */
	.open-book-container {
		position: absolute;
		top: 55%;
		left: 50%;
		transform: translate(-50%, -50%);
		width: 90%;
		max-width: 900px;
		z-index: 5;
		perspective: 2000px;
	}
	@media (min-width: 1024px) {
		.open-book-container {
		max-width: 950px;
		width: 85%;
		}
	}
	@media (min-width: 1280px) {
		.open-book-container {
		max-width: 1000px;
		width: 80%;
		}
	}
	.open-book {
		display: flex;
		position: relative;
		width: 100%;
		aspect-ratio: 2 / 1.3;
		transform-style: preserve-3d;
	}
	/* === MOBILE HERO WITH CIRCLES === */
	.mobile-hero {
		display: none;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		text-align: center;
		padding: 100px 24px 60px;
		min-height: 100vh;
		position: relative;
		z-index: 10;
	}
	
	@media (max-width: 768px) {
		/* Hide book on mobile */
		.open-book-container {
		display: none !important;
		}
		/* Show mobile hero instead */
		.mobile-hero {
		display: flex !important;
		}
		/* Hide scroll indicator on mobile hero */
		.hero-scroll-indicator {
		display: none;
		}
	}
	
	/* Mobile Circles Container */
	.mobile-circles {
		position: relative;
		width: 280px;
		height: 280px;
		margin-bottom: 40px;
	}
	
	/* Outer glowing ring */
	.mobile-circle-outer {
		position: absolute;
		inset: 0;
		border-radius: 50%;
		border: 2px solid rgba(212, 175, 55, 0.6);
		box-shadow: 0 0 40px rgba(212, 175, 55, 0.4), 0 0 80px rgba(212, 175, 55, 0.2), inset 0 0 40px rgba(212, 175, 55, 0.1);
		animation: mobile-circle-pulse 8s cubic-bezier(0.25, 0.1, 0.25, 1) infinite;
	}
	
	/* Middle ring */
	.mobile-circle-middle {
		position: absolute;
		inset: 15%;
		border-radius: 50%;
		border: 1px solid rgba(212, 175, 55, 0.5);
		box-shadow: 0 0 25px rgba(212, 175, 55, 0.3), inset 0 0 25px rgba(212, 175, 55, 0.05);
		animation: mobile-circle-pulse 8s cubic-bezier(0.25, 0.1, 0.25, 1) infinite 1s;
	}
	
	/* Inner ring */
	.mobile-circle-inner {
		position: absolute;
		inset: 30%;
		border-radius: 50%;
		border: 1px solid rgba(212, 175, 55, 0.4);
		box-shadow: 0 0 20px rgba(212, 175, 55, 0.25);
		animation: mobile-circle-pulse 8s cubic-bezier(0.25, 0.1, 0.25, 1) infinite 2s;
	}
	
	/* Center core glow */
	.mobile-circle-core {
		position: absolute;
		inset: 38%;
		border-radius: 50%;
		background: radial-gradient(circle, rgba(212, 175, 55, 0.5) 0%, rgba(212, 175, 55, 0.2) 50%, transparent 70%);
		box-shadow: 0 0 50px rgba(212, 175, 55, 0.5), 0 0 100px rgba(212, 175, 55, 0.3);
		animation: mobile-core-glow 6s cubic-bezier(0.25, 0.1, 0.25, 1) infinite;
	}
	
	/* Center dot */
	.mobile-circle-dot {
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		width: 12px;
		height: 12px;
		background: #d4af37;
		border-radius: 50%;
		box-shadow: 0 0 20px rgba(212, 175, 55, 0.8), 0 0 40px rgba(212, 175, 55, 0.5);
		animation: mobile-dot-pulse 4s cubic-bezier(0.25, 0.1, 0.25, 1) infinite;
	}
	
	/* Orbiting dots */
	.mobile-orbit {
		position: absolute;
		inset: -5%;
		animation: mobile-rotate 25s linear infinite;
	}
	.mobile-orbit-dot {
		position: absolute;
		width: 6px;
		height: 6px;
		background: #d4af37;
		border-radius: 50%;
		box-shadow: 0 0 15px rgba(212, 175, 55, 0.7);
	}
	.mobile-orbit-dot-1 { top: 50%; left: 0; transform: translateY(-50%); }
	.mobile-orbit-dot-2 { top: 0; left: 50%; transform: translateX(-50%); }
	.mobile-orbit-dot-3 { top: 50%; right: 0; transform: translateY(-50%); }
	.mobile-orbit-dot-4 { bottom: 0; left: 50%; transform: translateX(-50%); }
	
	@keyframes mobile-circle-pulse {
		0%, 100% { 
		opacity: 0.7;
		transform: scale(1);
		box-shadow: 0 0 30px rgba(212, 175, 55, 0.3), inset 0 0 20px rgba(212, 175, 55, 0.05);
		}
		50% { 
		opacity: 1;
		transform: scale(1.02);
		box-shadow: 0 0 50px rgba(212, 175, 55, 0.5), 0 0 80px rgba(212, 175, 55, 0.3), inset 0 0 30px rgba(212, 175, 55, 0.1);
		}
	}
	
	@keyframes mobile-core-glow {
		0%, 100% { 
		opacity: 0.6;
		transform: scale(1);
		}
		50% { 
		opacity: 1;
		transform: scale(1.1);
		}
	}
	
	@keyframes mobile-dot-pulse {
		0%, 100% { 
		box-shadow: 0 0 15px rgba(212, 175, 55, 0.6), 0 0 30px rgba(212, 175, 55, 0.3);
		transform: translate(-50%, -50%) scale(1);
		}
		50% { 
		box-shadow: 0 0 25px rgba(212, 175, 55, 0.9), 0 0 50px rgba(212, 175, 55, 0.5);
		transform: translate(-50%, -50%) scale(1.2);
		}
	}
	
	@keyframes mobile-rotate {
		from { transform: rotate(0deg); }
		to { transform: rotate(360deg); }
	}
	
	/* Mobile Title */
	.mobile-hero-title {
		font-size: 2rem;
		color: #d4af37;
		letter-spacing: 0.15em;
		line-height: 1.3;
		margin-bottom: 24px;
		text-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
		animation: text-shimmer 8s cubic-bezier(0.25, 0.1, 0.25, 1) infinite;
	}
	
	/* Mobile Quote */
	.mobile-hero-quote {
		font-size: 0.95rem;
		color: rgba(212, 175, 55, 0.85);
		line-height: 1.7;
		max-width: 320px;
		margin-bottom: 32px;
		font-style: italic;
	}
	
	/* Mobile CTA Button */
	.mobile-hero-cta {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		gap: 8px;
		padding: 14px 32px;
		font-size: 0.9rem;
		letter-spacing: 0.1em;
		text-transform: uppercase;
		color: #d4af37;
		background: transparent;
		border: 1px solid rgba(212, 175, 55, 0.5);
		border-radius: 4px;
		text-decoration: none;
		transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
		animation: button-glow 8s cubic-bezier(0.25, 0.1, 0.25, 1) infinite;
	}
	.mobile-hero-cta:hover {
		background: rgba(212, 175, 55, 0.1);
		border-color: #d4af37;
		box-shadow: 0 0 25px rgba(212, 175, 55, 0.25);
	}
	@keyframes button-glow {
		0%, 100% { box-shadow: 0 0 10px rgba(212, 175, 55, 0.1); }
		50% { box-shadow: 0 0 25px rgba(212, 175, 55, 0.25); }
	}
	
	/* Real Book Opening Animation - like a real book opening */
	/* Step 1: Cover opens from right to left */
	/* Step 2: Pages flip */
	/* Step 3: Book settles open */
	
	@keyframes book-cover-open {
		0% { 
		transform: rotateY(0deg);
		z-index: 10;
		}
		100% { 
		transform: rotateY(-180deg);
		z-index: 1;
		}
	}
	
	@keyframes book-page-flip-1 {
		0% { 
		transform: rotateY(0deg);
		opacity: 1;
		}
		100% { 
		transform: rotateY(-180deg);
		opacity: 0.5;
		}
	}
	
	@keyframes book-page-flip-2 {
		0% { 
		transform: rotateY(0deg);
		opacity: 1;
		}
		100% { 
		transform: rotateY(-180deg);
		opacity: 0.3;
		}
	}
	
	@keyframes book-content-appear {
		0%, 70% { 
		opacity: 0;
		}
		100% { 
		opacity: 1;
		}
	}
	
	@keyframes book-glow-appear {
		0% { 
		box-shadow: 0 0 0 rgba(212, 175, 55, 0);
		}
		100% { 
		box-shadow: 0 0 60px rgba(212, 175, 55, 0.25), inset 0 0 40px rgba(212, 175, 55, 0.05);
		}
	}
	
	.open-book-page {
		flex: 1;
		background: linear-gradient(135deg, #1e1b18, #151311);
		border: 2px solid rgba(212, 175, 55, 0.5);
		position: relative;
		box-shadow: 0 0 60px rgba(212, 175, 55, 0.25), inset 0 0 40px rgba(212, 175, 55, 0.05);
		animation: border-shimmer 10s cubic-bezier(0.25, 0.1, 0.25, 1) infinite 3s;
	}
	@media (min-width: 769px) {
		.open-book-page {
		box-shadow: 
			0 0 80px rgba(212, 175, 55, 0.35),
			0 0 150px rgba(212, 175, 55, 0.15),
			inset 0 0 60px rgba(212, 175, 55, 0.08);
		animation: border-shimmer 6s cubic-bezier(0.25, 0.1, 0.25, 1) infinite;
		}
		.open-book-container {
		filter: drop-shadow(0 0 100px rgba(212, 175, 55, 0.2));
		}
		.open-book:hover .open-book-page {
		box-shadow: 
			0 0 100px rgba(212, 175, 55, 0.45),
			0 0 200px rgba(212, 175, 55, 0.25),
			inset 0 0 80px rgba(212, 175, 55, 0.1);
		}
	}
	.open-book-left {
		border-radius: 4px 0 0 4px;
		border-right: 1px solid rgba(212, 175, 55, 0.3);
	}
	.open-book-right {
		border-radius: 0 4px 4px 0;
		border-left: 1px solid rgba(212, 175, 55, 0.3);
	}
	
	/* Flipping pages overlay */
	.book-flip-pages {
		position: absolute;
		top: 0;
		right: 0;
		width: 50%;
		height: 100%;
		transform-origin: left center;
		transform-style: preserve-3d;
		z-index: 20;
	}
	.book-flip-page {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: linear-gradient(135deg, #2a2520, #1e1b18);
		border: 2px solid rgba(212, 175, 55, 0.5);
		border-left: 1px solid rgba(212, 175, 55, 0.3);
		border-radius: 0 4px 4px 0;
		transform-origin: left center;
		backface-visibility: hidden;
	}
	.book-flip-cover {
		background: linear-gradient(135deg, #1a1815, #0f0e0c);
		border-color: rgba(212, 175, 55, 0.7);
		z-index: 25;
		animation: book-cover-open 1.5s ease-in-out 0.5s forwards;
	}
	.book-flip-page-1 {
		z-index: 24;
		animation: book-page-flip-1 1s ease-in-out 1.2s forwards;
	}
	.book-flip-page-2 {
		z-index: 23;
		animation: book-page-flip-2 1s ease-in-out 1.6s forwards;
	}
	.book-flip-page-3 {
		z-index: 22;
		animation: book-page-flip-2 0.8s ease-in-out 2s forwards;
	}
	
	/* Cover decoration */
	.book-cover-decor {
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		width: 60px;
		height: 60px;
		border: 2px solid rgba(212, 175, 55, 0.6);
		border-radius: 50%;
		display: flex;
		align-items: center;
		justify-content: center;
	}
	.book-cover-decor::before {
		content: '';
		width: 20px;
		height: 20px;
		background: rgba(212, 175, 55, 0.8);
		border-radius: 50%;
	}
	
	/* Content appears after pages flip */
	.open-book-page-inner {
		animation: book-content-appear 3s ease-out forwards;
	}
	@media (max-width: 768px) {
		.open-book-left {
		border-radius: 4px 4px 0 0;
		border-right: 2px solid rgba(212, 175, 55, 0.5);
		border-bottom: 1px solid rgba(212, 175, 55, 0.3);
		}
		.open-book-right {
		border-radius: 0 0 4px 4px;
		border-left: 2px solid rgba(212, 175, 55, 0.5);
		border-top: 1px solid rgba(212, 175, 55, 0.3);
		}
	}
	.open-book-page-inner {
		position: absolute;
		inset: 16px;
		border: 1px solid rgba(212, 175, 55, 0.2);
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		padding: 24px;
		animation: border-shimmer 10s cubic-bezier(0.25, 0.1, 0.25, 1) infinite 1.5s;
	}
	@media (min-width: 768px) {
		.open-book-page-inner {
		inset: 24px;
		padding: 32px;
		}
	}
	.open-book-spine {
		width: 4px;
		background: linear-gradient(to bottom, transparent, rgba(212, 175, 55, 0.4), rgba(212, 175, 55, 0.6), rgba(212, 175, 55, 0.4), transparent);
		position: absolute;
		top: 0;
		bottom: 0;
		left: 50%;
		transform: translateX(-50%);
		z-index: 10;
		filter: blur(2px);
	}
	@media (max-width: 768px) {
		.open-book-spine {
		display: none;
		}
	}
	
	/* Book Corner Ornaments */
	.book-corner {
		position: absolute;
		width: 20px;
		height: 20px;
		border-color: rgba(212, 175, 55, 0.4);
		border-style: solid;
		border-width: 0;
	}
	.book-corner-tl { top: 0; left: 0; border-top-width: 1px; border-left-width: 1px; }
	.book-corner-tr { top: 0; right: 0; border-top-width: 1px; border-right-width: 1px; }
	.book-corner-bl { bottom: 0; left: 0; border-bottom-width: 1px; border-left-width: 1px; }
	.book-corner-br { bottom: 0; right: 0; border-bottom-width: 1px; border-right-width: 1px; }
	
	/* Book Sun/Circle on Left Page */
	.book-sun {
		position: relative;
		width: 100px;
		height: 100px;
		margin-bottom: 24px;
	}
	@media (min-width: 768px) {
		.book-sun {
		width: 140px;
		height: 140px;
		margin-bottom: 32px;
		}
	}
	.book-sun-core {
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		width: 50%;
		height: 50%;
		background: radial-gradient(circle, rgba(212, 175, 55, 0.4), rgba(212, 175, 55, 0.1));
		border-radius: 50%;
		box-shadow: 0 0 30px rgba(212, 175, 55, 0.4);
		animation: sun-pulse 8s cubic-bezier(0.25, 0.1, 0.25, 1) infinite;
	}
	@keyframes sun-pulse {
		0%, 100% { box-shadow: 0 0 30px rgba(212, 175, 55, 0.4); transform: translate(-50%, -50%) scale(1); }
		50% { box-shadow: 0 0 50px rgba(212, 175, 55, 0.6); transform: translate(-50%, -50%) scale(1.05); }
	}
	@media (min-width: 769px) {
		.book-sun-core {
		box-shadow: 
			0 0 40px rgba(212, 175, 55, 0.5),
			0 0 80px rgba(212, 175, 55, 0.3);
		animation: sun-pulse-intense 6s cubic-bezier(0.25, 0.1, 0.25, 1) infinite;
		}
		@keyframes sun-pulse-intense {
		0%, 100% { 
			box-shadow: 
			0 0 40px rgba(212, 175, 55, 0.5),
			0 0 80px rgba(212, 175, 55, 0.3);
			transform: translate(-50%, -50%) scale(1); 
		}
		50% { 
			box-shadow: 
			0 0 70px rgba(212, 175, 55, 0.8),
			0 0 120px rgba(212, 175, 55, 0.5),
			0 0 180px rgba(212, 175, 55, 0.2);
			transform: translate(-50%, -50%) scale(1.08); 
		}
		}
		.book-sun-ring {
		animation: border-shimmer 5s ease-in-out infinite;
		}
		.book-sun-dot {
		box-shadow: 
			0 0 15px rgba(212, 175, 55, 1),
			0 0 30px rgba(212, 175, 55, 0.6);
		animation: star-twinkle 3s ease-in-out infinite;
		}
	}
	.book-sun-ring {
		position: absolute;
		border-radius: 50%;
		border: 1px solid rgba(212, 175, 55, 0.3);
	}
	.book-sun-ring-1 {
		inset: 10%;
	}
	.book-sun-ring-2 {
		inset: 0;
	}
	.book-sun-orbit {
		position: absolute;
		inset: -15%;
		border-radius: 50%;
		animation: rotate-slow 15s linear infinite;
	}
	.book-sun-dot {
		position: absolute;
		width: 6px;
		height: 6px;
		background: #d4af37;
		border-radius: 50%;
		top: 0;
		left: 50%;
		transform: translateX(-50%);
		box-shadow: 0 0 10px rgba(212, 175, 55, 0.8);
	}
	
	/* Book Title on Left Page */
	.book-title-wrapper {
		text-align: center;
	}
	.book-main-title {
		font-size: 1.5rem;
		color: #d4af37;
		letter-spacing: 0.15em;
		line-height: 1.4;
		text-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
		animation: text-shimmer 8s cubic-bezier(0.25, 0.1, 0.25, 1) infinite;
	}
	@media (min-width: 768px) {
		.book-main-title {
		font-size: 2.5rem;
		letter-spacing: 0.2em;
		}
	}
	
	/* Quote Content on Right Page */
	.book-quote-content {
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		height: 100%;
		text-align: center;
	}
	.book-quote-text {
		color: rgba(232, 228, 224, 0.85);
		font-size: 0.9rem;
		line-height: 1.8;
		font-style: italic;
		margin-bottom: 24px;
		max-width: 320px;
	}
	@media (min-width: 768px) {
		.book-quote-text {
		font-size: 1.1rem;
		margin-bottom: 32px;
		max-width: 380px;
		}
	}
	.book-cta-btn {
		display: inline-block;
		padding: 14px 28px;
		border: 1px solid rgba(212, 175, 55, 0.6);
		color: rgba(212, 175, 55, 0.9);
		font-size: 0.9rem;
		text-decoration: none;
		letter-spacing: 0.05em;
		transition: all 0.3s ease;
		border-radius: 2px;
		animation: border-shimmer 10s cubic-bezier(0.25, 0.1, 0.25, 1) infinite;
	}
	.book-cta-btn:hover {
		background: rgba(212, 175, 55, 0.1);
		border-color: #d4af37;
		box-shadow: 0 0 35px rgba(212, 175, 55, 0.5);
		animation: none;
	}
	
	/* Scroll Indicator */
	.hero-scroll-indicator {
		position: absolute;
		bottom: 40px;
		left: 50%;
		transform: translateX(-50%);
		z-index: 10;
	}
	.hero-scroll-line {
		width: 1px;
		height: 60px;
		background: linear-gradient(to bottom, rgba(212, 175, 55, 0.5), transparent);
		animation: scroll-pulse 4s cubic-bezier(0.25, 0.1, 0.25, 1) infinite;
	}
	@media (min-width: 769px) {
		.hero-scroll-indicator {
		filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.3));
		}
		.hero-scroll-line {
		height: 80px;
		box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
		}
	}
	@keyframes scroll-pulse {
		0%, 100% { opacity: 0.5; height: 60px; }
		50% { opacity: 1; height: 80px; }
	}
	
	/* Keep old book-circle styles for backwards compat, hidden */
	.book-circle-ring {
		position: absolute;
		inset: 0;
		border-radius: 50%;
		border: 1px solid rgba(212, 175, 55, 0.4);
	}
	.book-circle-ring-1 {
		animation: book-ring-pulse 8s cubic-bezier(0.25, 0.1, 0.25, 1) infinite;
	}
	.book-circle-ring-2 {
		inset: 15%;
		animation: book-ring-pulse 8s cubic-bezier(0.25, 0.1, 0.25, 1) infinite 0.5s;
	}
	.book-circle-ring-3 {
		inset: 30%;
		animation: book-ring-pulse 8s cubic-bezier(0.25, 0.1, 0.25, 1) infinite 1s;
	}
	@keyframes book-ring-pulse {
		0%, 100% { opacity: 0.4; transform: scale(1); }
		50% { opacity: 0.8; transform: scale(1.05); }
	}
	.book-circle-core {
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		width: 40%;
		height: 40%;
		background: radial-gradient(circle, rgba(212, 175, 55, 0.2), transparent);
		border-radius: 50%;
		display: flex;
		align-items: center;
		justify-content: center;
	}
	.book-circle-dot {
		width: 8px;
		height: 8px;
		background: #d4af37;
		border-radius: 50%;
		animation: dot-glow 6s cubic-bezier(0.25, 0.1, 0.25, 1) infinite;
	}
	@keyframes dot-glow {
		0%, 100% { box-shadow: 0 0 15px rgba(212, 175, 55, 0.5); }
		50% { box-shadow: 0 0 35px rgba(212, 175, 55, 0.9); }
	}
	
	#path {
		position: relative;
	}
	.section-glow {
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		width: 70vh;
		height: 70vh;
		background: rgba(212, 175, 55, 0.08);
		border-radius: 50%;
		filter: blur(150px);
		pointer-events: none;
		animation: glow-pulse-intense 6s ease-in-out infinite;
	}
	.path-content {
		max-width: 768px;
		margin: 0 auto;
		text-align: center;
		position: relative;
		z-index: 10;
	}
	.section-title {
		font-family: 'Playfair Display', serif;
		font-size: 1.875rem;
		color: #d4af37;
		margin-bottom: 64px;
		text-shadow: 0 0 30px rgba(212, 175, 55, 0.4), 0 0 60px rgba(212, 175, 55, 0.2);
		animation: text-shimmer 8s cubic-bezier(0.25, 0.1, 0.25, 1) infinite;
	}
	@media (min-width: 768px) {
		.section-title {
		font-size: 3rem;
		position: relative;
		overflow: visible;
		}
	}
	@media (min-width: 769px) {
		.section-title {
		text-shadow: 
			0 0 30px rgba(212, 175, 55, 0.5),
			0 0 60px rgba(212, 175, 55, 0.3),
			0 0 90px rgba(212, 175, 55, 0.2);
		animation: text-shimmer 6s cubic-bezier(0.25, 0.1, 0.25, 1) infinite;
		}
	}
	.path-intro {
		font-family: 'Playfair Display', serif;
		font-size: 1.5rem;
		font-style: italic;
		color: rgba(232, 228, 224, 0.8);
		line-height: 1.6;
		margin-bottom: 40px;
	}
	@media (min-width: 768px) {
		.path-intro {
		font-size: 1.875rem;
		}
	}
	.path-divider {
		width: 64px;
		height: 1px;
		background: linear-gradient(to right, transparent, rgba(212, 175, 55, 0.4), transparent);
		margin: 40px auto;
	}
	.path-text {
		font-size: 1.125rem;
		color: rgba(232, 228, 224, 0.6);
		line-height: 2;
		font-weight: 300;
	}
	@media (min-width: 768px) {
		.path-text {
		font-size: 1.25rem;
		}
	}
	#call {
		position: relative;
	}
		.call-content {
		max-width: 896px;
		margin: 0 auto;
		text-align: center;
		position: relative;
		z-index: 10;
	}
	.chapter-map {
		position: relative;
		width: 320px;
		height: 320px;
		margin: 30px auto 10px auto;
	}
	@media (min-width: 768px) {
		.chapter-map {
		width: 450px;
		height: 450px;
		}
	}
	.bg-circle {
		position: absolute;
		left: 50%;
		top: 50%;
		transform: translate(-50%, -50%);
		border-radius: 50%;
		border: 1px solid rgba(212, 175, 55, 0.08);
		pointer-events: none;
		z-index: -1;
	}
		.main-circle-container {
		position: absolute;
		inset: 0;
		animation: rotate-slow 60s linear infinite;
	}
	.main-circle-glow {
		width: 100%;
		height: 100%;
		filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.5));
		animation: pulse-opacity 8s cubic-bezier(0.25, 0.1, 0.25, 1) infinite;
	}
	.main-circle-svg {
		width: 100%;
		height: 100%;
	}
	.inner-circle-1 {
		position: absolute;
		inset: 24px;
		border: 1px solid rgba(212, 175, 55, 0.15);
		border-radius: 50%;
	}
	@media (min-width: 768px) {
		.inner-circle-1 {
		inset: 32px;
		}
	}
	.inner-circle-2 {
		position: absolute;
		inset: 48px;
		border: 1px solid rgba(212, 175, 55, 0.1);
		border-radius: 50%;
	}
	@media (min-width: 768px) {
		.inner-circle-2 {
		inset: 64px;
		}
	}
	.center-source {
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 8px;
	}
	.center-dot {
		width: 20px;
		height: 20px;
		background: #d4af37;
		border-radius: 50%;
		animation: pulse-glow 8s cubic-bezier(0.25, 0.1, 0.25, 1) infinite;
	}
	@media (min-width: 768px) {
		.center-dot {
		width: 24px;
		height: 24px;
		}
	}
	.center-label {
		font-size: 10px;
		color: rgba(212, 175, 55, 0.6);
		font-weight: 300;
		letter-spacing: 0.1em;
		margin-top: 4px;
	}
	
	.center-pause {
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		border: none;
		color: #d4af37;
		background-color: transparent;
		outline: none; 
		/* background: rgba(23, 20, 17, 0.8); */
		/* padding: 10px 10px; */
		/* font-size: 18px; */
		/* transition: all 0.2s ease; */
		cursor: pointer;
		
		-webkit-tap-highlight-color: transparent;
	}
	
	.center-pause:active {
		/* top: calc(50% + 5px); */
		transform: translate(-50%, -50%) scale(0.9);
	}
	
	.center-pause-svg {
		max-height: min(20vw, 20vh);
		/* max-width: min(20vw, 20vh); */
	}
	
	.chapter-button {
		position: absolute;
		transform: translate(-50%, -50%);
		cursor: pointer;
		z-index: 20;
		
		-webkit-tap-highlight-color: transparent;
		
		text-decoration: none;
	}
		
	.chapter-button-inner {
		display: flex;
		align-items: center;
		justify-content: center;
		padding: 16px 28px;
		background: rgba(23, 20, 17, 0.8);
		backdrop-filter: blur(12px);
		border: 1px solid rgba(212, 175, 55, 0.4);
		border-radius: 9999px;
		font-family: 'Playfair Display', serif;
		font-size: 18px;
		animation: border-shimmer 10s cubic-bezier(0.25, 0.1, 0.25, 1) infinite;
		color: #d4af37;
		white-space: nowrap;
		transition: all 0.3s;
		box-shadow: 0 4px 15px rgba(212, 175, 55, 0.1);
	}
	@media (min-width: 768px) {
		.chapter-button-inner {
  			padding: 16px 0px;
	  		font-size: 22px;
		}
	}
	
	.chapter-button .chapter-button-inner { animation-delay: 1s; }
	
	/* .chapter-button:nth-child(1) .chapter-button-inner { animation-delay: 0s; } */
	/* .chapter-button:nth-child(2) .chapter-button-inner { animation-delay: 0.5s; } */
	/* .chapter-button:nth-child(3) .chapter-button-inner { animation-delay: 1s; } */
	/* .chapter-button:nth-child(4) .chapter-button-inner { animation-delay: 1.5s; } */
	/* .chapter-button:nth-child(5) .chapter-button-inner { animation-delay: 2s; } */
	
	.chapter-button:hover .chapter-button-inner {
		transform: scale(1.1);
		border-color: #d4af37;
		background: rgba(212, 175, 55, 0.1);
		box-shadow: 0 0 30px rgba(212, 175, 55, 0.4);
	}
	.chapter-button .chapter-button-inner:active {
		transform: scale(1);
		transition: all 0.2s ease;
	}
	
	.chapter-ring {
		position: absolute;
		inset: 0;
		border-radius: 9999px;
		border: 1px solid rgba(212, 175, 55, 0.3);
		animation: ring-pulse 6s cubic-bezier(0.25, 0.1, 0.25, 1) infinite;
	}
	.verse-container {
		/* height: 96px; */
		display: flex;
		/* align-items: center; */
		align-items: flex-start;
		justify-content: center;
		margin-top: 2rem;
		min-height: 120px;
	}
	.verse-text {
		font-family: 'Playfair Display', serif;
		font-size: 1rem;
		font-style: italic;
		color: rgba(232, 228, 224, 0.7);
		font-weight: 300;
		line-height: 1.5;
		/* max-width: 448px; */
		opacity: 0;
		transform: translateY(10px);
		transition: opacity 0.3s, transform 0.3s;
	}
	@media (min-width: 768px) {
		.verse-text {
		font-size: 1.125rem;
		}
	}
	.verse-text.visible {
		opacity: 1;
		transform: translateY(0);
	}
	.chapter-hint {
		font-size: 14px;
		color: rgba(232, 228, 224, 0.4);
		font-weight: 300;
		/* margin-top: 6px; */
	}
	#quote {
		position: relative;
	}
	.quote-glow {
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		width: 60vh;
		height: 60vh;
		background: rgba(212, 175, 55, 0.08);
		border-radius: 50%;
		filter: blur(150px);
		pointer-events: none;
		animation: glow-pulse-intense 5s ease-in-out infinite;
	}
	.quote-content {
		max-width: 1000px;
		margin: 0 auto;
		position: relative;
		padding: 48px 32px;
	}
	@media (min-width: 768px) {
		.quote-content {
		padding: 64px;
		}
	}
	.quote-icon {
		position: absolute;
		width: 48px;
		height: 48px;
		color: rgba(212, 175, 55, 0.15);
	}
	@media (min-width: 768px) {
		.quote-icon {
		width: 80px;
		height: 80px;
		}
	}
	.quote-icon-top {
		top: -48px;
		left: -16px;
		transform: rotate(180deg);
	}
	@media (min-width: 768px) {
		.quote-icon-top {
		left: -48px;
		}
	}
	.quote-icon-bottom {
		bottom: -48px;
		right: -16px;
	}
	@media (min-width: 768px) {
		.quote-icon-bottom {
		right: -48px;
		}
	}
	.quote-text {
		font-family: 'Playfair Display', serif;
		font-size: 1.125rem;
		font-style: italic;
		text-align: center;
		line-height: 2;
		color: rgba(232, 228, 224, 0.7);
	}
	@media (min-width: 768px) {
		.quote-text {
		font-size: 1.5rem;
		}
	}
	#faq {
		position: relative;
		overflow: visible;
		min-height: 700px;
		padding-bottom: 120px;
		display: flex;
		flex-direction: column;
		align-items: center;
	}
	@media (min-width: 768px) {
		#faq {
		min-height: 900px;
		padding-bottom: 80px;
		}
	}
	#faq + section,
	#faq ~ section,
	#faq ~ footer {
		display: block !important;
		visibility: visible !important;
		position: relative;
		z-index: 1;
	}
	.faq-glow-1 {
		position: absolute;
		top: 25%;
		left: 25%;
		width: 40vh;
		height: 40vh;
		background: rgba(212, 175, 55, 0.05);
		border-radius: 50%;
		filter: blur(150px);
		pointer-events: none;
	}
	.faq-glow-2 {
		position: absolute;
		bottom: 25%;
		right: 25%;
		width: 30vh;
		height: 30vh;
		background: rgba(212, 175, 55, 0.03);
		border-radius: 50%;
		filter: blur(120px);
		pointer-events: none;
	}
	.faq-content {
		max-width: 1024px;
		margin: 0 auto;
		position: relative;
		z-index: 10;
		width: 100%;
	}
	.faq-header {
		text-align: center;
		margin-bottom: 32px;
	}
	.faq-subtitle {
		color: rgba(232, 228, 224, 0.5);
		font-weight: 300;
		font-size: 1.125rem;
		margin-top: 24px;
	}
	.faq-orbit-container {
		position: relative;
		width: 380px;
		height: 380px;
		margin: 0 auto;
	}
	@media (min-width: 768px) {
		.faq-orbit-container {
		width: 650px;
		height: 650px;
		}
	}
	.faq-outer-ring {
		position: absolute;
		inset: 0;
		animation: rotate-slow 120s linear infinite;
	}
	.faq-outer-ring-circle {
		width: 100%;
		height: 100%;
		border-radius: 50%;
		border: 1px solid rgba(212, 175, 55, 0.2);
		filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.2));
	}
	.faq-orbit-1 {
		position: absolute;
		inset: 12%;
		border: 1px solid rgba(212, 175, 55, 0.15);
		border-radius: 50%;
	}
	.faq-orbit-2 {
		position: absolute;
		inset: 28%;
		border: 1px solid rgba(212, 175, 55, 0.12);
		border-radius: 50%;
	}
	.faq-orbit-3 {
		position: absolute;
		inset: 42%;
		border: 1px solid rgba(212, 175, 55, 0.08);
		border-radius: 50%;
	}
	.faq-center {
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
	}
	.faq-center-dot {
		width: 16px;
		height: 16px;
		background: #d4af37;
		border-radius: 50%;
		animation: pulse-glow 8s cubic-bezier(0.25, 0.1, 0.25, 1) infinite;
	}
	.faq-js-question {
		position: absolute;
		top: 50%;
		left: 50%;
		width: 0;
		height: 0;
	}
	.faq-question {
		position: absolute;
		transform: translate(-50%, -50%);
		cursor: pointer;
	}
	.faq-question:hover .faq-question-inner {
		filter: brightness(1.2);
		border-color: #d4af37;
	}
	.faq-question-inner {
		background: #171411;
		backdrop-filter: blur(12px);
		border: 1px solid rgba(212, 175, 55, 0.3);
		border-radius: 16px;
		padding: 12px 16px;
		box-shadow: 0 4px 15px rgba(212, 175, 55, 0.1);
		width: 140px;
		text-align: center;
		transition: filter 0.2s, border-color 0.2s;
	}
	@media (min-width: 768px) {
		.faq-question-inner {
		padding: 14px 20px;
		width: 180px;
		}
	}
	.faq-question-text {
		font-family: 'Playfair Display', serif;
		font-size: 11px;
		color: #d4af37;
		line-height: 1.4;
	}
	@media (min-width: 768px) {
		.faq-question-text {
		font-size: 14px;
		}
	}
	.faq-ask-link {
		display: inline-flex;
		align-items: center;
		gap: 8px;
		font-size: 14px;
		color: rgba(212, 175, 55, 0.6);
		text-decoration: none;
		border: 1px solid rgba(212, 175, 55, 0.2);
		border-radius: 9999px;
		padding: 12px 24px;
		margin-top: 48px;
		transition: all 0.3s;
	}
	.faq-ask-link:hover {
		color: #d4af37;
		border-color: #d4af37;
	}
	.faq-ask-link svg {
		width: 16px;
		height: 16px;
	}
	.modal-overlay {
		position: fixed;
		inset: 0;
		z-index: 100;
		display: none;
		align-items: center;
		justify-content: center;
		padding: 24px;
		background: rgba(23, 20, 17, 0.8);
		backdrop-filter: blur(4px);
	}
	.modal-overlay.active {
		display: flex;
	}
	.modal-content {
		background: #171411;
		border: 1px solid rgba(212, 175, 55, 0.2);
		border-radius: 16px;
		padding: 32px;
		max-width: 512px;
		width: 100%;
		box-shadow: 0 25px 50px rgba(212, 175, 55, 0.1);
		transform: scale(0.9);
		opacity: 0;
		transition: all 0.3s;
	}
	@media (min-width: 768px) {
		.modal-content {
		padding: 48px;
		}
	}
	.modal-overlay.active .modal-content {
		transform: scale(1);
		opacity: 1;
	}
	.modal-title {
		font-family: 'Playfair Display', serif;
		font-size: 1.25rem;
		color: #d4af37;
		margin-bottom: 24px;
	}
	@media (min-width: 768px) {
		.modal-title {
		font-size: 1.5rem;
		}
	}
	.modal-text {
		color: rgba(232, 228, 224, 0.7);
		font-weight: 300;
		line-height: 1.6;
		font-size: 1rem;
		margin-bottom: 32px;
	}
	@media (min-width: 768px) {
		.modal-text {
		font-size: 1.125rem;
		}
	}
	.modal-close {
		font-size: 14px;
		color: rgba(212, 175, 55, 0.6);
		background: none;
		border: none;
		cursor: pointer;
		transition: color 0.3s;
	}
	.modal-close:hover {
		color: #d4af37;
	}
	#resources {
		padding: 80px 24px;
		min-height: auto;
		position: relative;
		/* display: block; */
		overflow: visible;
		z-index: 1;
	}
	.resources-bg {
		position: absolute;
		inset: 0;
		background: linear-gradient(to bottom, transparent, rgba(212, 175, 55, 0.05), transparent);
		pointer-events: none;
	}
	.resources-content {
		max-width: 1152px;
		margin: 0 auto;
		position: relative;
		z-index: 10;
	}
	.resources-header {
		text-align: center;
		margin-bottom: 64px;
	}
	.resources-title {
		font-family: 'Playfair Display', serif;
		font-size: 1.875rem;
		color: #d4af37;
		margin-bottom: 16px;
	}
	@media (min-width: 768px) {
		.resources-title {
		font-size: 3rem;
		}
	}
	.resources-subtitle {
		color: rgba(232, 228, 224, 0.6);
		max-width: 672px;
		margin: 0 auto;
		font-weight: 300;
	}
	.doors-grid {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 16px;
		/* margin-bottom: 80px; */
	}
	@media (min-width: 768px) {
		.doors-grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 24px;
		}
	}
	.door-card {
		background: rgba(23, 20, 17, 0.5);
		backdrop-filter: blur(12px);
		border: 1px solid rgba(212, 175, 55, 0.15);
		border-radius: 16px;
		padding: 24px;
		text-align: center;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		gap: 12px;
		text-decoration: none;
		transition: all 0.3s;
		min-height: 160px;
	}
	.door-card:hover {
		border-color: rgba(212, 175, 55, 0.4);
		background: rgba(212, 175, 55, 0.05);
	}
	@media (min-width: 769px) {
		.door-card {
		position: relative;
		overflow: hidden;
		animation: border-shimmer 8s ease-in-out infinite;
		}
		.door-card::before {
		content: '';
		position: absolute;
		top: 0;
		left: -100%;
		width: 100%;
		height: 100%;
		background: linear-gradient(90deg, 
			transparent,
			rgba(212, 175, 55, 0.1),
			transparent
		);
		transition: left 0.6s ease;
		}
		.door-card:hover::before {
		left: 100%;
		}
		.door-card:hover {
		box-shadow: 
			0 0 30px rgba(212, 175, 55, 0.2),
			0 0 60px rgba(212, 175, 55, 0.1),
			inset 0 0 30px rgba(212, 175, 55, 0.05);
		transform: translateY(-5px);
		}
	}
	.door-card.coming {
		opacity: 0.6;
		pointer-events: none;
	}
	.door-icon {
		width: 32px;
		height: 32px;
		color: #d4af37;
	}
	.door-title {
		font-family: 'Playfair Display', serif;
		color: #d4af37;
		font-size: 14px;
	}
	@media (min-width: 768px) {
		.door-title {
		font-size: 16px;
		}
	}
	.door-description {
		font-size: 12px;
		color: rgba(232, 228, 224, 0.5);
		margin-top: 4px;
	}
	.door-coming {
		font-size: 12px;
		color: rgba(212, 175, 55, 0.5);
		font-style: italic;
	}
	
	/* .social-links { */
		/* display: flex; */
		/* gap: 12px; */
		/* margin-top: 8px; */
	/* } */
	/* .social-link { */
		/* padding: 8px; */
		/* border-radius: 50%; */
		/* background: rgba(212, 175, 55, 0.1); */
		/* color: #d4af37; */
		/* transition: background 0.3s; */
	/* } */
	/* .social-link:hover { */
		/* background: rgba(212, 175, 55, 0.2); */
	/* } */
	/* .social-link svg { */
		/* width: 20px; */
		/* height: 20px; */
	/* } */
	
	.book-form-grid {
		display: grid;
		gap: 48px;
	}
	@media (min-width: 768px) {
		.book-form-grid {
		grid-template-columns: 1fr 1fr;
		gap: 64px;
		}
	}
	.book-section {
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 24px;
	}
	@media (min-width: 768px) {
		.book-section {
		align-items: flex-start;
		}
	}
	.book-cover {
		width: 192px;
		border-radius: 8px;
		box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
		border: 1px solid rgba(212, 175, 55, 0.2);
	}
	@media (min-width: 768px) {
		.book-cover {
		width: 256px;
		}
	}
	@media (min-width: 769px) {
		.book-cover {
		animation: border-shimmer 8s ease-in-out infinite;
		transition: all 0.5s ease;
		}
		.book-cover:hover {
		box-shadow: 
			0 30px 60px rgba(0, 0, 0, 0.6),
			0 0 40px rgba(212, 175, 55, 0.3),
			0 0 80px rgba(212, 175, 55, 0.15);
		transform: scale(1.02) translateY(-5px);
		}
	}
	.book-info {
		text-align: center;
	}
	@media (min-width: 768px) {
		.book-info {
		text-align: left;
		}
	}
	.book-title {
		font-family: 'Playfair Display', serif;
		font-size: 1.25rem;
		color: #d4af37;
		margin-bottom: 16px;
	}
	.book-text {
		color: rgba(232, 228, 224, 0.6);
		font-size: 14px;
		max-width: 384px;
		margin-bottom: 16px;
	}
	.book-button {
		display: inline-flex;
		align-items: center;
		gap: 8px;
		padding: 10px 20px;
		border: 1px solid rgba(212, 175, 55, 0.4);
		border-radius: 8px;
		color: #ebe7e3;
		text-decoration: none;
		font-size: 14px;
		transition: all 0.3s;
		animation: border-shimmer 10s cubic-bezier(0.25, 0.1, 0.25, 1) infinite;
	}
	.book-button:hover {
		border-color: #d4af37;
		background: rgba(212, 175, 55, 0.1);
		box-shadow: 0 0 25px rgba(212, 175, 55, 0.3);
		animation: none;
	}
	.book-button svg {
		width: 16px;
		height: 16px;
	}
	.contact-email {
		display: flex;
		align-items: center;
		/* gap: 12px; */
		gap: 5px;
		color: rgba(232, 228, 224, 0.7);
		/* margin-top: 16px; */
		/* padding-top: 16px; */
	}
	.contact-email svg {
		width: 20px;
		height: 20px;
		color: rgba(212, 175, 55, 0.7);
	}
	.contact-email a {
		color: inherit;
		text-decoration: none;
		transition: color 0.3s;
	}
	.contact-email a:hover {
		color: #d4af37;
	}
	.form-card {
		background: rgba(23, 20, 17, 0.5);
		backdrop-filter: blur(12px);
		border: 1px solid rgba(212, 175, 55, 0.15);
		border-radius: 16px;
		padding: 24px;
	}
	@media (min-width: 768px) {
		.form-card {
		padding: 32px;
		}
	}
	.form-title {
		font-family: 'Playfair Display', serif;
		font-size: 1.25rem;
		color: #d4af37;
		text-align: center;
		margin-bottom: 8px;
	}
	.form-subtitle {
		font-size: 14px;
		color: rgba(232, 228, 224, 0.5);
		text-align: center;
		margin-bottom: 24px;
	}
	.form-group {
		margin-bottom: 16px;
	}
	.form-label {
		display: block;
		font-size: 14px;
		color: rgba(232, 228, 224, 0.7);
		margin-bottom: 4px;
	}
	.form-input {
		width: 100%;
		padding: 10px 12px;
		background: rgba(23, 20, 17, 0.5);
		border: 1px solid rgba(232, 228, 224, 0.2);
		border-radius: 8px;
		color: #ebe7e3;
		font-size: 14px;
		transition: border-color 0.3s;
	}
	.form-input:focus {
		outline: none;
		border-color: #d4af37;
	}
	.form-input::placeholder {
		color: rgba(232, 228, 224, 0.4);
	}
	textarea.form-input {
		min-height: 80px;
		resize: vertical;
	}
	.form-checkbox {
		display: flex;
		align-items: flex-start;
		gap: 12px;
		margin: 16px 0;
		padding-top: 8px;
	}
	.form-checkbox input {
		width: 16px;
		height: 16px;
		margin-top: 2px;
		accent-color: #d4af37;
	}
	.form-checkbox label {
		font-size: 14px;
		color: rgba(232, 228, 224, 0.6);
		line-height: 1.4;
		cursor: pointer;
		text-align: justify;
		hyphens: auto;
	}
	.form-checkbox a {
		color: #d4af37;
	}
	.form-submit {
		width: 100%;
		padding: 12px;
		background: #d4af37;
		color: #171411;
		border: none;
		border-radius: 8px;
		font-size: 14px;
		font-weight: 500;
		cursor: pointer;
		transition: opacity 0.3s;
	}
	.form-submit:hover {
		opacity: 0.9;
	}
	footer {
		padding: 48px 24px;
		border-top: 1px solid rgba(212, 175, 55, 0.1);
		position: relative;
		display: block;
		z-index: 1;
	}
	.footer-content {
		max-width: 1152px;
		margin: 0 auto;
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 32px;
	}
	@media (min-width: 768px) {
		.footer-content {
		flex-direction: row;
		justify-content: space-between;
		}
	}
	.footer-logo {
		display: flex;
		align-items: center;
		gap: 16px;
	}
	.footer-logo-circle {
		width: 40px;
		height: 40px;
		border: 1px solid rgba(212, 175, 55, 0.3);
		border-radius: 50%;
		display: flex;
		align-items: center;
		justify-content: center;
	}
	.footer-logo-dot {
		width: 8px;
		height: 8px;
		background: #d4af37;
		border-radius: 50%;
	}
	.footer-copyright {
		font-size: 14px;
		color: rgba(232, 228, 224, 0.5);
	}
	.footer-links {
		display: flex;
		align-items: center;
		gap: 24px;
	}
	.footer-link {
		font-size: 14px;
		color: rgba(232, 228, 224, 0.6);
		text-decoration: none;
		transition: color 0.3s;
	}
	.footer-link:hover {
		color: #d4af37;
	}
	@media (min-width: 769px) {
		.footer-logo-circle {
		animation: border-shimmer 8s ease-in-out infinite;
		transition: all 0.4s ease;
		}
		.footer-logo-circle:hover {
		box-shadow: 0 0 25px rgba(212, 175, 55, 0.4);
		transform: rotate(180deg);
		}
		.footer-logo-dot {
		animation: pulse-glow 4s ease-in-out infinite;
		}
		.footer-link {
		position: relative;
		transition: color 0.3s, text-shadow 0.3s;
		}
		.footer-link:hover {
		text-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
		}
	}
	.footer-link svg {
		width: 24px;
		height: 24px;
	}
	.footer-scroll-top {
		width: 40px;
		height: 40px;
		display: flex;
		align-items: center;
		justify-content: center;
		background: none;
		border: none;
		color: rgba(232, 228, 224, 0.6);
		cursor: pointer;
		transition: color 0.3s;
	}
	.footer-scroll-top:hover {
		color: #d4af37;
	}
	.footer-scroll-top svg {
		width: 20px;
		height: 20px;
	}
	@media (max-height: 500px) and (orientation: landscape) {
		section {
			min-height: auto;
			padding: 10px 24px;
		}
		#hero {
		height: auto;
		min-height: auto;
		padding: 0;
		}
		.hero-circle-outer {
		width: 40vmin;
		height: 40vmin;
		}
		.hero-circle-inner {
		width: 28vmin;
		height: 28vmin;
		}
		.hero-title {
		font-size: 2rem;
		margin-bottom: 16px;
		}
		.hero-subtitle {
		font-size: 0.875rem;
		margin-bottom: 24px;
		}
		.hero-cta {
		padding: 10px 24px;
		font-size: 0.75rem;
		}
		.section-title {
		font-size: 1.5rem;
		margin-bottom: 16px;
		}
		.book-image-container {
		height: 200px;
		}
		.book-image {
		max-height: 180px;
		}
		.chapter-map {
		width: 280px;
		height: 280px;
		}
		.chapter-map-center {
		width: 260px;
		height: 260px;
		}
		.chapter-dot {
		width: 50px;
		height: 50px;
		font-size: 0.75rem;
		}
		.faq-orbit-container {
		width: 300px;
		height: 300px;
		}
		.faq-orbit-ring {
		width: 280px;
		height: 280px;
		}
		.faq-orbit-ring-2 {
		width: 360px;
		height: 360px;
		}
		.faq-orbit-ring-3 {
		width: 440px;
		height: 440px;
		}
		.faq-question-item {
		max-width: 100px;
		padding: 8px;
		font-size: 0.65rem;
		}
		.book-form-grid {
		gap: 24px;
		}
		.form-card {
		padding: 24px;
		}
	}
	@media (min-width: 768px) and (max-width: 1024px) {
		section {
			padding: 10px 32px;
		}
		.hero-title {
		font-size: 3rem;
		}
		.hero-circle-outer {
		width: 55vh;
		height: 55vh;
		}
		.hero-circle-inner {
		width: 40vh;
		height: 40vh;
		}
		.chapter-map {
		width: 380px;
		height: 380px;
		}
		.chapter-map-center {
		width: 360px;
		height: 360px;
		}
		.faq-orbit-container {
		width: 400px;
		height: 400px;
		}
		.book-form-grid {
		grid-template-columns: 1fr;
		max-width: 600px;
		margin: 0 auto;
		}
		.doors-grid {
		grid-template-columns: repeat(2, 1fr);
		}
	}
	@media (min-width: 480px) and (max-width: 767px) {
		section {
			padding: 10px 20px;
		}
		.hero-title {
		font-size: 2.25rem;
		}
		.section-title {
		font-size: 1.75rem;
		}
		.book-form-grid {
		gap: 32px;
		}
		.doors-grid {
		grid-template-columns: 1fr 1fr;
		gap: 16px;
		}
		.door-card {
		padding: 16px;
		}
	}

	/* Journey Section Styles */
	.journey-section {
		position: relative;
		min-height: 100vh;
		padding: 10px 24px;
	}
	.journey-glow {
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		width: 70vh;
		height: 70vh;
		background: rgba(212, 175, 55, 0.07);
		border-radius: 50%;
		filter: blur(150px);
		pointer-events: none;
		animation: glow-pulse-intense 7s ease-in-out infinite;
	}
	.journey-content {
		max-width: 900px;
		margin: 0 auto;
		position: relative;
		z-index: 10;
		text-align: center;
	}
	.journey-subtitle {
		color: rgba(232, 228, 224, 0.6);
		font-size: 1.125rem;
		margin-bottom: 20px;
	}
	.timeline {
		position: relative;
		padding: 40px 0;
	}
	.timeline-line {
		position: absolute;
		left: 50%;
		top: 0;
		bottom: 0;
		width: 2px;
		background: linear-gradient(to bottom, transparent, rgba(212, 175, 55, 0.3), rgba(212, 175, 55, 0.3), transparent);
		transform: translateX(-50%);
	}
	@media (max-width: 767px) {
		.timeline-line {
		left: 32px;
		}
	}
	.timeline-item {
		position: relative;
		display: flex;
		align-items: flex-start;
		gap: 24px;
		margin-bottom: 48px;
	}
	.timeline-item:last-child {
		margin-bottom: 0;
	}
	.timeline-item-left {
		flex-direction: row-reverse;
	}
	.timeline-item-right {
		flex-direction: row;
	}
	@media (max-width: 767px) {
		.timeline-item-left,
		.timeline-item-right {
		flex-direction: row;
		padding-left: 80px;
		}
	}
	.timeline-icon-container {
		position: absolute;
		left: 50%;
		transform: translateX(-50%);
		z-index: 10;
	}
	@media (max-width: 767px) {
		.timeline-icon-container {
		left: 32px;
		}
	}
	.timeline-icon-glow {
		position: absolute;
		inset: -8px;
		background: radial-gradient(circle, rgba(212, 175, 55, 0.3), transparent);
		border-radius: 50%;
		animation: pulse-glow 8s cubic-bezier(0.25, 0.1, 0.25, 1) infinite;
	}
	.timeline-icon {
		width: 48px;
		height: 48px;
		background: #171411;
		border: 2px solid rgba(212, 175, 55, 0.5);
		border-radius: 50%;
		display: flex;
		align-items: center;
		justify-content: center;
		color: #d4af37;
		position: relative;
	}
	.timeline-badge {
		position: absolute;
		top: -8px;
		right: -8px;
		width: 20px;
		height: 20px;
		background: #d4af37;
		color: #171411;
		border-radius: 50%;
		font-size: 11px;
		font-weight: 600;
		display: flex;
		align-items: center;
		justify-content: center;
	}
	.timeline-card {
		flex: 1;
		max-width: calc(50% - 60px);
		background: rgba(23, 20, 17, 0.6);
		backdrop-filter: blur(12px);
		border: 1px solid rgba(212, 175, 55, 0.15);
		border-radius: 16px;
		padding: 24px;
		text-align: left;
		animation: border-shimmer 10s cubic-bezier(0.25, 0.1, 0.25, 1) infinite;
	}
	@media (max-width: 767px) {
		.timeline-card {
		max-width: 100%;
		}
	}
	.timeline-item-left .timeline-card {
		margin-right: auto;
	}
	.timeline-item-right .timeline-card {
		margin-left: auto;
	}
	@media (max-width: 767px) {
		.timeline-item-left .timeline-card,
		.timeline-item-right .timeline-card {
		margin-left: 0;
		margin-right: 0;
		}
	}
	.timeline-card-title {
		color: #d4af37;
		font-size: 1.25rem;
		margin-bottom: 12px;
	}
	.timeline-card-text {
		color: rgba(232, 228, 224, 0.7);
		font-size: 0.95rem;
		line-height: 1.6;
	}

	/* Breathing Section Styles */
	.breathing-section {
		position: relative;
		min-height: 100vh;
		padding: 10px 24px;
		overflow: hidden;
	}
	.breathing-glow {
		position: absolute;
		border-radius: 50%;
		filter: blur(120px);
		pointer-events: none;
		animation: breathing-glow-float 8s ease-in-out infinite;
	}
	.breathing-glow-1 {
		top: 10%;
		left: 5%;
		width: 300px;
		height: 300px;
		background: rgba(212, 175, 55, 0.08);
	}
	.breathing-glow-2 {
		bottom: 20%;
		right: 10%;
		width: 250px;
		height: 250px;
		background: rgba(212, 175, 55, 0.06);
		animation-delay: 2s;
	}
	.breathing-glow-3 {
		top: 40%;
		right: 5%;
		width: 200px;
		height: 200px;
		background: rgba(212, 175, 55, 0.05);
		animation-delay: 4s;
	}
	@keyframes breathing-glow-float {
		0%, 100% { transform: translateY(0) scale(1); opacity: 0.6; }
		50% { transform: translateY(-20px) scale(1.1); opacity: 1; }
	}
	.breathing-particle {
		position: absolute;
		width: 4px;
		height: 4px;
		background: rgba(212, 175, 55, 0.6);
		border-radius: 50%;
		left: var(--x);
		top: var(--y);
		animation: particle-float var(--duration) ease-in-out infinite;
		animation-delay: var(--delay);
		box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
	}
	@keyframes particle-float {
		0%, 100% { transform: translateY(0) translateX(0); opacity: 0.4; }
		25% { transform: translateY(-30px) translateX(15px); opacity: 0.8; }
		50% { transform: translateY(-10px) translateX(-10px); opacity: 0.6; }
		75% { transform: translateY(-40px) translateX(5px); opacity: 0.9; }
	}
	.breathing-content {
		max-width: 800px;
		margin: 0 auto;
		position: relative;
		z-index: 10;
		text-align: center;
	}
	.breathing-title {
		animation: title-glow 8s cubic-bezier(0.25, 0.1, 0.25, 1) infinite;
	}
	@keyframes title-glow {
		0%, 100% { text-shadow: 0 0 30px rgba(212, 175, 55, 0.3); }
		50% { text-shadow: 0 0 60px rgba(212, 175, 55, 0.6); }
	}
	.breathing-subtitle {
		color: rgba(232, 228, 224, 0.6);
		font-size: 1.125rem;
		margin-bottom: 64px;
		max-width: 500px;
		margin-left: auto;
		margin-right: auto;
	}
	.breathing-container {
		position: relative;
		width: 280px;
		height: 280px;
		margin: 0 auto 48px;
	}
	@media (min-width: 768px) {
		.breathing-container {
		width: 350px;
		height: 350px;
		}
	}
	.breathing-ring {
		position: absolute;
		border-radius: 50%;
		border: 1px solid rgba(212, 175, 55, 0.25);
		animation: ring-breath 16s ease-in-out infinite;
	}
	.breathing-ring-1 {
		inset: -30%;
		border-color: rgba(212, 175, 55, 0.15);
		animation-delay: 0s;
	}
	.breathing-ring-2 {
		inset: -15%;
		border-color: rgba(212, 175, 55, 0.2);
		animation-delay: 0.5s;
	}
	.breathing-ring-3 {
		inset: 0%;
		border-color: rgba(212, 175, 55, 0.25);
		animation-delay: 1s;
	}
	.breathing-ring-4 {
		inset: 15%;
		border-color: rgba(212, 175, 55, 0.3);
		animation-delay: 1.5s;
	}
	.breathing-ring-5 {
		inset: 30%;
		border-color: rgba(212, 175, 55, 0.35);
		border-width: 2px;
		animation-delay: 2s;
	}
	@keyframes ring-breath {
		0%, 100% { transform: scale(1); opacity: 0.6; }
		25% { transform: scale(1.08); opacity: 1; }
		50% { transform: scale(1.08); opacity: 0.8; }
		75% { transform: scale(1); opacity: 0.5; }
	}
	.breathing-orbit {
		position: absolute;
		border-radius: 50%;
	}
	.breathing-orbit-1 {
		inset: -30%;
		animation: rotate-slow 20s linear infinite;
	}
	.breathing-orbit-2 {
		inset: -15%;
		animation: rotate-reverse 25s linear infinite;
	}
	@keyframes rotate-slow {
		from { transform: rotate(0deg); }
		to { transform: rotate(360deg); }
	}
	@keyframes rotate-reverse {
		from { transform: rotate(360deg); }
		to { transform: rotate(0deg); }
	}
	.breathing-orbit-dot {
		position: absolute;
		width: 6px;
		height: 6px;
		background: #d4af37;
		border-radius: 50%;
		top: 0;
		left: 50%;
		transform: translateX(-50%);
		box-shadow: 0 0 12px rgba(212, 175, 55, 0.9), 0 0 25px rgba(212, 175, 55, 0.6);
	}
	.breathing-circle {
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		width: min(350px, 90vw);
		height: min(350px, 90vw);
		border-radius: 50%;
		background: radial-gradient(circle, rgba(212, 175, 55, 0.08), rgba(23, 20, 17, 0.9));
		border: 2px solid rgba(212, 175, 55, 0.5);
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		animation: circle-breathe 16s ease-in-out infinite;
		box-shadow: 0 0 30px rgba(212, 175, 55, 0.2), inset 0 0 40px rgba(212, 175, 55, 0.1);
	}
	@media (min-width: 768px) {
		.breathing-circle {
			width: 350px;
			height: 350px;
		}
	}
	@keyframes circle-breathe {
		0%, 100% { transform: translate(-50%, -50%) scale(1); border-color: rgba(212, 175, 55, 0.5); box-shadow: 0 0 30px rgba(212, 175, 55, 0.2), inset 0 0 40px rgba(212, 175, 55, 0.1); }
		25% { transform: translate(-50%, -50%) scale(1.12); border-color: rgba(212, 175, 55, 0.8); box-shadow: 0 0 50px rgba(212, 175, 55, 0.4), inset 0 0 50px rgba(212, 175, 55, 0.2); }
		50% { transform: translate(-50%, -50%) scale(1.12); border-color: rgba(212, 175, 55, 0.6); box-shadow: 0 0 40px rgba(212, 175, 55, 0.3), inset 0 0 45px rgba(212, 175, 55, 0.15); }
		75% { transform: translate(-50%, -50%) scale(1); border-color: rgba(212, 175, 55, 0.4); box-shadow: 0 0 25px rgba(212, 175, 55, 0.15), inset 0 0 35px rgba(212, 175, 55, 0.08); }
	}
	.breathing-inner-glow {
		position: absolute;
		inset: 20%;
		background: radial-gradient(circle, rgba(212, 175, 55, 0.2), transparent);
		border-radius: 50%;
		animation: inner-glow-pulse 16s ease-in-out infinite;
	}
	@keyframes inner-glow-pulse {
		0%, 100% { opacity: 0.5; transform: scale(0.8); }
		25% { opacity: 1; transform: scale(1.2); }
		50% { opacity: 0.7; transform: scale(1); }
		75% { opacity: 0.4; transform: scale(0.9); }
	}
	.breathing-phase-text {
		font-size: 1rem;
		line-height: 1.7;
		/* color: rgba(212, 175, 55, 0.8); */
		/* color: #d4af37; */
		color: rgba(232, 228, 224, 0.9);
		margin: 4px;
		position: relative;
		z-index: 1;
		animation: 16s ease-in-out infinite;
	}
	
	.breathing-timer {
		font-family: 'Playfair Display', serif;
		font-size: 1.3rem;
		color: #d4af37;
		position: relative;
		z-index: 1;
		text-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
		animation: timer-glow 8s cubic-bezier(0.25, 0.1, 0.25, 1) infinite;
	}
	@keyframes timer-glow {
		0%, 100% { text-shadow: 0 0 20px rgba(212, 175, 55, 0.4); }
		50% { text-shadow: 0 0 50px rgba(212, 175, 55, 0.8); }
	}
	.breathing-instruction {
		color: rgba(232, 228, 224, 0.5);
		font-size: 0.875rem;
		max-width: 500px;
		margin: 0 auto;
		margin-top: 24px;
	}
	
	/* Breathing Prompt Text (inside circle before start) */
	.breathing-prompt {
		font-size: 1rem;
		color: rgba(212, 175, 55, 0.8);
		text-align: center;
		line-height: 1.4;
		position: relative;
		z-index: 1;
	}
	@media (min-width: 768px) {
		.breathing-prompt {
		font-size: 1.25rem;
		}
	}
	.breathing-active-state {
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
	}
	
	/* Breathing Start Button */
	.breathing-start-btn {
		display: inline-block;
		/* margin-top: 32px; */
		padding: 14px 28px;
		background: transparent;
		border: 1px solid rgba(212, 175, 55, 0.5);
		border-radius: 15px; 
		color: rgba(232, 228, 224, 0.9);
		font-family: inherit;
		font-size: 1rem;
		font-weight: 500;
		cursor: pointer;
		transition: all 0.3s ease;
		animation: border-shimmer 10s cubic-bezier(0.25, 0.1, 0.25, 1) infinite;
		
		z-index: 100;
	}
	.breathing-start-btn:hover {
		background: rgba(212, 175, 55, 0.1);
		border-color: #d4af37;
		box-shadow: 0 0 35px rgba(212, 175, 55, 0.5);
		animation: none;
	}
	.breathing-start-btn.hidden, .hidden {
		display: none;
	}
	
	/* Active breathing state - enhanced animations */
	.breathing-container.breathing-active .breathing-circle {
		animation: circle-breathe-active 16s ease-in-out infinite;
	}
	@keyframes circle-breathe-active {
		0%, 100% { transform: translate(-50%, -50%) scale(1); border-color: rgba(212, 175, 55, 0.5); }
		25% { transform: translate(-50%, -50%) scale(1.15); border-color: rgba(212, 175, 55, 0.9); }
		50% { transform: translate(-50%, -50%) scale(1.15); border-color: rgba(212, 175, 55, 0.7); }
		75% { transform: translate(-50%, -50%) scale(1); border-color: rgba(212, 175, 55, 0.4); }
	}
	
	.breathing-pause-button, .breathing-play-button {
		position: absolute;
		bottom: 0%;
		left: 0%;
		border: none;
		background-color: transparent;
		outline: none; 
		cursor: pointer;
		-webkit-tap-highlight-color: transparent;
		
		transition: opacity 0.5s ease;
	}
	
	.breathing-pause-button:active, .breathing-play-button:active {
		/* top: calc(50% + 5px); */
		transform: scale(0.9);
	}
	
	.breathing-pause-button-svg, .breathing-play-button-svg {
		max-height: min(50px, 13vw, 13vh) !important;
		max-width: min(50px, 13vw, 13vh) !important;
	}
	
	.breathing-volume-button, .breathing-muted-button {
		position: absolute;
		bottom: 0%;
		right: 0%;
		border: none;
		background-color: transparent;
		outline: none; 
		cursor: pointer;
		-webkit-tap-highlight-color: transparent;
		
		transition: opacity 0.5s ease;
	}
	.breathing-volume-button:active, .breathing-muted-button:active {
		transform: scale(0.9);
	}
	
	.breathing-volume-button-svg, .breathing-muted-button-svg {
		max-height: min(50px, 13vw, 13vh) !important;
		max-width: min(50px, 13vw, 13vh) !important;
		
		/* max-height: min(30px, 10vw, 10vh) !important; */
		/* max-width: min(30px, 10vw, 10vh) !important; */
	}

	/* Testimonials Section Styles */
	.testimonials-section {
		position: relative;
		min-height: 100vh;
		padding: 10px 24px;
	}
	.testimonials-glow {
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		width: 80vh;
		height: 80vh;
		background: rgba(212, 175, 55, 0.06);
		border-radius: 50%;
		filter: blur(150px);
		pointer-events: none;
		animation: glow-pulse-intense 6s ease-in-out infinite;
	}
	.testimonials-content {
		max-width: 1100px;
		margin: 0 auto;
		position: relative;
		z-index: 10;
		text-align: center;
	}
	.testimonials-subtitle {
		color: rgba(232, 228, 224, 0.6);
		font-size: 1.125rem;
		margin-bottom: 64px;
	}
	.testimonials-grid {
		display: grid;
		grid-template-columns: 1fr;
		gap: 24px;
	}
	@media (min-width: 768px) {
		.testimonials-grid {
		grid-template-columns: repeat(2, 1fr);
		}
	}
	.testimonial-card {
		background: rgba(23, 20, 17, 0.6);
		backdrop-filter: blur(12px);
		border: 1px solid rgba(212, 175, 55, 0.15);
		border-radius: 16px;
		padding: 32px;
		text-align: left;
		position: relative;
		transition: all 0.3s ease;
		animation: border-shimmer 10s cubic-bezier(0.25, 0.1, 0.25, 1) infinite;
	}
	.testimonial-card:nth-child(1) { animation-delay: 0s; }
	.testimonial-card:nth-child(2) { animation-delay: 1s; }
	.testimonial-card:nth-child(3) { animation-delay: 2s; }
	.testimonial-card:hover {
		border-color: rgba(212, 175, 55, 0.5);
		transform: translateY(-4px);
		box-shadow: 0 0 30px rgba(212, 175, 55, 0.2);
	}
	.testimonial-quote-icon {
		position: absolute;
		top: 24px;
		right: 24px;
		width: 32px;
		height: 32px;
		color: rgba(212, 175, 55, 0.2);
		animation: quote-shimmer 8s cubic-bezier(0.25, 0.1, 0.25, 1) infinite;
	}
	@keyframes quote-shimmer {
		0%, 100% { opacity: 0.3; }
		50% { opacity: 0.6; }
	}
	.testimonial-text {
		font-size: 1rem;
		color: rgba(232, 228, 224, 0.8);
		line-height: 1.8;
		font-style: italic;
		margin-bottom: 24px;
		padding-right: 40px;
	}
	.testimonial-author {
		display: flex;
		flex-direction: column;
		gap: 4px;
	}
	.testimonial-name {
		color: #d4af37;
		font-size: 0.95rem;
		font-weight: 500;
	}
	.testimonial-location {
		color: rgba(232, 228, 224, 0.5);
		font-size: 0.875rem;
	}
	

	/* === DESKTOP HERO CIRCLE (replaces book on desktop) === */
	.desktop-hero { 
		display: none;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		text-align: center;
		padding: 15% 24px 80px;
		min-height: 100vh;
		position: relative;
		z-index: 10;
	}
	.desktop-circles {
		position: relative;
		width: 360px;
		height: 360px;
		margin-bottom: 44px;
	}
	.desktop-circle-outer {
		position: absolute;
		inset: 0;
		border-radius: 50%;
		border: 2px solid rgba(212, 175, 55, 0.6);
		box-shadow: 0 0 50px rgba(212, 175, 55, 0.35), 0 0 110px rgba(212, 175, 55, 0.18), inset 0 0 50px rgba(212, 175, 55, 0.08);
		animation: mobile-circle-pulse 8s cubic-bezier(0.25, 0.1, 0.25, 1) infinite;
	}
	.desktop-circle-dot {
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		width: 12px;
		height: 12px;
		background: #d4af37;
		border-radius: 50%;
		box-shadow: 0 0 22px rgba(212, 175, 55, 0.9), 0 0 44px rgba(212, 175, 55, 0.45);
		animation: mobile-dot-pulse 4s cubic-bezier(0.25, 0.1, 0.25, 1) infinite;
	}
	.desktop-orbit {
		position: absolute;
		inset: -6%;
		animation: desktop-rotate 22s linear infinite;
	}
	@keyframes desktop-rotate { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
	.desktop-orbit-dot {
		position: absolute;
		width: 7px;
		height: 7px;
		background: #d4af37;
		border-radius: 50%;
		box-shadow: 0 0 16px rgba(212, 175, 55, 0.8);
		top: 50%;
		left: 50%;
		transform: rotate(var(--a)) translateX(190px) translateY(-50%);
	}
	.desktop-orbit-dot:nth-child(1) { --a: 0deg; }
	.desktop-orbit-dot:nth-child(2) { --a: 72deg; }
	.desktop-orbit-dot:nth-child(3) { --a: 144deg; }
	.desktop-orbit-dot:nth-child(4) { --a: 216deg; }
	.desktop-orbit-dot:nth-child(5) { --a: 288deg; }

	.desktop-hero-title {
		font-size: 3rem;
		color: #d4af37;
		letter-spacing: 0.18em;
		line-height: 1.2;
		margin-bottom: 22px;
		text-shadow: 0 0 34px rgba(212, 175, 55, 0.45);
		animation: text-shimmer 8s cubic-bezier(0.25, 0.1, 0.25, 1) infinite;
	}
	.desktop-hero-quote {
		font-size: 1.05rem;
		color: rgba(212, 175, 55, 0.85);
		line-height: 1.75;
		max-width: 720px;
		margin-bottom: 34px;
	}
	.desktop-hero-cta {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		padding: 14px 34px;
		font-size: 0.9rem;
		letter-spacing: 0.1em;
		text-transform: uppercase;
		color: #d4af37;
		background: transparent;
		border: 1px solid rgba(212, 175, 55, 0.5);
		border-radius: 6px;
		text-decoration: none;
		transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
		animation: button-glow 8s cubic-bezier(0.25, 0.1, 0.25, 1) infinite;
	}
	.:hover {
		background: rgba(212, 175, 55, 0.1);
		border-color: #d4af37;
		box-shadow: 0 0 25px rgba(212, 175, 55, 0.25);
	}

	/* Switch hero layouts */
	@media (min-width: 769px) {
		.open-book-container { display: none !important; }
		.mobile-hero { display: none !important; }
		.desktop-hero { display: flex !important; }
	}
	@media (max-width: 768px) {
		.desktop-hero { display: none !important; }
	}


	/* === PERFORMANCE: reduce heavy effects on slower devices === */
	@media (max-width: 1024px) {
		.sparkle-container { display: none !important; } /* fixed particles are expensive on Android */
	}
	@media (prefers-reduced-motion: reduce) {
		* { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
		.sparkle-container, .golden-rays, .star-field, .magic-orbs, .page-glow { display: none !important; }
	}

	/* === FONT OVERRIDES (uniform sans-serif) === */
	:root { --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif; }
	body { font-family: var(--font-main) !important; }
	.font-serif,
	.nav-logo-text,
	.mobile-menu-link,
	.section-title,
	.path-intro,
	.book-main-title,
	.book-quote-text,
	.timeline-card-title,
	.testimonial-text,
	.testimonial-name,
	.modal-title,
	.faq-question-text,
	.door-title,
	.book-title,
	.form-title,
	.chapter-button-inner,
	.verse-text {
		font-family: var(--font-main) !important;
	}

