:root {
    --color-primary: #3E1F1F;
    --color-primary-light: #5C2E2E;
    --color-accent: #C9A84C;
    --color-accent-light: #E0C878;
    --color-accent-dark: #A8882E;
    --color-bg: #FDF8F0;
    --color-white: #FFFFFF;
    --color-text: #2D1B1B;
    --color-text-muted: #7A6B5D;
    --color-border: #E8DCC8;
    --color-glow: rgba(201,168,76,0.15);
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 8px 30px rgba(0,0,0,0.08);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.12);
    --radius: 8px;
    --max-width: 1200px;
    --header-height: 72px;
}
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    background: var(--color-bg);
    color: var(--color-text);
    line-height: 1.7;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    color: var(--color-primary);
}
.section-label {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #7A5C1A;
    margin-bottom: 1rem;
    display: block;
}
.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.5rem;
}
.section-subtitle {
    font-size: 1.05rem;
    color: var(--color-text-muted);
    max-width: 640px;
    line-height: 1.8;
}
.section { padding: 6rem 0; }
.section-dark {
    background: var(--color-primary);
    color: var(--color-white);
}
.section-dark .section-title { color: var(--color-white); }
.section-dark .section-subtitle { color: rgba(255,255,255,0.7); }
.section-dark .section-label { color: var(--color-accent); }
.divider {
    width: 60px;
    height: 2px;
    background: var(--color-accent);
    margin: 1.5rem 0;
}
.text-center { text-align: center; }
.text-center .divider { margin: 1.5rem auto; }
.text-center .section-subtitle { margin: 0 auto; }
.ornament-heading {
    position: relative;
    display: inline-block;
    padding-bottom: 0.5rem;
}
.ornament-heading::after {
    content: '';
    position: absolute;
    bottom: 0; left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
}
.ornament-left {
    position: relative;
    padding-left: 1rem;
}
.ornament-left::before {
    content: '';
    position: absolute;
    left: 0; top: 0.15em;
    width: 3px;
    height: 0.75em;
    background: var(--color-accent);
    border-radius: 2px;
}
.temple-divider {
    width: 100%;
    height: 60px;
    overflow: hidden;
    line-height: 0;
    position: relative;
}
.temple-divider svg { width: 100%; height: 100%; }
.temple-divider.light { background: var(--color-bg); }
.temple-divider.dark { background: var(--color-primary); }
.temple-divider.white-bg { background: var(--color-white); }
.shikhar-border {
    position: relative;
}
.shikhar-border::before {
    content: '';
    position: absolute;
    top: -1px; left: 1.5rem; right: 1.5rem;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
    border-radius: 0 0 2px 2px;
    opacity: 0;
    transition: opacity var(--transition);
}
.shikhar-border:hover::before { opacity: 1; }
.header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 0.85rem 0;
    transition: background var(--transition), box-shadow var(--transition);
    background: rgba(255,255,255,0.97);
    box-shadow: 0 1px 0 var(--color-border);
}
.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--color-primary);
    letter-spacing: -0.02em;
}
.logo span { color: var(--color-accent); }
.nav { display: flex; gap: 2.25rem; align-items: center; }
.nav a {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    color: var(--color-text-muted);
    position: relative;
    padding: 0.25rem 0;
    transition: color var(--transition);
}
.nav a::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 0;
    width: 0; height: 1.5px;
    background: var(--color-accent);
    transition: width var(--transition);
}
.nav a:hover::after,
.nav a.active::after { width: 100%; }
.nav a:hover,
.nav a.active { color: var(--color-primary); }
.menu-toggle {
    display: none;
    background: none; border: none; cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}
.menu-toggle span {
    display: block;
    width: 24px; height: 2px;
    background: var(--color-primary);
    margin: 5px 0;
    transition: var(--transition);
    border-radius: 2px;
}
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 2.25rem;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
}
.btn-primary {
    background: var(--color-accent);
    color: var(--color-primary);
}
.btn-primary:hover {
    background: var(--color-accent-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(197,168,128,0.3);
}
.btn-outline {
    background: transparent;
    color: var(--color-white);
    border: 1.5px solid rgba(255,255,255,0.3);
}
.btn-outline:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
    transform: translateY(-2px);
}
.btn-dark {
    background: var(--color-primary);
    color: var(--color-white);
}
.btn-dark:hover {
    background: #333;
    transform: translateY(-2px);
}
.footer {
    background: var(--color-primary);
    color: rgba(255,255,255,0.7);
    padding: 4rem 0 2rem;
    position: relative;
}
.footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
    opacity: 0.3;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}
.footer-brand .logo {
    font-size: 1.5rem;
    display: inline-block;
    margin-bottom: 1rem;
}
.footer-brand p {
    font-size: 0.88rem;
    line-height: 1.7;
    max-width: 320px;
}
.footer h4 {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-white);
    margin-bottom: 1.25rem;
}
.footer-nav a {
    display: block;
    font-size: 0.88rem;
    padding: 0.3rem 0;
    transition: color var(--transition);
}
.footer-nav a:hover { color: var(--color-accent); }
.footer-contact p {
    font-size: 0.88rem;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}
.footer-contact strong { color: var(--color-white); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.55);
}
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}
.page-banner {
    padding: 10rem 0 5rem;
    position: relative;
    background: var(--color-primary);
    color: var(--color-white);
    text-align: center;
}
.page-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 20%, rgba(201,168,76,0.08) 0%, transparent 50%), linear-gradient(135deg, rgba(15,15,15,0.60) 0%, rgba(20,20,20,0.30) 100%);
}
.page-banner * { position: relative; z-index: 2; }
.page-banner h1 {
    font-size: clamp(2.2rem, 4vw, 3rem);
    color: var(--color-white);
    margin-bottom: 0.75rem;
}
.page-banner p {
    color: rgba(255,255,255,0.7);
    font-size: 1rem;
    max-width: 560px;
    margin: 0 auto;
}
.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 0;
    font-size: 0.8rem;
    color: var(--color-text-muted);
}
.breadcrumbs a { color: var(--color-text-muted); transition: color var(--transition); }
.breadcrumbs a:hover { color: var(--color-accent); }
.breadcrumbs .sep { color: var(--color-border); }
.breadcrumbs .current { color: var(--color-text); font-weight: 500; }

.page-banner .breadcrumbs,
.page-banner .breadcrumbs a,
.page-banner .breadcrumbs .current { color: rgba(255,255,255,0.8); }
.page-banner .breadcrumbs a:hover { color: var(--color-accent); }
.page-banner .breadcrumbs .sep { color: rgba(255,255,255,0.3); }

.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 4px 20px rgba(37,211,102,0.3);
    transition: transform var(--transition), box-shadow var(--transition);
}
.whatsapp-float:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 30px rgba(37,211,102,0.4);
}
.whatsapp-float svg { width: 28px; height: 28px; }
@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .nav {
        position: fixed;
        top: 0; right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--color-white);
        flex-direction: column;
        padding: 6rem 2rem 2rem;
        gap: 1.5rem;
        transition: right 0.4s ease;
        box-shadow: -10px 0 40px rgba(0,0,0,0.1);
        align-items: flex-start;
        z-index: 1001;
    }
    .nav.open { right: 0; }
    .nav a { font-size: 1rem; }
    .menu-toggle { display: block; }
    .menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .menu-toggle.active span:nth-child(2) { opacity: 0; }
    .menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
    .section { padding: 4rem 0; }
    .page-banner { padding: 8rem 0 3.5rem; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom { flex-direction: column; text-align: center; }
}
